{
  "name": "Image",
  "description": "An image object. Use for photography pages, portfolio images, or media galleries.",
  "schema_type": "ImageObject",
  "version": "1.0.0",
  "fields": [
    { "key": "contentUrl", "label": "Image URL", "type": "url", "required": true, "description": "The direct URL to the image file" },
    { "key": "name", "label": "Image Name", "type": "text", "required": false, "description": "The name or title of the image" },
    { "key": "description", "label": "Description", "type": "textarea", "required": false, "description": "Description of the image" },
    { "key": "url", "label": "Page URL", "type": "url", "required": false, "description": "URL of the page containing the image" },
    { "key": "width", "label": "Width", "type": "number", "required": false, "description": "Width in pixels" },
    { "key": "height", "label": "Height", "type": "number", "required": false, "description": "Height in pixels" },
    { "key": "author", "label": "Author", "type": "object", "required": false, "description": "The creator of the image" },
    { "key": "datePublished", "label": "Date Published", "type": "date", "required": false, "description": "Date the image was published" },
    { "key": "caption", "label": "Caption", "type": "text", "required": false, "description": "Caption for the image" },
    { "key": "license", "label": "License URL", "type": "url", "required": false, "description": "URL to the license for this image" }
  ],
  "template": {
    "@context": "https://schema.org",
    "@type": "ImageObject",
    "contentUrl": "",
    "name": "",
    "description": "",
    "width": "",
    "height": "",
    "caption": ""
  },
  "google_required": ["contentUrl"],
  "google_recommended": ["name", "description", "author"]
}
