mirror of
https://github.com/MatMoul/dokytree.git
synced 2024-12-23 16:16:12 +00:00
342 lines
5.2 KiB
JSON
342 lines
5.2 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "YAML Schema for computer",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"todo": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"msg": {
|
|
"anyOf": [
|
|
{"type": "string"},
|
|
{"enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
},
|
|
"priority": { "type": "integer" },
|
|
"duration": {
|
|
"anyOf": [
|
|
{"type": "integer"},
|
|
{"type": "string"},
|
|
{"enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"name": {
|
|
"oneOf": [
|
|
{"type": "string"},
|
|
{"enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
},
|
|
"maintainer": {
|
|
"oneOf": [
|
|
{"type": "string"},
|
|
{"enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
},
|
|
"type": {
|
|
"type": "string",
|
|
"anyOf": [
|
|
{ "type": "string" },
|
|
{ "enum": [
|
|
"''",
|
|
"'notebook'",
|
|
"'rack'",
|
|
"'slim'",
|
|
"'small'",
|
|
"'tower'",
|
|
"'vm'"
|
|
]}
|
|
]
|
|
},
|
|
"model": {
|
|
"anyOf": [
|
|
{"type": "string"},
|
|
{"enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
},
|
|
"os": {
|
|
"type": "string",
|
|
"anyOf": [
|
|
{ "type": "string" },
|
|
{"enum": [
|
|
"''",
|
|
"'Windows XP Home'",
|
|
"'Windows XP Pro'",
|
|
"'Windows Vista Home'",
|
|
"'Windows Vista Pro'",
|
|
"'Windows 7 Home'",
|
|
"'Windows 7 Pro'",
|
|
"'Windows 8 Home'",
|
|
"'Windows 8 Pro'",
|
|
"'Windows 10 Home'",
|
|
"'Windows 10 Pro'",
|
|
"'Windows 11 Home'",
|
|
"'Windows 11 Pro'"
|
|
]}
|
|
]
|
|
},
|
|
"location": {
|
|
"anyOf": [
|
|
{"type": "string"},
|
|
{"enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
},
|
|
"interfaces": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"anyOf": [
|
|
{"type": "string"},
|
|
{"enum": [
|
|
"''",
|
|
"'LAN'",
|
|
"'WIFI'",
|
|
"'WAN'",
|
|
"'VPN'"
|
|
]}
|
|
]
|
|
},
|
|
"ip": {
|
|
"anyOf": [
|
|
{"type": "string"},
|
|
{"enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
},
|
|
"mask": {
|
|
"anyOf": [
|
|
{"type": "string"},
|
|
{"enum": [
|
|
"''",
|
|
"'255.255.255.0'",
|
|
"'255.255.0.0'",
|
|
"'255.0.0.0'"
|
|
]}
|
|
]
|
|
},
|
|
"gw": {
|
|
"anyOf": [
|
|
{"type": "string"},
|
|
{"enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
},
|
|
"dns": {
|
|
"type": "array",
|
|
"items": {
|
|
"anyOf": [
|
|
{"type": "string"},
|
|
{"enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"updates": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"type": {
|
|
"anyOf": [
|
|
{ "type": "string" },
|
|
{ "enum": [
|
|
"''",
|
|
"'os'"
|
|
]}
|
|
]
|
|
},
|
|
"method": {
|
|
"anyOf": [
|
|
{ "type": "string" },
|
|
{ "enum": [
|
|
"''",
|
|
"'auto'",
|
|
"'manual'"
|
|
]}
|
|
]
|
|
},
|
|
"frequency": {
|
|
"anyOf": [
|
|
{ "type": "string" },
|
|
{ "enum": [
|
|
"''",
|
|
"'auto'",
|
|
"'daily'",
|
|
"'weekly'",
|
|
"'monthly'",
|
|
"'quarterly'",
|
|
"'halfyearly'",
|
|
"'yearly'",
|
|
"'monday'",
|
|
"'tuesday'",
|
|
"'wednesday'",
|
|
"'thursday'",
|
|
"'friday'",
|
|
"'saturday'",
|
|
"'sonday'"
|
|
]}
|
|
]
|
|
},
|
|
"time": {
|
|
"anyOf": [
|
|
{"type": "string"},
|
|
{"enum": [
|
|
"''",
|
|
"'auto'"
|
|
]}
|
|
]
|
|
},
|
|
"duration": {
|
|
"anyOf": [
|
|
{ "type": "string" },
|
|
{ "type": "integer" },
|
|
{"enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"backups": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"type": {
|
|
"anyOf": [
|
|
{ "type": "string" },
|
|
{ "enum": [
|
|
"''",
|
|
"'none'",
|
|
"'hypervisor'",
|
|
"'windowsbackup'"
|
|
]}
|
|
]
|
|
},
|
|
"method": {
|
|
"anyOf": [
|
|
{ "type": "string" },
|
|
{ "enum": [
|
|
"''",
|
|
"'auto'",
|
|
"'manual'"
|
|
]}
|
|
]
|
|
},
|
|
"frequency": {
|
|
"anyOf": [
|
|
{ "type": "string" },
|
|
{ "enum": [
|
|
"''",
|
|
"'daily'",
|
|
"'weekly'",
|
|
"'monthly'",
|
|
"'quarterly'",
|
|
"'halfyearly'",
|
|
"'yearly'",
|
|
"'monday'",
|
|
"'tuesday'",
|
|
"'wednesday'",
|
|
"'thursday'",
|
|
"'friday'",
|
|
"'saturday'",
|
|
"'sonday'"
|
|
]}
|
|
]
|
|
},
|
|
"target": {
|
|
"anyOf": [
|
|
{"type": "string"},
|
|
{"enum": [
|
|
"''",
|
|
"'usb'",
|
|
"'pbs'",
|
|
"'share'",
|
|
"'iscsi'",
|
|
"'cloud'"
|
|
]}
|
|
]
|
|
},
|
|
"time": {
|
|
"anyOf": [
|
|
{"type": "string"},
|
|
{"enum": [
|
|
"''",
|
|
"'auto'"
|
|
]}
|
|
]
|
|
},
|
|
"duration": {
|
|
"anyOf": [
|
|
{ "type": "string" },
|
|
{ "type": "integer" },
|
|
{"enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"headfiles": {
|
|
"type": "array",
|
|
"items": {
|
|
"anyOf": [
|
|
{ "type": "string" },
|
|
{ "enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
}
|
|
},
|
|
"files": {
|
|
"type": "array",
|
|
"items": {
|
|
"anyOf": [
|
|
{ "type": "string" },
|
|
{ "enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
}
|
|
},
|
|
"footfiles": {
|
|
"type": "array",
|
|
"items": {
|
|
"anyOf": [
|
|
{ "type": "string" },
|
|
{ "enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|