forked from open-telemetry/semantic-conventions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsigs-schema.json
More file actions
71 lines (71 loc) · 2.22 KB
/
sigs-schema.json
File metadata and controls
71 lines (71 loc) · 2.22 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"areas": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the SIG."
},
"owner": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the owner (team user)."
},
"github": {
"type": "string",
"description": "The GitHub handle of the owner (team user)."
}
},
"required": ["name", "github"]
},
"description": "List of owners for the SIG, which can include individuals or teams."
},
"project": {
"type": "string",
"format": "uri",
"description": "The URL of the project associated with the SIG, which must be defined in the OpenTelemetry community repository."
},
"status": {
"type": "array",
"minItems": 1,
"items": {
"type": "string",
"enum": [
"needs_staffing",
"not_accepting_changes",
"accepting_contributions",
"active",
"inactive"
]
},
"description": "A list of predefined labels representing the SIG's state or needs."
},
"labels": {
"type": "array",
"minItems": 1,
"items": {
"type": "string",
"description": "Labels representing the areas this SIG is responsible for (e.g., area:k8s, area:database)."
},
"description": "A list of areas assigned to the SIG. Used for automation and context mapping."
},
"notes": {
"type": "string",
"description": "Additional notes about the SIG."
}
},
"required": ["name", "labels", "status"]
}
}
},
"required": ["areas"]
}