-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathregistry.schema.json
More file actions
39 lines (38 loc) · 1.03 KB
/
Copy pathregistry.schema.json
File metadata and controls
39 lines (38 loc) · 1.03 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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Engineering Baseline Registry",
"type": "object",
"required": ["schemaVersion", "defaultProfile", "profiles", "packages"],
"properties": {
"schemaVersion": {"const": 1},
"defaultProfile": {"type": "string"},
"profiles": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {"type": "string"},
"uniqueItems": true
}
},
"packages": {
"type": "object",
"additionalProperties": {
"type": "object",
"required": ["type"],
"properties": {
"type": {"enum": ["local", "git"]},
"path": {"type": "string"},
"repository": {"type": "string"},
"revision": {"type": "string", "pattern": "^[0-9a-f]{40}$"},
"source": {
"type": "object",
"properties": {
"cursor": {"type": "string"},
"claude": {"type": "string"}
}
}
}
}
}
}
}