sszuev commented on code in PR #2461: URL: https://github.com/apache/jena/pull/2461#discussion_r1597656296
########## jena-core/src/main/java/org/apache/jena/vocabulary/RDF.java: ########## @@ -59,6 +69,14 @@ public static Property li( int i ) public static final Resource Statement = Init.Statement(); public static final Resource List = Init.List(); public static final Resource nil = Init.nil(); + /** + * This property is used explicitly in facet restrictions. + * Also, it can be used as a literal type + * (e.g., {@code 'test'^^rdf:PlainLiteral}) in old ontologies based on RDF-1.0 + * + * @see <a href="https://www.w3.org/TR/rdf-plain-literal">rdf:PlainLiteral: A Datatype for RDF Plain Literals (Second Edition)</a> + */ + public final static Resource PlainLiteral = Init.PlainLiteral(); Review Comment: `rdf:PlainLiteral` is used by jena-ontapi (https://github.com/apache/jena/blob/main/jena-ontapi/src/main/java/org/apache/jena/ontapi/common/OntVocabulary.java#L361), since it is present in the specification: https://www.w3.org/TR/owl2-quick-reference/#Built-in_Datatypes ( OWL 2 Web Ontology Language Quick Reference Guide ) ########## jena-core/src/main/java/org/apache/jena/vocabulary/XSD.java: ########## @@ -178,6 +180,36 @@ public class XSD { /** Resource URI for xsd:gMonthDay */ public static Resource gMonthDay; + /** Property URI for xsd:length */ Review Comment: I meant `org.apache.jena.rdf.model.Property`, it is used as a predicate in facet restrictions -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: pr-unsubscr...@jena.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: pr-unsubscr...@jena.apache.org For additional commands, e-mail: pr-h...@jena.apache.org