47 lines
924 B
JSON
47 lines
924 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://git.octoturge.com/Continuum/continuum-schemas/raw/branch/main/schemas/bambulab/v1/common/ipcam.schema.json",
|
|
"title": "Ipcam",
|
|
"description": "Report about the in-built IP camera",
|
|
"type": "object",
|
|
"properties": {
|
|
"ipcam_dev": {
|
|
"type": "string"
|
|
},
|
|
"ipcam_record": {
|
|
"type": "string",
|
|
"enum": [
|
|
"enable",
|
|
"disable",
|
|
"ENABLE",
|
|
"DISABLE"
|
|
]
|
|
},
|
|
"timelapse": {
|
|
"type": "string",
|
|
"enum": [
|
|
"enable",
|
|
"disable",
|
|
"ENABLE",
|
|
"DISABLE"
|
|
]
|
|
},
|
|
"resolution": {
|
|
"type": "string"
|
|
},
|
|
"tutk_server": {
|
|
"type": "string",
|
|
"enum": [
|
|
"enable",
|
|
"disable",
|
|
"ENABLE",
|
|
"DISABLE"
|
|
]
|
|
},
|
|
"mode_bits": {
|
|
"type": "integer",
|
|
"minimum": 0
|
|
}
|
|
}
|
|
}
|