-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcorpses.schema.json
45 lines (45 loc) · 1.47 KB
/
corpses.schema.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
42
43
44
45
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/victorfrye/microsoftgraveyard/main/files/corpses.schema.json",
"type": "object",
"properties": {
"corpses": {
"description": "The list of dead products, killed by Microsoft",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"description": "The name and title of the item",
"type": "string"
},
"qualifier": {
"description": "An optional qualifier for the item",
"type": "string"
},
"birthDate": {
"description": "The date the item was released, or announced if release data is not feasible",
"type": "string",
"format": "date"
},
"deathDate": {
"description": "The date the item was finally discontinued",
"type": "string",
"format": "date"
},
"description": {
"description": "A description of the item",
"type": "string"
},
"link": {
"description": "A link to a web page with more information about the item (this should not be the page which announces the item's death)",
"type": "string",
"format": "uri"
}
},
"required": ["name", "deathDate", "description", "link"]
}
},
"required": ["corpses"]
}
}