{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://schemas.opencityitalia.it/website/comuni/document/v1.json",
  "title": "Documento",
  "description": "Documento ufficiale pubblicato da un comune (atti, delibere, avvisi, modulistica).",
  "type": "object",
  "properties": {
    "id": { "title": "Identificativo", "type": "string", "format": "uuid" },
    "title": { "title": "Titolo", "type": "string", "maxLength": 255 },
    "description": { "title": "Descrizione", "type": ["string", "null"] },
    "document_type": {
      "title": "Tipo documento",
      "type": "string",
      "enum": ["delibera", "determina", "avviso", "modulo", "regolamento", "altro"]
    },
    "file_url": { "title": "URL file", "type": "string", "format": "uri" },
    "mime_type": { "title": "MIME type", "type": "string" },
    "published_at": { "title": "Data pubblicazione", "type": ["string", "null"], "format": "date-time" },
    "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", "title", "document_type", "tenant_id", "created_at", "updated_at"]
}
