{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://schemas.opencityitalia.it/website/comuni/public_service/v1.json",
  "title": "Servizio",
  "description": "Servizio digitale o fisico erogato da un comune ai cittadini.",
  "type": "object",
  "properties": {
    "id": { "title": "Identificativo", "type": "string", "format": "uuid" },
    "name": { "title": "Nome", "type": "string", "maxLength": 255 },
    "description": { "title": "Descrizione", "type": ["string", "null"] },
    "url": { "title": "URL del servizio", "type": "string", "format": "uri" },
    "status": {
      "title": "Stato",
      "type": "string",
      "enum": ["active", "inactive", "draft"]
    },
    "topics": {
      "title": "Argomenti",
      "type": "array",
      "items": { "type": "string" }
    },
    "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", "status", "tenant_id", "created_at", "updated_at"]
}
