
sparql.FieldByID.rq Maven / Gradle / Ivy
# Select a Field by its tag
PREFIX rdf:
PREFIX rdfs:
PREFIX orch:
SELECT ?name ?datatype ?description
WHERE {
?field rdfs:label ?name;
rdf:type orch:Field;
orch:hasDataType ?type;
orch:hasId 60 .
OPTIONAL {?field rdfs:comment ?description .}
?type rdfs:label ?datatype .
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy