Initial import
This commit is contained in:
commit
ab891a315c
773 changed files with 257255 additions and 0 deletions
28
content/schema/dev_config.schema.json
Normal file
28
content/schema/dev_config.schema.json
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"title": "Developer Config",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["autoReloadWatch", "watchIntervalMs", "debugInventoryItems", "debugFlags"],
|
||||
"properties": {
|
||||
"autoReloadWatch": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"watchIntervalMs": {
|
||||
"type": "integer",
|
||||
"minimum": 1
|
||||
},
|
||||
"debugInventoryItems": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"debugFlags": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue