-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathissue-tracking-v1.json
41 lines (41 loc) · 1.31 KB
/
issue-tracking-v1.json
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
{
"$id": "http://sit-it.org/schemas/issue-tracking-v1.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"$comment": "Draft revision",
"definitions": {
"comment": {
"$ref": "http://sit-it.org/schemas/commenting-v1.json#/definitions/comment"
},
"issue": {
"type": "object",
"properties": {
"authors": {
"$ref": "http://sit-it.org/schemas/authorship-v1.json#/definitions/author"
},
"summary": {
"type": "string"
},
"details": {
"type": "string"
},
"last_updated_timestamp": {
"$ref": "http://sit-it.org/schemas/timestamp-v1.json#"
},
"timestamp": {
"$ref": "http://sit-it.org/schemas/timestamp-v1.json#"
},
"state": {
"type": "string",
"enum": ["open", "closed"]
},
"comments": {
"type": "array",
"items": {
"$ref": "#/definitions/comment"
}
}
},
"required": ["summary"]
}
}
}