Files
continuum-schemas/schemas/bambulab/v2/common/ipcam.schema.json
T

74 lines
1.6 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://git.octoturge.com/Continuum/continuum-schemas/raw/branch/main/schemas/bambulab/v2/common/ipcam.schema.json",
"title": "Ipcam",
"description": "Report about the in-built IP camera",
"type": "object",
"properties": {
"agora_service": {
"type": "string",
"enum": [
"enable",
"disable",
"ENABLE",
"DISABLE"
]
},
"brtc_service": {
"type": "string",
"enum": [
"enable",
"disable",
"ENABLE",
"DISABLE"
]
},
"bs_state": { "type": "integer" },
"cap_pic_enable": {
"type": "string",
"enum": [
"enable",
"disable",
"invalid",
"ENABLE",
"DISABLE",
"INVALID"
]
},
"ipcam_dev": { "type": "string" },
"ipcam_record": {
"type": "string",
"enum": [
"enable",
"disable",
"ENABLE",
"DISABLE"
]
},
"laser_preview_res": { "type": "integer" },
"mode_bits": { "type": "integer", "minimum": 0 },
"resolution": { "type": "string" },
"rtsp_url": { "type": "string" },
"timelapse": {
"type": "string",
"enum": [
"enable",
"disable",
"ENABLE",
"DISABLE"
]
},
"tl_store_hpd_type": { "type": "integer" },
"tl_store_path_type": { "type": "integer" },
"tutk_server": {
"type": "string",
"enum": [
"enable",
"disable",
"ENABLE",
"DISABLE"
]
}
}
}