-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgarden.schema.json
More file actions
40 lines (40 loc) · 1.21 KB
/
garden.schema.json
File metadata and controls
40 lines (40 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://garden.omni.dev/garden.schema.json",
"title": "garden.json",
"description": "Ecosystem specification as a composable directed graph",
"type": "object",
"properties": {
"$schema": {
"type": "string",
"description": "Schema URL for validation"
},
"version": {
"type": "string",
"pattern": "^\\d+\\.\\d+\\.\\d+$",
"description": "Semantic version of this garden.json file"
},
"core": {
"$ref": "slices/core.schema.json",
"description": "Core garden identity and metadata (required)"
},
"sprouts": {
"$ref": "slices/sprouts.schema.json",
"description": "Products and services in the garden"
},
"maintainers": {
"$ref": "slices/maintainers.schema.json",
"description": "People who maintain the garden"
},
"theme": {
"$ref": "slices/theme.schema.json",
"description": "Visual theming for garden rendering"
},
"composition": {
"$ref": "slices/composition.schema.json",
"description": "Garden hierarchy (subgardens, supergardens)"
}
},
"required": ["version", "core"],
"additionalProperties": false
}