Reputation: 51
I am trying to create a sample ontology with some dummy data using protege 5.5. But in the owl file it generated, it is showing something like this:
<?xml version="1.0"?>
<rdf:RDF xmlns="http://www.semanticweb.org/hs/ontologies/2019/3/untitled-ontology-3#"
xml:base="http://www.semanticweb.org/hs/ontologies/2019/3/untitled-ontology-3"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<owl:Ontology rdf:about="http://www.semanticweb.org/hs/ontologies/2019/3/untitled-ontology-3"/>
Seems like this data can be accessed publicly (http://www.semanticweb.org/hs/ontologies/2019/3/untitled-ontology-3). I dont wish to publish my data on the Semantic Web. Is there any way to privatise these datas? Could not find the answer on the web.
Upvotes: 0
Views: 84
Reputation: 9482
dbpedia.org
(the DBpedia project) has decided that http://dbpedia.org/resource/London is a URI that names the city of London. They also happen to publish some data about London at that URI, which is a good way of letting the world know what the URI identifies.www.semanticweb.org
).http://example.org/
for local experiments and private use, because that domain is explicitly allowed to be used by anyone. But if you actually decide to publish your ontology/data at some point, then you should change to a real domain.Upvotes: 4