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

31 lines
647 B
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/net.schema.json",
"title": "Net",
"description": "Network status",
"type": "object",
"properties": {
"conf": {
"type": "integer"
},
"info": {
"type": "array",
"items": {
"type": "object",
"properties": {
"ip": {
"type": "integer"
},
"mask": {
"type": "integer"
}
},
"required": [
"ip",
"mask"
]
}
}
}
}