added realm to jspg processing

This commit is contained in:
2026-04-17 18:25:14 -04:00
parent 8ebf6a69bf
commit f450f8ab8b
59 changed files with 3884 additions and 2194 deletions

View File

@ -2,13 +2,18 @@
{
"description": "not",
"database": {
"schemas": {
"not_0_0": {
"not": {
"type": "integer"
"types": [
{
"name": "not_0_0",
"schemas": {
"not_0_0": {
"not": {
"type": "integer"
}
}
}
}
}
]
},
"tests": [
{
@ -34,16 +39,21 @@
{
"description": "not multiple types",
"database": {
"schemas": {
"not_1_0": {
"not": {
"type": [
"integer",
"boolean"
]
"types": [
{
"name": "not_1_0",
"schemas": {
"not_1_0": {
"not": {
"type": [
"integer",
"boolean"
]
}
}
}
}
}
]
},
"tests": [
{
@ -78,19 +88,24 @@
{
"description": "not more complex schema",
"database": {
"schemas": {
"not_2_0": {
"not": {
"type": "object",
"properties": {
"foo": {
"type": "string"
}
"types": [
{
"name": "not_2_0",
"schemas": {
"not_2_0": {
"not": {
"type": "object",
"properties": {
"foo": {
"type": "string"
}
}
},
"extensible": true
}
},
"extensible": true
}
}
}
]
},
"tests": [
{
@ -129,15 +144,20 @@
{
"description": "forbidden property",
"database": {
"schemas": {
"not_3_0": {
"properties": {
"foo": {
"not": {}
"types": [
{
"name": "not_3_0",
"schemas": {
"not_3_0": {
"properties": {
"foo": {
"not": {}
}
}
}
}
}
}
]
},
"tests": [
{
@ -166,11 +186,16 @@
{
"description": "forbid everything with empty schema",
"database": {
"schemas": {
"not_4_0": {
"not": {}
"types": [
{
"name": "not_4_0",
"schemas": {
"not_4_0": {
"not": {}
}
}
}
}
]
},
"tests": [
{
@ -263,11 +288,16 @@
{
"description": "forbid everything with boolean schema true",
"database": {
"schemas": {
"not_5_0": {
"not": true
"types": [
{
"name": "not_5_0",
"schemas": {
"not_5_0": {
"not": true
}
}
}
}
]
},
"tests": [
{
@ -360,12 +390,17 @@
{
"description": "allow everything with boolean schema false",
"database": {
"schemas": {
"not_6_0": {
"not": false,
"extensible": true
"types": [
{
"name": "not_6_0",
"schemas": {
"not_6_0": {
"not": false,
"extensible": true
}
}
}
}
]
},
"tests": [
{
@ -458,13 +493,18 @@
{
"description": "double negation",
"database": {
"schemas": {
"not_7_0": {
"not": {
"not": {}
"types": [
{
"name": "not_7_0",
"schemas": {
"not_7_0": {
"not": {
"not": {}
}
}
}
}
}
]
},
"tests": [
{
@ -481,14 +521,19 @@
{
"description": "extensible: true allows extra properties in not",
"database": {
"schemas": {
"not_8_0": {
"not": {
"type": "integer"
},
"extensible": true
"types": [
{
"name": "not_8_0",
"schemas": {
"not_8_0": {
"not": {
"type": "integer"
},
"extensible": true
}
}
}
}
]
},
"tests": [
{
@ -507,13 +552,18 @@
{
"description": "extensible: false (default) forbids extra properties in not",
"database": {
"schemas": {
"not_9_0": {
"not": {
"type": "integer"
"types": [
{
"name": "not_9_0",
"schemas": {
"not_9_0": {
"not": {
"type": "integer"
}
}
}
}
}
]
},
"tests": [
{
@ -532,19 +582,24 @@
{
"description": "property next to not (extensible: true)",
"database": {
"schemas": {
"not_10_0": {
"properties": {
"bar": {
"type": "string"
"types": [
{
"name": "not_10_0",
"schemas": {
"not_10_0": {
"properties": {
"bar": {
"type": "string"
}
},
"not": {
"type": "integer"
},
"extensible": true
}
},
"not": {
"type": "integer"
},
"extensible": true
}
}
}
]
},
"tests": [
{
@ -564,18 +619,23 @@
{
"description": "property next to not (extensible: false)",
"database": {
"schemas": {
"not_11_0": {
"properties": {
"bar": {
"type": "string"
"types": [
{
"name": "not_11_0",
"schemas": {
"not_11_0": {
"properties": {
"bar": {
"type": "string"
}
},
"not": {
"type": "integer"
}
}
},
"not": {
"type": "integer"
}
}
}
]
},
"tests": [
{