{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "StartenBuilder Page 3.0",
  "type": "object",
  "required": ["format", "version", "page"],
  "properties": {
    "format": {"const": "startenbuilder"},
    "version": {"type": "string"},
    "page": {
      "type": "object",
      "required": ["title", "blocks"],
      "properties": {
        "title": {"type": "string"},
        "slug": {"type": "string"},
        "description": {"type": "string"},
        "status": {"enum": ["draft", "published", "scheduled"]},
        "page_type": {"enum": ["standard", "landing", "local"]},
        "primary_keyword": {"type": "string"},
        "target_city": {"type": "string"},
        "target_region": {"type": "string"},
        "robots": {"enum": ["index,follow", "noindex,follow"]},
        "blocks": {
          "type": "array",
          "items": {
            "type": "object",
            "required": ["type"],
            "properties": {
              "type": {"enum": ["hero","text","text_image","image","video","cards","stats","logos","testimonial","pricing","faq","cta","form","whatsapp","insights","divider","spacer"]},
              "enabled": {"type": "boolean"},
              "eyebrow": {"type": "string"},
              "title": {"type": "string"},
              "lead": {"type": "string"},
              "content": {"type": "string"},
              "image": {"type": "string"},
              "image_alt": {"type": "string"},
              "cta_label": {"type": "string"},
              "cta_url": {"type": "string"},
              "form_id": {"type": "string"},
              "items": {"type": "array"},
              "style": {"type": "object"},
              "responsive": {"type": "object"}
            }
          }
        }
      }
    }
  }
}
