{
  "$schema": "http://json-schema.org/draft-06/schema#",
  "title": "QualifiersResponse",
  "description": "Qualifiers PI_JSON",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "version": {
      "type": "string"
    },
    "qualifiers": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/Qualifier"
      }
    }
  },
  "definitions": {
    "Qualifier": {
      "type": "object",
      "required": [
        "id"
      ],
      "additionalProperties": false,
      "properties": {
        "id": {
          "type": "string",
          "description": "id of the qualifier"
        },
        "name": {
          "type": "string",
          "description": "Name of the qualifier."
        },
        "shortName": {
          "type": "string",
          "description": "Shoret vame of the qualifier."
        },
        "attributes": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/QualifierAttribute"
          }
        }
      }
    },
    "QualifierAttribute": {
      "type": "object",
      "required": [
        "id"
      ],
      "additionalProperties": false,
      "properties": {
        "id": {
          "type": "string",
          "description": "id of the qualifier attribute"
        },
        "name": {
          "type": "string",
          "description": "Name of the qualifier attribute"
        },
        "description": {
          "type": "string",
          "description": "Description the qualifier attribute."
        },
        "type": {
          "type": "string",
          "description": "Type of the qualifier  attribute"
        },
        "value": {
          "type": "string",
          "description": "Value of the qualifier attribute"
        }
      }
    }

  }
}
