{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.vacanzesicure.online/api/publication.schema.json",
  "title": "Vacanze Sicure Public Publication",
  "type": "object",
  "required": ["id", "slug", "type", "status", "title", "summary", "published_at", "updated_at", "canonical_path", "source"],
  "properties": {
    "id": {"type": "string", "minLength": 3},
    "slug": {"type": "string", "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$"},
    "type": {"type": "string", "enum": ["news", "press_release", "expansion", "office_opening_local", "office_opening_provincial", "office_opening_regional", "office_opening_national", "office_opening_territorial", "service_update", "institutional_update"]},
    "status": {"type": "string", "enum": ["draft", "review", "published", "withdrawn"]},
    "title": {"type": "string", "minLength": 10},
    "summary": {"type": "string", "minLength": 30},
    "body": {"type": "array", "items": {"type": "string", "minLength": 1}},
    "published_at": {"type": "string", "format": "date-time"},
    "updated_at": {"type": "string", "format": "date-time"},
    "language": {"type": "string", "default": "it"},
    "category": {"type": "string"},
    "territory": {"type": "string"},
    "canonical_path": {"type": "string", "pattern": "^/(notizie|comunicati)/"},
    "source": {
      "type": "object",
      "required": ["name", "url", "grade", "official"],
      "properties": {
        "name": {"type": "string"},
        "url": {"type": "string", "format": "uri"},
        "grade": {"type": "string", "enum": ["A", "B", "C", "D"]},
        "official": {"type": "boolean"}
      },
      "additionalProperties": true
    },
    "seo": {
      "type": "object",
      "properties": {
        "index": {"type": "boolean"},
        "title": {"type": "string"},
        "description": {"type": "string"},
        "keywords": {"type": "array", "items": {"type": "string"}}
      },
      "additionalProperties": true
    },
    "visi": {
      "type": "object",
      "properties": {
        "enabled": {"type": "boolean"},
        "topics": {"type": "array", "items": {"type": "string"}},
        "answer_summary": {"type": "string"}
      },
      "additionalProperties": true
    },
    "pianeta": {
      "type": "object",
      "properties": {
        "include": {"type": "boolean"},
        "section": {"type": ["string", "null"]}
      },
      "additionalProperties": true
    },
    "press_release": {
      "type": "object",
      "properties": {
        "required": {"type": "boolean"},
        "linked_slug": {"type": ["string", "null"]}
      },
      "additionalProperties": true
    },
    "office": {
      "type": "object",
      "required": ["level", "opening_date", "opening_origin", "governance_control"],
      "properties": {
        "office_id": {"type": "string"},
        "level": {"type": "string", "enum": ["local", "provincial", "regional", "national", "territorial"]},
        "region": {"type": ["string", "null"]},
        "province": {"type": ["string", "null"]},
        "municipality": {"type": ["string", "null"]},
        "opening_date": {"type": "string", "format": "date"},
        "opening_origin": {"type": "string", "enum": ["vs_direct", "external_request"]},
        "requester_type": {"type": ["string", "null"], "enum": ["private", "entity", "association", null]},
        "requester_public_name": {"type": ["string", "null"]},
        "governance_control": {"type": "string", "const": "vs_general_direction"},
        "hosting_context": {"type": ["string", "null"], "enum": ["independent_vs_site", "pro_loco", "municipal_office", "provincial_office", "regional_office", "other_approved_host", null]},
        "structured_autonomy": {"type": "boolean", "const": true},
        "dedicated_room_or_space": {"type": "boolean", "const": true},
        "dedicated_pc": {"type": "boolean", "const": true},
        "pc_supplied_or_authorized_by_vs": {"type": "boolean", "const": true},
        "credentials_issued_by_general_direction": {"type": "boolean", "const": true},
        "economic_terms_agreed_before_opening": {"type": "boolean", "const": true},
        "economic_model_public": {"type": ["string", "null"], "enum": ["participation_fee", "fixed_payment", "percentage", "mixed", "other_agreed_model", null]},
        "specific_economic_terms_public": {"type": "boolean", "const": false},
        "public_contact_url": {"type": ["string", "null"], "format": "uri"}
      },
      "additionalProperties": true
    }
  },
  "allOf": [
    {
      "if": {"properties": {"type": {"enum": ["office_opening_local", "office_opening_provincial", "office_opening_regional", "office_opening_national", "office_opening_territorial"]}}, "required": ["type"]},
      "then": {
        "required": ["office", "press_release", "pianeta"],
        "properties": {
          "press_release": {"properties": {"required": {"const": true}}, "required": ["required", "linked_slug"]},
          "pianeta": {"properties": {"include": {"const": true}}, "required": ["include"]}
        }
      }
    },
    {
      "if": {"properties": {"office": {"properties": {"opening_origin": {"const": "external_request"}}}}, "required": ["office"]},
      "then": {"properties": {"office": {"required": ["requester_type", "economic_terms_agreed_before_opening"]}}}
    }
  ],
  "additionalProperties": true
}
