Files
markitect-tool/tests/fixtures/simple-document-schema.md

20 lines
266 B
Markdown

---
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
}
}
}
```