mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-12 03:05:01 +00:00
82 lines
2.7 KiB
JSON
82 lines
2.7 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "DmChassisController Properties Config Schema",
|
|
"description": "",
|
|
"$ref":"EssentialsConfigSchema.json#definitions/Device",
|
|
"properties":{
|
|
"properties":{
|
|
"$ref":"#/definitions/propertiesConfig"
|
|
}
|
|
},
|
|
"definitions": {
|
|
"propertiesConfig": {
|
|
"type":"object",
|
|
"additionalProperties": true,
|
|
"properties": {
|
|
"control":{
|
|
"type":"object",
|
|
"$ref":"ControlPropertiesConfigSchema.json#definitions/ControlPropertiesConfig"
|
|
},
|
|
"volumeControls":{
|
|
"title": "Volume Controls",
|
|
"type":"object",
|
|
"additionalProperties": {
|
|
"type":"object",
|
|
"$ref": "#definitions/dmAudioCardPropertiesConfig"
|
|
}
|
|
},
|
|
"inputSlots":{
|
|
"title": "Input Slots",
|
|
"type":"object",
|
|
"additionalProperties": {
|
|
"type":"string"
|
|
}
|
|
},
|
|
"outputSlots":{
|
|
"title": "Output Slots",
|
|
"type":"object",
|
|
"additionalProperties": {
|
|
"type":"string"
|
|
}
|
|
},
|
|
"inputNames":{
|
|
"title": "Input Names",
|
|
"type":"object",
|
|
"additionalProperties": {
|
|
"type":"string"
|
|
}
|
|
},
|
|
"outputNames":{
|
|
"title": "Output Names",
|
|
"type":"object",
|
|
"additionalProperties": {
|
|
"type":"string"
|
|
}
|
|
},
|
|
"noRouteText":{
|
|
"title": "No Route Text",
|
|
"type":"string"
|
|
},
|
|
"inputSlotSupportsHdcp2":{
|
|
"type":"object",
|
|
"additionalProperties": {
|
|
"type":"boolean"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"dmAudioCardPropertiesConfig":{
|
|
"type":"object",
|
|
"properties": {
|
|
"OutLevel":{
|
|
"title": "Output Level",
|
|
"type":"integer"
|
|
},
|
|
"isVolumeControlPoint":{
|
|
"title": "Volume Control Point?",
|
|
"type":"boolean"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |