UNPKG

562 BJSONView Raw
1{
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "$id": "https://schema.stenci.la/v1/CodeTypes.schema.json",
4 "title": "CodeTypes",
5 "category": "code",
6 "description": "All type schemas that are derived from Code",
7 "anyOf": [
8 {
9 "$ref": "Code.schema.json"
10 },
11 {
12 "$ref": "CodeBlock.schema.json"
13 },
14 {
15 "$ref": "CodeChunk.schema.json"
16 },
17 {
18 "$ref": "CodeExecutable.schema.json"
19 },
20 {
21 "$ref": "CodeExpression.schema.json"
22 },
23 {
24 "$ref": "CodeFragment.schema.json"
25 }
26 ]
27}