json-schema adjustments

This commit is contained in:
psyirius
2024-08-07 08:11:07 -07:00
parent 5e2acadee5
commit 8844b85531
4 changed files with 38 additions and 12 deletions

View File

@ -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"
}
}
}
}