Initial schemas and validation with extension workplan

This commit is contained in:
2026-05-03 22:12:46 +02:00
parent b96b1fb745
commit 8c9129c371
15 changed files with 1025 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
---
version: "1.0.0"
---
# Simple Document Schema
```json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"required": ["headings"],
"properties": {
"headings": {
"type": "array",
"minItems": 1
}
}
}
```