{
  "type": "object",
  "properties": {
    "cognitive_impairment": {
      "type": "string",
      "enum": [
        "yes",
        "no",
        "limited"
      ]
    },
    "visual_impairment": {
      "type": "string",
      "enum": [
        "yes",
        "no",
        "limited"
      ]
    },
    "hearing_impairment": {
      "type": "string",
      "enum": [
        "yes",
        "no",
        "limited"
      ]
    },
    "psychic_impairment": {
      "type": "string",
      "enum": [
        "yes",
        "no",
        "limited"
      ]
    },
    "agenda": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "id": {
          "type": "integer"
        },
        "name": {
          "type": "string"
        }
      }
    },
    "keywords": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "short_description": {
      "$ref": "#/$defs/multilingual"
    }
  },
  "$defs": {
    "multilingual": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}