{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "slug": {
        "type": "string"
      },
      "titleId": {
        "type": "string"
      },
      "registerId": {
        "type": "string"
      },
      "versionDate": {
        "type": "string"
      },
      "sourceObservation": {
        "type": "object",
        "properties": {
          "checkedAt": {
            "type": "string",
            "allOf": [
              {
                "pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(?:\\.\\d+)?(?:Z|[+-]\\d{2}:\\d{2})$"
              }
            ]
          },
          "status": {
            "type": "string",
            "enum": [
              "attested"
            ]
          }
        },
        "required": [
          "checkedAt",
          "status"
        ],
        "additionalProperties": false
      }
    },
    "required": [
      "slug",
      "titleId",
      "registerId",
      "versionDate",
      "sourceObservation"
    ],
    "additionalProperties": false
  },
  "$defs": {}
}
