{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.therealer.com/docs/api/schemas/mqtt-credential-request.schema.json",
  "title": "Realer MQTT credential request",
  "type": "object",
  "required": ["device_id"],
  "properties": {
    "device_id": {
      "type": "integer"
    },
    "scopes": {
      "type": "array",
      "minItems": 1,
      "items": {
        "type": "string",
        "enum": [
          "iot:mqtt:connect",
          "iot:mqtt:ack:read",
          "iot:mqtt:feed-data:write",
          "iot:mqtt:desired:read"
        ]
      }
    }
  },
  "additionalProperties": false
}
