-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsourceforge-context.jsonld
More file actions
64 lines (62 loc) · 1.35 KB
/
sourceforge-context.jsonld
File metadata and controls
64 lines (62 loc) · 1.35 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
{
"@context": {
"@version": 1.1,
"schema": "https://schema.org/",
"doap": "http://usefulinc.com/ns/doap#",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"Project": "doap:Project",
"Ticket": "schema:BugReport",
"WikiPage": "schema:WebPage",
"BlogPost": "schema:BlogPosting",
"Webhook": "schema:EntryPoint",
"id": "@id",
"name": {
"@id": "schema:name",
"@type": "xsd:string"
},
"shortname": {
"@id": "doap:shortdesc",
"@type": "xsd:string"
},
"description": {
"@id": "schema:description",
"@type": "xsd:string"
},
"url": {
"@id": "schema:url",
"@type": "@id"
},
"created": {
"@id": "schema:dateCreated",
"@type": "xsd:dateTime"
},
"ticket_num": {
"@id": "schema:identifier",
"@type": "xsd:integer"
},
"summary": {
"@id": "schema:name",
"@type": "xsd:string"
},
"status": {
"@id": "schema:status",
"@type": "xsd:string"
},
"assigned_to": {
"@id": "schema:assignee",
"@type": "xsd:string"
},
"labels": {
"@id": "schema:keywords",
"@container": "@set"
},
"created_date": {
"@id": "schema:dateCreated",
"@type": "xsd:dateTime"
},
"mod_date": {
"@id": "schema:dateModified",
"@type": "xsd:dateTime"
}
}
}