I need to create RDF container list, Bag or sequence using Protégé.
I also would like to know how we can define a RDF statement and blank nodes in our OWL ontology.
I need to create RDF container list, Bag or sequence using Protégé.
I also would like to know how we can define a RDF statement and blank nodes in our OWL ontology.
Protégé is an OWL ontology editor. OWL can be serialized using RDF, but aside from that, they're completely different. OWL has no concept of blank node.
You generally can't use RDF container vocabulary in OWL ontologies because the RDF serialization of the OWL ontology may use RDF containers, so it's possible for ambiguities to arise. But if you want to try, you'd just need to declare the appropriate properties and classes in the ontology (rdf:List, rdf:first, rdf:rest rdf:nil, rdf:Bag, rdf:member, rdf:_1, rdf:_2, ...) and create the structure you want.
Now there is RDF-Protege, that is an ONT-API-based fork, where this is possible via SPARQL or RDF tree tabs. Disclaimers: right now RDF-Protege is a kind of "pet-project" with weak development potential, which has been appeared as an experiment and as a test-stand for ONT-API.