{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/memesio/main/json-schema/memesio-freememewatermark-schema.json", "title": "FreeMemeWatermark", "description": "Caption API requests accept watermark input, but non-premium callers are forced to the default Memesio watermark. Premium callers can customize enabled, text, position, and scale.", "type": "object", "properties": { "enabled": { "type": "boolean" }, "text": { "type": "string", "maxLength": 64 }, "position": { "type": "string", "enum": [ "top_left", "top_right", "bottom_left", "bottom_right" ] }, "scale": { "type": "number", "minimum": 0.6, "maximum": 3 } } }