Add framework contract test corpus

This commit is contained in:
2026-07-27 21:59:53 +00:00
parent 5edb24a9c1
commit 2bbf13e739
12 changed files with 187 additions and 23 deletions

View File

@@ -0,0 +1,19 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"required": ["events"],
"properties": {
"events": {
"type": "array",
"items": {
"type": "object",
"required": ["title"],
"properties": {
"title": {"type": "string"}
},
"additionalProperties": false
}
}
},
"additionalProperties": false
}