Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| org_id | string | |
| name | string | |
| band_24 | object | |
| band_5 | object | |
| band_6 | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RfTemplate",
"title": "RfTemplate",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"org_id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
},
"band_24": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
},
"power": {
"type": "integer"
},
"channels": {
"type": "array",
"items": {
"type": "integer"
}
}
}
},
"band_5": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
},
"power": {
"type": "integer"
},
"channels": {
"type": "array",
"items": {
"type": "integer"
}
}
}
},
"band_6": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
},
"power": {
"type": "integer"
},
"channels": {
"type": "array",
"items": {
"type": "integer"
}
}
}
}
}
}