-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Follow subClassOf when including ontologies in XML import schemas (#991)
* fix (ResourcesRouteV1): Follow subClassOf when including ontologies in XML import schemas. * docs: Update release notes. * test (ResourcesResponderV1): Fix test.
- Loading branch information
Benjamin Geer
authored
Sep 11, 2018
1 parent
392636f
commit dce986f
Showing
6 changed files
with
86 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
@prefix xml: <http://www.w3.org/XML/1998/namespace> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
@prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
@prefix foaf: <http://xmlns.com/foaf/0.1/> . | ||
@prefix knora-base: <http://www.knora.org/ontology/knora-base#> . | ||
@prefix salsah-gui: <http://www.knora.org/ontology/salsah-gui#> . | ||
|
||
@prefix anything: <http://www.knora.org/ontology/0001/anything#> . | ||
|
||
@base <http://www.knora.org/ontology/0001/empty-thing> . | ||
|
||
# A trivial ontology, based on anything-onto.ttl, used only for testing Knora. | ||
|
||
@prefix : <http://www.knora.org/ontology/0001/empty-thing#> . | ||
<http://www.knora.org/ontology/0001/empty-thing> rdf:type owl:Ontology ; | ||
rdfs:label "The empty thing ontology" ; | ||
knora-base:attachedToProject <http://rdfh.ch/projects/0001> . | ||
|
||
:EmptyThing rdf:type owl:Class ; | ||
|
||
rdfs:subClassOf anything:TrivialThing ; | ||
|
||
knora-base:resourceIcon "thing.png" ; | ||
|
||
rdfs:label "Leeres Ding"@de , | ||
"Chose vide"@fr , | ||
"Cosa vuota"@it , | ||
"Empty thing"@en ; | ||
|
||
rdfs:comment """An empty thing."""@en . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters