📊 RDF Store 1

Sensor / IoT Metadata — SOSA/SSN オントロジー

✓ 86 triples

API エンドポイント

メソッドパス説明
GET / POST/sparqlSPARQL クエリ実行
GET/api/healthヘルスチェック
GET/api/triplesTriple 一覧
GET/api/namespaces名前空間一覧

登録済み名前空間

aky:https://akylabo.com/ontology/
akydev:https://akylabo.com/device/
brick:https://brickschema.org/schema/Brick#
csvw:http://www.w3.org/ns/csvw#
dc:http://purl.org/dc/elements/1.1/
dcam:http://purl.org/dc/dcam/
dcat:http://www.w3.org/ns/dcat#
dcmitype:http://purl.org/dc/dcmitype/
dcterms:http://purl.org/dc/terms/
doap:http://usefulinc.com/ns/doap#
foaf:http://xmlns.com/foaf/0.1/
geo:http://www.opengis.net/ont/geosparql#
odrl:http://www.w3.org/ns/odrl/2/
org:http://www.w3.org/ns/org#
owl:http://www.w3.org/2002/07/owl#
prof:http://www.w3.org/ns/dx/prof/
prov:http://www.w3.org/ns/prov#
qb:http://purl.org/linked-data/cube#
rdf:http://www.w3.org/1999/02/22-rdf-syntax-ns#
rdfs:http://www.w3.org/2000/01/rdf-schema#
schema:https://schema.org/
schema1:http://schema.org/
sh:http://www.w3.org/ns/shacl#
skos:http://www.w3.org/2004/02/skos/core#
sosa:http://www.w3.org/ns/sosa/
ssn:http://www.w3.org/ns/ssn/
time:http://www.w3.org/2006/time#
vann:http://purl.org/vocab/vann/
void:http://rdfs.org/ns/void#
wgs:https://www.w3.org/2003/01/geo/wgs84_pos#
xml:http://www.w3.org/XML/1998/namespace
xsd:http://www.w3.org/2001/XMLSchema#

サンプル SPARQL クエリ

全デバイス一覧

登録されている全センサー/IoT デバイスをリスト

PREFIX sosa: <http://www.w3.org/ns/sosa/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?device ?label WHERE { ?device a sosa:Sensor ; rdfs:label ?label . }

MQTT トピック一覧

全 MQTT トピックとその説明

PREFIX aky: <https://akylabo.com/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?topic ?desc WHERE { ?t a aky:MQTTTopic ; aky:topicName ?topic ; rdfs:comment ?desc . }