{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://debarrameda.pages.dev/datos/esquema-aportacion.json",
  "title": "de Barrameda local contribution",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "schemaVersion",
    "id",
    "createdAt",
    "language",
    "kind",
    "description",
    "referenceUrl",
    "declarations",
    "transmission"
  ],
  "properties": {
    "schemaVersion": {
      "const": 1
    },
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "language": {
      "enum": [
        "es",
        "en"
      ]
    },
    "kind": {
      "enum": [
        "correction",
        "material",
        "oral-history"
      ]
    },
    "description": {
      "type": "string",
      "minLength": 20,
      "maxLength": 4000
    },
    "referenceUrl": {
      "anyOf": [
        {
          "type": "null"
        },
        {
          "type": "string",
          "format": "uri",
          "pattern": "^https://"
        }
      ]
    },
    "declarations": {
      "type": "object",
      "additionalProperties": false,
      "required": [
        "rightsConfirmed",
        "consentRecorded",
        "personalDataPublished"
      ],
      "properties": {
        "rightsConfirmed": {
          "const": true
        },
        "consentRecorded": {
          "const": true
        },
        "personalDataPublished": {
          "const": false
        }
      }
    },
    "transmission": {
      "type": "object",
      "additionalProperties": false,
      "required": [
        "sent",
        "channel"
      ],
      "properties": {
        "sent": {
          "const": false
        },
        "channel": {
          "const": null
        }
      }
    }
  }
}
