Memesio · JSON Structure

Memesio Meme Watermark Config Structure

JSON Schema for Memesio MemeWatermarkConfig, extracted from https://memesio.com/api/openapi (Memesio API Contracts v0.1.0).

Type: object Properties: 4 Required: 4
MemesMediaImage GenerationContentDeveloper Tools

MemeWatermarkConfig is a JSON Structure definition published by Memesio, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

enabled text position scale

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/memesio/main/json-structure/memesio-memewatermarkconfig-structure.json",
  "name": "MemeWatermarkConfig",
  "description": "JSON Schema for Memesio MemeWatermarkConfig, extracted from https://memesio.com/api/openapi (Memesio API Contracts v0.1.0).",
  "type": "object",
  "required": [
    "enabled",
    "text",
    "position",
    "scale"
  ],
  "properties": {
    "enabled": {
      "type": "boolean"
    },
    "text": {
      "type": "string"
    },
    "position": {
      "type": "string",
      "enum": [
        "top_left",
        "top_right",
        "bottom_left",
        "bottom_right"
      ]
    },
    "scale": {
      "type": "double"
    }
  }
}