데이터의 속성 레이블을 표시하는 방법은 무엇입니까? 나는 dbpedia 온톨로지에서 일하고 있습니다.
아래 예제는 sparql 쿼리를 만들고 싶습니다. 이 결과는 데이터 유형 또는 객체 유형이 혼합되어 있으므로 데이터 유형 property name에 원합니다.데이터 형식 이름에 대해서만 sparql 쿼리를 만들려면 어떻게해야합니까?
SELECT ?p ?pLabel ?domain ?range { ?p rdfs:domain http://dbpedia.org/ontology/Person> . }
예 : 다음 데이터 유형의 예입니다,하지만, 나는 유형의 이름을 표시하려는 경우에만 데이터 유형을 선택할 수 없습니다.
"chat"
'chat'@fr with language tag "fr"
"xyz"^^<http://example.org/ns/userDatatype>
"abc"^^appNS:appDataType
'''The librarian said, "Perhaps you would enjoy 'War and Peace'."'''
1, which is the same as "1"^^xsd:integer
1.3, which is the same as "1.3"^^xsd:decimal
1.300, which is the same as "1.300"^^xsd:decimal
1.0e6, which is the same as "1.0e6"^^xsd:double
true, which is the same as "true"^^xsd:boolean
false, which is the same as "false"^^xsd:boolean
expect to result
(전용 데이터 타입)
typename <- field name
string <- type name
int
boolean
int
double
boolean
가 어떻게 SPARQL 쿼리를 만들기 위해를 초래할 것으로 예상?
답장을 보내 주셔서 감사합니다. 데이터 유형() 함수가 올바르지 만 ... 내 질문은 .. 예 : http : //www.w3.org/2001/XMLSchema#gYea-> String (Result ! 리터럴 타입으로) 어떻게 결과를 ~ ~? ;;; -_- ;;;; –
질문과 코멘트를 몇 번 읽고 나면 URI 대신/대신에 반환 된 데이터 유형의 _label_을 원한다고 생각하는 것 같습니다. 그 맞습니까? –