mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-01-15 17:30:37 -06:00
json-schema adjustments
This commit is contained in:
parent
5e2acadee5
commit
8844b85531
@ -22,7 +22,8 @@
|
||||
"format": "ipv6"
|
||||
}
|
||||
},
|
||||
"required": ["Primary", "Secondary", "Primary6", "Secondary6"]
|
||||
"required": ["Primary", "Secondary", "Primary6", "Secondary6"],
|
||||
"additionalProperties": false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,13 +1,12 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"type": "object",
|
||||
"patternProperties": {
|
||||
"^[a-zA-Z_][a-zA-Z0-9_]*$": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"type": "object",
|
||||
"patternProperties": {
|
||||
"^[a-zA-Z_][a-zA-Z0-9_]*$": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -290,7 +290,8 @@
|
||||
"BorderColor",
|
||||
"BorderOpacity",
|
||||
"ShadowPulse"
|
||||
]
|
||||
],
|
||||
"additionalProperties": false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,12 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"type": "object",
|
||||
"definitions": {
|
||||
"toggle-state": {
|
||||
"type": "string",
|
||||
"enum": ["Enabled", "Disabled"]
|
||||
}
|
||||
},
|
||||
"patternProperties": {
|
||||
"^[a-zA-Z_][a-zA-Z0-9_]*$": {
|
||||
"type": "object",
|
||||
@ -77,6 +83,24 @@
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"ScheduledTask": {
|
||||
"type":"array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"Name": {
|
||||
"type": "string"
|
||||
},
|
||||
"State": {
|
||||
"$ref": "#/definitions/toggle-state"
|
||||
},
|
||||
"OriginalState": {
|
||||
"$ref": "#/definitions/toggle-state"
|
||||
}
|
||||
},
|
||||
"required": ["Name", "State", "OriginalState"]
|
||||
}
|
||||
},
|
||||
"InvokeScript": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
@ -90,7 +114,8 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": ["Content", "Description", "category", "panel", "Order"]
|
||||
"required": ["Content", "Description", "category", "panel", "Order"],
|
||||
"additionalProperties": false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user