{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://schemas.opencityitalia.it/website/comuni/place/v1.json",
  "title": "Luogo",
  "description": "Luogo fisico associato a un comune (sede, sportello, punto di interesse).",
  "type": "object",
  "properties": {
    "id": {
      "title": "Identificativo",
      "type": "string",
      "format": "uuid"
    },
    "name": {
      "title": "Nome",
      "type": "string",
      "maxLength": 255
    },
    "address": {
      "title": "Indirizzo",
      "type": "object",
      "properties": {
        "street_address": { "type": "string" },
        "postal_code": { "type": "string" },
        "city": { "type": "string" },
        "province": { "type": "string", "maxLength": 2 },
        "country_code": { "type": "string", "default": "IT" }
      },
      "required": ["street_address", "postal_code", "city"]
    },
    "latitude": { "title": "Latitudine", "type": "number" },
    "longitude": { "title": "Longitudine", "type": "number" },
    "tenant_id": { "title": "Ente", "type": "string", "format": "uuid" },
    "created_at": { "title": "Data creazione", "type": "string", "format": "date-time" },
    "updated_at": { "title": "Data aggiornamento", "type": "string", "format": "date-time" }
  },
  "required": ["id", "name", "tenant_id", "created_at", "updated_at"]
}
