{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.therealer.com/docs/api/schemas/http-command-catalog-response.schema.json",
  "title": "Realer HTTP command catalog response",
  "type": "object",
  "required": ["code", "commands"],
  "properties": {
    "code": {
      "type": "integer",
      "enum": [2000]
    },
    "commands": {
      "type": "array",
      "items": {
        "type": "object",
        "required": ["id"],
        "properties": {
          "id": { "type": "integer" },
          "value": { "type": "string" },
          "value_type": { "type": "string" },
          "kind": { "type": "string" },
          "pin_port": { "type": "string" },
          "error": { "type": ["string", "object"] }
        },
        "additionalProperties": true
      }
    }
  },
  "additionalProperties": true
}
