1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00

schema update

This commit is contained in:
Kelly Brazil
2023-12-10 10:41:20 -08:00
parent c8fb56c601
commit 2a76a64fa1

View File

@ -31,7 +31,8 @@ Schema:
"current_height": integer, "current_height": integer,
"maximum_width": integer, "maximum_width": integer,
"maximum_height": integer, "maximum_height": integer,
"devices": { "devices": [
{
"modes": [ "modes": [
{ {
"resolution_width": integer, "resolution_width": integer,
@ -46,7 +47,8 @@ Schema:
] ]
} }
] ]
}, }
],
"is_connected": boolean, "is_connected": boolean,
"is_primary": boolean, "is_primary": boolean,
"device_name": string, "device_name": string,
@ -78,7 +80,8 @@ Examples:
"current_height": 1080, "current_height": 1080,
"maximum_width": 32767, "maximum_width": 32767,
"maximum_height": 32767, "maximum_height": 32767,
"devices": { "devices": [
{
"modes": [ "modes": [
{ {
"resolution_width": 1920, "resolution_width": 1920,
@ -122,6 +125,7 @@ Examples:
"rotation": "normal", "rotation": "normal",
"reflection": "normal" "reflection": "normal"
} }
]
} }
] ]
} }
@ -137,7 +141,8 @@ Examples:
"current_height": 1080, "current_height": 1080,
"maximum_width": 32767, "maximum_width": 32767,
"maximum_height": 32767, "maximum_height": 32767,
"devices": { "devices": [
{
"modes": [ "modes": [
{ {
"resolution_width": 1920, "resolution_width": 1920,
@ -184,6 +189,7 @@ Examples:
"rotation": "normal", "rotation": "normal",
"reflection": "normal" "reflection": "normal"
} }
]
} }
] ]
} }