{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://visuals.thegr0ve.com/schemas/asset-variant.schema.json",
  "title": "Asset Variant",
  "type": "object",
  "required": [
    "variant_id",
    "atom_id",
    "variant_type",
    "file_path",
    "public_url",
    "width",
    "height",
    "format",
    "file_size_bytes",
    "download_label",
    "quality_status"
  ],
  "properties": {
    "variant_id": { "type": "string" },
    "atom_id": { "type": "string" },
    "variant_type": {
      "type": "string",
      "enum": [
        "raw",
        "polished",
        "iphone_wallpaper",
        "desktop_wallpaper",
        "pinterest_pin",
        "instagram_slide",
        "thumbnail",
        "opengraph",
        "placeholder_preview"
      ]
    },
    "file_path": { "type": "string" },
    "public_url": { "type": "string" },
    "width": { "type": "integer" },
    "height": { "type": "integer" },
    "format": { "type": "string", "enum": ["png", "jpg", "jpeg", "webp", "avif"] },
    "file_size_bytes": { "type": "integer" },
    "checksum": { "type": "string" },
    "download_label": { "type": "string" },
    "quality_status": { "type": "string", "enum": ["placeholder", "review", "approved", "blocked"] },
    "notes": { "type": "string" }
  },
  "additionalProperties": false
}
