-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsoftware-iodata.jsonld
More file actions
29 lines (28 loc) · 1.27 KB
/
software-iodata.jsonld
File metadata and controls
29 lines (28 loc) · 1.27 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
{
"@context": {
"iodata": "https://w3id.org/software-iodata#",
"schema": "http://schema.org/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"consumesData": { "@id": "iodata:consumesData" },
"producesData": { "@id": "iodata:producesData" },
"subClassOf": { "@id": "rdfs:subClassOf" },
"label": { "@id": "rdfs:label" },
"comment": { "@id": "rdfs:comment" },
"Property": { "@id": "rdf:Property" }
},
"@graph": [
{
"@id": "consumesData",
"@type": "Property",
"label": "Consumes Data",
"comment": "The software may take the specified data as input. The target object is typically interpreted as a template describing a class of data. For example, a Dataset in NetCDF format containing precipitation and time variables (in their respective units)"
},
{
"@id": "producesData",
"@type": "Property",
"label": "Produces Data",
"comment": "The software may deliver the specified data as output. The target object is typically interpreted as a template describing a class of data. For example, a text document in CSV format."
}
]
}