Skip to content

Commit

Permalink
check for rdf:langString Literals #21
Browse files Browse the repository at this point in the history
  • Loading branch information
jimkont committed Aug 27, 2014
1 parent 4c46ac9 commit 7c358f5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ rutg:RDFSRANGEL a rut:TestGenerator ;
?P1 rdfs:range ?D1 .
?P1 rdf:type/rdfs:subClassOf* owl:DatatypeProperty .
} UNION {
?P1 rdfs:range rdf:Literal .
?P1 rdfs:range ?D1 .
FILTER ( ?D1 in (rdf:Literal, rdf:langString) ) .
} UNION {
?P1 schema:rangeIncludes ?D1 .
?D1 rdf:type|rdfs:subClassOf+ schema:DataType .
Expand Down

0 comments on commit 7c358f5

Please sign in to comment.