{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "title": {
      "type": "string"
    },
    "category": {
      "type": "string",
      "enum": [
        "Kundenarbeiten",
        "Umbauten",
        "Neubauten",
        "Sanierungen",
        "Baumeisterarbeiten"
      ]
    },
    "audience": {
      "default": [
        "Privatkundschaft"
      ],
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "Privatkundschaft",
          "Architekten",
          "Gewerbe",
          "Öffentlich"
        ]
      }
    },
    "location": {
      "type": "string"
    },
    "year": {
      "type": "string"
    },
    "services": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "architect": {
      "type": "string"
    },
    "summary": {
      "type": "string"
    },
    "heroImage": {
      "type": "string"
    },
    "gallery": {
      "default": [],
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "projectType": {
      "type": "string"
    },
    "situation": {
      "type": "string"
    },
    "challenge": {
      "type": "string"
    },
    "solution": {
      "type": "string"
    },
    "result": {
      "type": "string"
    },
    "featured": {
      "default": false,
      "type": "boolean"
    },
    "$schema": {
      "type": "string"
    }
  },
  "required": [
    "title",
    "category",
    "location",
    "year",
    "services",
    "summary",
    "heroImage"
  ]
}