Input schema (server-provided preview — do not copy)
{
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"pdf_url",
"wm"
],
"properties": {
"wm": {
"type": "string",
"description": "워터마크 문자열 (최대 30자)"
},
"angle": {
"type": "integer",
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"description": "워터마크 각도 (0 ~ 360, 기본값 35)"
},
"color": {
"type": "string",
"description": "워터마크 색상 HEX (000000 ~ FFFFFF, 기본값 EEEEEE)"
},
"width": {
"type": "integer",
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"description": "워터마크 적용 너비 (0 ~ 2000, 기본값 550, A4 기준)"
},
"height": {
"type": "integer",
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"description": "워터마크 적용 높이 (0 ~ 2000, 기본값 800, A4 기준)"
},
"density": {
"type": "integer",
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"description": "워터마크 글자 밀집도 (100 ~ 200, 기본값 150)"
},
"opacity": {
"type": "number",
"description": "워터마크 투명도 (0 ~ 1, 기본값 0.05)"
},
"pdf_url": {
"type": "string",
"description": "다운로드 가능한 https URL (허용 형식: application/pdf) (최대 25MB)"
},
"font_size": {
"type": "integer",
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"description": "워터마크 글자 크기 (8 ~ 30, 기본값 10)"
}
}
}