Files
gmconfig/test/data/nested_refs_schema.json
T
2026-05-13 20:43:01 +02:00

30 lines
764 B
JSON

{
"type": "object",
"properties": {
"tx" : { "$ref" : "#/components/schemas/Tx" }
},
"components": {
"schemas": {
"Tx": {
"type": "object",
"properties": {
"from": {
"allOf": [
{ "$ref": "#/components/schemas/Pubkey" },
{ "x-serialization": {
"tags": ["ak"]
}}
]
}
}
},
"Pubkey": {
"type": "string",
"x-serialization": {
"tags": ["ak", "ct"]
}
}
}
}
}