-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.json
More file actions
35 lines (35 loc) · 965 Bytes
/
schema.json
File metadata and controls
35 lines (35 loc) · 965 Bytes
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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"$schema": "https://raw.githubusercontent.com/intrigsoft/intrig-registry/refs/heads/main/schema.json",
"sources": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": { "type": "string" },
"name": { "type": "string" },
"specUrl": { "type": "string", "format": "uri" }
},
"required": ["id", "name", "specUrl"],
"additionalProperties": false
},
"minItems": 1
},
"generator": {
"type": "string",
"enum": ["react", "vue", "angular", "svelte"]
},
"codeAnalyzer": {
"type": "object",
"properties": {
"tsConfigPath": { "type": "string" }
},
"required": ["tsConfigPath"],
"additionalProperties": false
}
},
"required": ["sources", "generator"],
"additionalProperties": false
}