{
  "$id": "https://www.itb.ec.europa.eu/api/getSystem_response",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "description": "JSON schema for the getSystem operation response payload",
  "type": "object",
  "properties": {
    "apiKey": {
      "description": "The system's API key.",
      "type": "string"
    },
    "shortName": {
      "description": "The system's short name.",
      "type": "string"
    },
    "fullName": {
      "description": "The system's full name.",
      "type": "string"
    },
    "description": {
      "description": "The system's description.",
      "type": "string"
    },
    "version": {
      "description": "The system's version information.",
      "type": "string"
    }
  },
  "required": [
    "apiKey",
    "shortName",
    "fullName",
    "description",
    "version"
  ],
  "additionalProperties": false
}