{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://visuals.thegr0ve.com/schemas/publication-mirror.schema.json",
  "title": "Publication Mirror",
  "type": "object",
  "required": [
    "mirror_id",
    "atom_id",
    "platform",
    "mirror_type",
    "status"
  ],
  "properties": {
    "mirror_id": { "type": "string" },
    "atom_id": { "type": "string" },
    "platform": { "type": "string", "enum": ["pinterest", "instagram", "x", "threads", "other"] },
    "platform_account": { "type": "string" },
    "mirror_type": { "type": "string", "enum": ["pin", "board", "carousel", "post", "story", "other"] },
    "destination_url": { "type": "string" },
    "platform_url": { "type": "string" },
    "title": { "type": "string" },
    "description_or_caption": { "type": "string" },
    "hashtags": { "type": "array", "items": { "type": "string" } },
    "board": { "type": "string" },
    "board_section": { "type": "string" },
    "status": { "type": "string", "enum": ["draft", "queued", "scheduled", "published", "failed", "retired"] },
    "published_at": { "type": "string" },
    "receipt_path": { "type": "string" },
    "notes": { "type": "string" }
  },
  "additionalProperties": false
}
