generated from coulomb/repo-seed
20 lines
266 B
Markdown
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
|
|
}
|
|
}
|
|
}
|
|
```
|