chore: JSPG Engine tuple decoupling and core routing optimizations

This commit is contained in:
2026-04-13 22:41:32 -04:00
parent 665a821bf9
commit 0017c598e1
57 changed files with 5510 additions and 5166 deletions

View File

@ -2,8 +2,8 @@
{
"description": "a schema given for prefixItems",
"database": {
"schemas": [
{
"schemas": {
"prefixItems_0_0": {
"prefixItems": [
{
"type": "integer"
@ -11,10 +11,9 @@
{
"type": "string"
}
],
"$id": "prefixItems_0_0"
]
}
]
}
},
"tests": [
{
@ -92,15 +91,14 @@
{
"description": "prefixItems with boolean schemas",
"database": {
"schemas": [
{
"schemas": {
"prefixItems_1_0": {
"prefixItems": [
true,
false
],
"$id": "prefixItems_1_0"
]
}
]
}
},
"tests": [
{
@ -140,17 +138,16 @@
{
"description": "additional items are allowed by default",
"database": {
"schemas": [
{
"schemas": {
"prefixItems_2_0": {
"prefixItems": [
{
"type": "integer"
}
],
"extensible": true,
"$id": "prefixItems_2_0"
"extensible": true
}
]
}
},
"tests": [
{
@ -171,16 +168,15 @@
{
"description": "prefixItems with null instance elements",
"database": {
"schemas": [
{
"schemas": {
"prefixItems_3_0": {
"prefixItems": [
{
"type": "null"
}
],
"$id": "prefixItems_3_0"
]
}
]
}
},
"tests": [
{
@ -199,17 +195,16 @@
{
"description": "extensible: true allows extra items with prefixItems",
"database": {
"schemas": [
{
"schemas": {
"prefixItems_4_0": {
"prefixItems": [
{
"type": "integer"
}
],
"extensible": true,
"$id": "prefixItems_4_0"
"extensible": true
}
]
}
},
"tests": [
{