さらに詳しい情報を指定する必要があります。 like
@prefix crop: <http://example.org/foo#> .
@prefix crops: <http://example.org/foo#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/TR/rdf-schema/> .
crop:AttributeValue a rdfs:Class . crop:SomeValue a rdfs:Class; rdfs:subClassOf crops:AttributeValue .
<http://example.org/foo#SomeValue/7> a crops:SomeValue .
crop:SomeValue a rdf:Property ; rdfs:range crops:SomeValue .
作物と作物の名前空間を正しいものに置き換えます。
これは、ここで
<?xml version="1.0"?>
<rdf:RDF xmlns:rdfs="http://www.w3.org/TR/rdf-schema/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:crops="http://example.org/foo#">
<rdfs:Class rdf:about="http://example.org/foo#SomeValue">
<rdfs:subClassOf>
<rdfs:Class rdf:about="http://example.org/foo#AttributeValue" />
</rdfs:subClassOf>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" />
<rdfs:range rdf:resource="http://example.org/foo#SomeValue" />
</rdfs:Class>
<crops:SomeValue rdf:about="http://example.org/foo#SomeValue/7" />
</rdf:RDF>
RDF/XMLで以下のことになるが、変換のためのオンラインツールです:http://www.rdfabout.com/demo/validator/
あなたのポストに感謝します。あなたは救助のために来ました:) RDFバリデーター、1つのフォームJena、もう1つはw3cバリデーターです: 次のRDFを検証しようとすると、イエナバリの罰金、しかし問題は、W3Cのバリデータに表示され、ここではRDFです: { \t \t \t \t \t rdf:Property>} エラーは次のとおりです: エラー:{E201} rdf:アトリぶた 何が起こっているかお気軽にお聞かせください。 –
rdf:RDFラッパー要素、すべてのXML名前空間宣言、および適切なURIを参照する必要があるリソースを指定する必要があります。バリデーターは次のように文句を言わない: ' rdf:Property> ' –