{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://schemas.opencityitalia.it/website/comuni/office/v1.json",
  "title": "Ufficio",
  "description": "Ufficio o unità organizzativa di un comune.",
  "type": "object",
  "properties": {
    "id": { "title": "Identificativo", "type": "string", "format": "uuid" },
    "name": { "title": "Nome", "type": "string", "maxLength": 255 },
    "description": { "title": "Descrizione", "type": ["string", "null"] },
    "email": { "title": "Email", "type": ["string", "null"], "format": "email" },
    "phone": { "title": "Telefono", "type": ["string", "null"] },
    "location_id": { "title": "ID luogo", "type": ["string", "null"], "format": "uuid" },
    "opening_hours": {
      "title": "Orari di apertura",
      "type": ["string", "null"],
      "description": "Orari in formato testuale libero o schema.org OpeningHoursSpecification"
    },
    "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"]
}
