{
  "title": "Professional category",
  "definitions": {
    "clsParcom": {
      "type": [
        "object",
        "null"
      ],
      "properties": {
        "JointCommissionNbr": {
          "type": "string",
          "minLength": 3,
          "maxLength": 6,
          "pattern": "^[0-9,.]*$"
        },
        "ProfCats": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/clsProfCat"
          }
        }
      },
      "required": [
        "ProfCats"
      ]
    },
    "clsProfCat": {
      "type": [
        "object",
        "null"
      ],
      "properties": {
        "ProfCat": {
          "type": [
            "string",
            "null"
          ]
        },
        "DescriptionD": {
          "type": [
            "string",
            "null"
          ]
        },
        "DescriptionF": {
          "type": [
            "string",
            "null"
          ]
        }
      },
      "required": [
        "ProfCat",
        "DescriptionD",
        "DescriptionF"
      ]
    }
  },
  "type": "array",
  "items": {
    "$ref": "#/definitions/clsParcom"
  }
}