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,12 +2,11 @@
{
"description": "validation of string-encoded content based on media type",
"database": {
"schemas": [
{
"contentMediaType": "application/json",
"$id": "content_0_0"
"schemas": {
"content_0_0": {
"contentMediaType": "application/json"
}
]
}
},
"tests": [
{
@ -42,12 +41,11 @@
{
"description": "validation of binary string-encoding",
"database": {
"schemas": [
{
"contentEncoding": "base64",
"$id": "content_1_0"
"schemas": {
"content_1_0": {
"contentEncoding": "base64"
}
]
}
},
"tests": [
{
@ -82,13 +80,12 @@
{
"description": "validation of binary-encoded media type documents",
"database": {
"schemas": [
{
"schemas": {
"content_2_0": {
"contentMediaType": "application/json",
"contentEncoding": "base64",
"$id": "content_2_0"
"contentEncoding": "base64"
}
]
}
},
"tests": [
{
@ -132,8 +129,8 @@
{
"description": "validation of binary-encoded media type documents with schema",
"database": {
"schemas": [
{
"schemas": {
"content_3_0": {
"contentMediaType": "application/json",
"contentEncoding": "base64",
"contentSchema": {
@ -149,10 +146,9 @@
"type": "integer"
}
}
},
"$id": "content_3_0"
}
}
]
}
},
"tests": [
{