-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsoftware-development-lifecycle-context.jsonld
More file actions
90 lines (83 loc) · 2.13 KB
/
Copy pathsoftware-development-lifecycle-context.jsonld
File metadata and controls
90 lines (83 loc) · 2.13 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"@context": {
"@version": 1.1,
"sdlc": "https://api-evangelist.com/vocab/sdlc#",
"schema": "https://schema.org/",
"doap": "http://usefulinc.com/ns/doap#",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"Sprint": "sdlc:Sprint",
"Deployment": "sdlc:Deployment",
"BuildArtifact": "sdlc:BuildArtifact",
"SecurityScan": "sdlc:SecurityScan",
"TestRun": "sdlc:TestRun",
"Release": "sdlc:Release",
"Incident": "sdlc:Incident",
"id": "@id",
"type": "@type",
"name": "schema:name",
"description": "schema:description",
"version": "schema:version",
"created": {
"@id": "schema:dateCreated",
"@type": "xsd:dateTime"
},
"modified": {
"@id": "schema:dateModified",
"@type": "xsd:dateTime"
},
"goal": "sdlc:goal",
"capacity": "sdlc:capacity",
"velocity": "sdlc:velocity",
"workItems": "sdlc:workItems",
"team": "sdlc:team",
"board": "sdlc:board",
"completedPoints": "sdlc:completedPoints",
"startDate": {
"@id": "sdlc:startDate",
"@type": "xsd:date"
},
"endDate": {
"@id": "sdlc:endDate",
"@type": "xsd:date"
},
"application": "sdlc:application",
"environment": "sdlc:environment",
"strategy": "sdlc:strategy",
"status": "sdlc:status",
"triggeredBy": "sdlc:triggeredBy",
"pipeline": "sdlc:pipeline",
"commit": "sdlc:commit",
"startedAt": {
"@id": "sdlc:startedAt",
"@type": "xsd:dateTime"
},
"completedAt": {
"@id": "sdlc:completedAt",
"@type": "xsd:dateTime"
},
"rollbackOf": "sdlc:rollbackOf",
"healthCheckUrl": {
"@id": "sdlc:healthCheckUrl",
"@type": "@id"
},
"severity": "sdlc:severity",
"affectedServices": "sdlc:affectedServices",
"resolvedAt": {
"@id": "sdlc:resolvedAt",
"@type": "xsd:dateTime"
},
"repository": {
"@id": "doap:repository",
"@type": "@id"
},
"homepage": {
"@id": "doap:homepage",
"@type": "@id"
},
"language": "doap:programming-language",
"license": {
"@id": "doap:license",
"@type": "@id"
}
}
}