-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrants.rq
More file actions
28 lines (26 loc) · 1.56 KB
/
Copy pathgrants.rq
File metadata and controls
28 lines (26 loc) · 1.56 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
#+ summary: "Access to all SensorThings resources begins at the base resource path"
#+ description: "Navigating to the base resource path will return a JSON array of the available SensorThings resource endpoints. NOTE: make sure response content type is application/json"
#+ endpoint: "https://rohub2020-api-virtuoso-route-rohub.apps.paas-dev.psnc.pl/sparql"
#+ method: GET
#+ endpoint_in_url: False
#+ transform: {
#+ "description": "?info",
#+ "$anchor": "description",
#+ "value": {
#+ "name": "?name",
#+ "url": "?url",
#+ }
#+ }
PREFIX iliad-api: <https://w3id.org/iliad/jf/api/>
SELECT DISTINCT ?info ?name ?url
WHERE {
VALUES (?info ?name ?url) {
("OGC SensorThings API base resource path" "Things" <https://w3id.org/iliad/jf/api/v1.0/Things>)
("OGC SensorThings API base resource path" "Locations" <https://w3id.org/iliad/jf/api/v1.0/Locations>)
("OGC SensorThings API base resource path" "HistoricalLocations" <https://w3id.org/iliad/jf/api/v1.0/HistoricalLocations>)
("OGC SensorThings API base resource path" "Datastreams" <https://w3id.org/iliad/jf/api/v1.0/Datastreams>)
("OGC SensorThings API base resource path" "Sensors" <https://w3id.org/iliad/jf/api/v1.0/Sensors>)
("OGC SensorThings API base resource path" "Observations" <https://w3id.org/iliad/jf/api/v1.0/Observations>)
("OGC SensorThings API base resource path" "ObservedProperties" <https://w3id.org/iliad/jf/api/v1.0/ObservedProperties>)
("OGC SensorThings API base resource path" "FeaturesOfInterest" <https://w3id.org/iliad/jf/api/v1.0/FeaturesOfInterest>)}
}