;; Ontology 'source' in functional syntax
Prefix(: = )
Prefix(rdfs: = )
Ontology(
SubObjectPropertyOf(Annotation(rdfs:comment "I hereby annotate this") ObjectPropertyChain(:q :r) :p))
;; Ontology 'source' parsed
(ontology (:blank :ontology)
(subobjectpropertyof
(annotation !rdfs:comment "I hereby annotate this")
(objectpropertychain !ex:q !ex:r) !ex:p))
;; Ontology 'source' in rdf/xml
I hereby annotate this
;; Ontology 'source' as ntriples
_:b1 .
_:b2 .
_:b3 .
_:b3 .
_:b2 _:b3 .
_:b2 .
_:b4 .
_:b4 .
_:b4 .
_:b4 _:b2 .
_:b4 "I hereby annotate this"^^ .