diff --git a/.gitignore b/.gitignore index f36087e6..6441f4bf 100644 --- a/.gitignore +++ b/.gitignore @@ -206,7 +206,7 @@ nbactions.xml **/updateHistory.json /web-app/fiboMapper/fibo/** .env - +.vscode/ # Protege catalog-v001.xml diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index ae879409..00000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,74 +0,0 @@ -# Changelog -All notable changes to this project will be documented in this file. - -## [0.4.0] - ongoing -### Added -- Search by using class names and definitions in hints and search bar. -- Added usage info for classes and object property. -- Added Levenstein distance in search. -- Displaying direct sub-properties. -- Showing simple ontology stats, e.g. number of domains, modules, ontologies, or properties. -- Added a new module named `onto-viewer-toolkit` containing the command line application that will serve as an ontology-handling tool. - -### Changed -- Fixed and rebuild all visitors which generate graphs. -- Group inherited restrictions by the class they are coming from. -- Restructure of the codebase: each Maven module has its package name based on a module name, e.g., the `onto-viewer-web-app` module has the `org.edmcouncil.spec.ontoviewer.webapp` package. - -## [0.3.2] - 2021-02-19 -### Added -- Displaying 'cardinality' for relations in the graph. -- Added a double arrow to display restrictions with 'or' in the graphs with 'equivalentTo' type's. - -## [0.3.1] - 2021-01-11 -### Added -- Add 'equivalent to' type to the handle Inherited Axioms method PR-64 - -## [0.3.0] - 2020-12-16 -### Added -- reload the ontology and all used resources in the application when the update request arrives - -### Changed -- rest api mapping - more information about it in */api-doc/rest_changes_0_3_0.md* -- used AutoOntologyLoader for more efficient ontology loading, now we can add mapper directory with ontologies and these ontologies will not be downloaded from the network when imported in ontology or defined in configuration file in ```...``` tags -- status controller now has @Deprecated, and will be deleted in future release, please use ```viewer-adress/actuator/health``` insted that ```viewer-adress/status``` -- rebuilding the configuration file and its loader -- splitting the configuration file into 5 files -- So far, the IRI scope has been defined in the configuration. Many ontologies have more than one scope and it is counterintuitive to complete this field. To skip this step, the ontology scope is generated automatically from the IRI loaded ontologies. -- Fixed problem with redirecting a links to another pages. -- Incorrect graph display has been fixed. The restrictions with "or" are correctly displayed in the graph. - - - -## [0.2.0] - 2020-06-02 -### Added -- handle dataproperties annotaions -- load default ontologies (dcterms, owl, rdf-schema, rdf-syntax, skos, fibo-glosary) from resource folder in application -- full configurable searcher -- specially endpoint for hints -- mark not released resources(PR#40) -- displaying OWLDataExactCardinality in graph -- displaying Annotation Property -- create rest api documentation(api-doc/rest_api.md) - -### Changed -- changing the storing and returning graph value from generating string to objects -- small changes in config file structure -- change graph returned structures(more info in directory api-doc/graph.md ) - -### Removed -- deprecated methods in fibo data handler - - -## [0.1.0] - 2019-11-08 -### Added -- external properties file used for configuration -- rest api -- data grouping function, defined in configuration file, groups can be renamed -- extract and display direct subclasses, individuals, inherited axioms, meta information about ontologies, axioms, taxonomy, -- display information about modularization on webapp -- sort elements -- load ontology using url or file -- label support -- graph from the OWLRestriction for class -- ignore some items to display defined in configuration file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1386a6ea..8ba36914 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,19 +1,19 @@ - + # How to contribute -Since the first release of FIBO Viewer, [this repository](https://github.com/edmcouncil/fibo-viewer) is considered to be the only official space for the community discussion. So, this repository is where the project community develops the new proposals and discusses changes (via GitHub issues). +Since the first release of onto-viewer, [this repository](https://github.com/edmcouncil/onto-viewer) is considered to be the only official space for the community discussion. So, this repository is where the project community develops the new proposals and discusses changes (via GitHub issues). -If you want to contribute to FIBO Viewer, you'll need to create a login for [GitHub](https://github.com). Then you can contribute to FIBO Viewer in two ways. +If you want to contribute to onto-viewer, you'll need to create a login for [GitHub](https://github.com). Then you can contribute to onto-viewer in two ways. The first way is to suggest changes via GitHub issues, e.g., the suggested changes may concern the GUI of application. The second way is to contribute directly to the code. For that purpose, you'll need to do the following things: -* Install a git client. In FIBO, we recommend [Sourcetree](https://www.sourcetreeapp.com) from Atlassian -* Make a "fork" of the [fibo-viewer](https://github.com/edmcouncil/fibo-viewer) repository. +* Install a git client, e.g., [Sourcetree](https://www.sourcetreeapp.com) from Atlassian +* Make a "fork" of the [onto-viewer](https://github.com/edmcouncil/onto-viewer) repository. * Clone your fork to your local repository. -* Submit a Pull Request to the [fibo-viewer](https://github.com/edmcouncil/fibo-viewer) repository. +* Submit a Pull Request to the [onto-viewer](https://github.com/edmcouncil/onto-viewer) repository. # Developer Certificate of Origin (DCO) @@ -25,210 +25,10 @@ Please read the full text of the [DCO](DCO). Contributors sign-off that they adhere to these requirements by adding a Signed-off-by line to commit messages. -# FIBO Viewer project structure - - -## Fibo-Viewer-Core module (viewer-core folder) - -This module contains methods responsible for extracting ontological components of FIBO, i.e., its modules, taxonomy, classes, properties, individuals, axioms, etc. - -* For a given IRI, the module checks the type of object the IRI belongs to. An object type can be class, individual, data property, or object property. Then for the IRI, Fibo-Viewer-Core gets information from FIBO about the resource represented by this IRI (e.g., annotations, taxonomy, subclasses, inherited axioms, metadata, instances, subelements, etc.). In the next step, the resource information is grouped and labeled. -* FIBO has a modular structure and contains meta-information about many domain ontologies of which it is composed. Fibo-Viewer-Core checks for a given FIBO IRI, whether it is FIBO ontology or FIBO entity. If IRI ends with '/', it means it is an ontology. In other case is an entity. -* Labels that have been used once in a program session are saved in memory. -* Fibo-Viewer-Core generates graphs from FIBO restrictions. For a given FIBO class, its graph is displayed at the bottom of the page. -* FIBO individuals are handled by OWLReasonerFactory. - - -## Fibo-Config-Loader module (config-loader folder) -This module is responsible for loading configuration for FIBO Viewer. - - -## Fibo-Web-App module (web-app folder) -This module is responsible for displaying the input data from the Fibo-Viewer-Core module. - -* Fibo-Web-App displays data using JSP templates. -* The css files are located in the "resources" directory. -* The vis.css file is responsible for displaying graphs. -* The graphs are displayed by vis-network. - - -web-app folder condains XML file "fibo\_viewer\_config.xml" that defines the FIBO Viewer configuration. Let us walk through the file. - - - - -### Load FIBO - -FIBO can be loaded from the "AboutFIBOProd" file located in a folder. To load FIBO from the file on your disc, provide the path to the file as follows: - -``` -PATH/AboutFIBOProd.rdf -``` - -FIBO can also be loaded from URL. E.g. - -``` -https://spec.edmcouncil.org/fibo/ontology/master/latest/AboutFIBOProd.rdf -``` - -If neither URL nor path is provided, FIBO Viewer will look for the "AboutFIBOProd" file in the default folder. - -### FIBO Development and FIBO Product -> -> -> Note that FIBO Development is published in real time as changes are -> incorporated by the FIBO Community Group and consists of draft as well -> vetted content. The latest version is always avaliable at -> -> * [https://spec.edmcouncil.org/fibo/ontology/master/latest/AboutFIBODev.ttl](https://spec.edmcouncil.org/fibo/ontology/master/latest/AboutFIBODev.ttl) -> -> FIBO Production is published at the end of each calendar quarter and has been vetted by SMEs and passed standard industry hygiene tests for OWL. To access the latest FIBO Production use the following URL: -> -> * [https://spec.edmcouncil.org/fibo/ontology/master/latest/AboutFIBOProd.ttl](https://spec.edmcouncil.org/fibo/ontology/master/latest/AboutFIBOProd.ttl) -> -> and to read FIBO from a give quarter use the following URL: -> -> * [https://spec.edmcouncil.org/fibo/ontology/master/QUATER_REFERENCE/AboutFIBOProd.ttl](https://spec.edmcouncil.org/fibo/ontology/master/2019Q3/AboutFIBOProd.ttl) -> -> An example of QUATER_REFERENCE may be "2019Q3". - - - -### Labels display - -Exemplary labels display configuration is shown below. - -``` - - TRUE - LABEL - FALSE - en - FIRST - - - http://www.w3.org/2000/01/rdf-schema#Literal - literal - - - http://www.w3.org/2001/XMLSchema#string - string - - - -``` - - -If you want names for FIBO resources to be displayed instead of IRI fragments, enter "TRUE" between displayLabel tags: - -``` - TRUE ``` - -If "FALSE" is entered, IRI fragments will be displayed. - -If you want rdfs:labels for the FIBO resources to be display, enter "TRUE" between the displayLabel tags and "RDS_LABEL" between the labelPriority tags. - -``` - TRUE - RDFS_LABEL -``` - -If you want the user-defined names to be displayed for the resources, enter "TRUE" between the displayLabel tags and "USER_DEFINED" between labelPriority tags: - -``` - TRUE - USER_DEFINED -``` - -If "RDFS_LABEL" is entered, but a FIBO resource does not have rdfs:label, FIBO Viewer will automatically look for names defined between the userDefinedNamesList tags, e.g.: - -``` - - - http://www.w3.org/2000/01/rdf-schema#Literal - literal - - - http://www.w3.org/2001/XMLSchema#string - string - - -``` - -To display labels with a given language, enter "TRUE" between the forceLabelLang tags. - -``` - TRUE - en -``` - -If the language is not present, an IRI fragment will be displayed. -When a resource has more than one label, then one of them randomly picked will be displayed. - -If a language tag is not forced, we may still have a situation where we have more than one label for the resource, and none of them has a language tag. - -Line with code above defines an action when a label is not forced, and the entity has more than one label, but none has a language. "FIRST" value means that one of them randomly picked will be displayed. "FRAGMENT" value determines that the IRI fragment of the resource will be displayed. - -``` - FALSE - FIRST -``` - -Ontological information that a user wants to hide should be placed between ignore tags, e.g.: - -``` - - SubObjectPropertyOf - -``` - -### URLs that are and are not IRIs of FIBO resources - -Between the uriNamespace tags that are wrapped in the scopeIri tags, there are defined the URLs that are to be treated as the resource IRIs. - -``` - - https://spec.edmcouncil.org/fibo/ontology - https://www.omg.org/spec/ - -``` - -### Grouping - -In the fibo\_vierwer\_config.xml file, there are tags that are responsible for displaying group names and the list of grouped items. Group elements must have a packaging tag. - -``` - - - Natural Language characteristic - http://www.w3.org/2000/01/rdf-schema#label - https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/synonym - ... - - - - Ontological characteristic - @viewer.axiom.EquivalentClasses - @viewer.axiom.SubClassOf - ... - - -``` - -To display items, enter their local IDs or IRIs between groupItem tags. Each list of groups should be wrapped into groups tags. The display order of groups and their items is determined by order of these elements in the config file or the priority list: - -``` - - http://www.w3.org/2000/01/rdf-schema#subClassOf - http://www.w3.org/2000/01/rdf-schema#seeAlso - -``` - # Release Management Release management (corresponding to software versioning in source code management) will follow the widely accepted [Git's branching model](https://nvie.com/posts/a-successful-git-branching-model/). - ## Versioning Policy Versioning policy rules are the same for all components created in the project. All components should have the same version number (two first sequences) to reflect their proper cooperation. It means that there can be situations in which one component will have version changed, even if there were no code change. @@ -240,12 +40,9 @@ A version number contains three sequences on numbers separated with a "." (dot) * The last sequence indicates a version with a bug fix in release branch or production. ## Branching Policy -There are two main branches for source code in repository: - -* master – main branch, reflects production version of the application, -* develop – derived from the master branch, used for synchronization of developers' work - releases are created from this branch +There is one main branch for source code in repository: -See the figure: [Git's branching model](https://nvie.com/posts/a-successful-git-branching-model/) +* develop – main branch, reflects production version of the application, Additional branches used in versioning: diff --git a/Dockerfile b/Dockerfile index 619a3eab..71db5fb9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,6 @@ RUN apk --no-cache add --upgrade bash curl jq && \ WORKDIR /opt/viewer COPY ./onto-viewer-web-app/entrypoint.sh /opt/viewer/entrypoint.sh COPY ./onto-viewer-web-app/integration_tests/ontologies /opt/viewer/ontologies -COPY ./onto-viewer-web-app/staticOntologies /opt/viewer/staticOntologies COPY --from=build-onto-viewer /onto-viewer-web-app.war /opt/viewer/onto-viewer.war CMD ["sh", "entrypoint.sh"] HEALTHCHECK --start-period=60s --interval=15s --timeout=1s --retries=60 CMD test "$(curl -q http://localhost/${ONTPUB_FAMILY}/ontology/actuator/health | jq -e ".components.custom.details.INITIALIZATION_DONE")" = "true" \ No newline at end of file diff --git a/onto-viewer-config-loader/config/groups_config.xml b/onto-viewer-config-loader/config/groups_config.xml deleted file mode 100644 index e1476b0a..00000000 --- a/onto-viewer-config-loader/config/groups_config.xml +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - http://www.w3.org/2000/01/rdf-schema#subClassOf - http://www.w3.org/2000/01/rdf-schema#seeAlso - - - - - - Glossary - http://www.w3.org/2000/01/rdf-schema#label - http://www.w3.org/2004/02/skos/core#prefLabel - https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/hasMaturityLevel - - https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/synonym - https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/abbreviation - - http://www.w3.org/2004/02/skos/core#definition - http://spec.edmcouncil.org/owlnames#mdDefinition - https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/definitionOrigin - - http://purl.org/dc/terms/source - http://www.omg.org/techprocess/ab/SpecificationMetadata/directSource - https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/adaptedFrom - - http://www.w3.org/2004/02/skos/core#example - http://www.w3.org/2004/02/skos/core#scopeNote - https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/usageNote - - http://www.w3.org/2004/02/skos/core#editorialNote - http://purl.org/dc/terms/title - http://purl.org/dc/terms/abstract - http://www.omg.org/techprocess/ab/SpecificationMetadata/keyword - http://www.omg.org/techprocess/ab/SpecificationMetadata/fileAbstract - https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/explanatoryNote - - - - - This ontology contains - @viewer.internal.clazz - @viewer.external.clazz - @viewer.internal.objectProperty - @viewer.external.objectProperty - @viewer.internal.dataProperty - @viewer.external.dataProperty - @viewer.internal.instance - @viewer.external.instance - @viewer.internal.annotationProperty - @viewer.external.annotationProperty - - - - Ontological characteristic - @viewer.function.usage_classes - @viewer.function.direct_sub_data_property - @viewer.function.direct_sub_object_property - @viewer.function.direct_sub_annotation_property - @viewer.function.direct_subclasses - @viewer.function.instances - @viewer.axiom.EquivalentClasses - @viewer.axiom.SubClassOf - @viewer.function.anonymous_ancestor - @viewer.axiom.DisjointClasses - @viewer.axiom.ClassAssertion - @viewer.axiom.SameIndividual - @viewer.axiom.ObjectPropertyAssertion - @viewer.axiom.DataPropertyAssertion - @viewer.axiom.SubObjectPropertyOf - @viewer.axiom.SubDataPropertyOf - @viewer.axiom.SubAnnotationPropertyOf - @viewer.axiom.EquivalentObjectProperties - @viewer.axiom.EquivalentDataProperties - @viewer.axiom.ObjectPropertyDomain - @viewer.axiom.DataPropertyDomain - @viewer.axiom.ObjectPropertyRange - @viewer.axiom.FunctionalObjectProperty - @viewer.axiom.DataPropertyRange - @viewer.axiom.AnnotationPropertyDomain - @viewer.axiom.AnnotationPropertyRangeOf - @viewer.axiom.InverseObjectProperties - http://www.w3.org/2002/07/owl#deprecated - http://purl.org/dc/terms/hasPart - http://www.omg.org/techprocess/ab/SpecificationMetadata/dependsOn - - - - Meta-information - http://purl.org/dc/terms/creator - http://purl.org/dc/terms/license - http://www.omg.org/techprocess/ab/SpecificationMetadata/copyright - http://purl.org/dc/terms/contributor - http://www.omg.org/techprocess/ab/SpecificationMetadata/contributor - http://www.omg.org/techprocess/ab/SpecificationMetadata/moduleAbbreviation - http://purl.org/dc/terms/issued - http://www.omg.org/techprocess/ab/SpecificationMetadata/contentLanguage - http://www.w3.org/2004/02/skos/core#changeNote - http://www.w3.org/2004/02/skos/core#note - http://www.omg.org/techprocess/ab/SpecificationMetadata/fileAbbreviation - http://www.omg.org/techprocess/ab/SpecificationMetadata/filename - http://www.w3.org/2000/01/rdf-schema#comment - http://www.w3.org/2000/01/rdf-schema#isDefinedBy - http://www.w3.org/2000/01/rdf-schema#seeAlso - http://www.w3.org/2004/02/skos/core#historyNote - http://www.omg.org/techprocess/ab/SpecificationMetadata/relatedSpecification - http://purl.org/dc/terms/hasVersion - http://purl.org/dc/terms/references - - - \ No newline at end of file diff --git a/onto-viewer-config-loader/config/ignore_to_display.xml b/onto-viewer-config-loader/config/ignore_to_display.xml deleted file mode 100644 index 20ff3cd4..00000000 --- a/onto-viewer-config-loader/config/ignore_to_display.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - @viewer.axiom.SubObjectPropertyOf - http://www.w3.org/2000/01/rdf-schema#isDefinedBy - http://spec.edmcouncil.org/owlnames#definition - http://spec.edmcouncil.org/owlnames#label - http://spec.edmcouncil.org/owlnames#synonym - http://spec.edmcouncil.org/owlnames#example - http://spec.edmcouncil.org/owlnames#explanatoryNote - \ No newline at end of file diff --git a/onto-viewer-config-loader/config/label_config.xml b/onto-viewer-config-loader/config/label_config.xml deleted file mode 100644 index aeb08f18..00000000 --- a/onto-viewer-config-loader/config/label_config.xml +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - TRUE - - - - USER_DEFINED - - - - FALSE - - - en - - - - - FIRST - - - - - http://www.w3.org/2000/01/rdf-schema#Literal - literal - - - - http://www.w3.org/2001/XMLSchema#string - string - - - - http://www.omg.org/techprocess/ab/SpecificationMetadata/fileAbbreviation - - file abbreviation - - - - http://www.omg.org/techprocess/ab/SpecificationMetadata/filename - - file name - - - - http://www.w3.org/2000/01/rdf-schema#isDefinedBy - is defined by - - - - @viewer.axiom.EquivalentClasses - Equivalent classes (necessary and sufficient criteria) - - - - @viewer.axiom.SubClassOf - IS-A restrictions - - - - @viewer.axiom.DisjointClasses - Disjoint classes - - - - @viewer.axiom.ClassAssertion - Instance classification - - - - @viewer.axiom.SameIndividual - same as - - - - @viewer.axiom.ObjectPropertyAssertion - Object property assertion - - - - @viewer.axiom.DataPropertyAssertion - Data property assertion - - - - @viewer.axiom.DataPropertyDomain - Data property domain - - - - @viewer.axiom.SubObjectPropertyOf - SubObject property - - - - @viewer.axiom.SubDataPropertyOf - SubData property - - - - @viewer.axiom.SubAnnotationPropertyOf - SubAnnotation property - - - - @viewer.axiom.EquivalentObjectProperties - Equivalent object properties - - - - @viewer.axiom.ObjectPropertyDomain - Property domain - - - - @viewer.axiom.ObjectPropertyRange - Property range - - - - @viewer.axiom.InverseObjectProperties - Inverse object properties - - - - @viewer.axiom.TransitiveObjectProperty - Transitive object property - - - - @viewer.axiom.FunctionalObjectProperty - Functional object property - - - - @viewer.axiom.DataPropertyRange - Data property range - - - - @viewer.axiom.AnnotationPropertyDomain - Annotation property domain - - - - @viewer.axiom.AnnotationPropertyRangeOf - Annotation property range - - - - - https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/synonym - - synonym(s) - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - see also - - - - http://purl.org/dc/terms/hasPart - has part - - - - http://purl.org/dc/terms/contributor - contributor - - - - http://spec.edmcouncil.org/owlnames#mdDefinition - ontological definition - - - - http://www.w3.org/2004/02/skos/core#definition - definition - - - - @viewer.function.instances - Instances - - - - @viewer.internal.annotationProperty - internal annotation property - - - - @viewer.external.annotationProperty - external annotation property - - - - - \ No newline at end of file diff --git a/onto-viewer-config-loader/config/ontology_config.xml b/onto-viewer-config-loader/config/ontology_config.xml deleted file mode 100644 index 8f0e54c7..00000000 --- a/onto-viewer-config-loader/config/ontology_config.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - integration_tests/ontologies - - diff --git a/onto-viewer-config-loader/config/search_config.xml b/onto-viewer-config-loader/config/search_config.xml deleted file mode 100644 index ff77bdf2..00000000 --- a/onto-viewer-config-loader/config/search_config.xml +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - http://www.w3.org/2004/02/skos/core#definition - 1.0 - - - http://spec.edmcouncil.org/owlnames#mdDefinition - 1.0 - - - @viewer.iri.fragment - 1.0 - - - http://www.w3.org/2000/01/rdf-schema#label - 1.0 - - - http://www.w3.org/2004/02/skos/core#prefLabel - 1.0 - - - https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/synonym - - 1.0 - - - 0.0 - - - - http://www.w3.org/2000/01/rdf-schema#label - 1.0 - - - - http://www.w3.org/2004/02/skos/core#prefLabel - 1.0 - - - - http://www.w3.org/2004/02/skos/core#definition - 0.0 - - - - http://purl.org/dc/terms/abstract - 0.0 - - - - https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/synonym - - 1.0 - - - - https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/abbreviation - - 1.0 - - - - http://www.omg.org/techprocess/ab/SpecificationMetadata/keyword - 1.0 - - - - @viewer.iri.fragment - 1.0 - - - - http://www.w3.org/2004/02/skos/core#definition - 1.0 - - - - http://spec.edmcouncil.org/owlnames#mdDefinition - 1.0 - - - 0.0 - - - 3.0 - - - http://www.w3.org/2004/02/skos/core#definition - http://purl.org/dc/terms/abstract - - - - - diff --git a/onto-viewer-web-app/staticOntologies/dcterms.rdf b/onto-viewer-web-app/staticOntologies/dcterms.rdf deleted file mode 100644 index 293ed257..00000000 --- a/onto-viewer-web-app/staticOntologies/dcterms.rdf +++ /dev/null @@ -1,1077 +0,0 @@ - - - - - - - - - -]> - - -DCMI Metadata Terms - other - -2012-06-14 - - -Title -A name given to the resource. - -2008-01-14 -2010-10-11 - - - - - - -Creator -An entity primarily responsible for making the resource. -Examples of a Creator include a person, an organization, or a service. - -2008-01-14 -2010-10-11 - - - - - - - - -Subject -The topic of the resource. -Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary. - -2008-01-14 -2012-06-14 - - -This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. - - - -Description -An account of the resource. -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -2008-01-14 -2008-01-14 - - - - - -Publisher -An entity responsible for making the resource available. -Examples of a Publisher include a person, an organization, or a service. - -2008-01-14 -2010-10-11 - - - - - - -Contributor -An entity responsible for making contributions to the resource. -Examples of a Contributor include a person, an organization, or a service. - -2008-01-14 -2010-10-11 - - - - - - -Date -A point or period of time associated with an event in the lifecycle of the resource. -Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF]. - -2008-01-14 -2008-01-14 - - - - - - -Type -The nature or genre of the resource. -Recommended best practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [DCMITYPE]. To describe the file format, physical medium, or dimensions of the resource, use the Format element. - -2008-01-14 -2008-01-14 - - - - - - -Format -The file format, physical medium, or dimensions of the resource. -Examples of dimensions include size and duration. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types [MIME]. - -2008-01-14 -2008-01-14 - - - - - - -Identifier -An unambiguous reference to the resource within a given context. -Recommended best practice is to identify the resource by means of a string conforming to a formal identification system. - -2008-01-14 -2008-01-14 - - - - - - -Source -A related resource from which the described resource is derived. -The described resource may be derived from the related resource in whole or in part. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. - -2008-01-14 -2008-01-14 - - -This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. - - - - -Language -A language of the resource. -Recommended best practice is to use a controlled vocabulary such as RFC 4646 [RFC4646]. - -2008-01-14 -2008-01-14 - - - - - - -Relation -A related resource. -Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. - -2008-01-14 -2008-01-14 - - -This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. - - - -Coverage -The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. -Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended best practice is to use a controlled vocabulary such as the Thesaurus of Geographic Names [TGN]. Where appropriate, named places or time periods can be used in preference to numeric identifiers such as sets of coordinates or date ranges. - -2008-01-14 -2008-01-14 - - - - - - -Rights -Information about rights held in and over the resource. -Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights. - -2008-01-14 -2008-01-14 - - - - - - -Audience -A class of entity for whom the resource is intended or useful. - -2001-05-21 -2008-01-14 - - - - - -Alternative Title -An alternative name for the resource. -The distinction between titles and alternative titles is application-specific. - -2000-07-11 -2010-10-11 - - - - - - - -Table Of Contents -A list of subunits of the resource. - -2000-07-11 -2008-01-14 - - - - - - -Abstract -A summary of the resource. - -2000-07-11 -2008-01-14 - - - - - - -Date Created -Date of creation of the resource. - -2000-07-11 -2008-01-14 - - - - - - - -Date Valid -Date (often a range) of validity of a resource. - -2000-07-11 -2008-01-14 - - - - - - - -Date Available -Date (often a range) that the resource became or will become available. - -2000-07-11 -2008-01-14 - - - - - - - -Date Issued -Date of formal issuance (e.g., publication) of the resource. - -2000-07-11 -2008-01-14 - - - - - - - -Date Modified -Date on which the resource was changed. - -2000-07-11 -2008-01-14 - - - - - - - -Extent -The size or duration of the resource. - -2000-07-11 -2008-01-14 - - - - - - - -Medium -The material or physical carrier of the resource. - -2000-07-11 -2008-01-14 - - - - - - - - -Is Version Of -A related resource of which the described resource is a version, edition, or adaptation. -Changes in version imply substantive changes in content rather than differences in format. - -2000-07-11 -2008-01-14 - - -This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. - - - - -Has Version -A related resource that is a version, edition, or adaptation of the described resource. - -2000-07-11 -2008-01-14 - - -This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. - - - - -Is Replaced By -A related resource that supplants, displaces, or supersedes the described resource. - -2000-07-11 -2008-01-14 - - -This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. - - - - -Replaces -A related resource that is supplanted, displaced, or superseded by the described resource. - -2000-07-11 -2008-01-14 - - -This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. - - - - -Is Required By -A related resource that requires the described resource to support its function, delivery, or coherence. - -2000-07-11 -2008-01-14 - - -This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. - - - - -Requires -A related resource that is required by the described resource to support its function, delivery, or coherence. - -2000-07-11 -2008-01-14 - - -This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. - - - - -Is Part Of -A related resource in which the described resource is physically or logically included. - -2000-07-11 -2008-01-14 - - -This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. - - - - -Has Part -A related resource that is included either physically or logically in the described resource. - -2000-07-11 -2008-01-14 - - -This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. - - - - -Is Referenced By -A related resource that references, cites, or otherwise points to the described resource. - -2000-07-11 -2008-01-14 - - -This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. - - - - -References -A related resource that is referenced, cited, or otherwise pointed to by the described resource. - -2000-07-11 -2008-01-14 - - -This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. - - - - -Is Format Of -A related resource that is substantially the same as the described resource, but in another format. - -2000-07-11 -2008-01-14 - - -This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. - - - - -Has Format -A related resource that is substantially the same as the pre-existing described resource, but in another format. - -2000-07-11 -2008-01-14 - - -This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. - - - - -Conforms To -An established standard to which the described resource conforms. - -2001-05-21 -2008-01-14 - - - - - - - -Spatial Coverage -Spatial characteristics of the resource. - -2000-07-11 -2008-01-14 - - - - - - - -Temporal Coverage -Temporal characteristics of the resource. - -2000-07-11 -2008-01-14 - - - - - - - -Mediator -An entity that mediates access to the resource and for whom the resource is intended or useful. -In an educational context, a mediator might be a parent, teacher, teaching assistant, or care-giver. - -2001-05-21 -2008-01-14 - - - - - - -Date Accepted -Date of acceptance of the resource. -Examples of resources to which a Date Accepted may be relevant are a thesis (accepted by a university department) or an article (accepted by a journal). - -2002-07-13 -2008-01-14 - - - - - - - -Date Copyrighted -Date of copyright. - -2002-07-13 -2008-01-14 - - - - - - - -Date Submitted -Date of submission of the resource. -Examples of resources to which a Date Submitted may be relevant are a thesis (submitted to a university department) or an article (submitted to a journal). - -2002-07-13 -2008-01-14 - - - - - - - -Audience Education Level -A class of entity, defined in terms of progression through an educational or training context, for which the described resource is intended. - -2002-07-13 -2008-01-14 - - - - - - -Access Rights -Information about who can access the resource or an indication of its security status. -Access Rights may include information regarding access or restrictions based on privacy, security, or other policies. - -2003-02-15 -2008-01-14 - - - - - - - -Bibliographic Citation -A bibliographic reference for the resource. -Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible. - -2003-02-15 -2008-01-14 - - - - - - - - -License -A legal document giving official permission to do something with the resource. - -2004-06-14 -2008-01-14 - - - - - - - -Rights Holder -A person or organization owning or managing rights over the resource. - -2004-06-14 -2008-01-14 - - - - - -Provenance -A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation. -The statement may include a description of any changes successive custodians made to the resource. - -2004-09-20 -2008-01-14 - - - - - -Instructional Method -A process, used to engender knowledge, attitudes and skills, that the described resource is designed to support. -Instructional Method will typically include ways of presenting instructional materials or conducting instructional activities, patterns of learner-to-learner and learner-to-instructor interactions, and mechanisms by which group and individual levels of learning are measured. Instructional methods include all aspects of the instruction and learning processes from planning and implementation through evaluation and feedback. - -2005-06-13 -2008-01-14 - - - - - -Accrual Method -The method by which items are added to a collection. - -2005-06-13 -2010-10-11 - - - - - - -Accrual Periodicity -The frequency with which items are added to a collection. - -2005-06-13 -2010-10-11 - - - - - - -Accrual Policy -The policy governing the addition of items to a collection. - -2005-06-13 -2010-10-11 - - - - - - -Agent -A resource that acts or has the power to act. -Examples of Agent include person, organization, and software agent. - -2008-01-14 - - - - - -Agent Class -A group of agents. -Examples of Agent Class include groups seen as classes, such as students, women, charities, lecturers. - -2008-01-14 -2012-06-14 - - - - - -Bibliographic Resource -A book, article, or other documentary resource. - -2008-01-14 - - - - -File Format -A digital resource format. -Examples include the formats defined by the list of Internet Media Types. - -2008-01-14 - - - - - -Frequency -A rate at which something recurs. - -2008-01-14 - - - - -Jurisdiction -The extent or range of judicial, law enforcement, or other authority. - -2008-01-14 - - - - - -License Document -A legal document giving official permission to do something with a Resource. - -2008-01-14 - - - - - -Linguistic System -A system of signs, symbols, sounds, gestures, or rules used in communication. -Examples include written, spoken, sign, and computer languages. - -2008-01-14 - - - - -Location -A spatial region or named place. - -2008-01-14 - - - - - -Location, Period, or Jurisdiction -A location, period of time, or jurisdiction. - -2008-01-14 - - - - -Media Type -A file format or physical medium. - -2008-01-14 - - - - - -Media Type or Extent -A media type or extent. - -2008-01-14 - - - - -Method of Instruction -A process that is used to engender knowledge, attitudes, and skills. - -2008-01-14 - - - - -Method of Accrual -A method by which resources are added to a collection. - -2008-01-14 - - - - -Period of Time -An interval of time that is named or defined by its start and end dates. - -2008-01-14 - - - - - -Physical Medium -A physical material or carrier. -Examples include paper, canvas, or DVD. - -2008-01-14 - - - - - -Physical Resource -A material thing. - -2008-01-14 - - - - -Policy -A plan or course of action by an authority, intended to influence and determine decisions, actions, and other matters. - -2008-01-14 - - - - -Provenance Statement -A statement of any changes in ownership and custody of a resource since its creation that are significant for its authenticity, integrity, and interpretation. - -2008-01-14 - - - - -Rights Statement -A statement about the intellectual property rights (IPR) held in or over a Resource, a legal document giving official permission to do something with a resource, or a statement about access rights. - -2008-01-14 - - - - -Size or Duration -A dimension or extent, or a time taken to play or execute. -Examples include a number of pages, a specification of length, width, and breadth, or a period in hours, minutes, and seconds. - -2008-01-14 - - - - - -Standard -A basis for comparison; a reference point against which other things can be evaluated. - -2008-01-14 - - - - -ISO 639-2 -The three-letter alphabetic codes listed in ISO639-2 for the representation of names of languages. - -2000-07-11 -2008-01-14 - - - - - -RFC 1766 -The set of tags, constructed according to RFC 1766, for the identification of languages. - -2000-07-11 -2008-01-14 - - - - - -URI -The set of identifiers constructed according to the generic syntax for Uniform Resource Identifiers as specified by the Internet Engineering Task Force. - -2000-07-11 -2008-01-14 - - - - - -DCMI Point -The set of points in space defined by their geographic coordinates according to the DCMI Point Encoding Scheme. - -2000-07-11 -2008-01-14 - - - - - -ISO 3166 -The set of codes listed in ISO 3166-1 for the representation of names of countries. - -2000-07-11 -2008-01-14 - - - - - -DCMI Box -The set of regions in space defined by their geographic coordinates according to the DCMI Box Encoding Scheme. - -2000-07-11 -2008-01-14 - - - - - -DCMI Period -The set of time intervals defined by their limits according to the DCMI Period Encoding Scheme. - -2000-07-11 -2008-01-14 - - - - - -W3C-DTF -The set of dates and times constructed according to the W3C Date and Time Formats Specification. - -2000-07-11 -2008-01-14 - - - - - -RFC 3066 -The set of tags constructed according to RFC 3066 for the identification of languages. -RFC 3066 has been obsoleted by RFC 4646. - -2002-07-13 -2008-01-14 - - - - - -RFC 5646 -The set of tags constructed according to RFC 5646 for the identification of languages. -RFC 5646 obsoletes RFC 4646. - -2010-10-11 - - - - - -RFC 4646 -The set of tags constructed according to RFC 4646 for the identification of languages. -RFC 4646 obsoletes RFC 3066. - -2008-01-14 - - - - - -ISO 639-3 -The set of three-letter codes listed in ISO 639-3 for the representation of names of languages. - -2008-01-14 - - - - - -LCSH -The set of labeled concepts specified by the Library of Congress Subject Headings. - -2000-07-11 -2008-01-14 - - - - -MeSH -The set of labeled concepts specified by the Medical Subject Headings. - -2000-07-11 -2008-01-14 - - - - - -DDC -The set of conceptual resources specified by the Dewey Decimal Classification. - -2000-07-11 -2008-01-14 - - - - - -LCC -The set of conceptual resources specified by the Library of Congress Classification. - -2000-07-11 -2008-01-14 - - - - - -UDC -The set of conceptual resources specified by the Universal Decimal Classification. - -2000-07-11 -2008-01-14 - - - - - -DCMI Type Vocabulary -The set of classes specified by the DCMI Type Vocabulary, used to categorize the nature or genre of the resource. - -2000-07-11 -2012-06-14 - - - - - -IMT -The set of media types specified by the Internet Assigned Numbers Authority. - -2000-07-11 -2008-01-14 - - - - - -TGN -The set of places specified by the Getty Thesaurus of Geographic Names. - -2000-07-11 -2008-01-14 - - - - - -NLM -The set of conceptual resources specified by the National Library of Medicine Classification. - -2005-06-13 -2008-01-14 - - - - - diff --git a/onto-viewer-web-app/staticOntologies/owl.rdf b/onto-viewer-web-app/staticOntologies/owl.rdf deleted file mode 100644 index d4fc1a73..00000000 --- a/onto-viewer-web-app/staticOntologies/owl.rdf +++ /dev/null @@ -1,671 +0,0 @@ - - - - - - - - - -]> - - - - - - - The OWL 2 Schema vocabulary (OWL 2) - - - - - - - - - - - - - - This ontology partially describes the built-in classes and - properties that together form the basis of the RDF/XML syntax of OWL 2. - The content of this ontology is based on Tables 6.1 and 6.2 - in Section 6.4 of the OWL 2 RDF-Based Semantics specification, - available at http://www.w3.org/TR/owl2-rdf-based-semantics/. - Please note that those tables do not include the different annotations - (labels, comments and rdfs:isDefinedBy links) used in this file. - Also note that the descriptions provided in this ontology do not - provide a complete and correct formal description of either the syntax - or the semantics of the introduced terms (please see the OWL 2 - recommendations for the complete and normative specifications). - Furthermore, the information provided by this ontology may be - misleading if not used with care. This ontology SHOULD NOT be imported - into OWL ontologies. Importing this file into an OWL 2 DL ontology - will cause it to become an OWL 2 Full ontology and may have other, - unexpected, consequences. - - - $Date: 2009/11/15 10:54:12 $ - - - - - - - The class of collections of pairwise different individuals. - - AllDifferent - - - - - The class of collections of pairwise disjoint classes. - - AllDisjointClasses - - - - - The class of collections of pairwise disjoint properties. - - AllDisjointProperties - - - - - The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object. - - Annotation - - - - - The class of annotation properties. - - AnnotationProperty - - - - - The class of asymmetric properties. - - AsymmetricProperty - - - - - The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object. - - Axiom - - - - - The class of OWL classes. - - Class - - - - - The class of OWL data ranges, which are special kinds of datatypes. Note: The use of the IRI owl:DataRange has been deprecated as of OWL 2. The IRI rdfs:Datatype SHOULD be used instead. - - DataRange - - - - - The class of data properties. - - DatatypeProperty - - - - - The class of deprecated classes. - - DeprecatedClass - - - - - The class of deprecated properties. - - DeprecatedProperty - - - - - The class of functional properties. - - FunctionalProperty - - - - - The class of inverse-functional properties. - - InverseFunctionalProperty - - - - - The class of irreflexive properties. - - IrreflexiveProperty - - - - - The class of named individuals. - - NamedIndividual - - - - - The class of negative property assertions. - - NegativePropertyAssertion - - - - - This is the empty class. - - Nothing - - - - - The class of object properties. - - ObjectProperty - - - - - The class of ontologies. - - Ontology - - - - - The class of ontology properties. - - OntologyProperty - - - - - The class of reflexive properties. - - ReflexiveProperty - - - - - The class of property restrictions. - - Restriction - - - - - The class of symmetric properties. - - SymmetricProperty - - - - - The class of OWL individuals. - - Thing - - - - The class of transitive properties. - - TransitiveProperty - - - - - The property that determines the class that a universal property restriction refers to. - - - allValuesFrom - - - - - The property that determines the predicate of an annotated axiom or annotated annotation. - - - annotatedProperty - - - - - The property that determines the subject of an annotated axiom or annotated annotation. - - - annotatedSource - - - - - The property that determines the object of an annotated axiom or annotated annotation. - - - annotatedTarget - - - - - The property that determines the predicate of a negative property assertion. - - - assertionProperty - - - - - - The annotation property that indicates that a given ontology is backward compatible with another ontology. - - - backwardCompatibleWith - - - - - The data property that does not relate any individual to any data value. - - - bottomDataProperty - - - - - The object property that does not relate any two individuals. - - - bottomObjectProperty - - - - - The property that determines the cardinality of an exact cardinality restriction. - - - cardinality - - - - - The property that determines that a given class is the complement of another class. - - - complementOf - - - - - The property that determines that a given data range is the complement of another data range with respect to the data domain. - - - datatypeComplementOf - - - - - The annotation property that indicates that a given entity has been deprecated. - - - deprecated - - - - - The property that determines that two given individuals are different. - - - differentFrom - - - - - The property that determines that a given class is equivalent to the disjoint union of a collection of other classes. - - - disjointUnionOf - - - - - The property that determines that two given classes are disjoint. - - - disjointWith - - - - - The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom. - - - distinctMembers - - - - - The property that determines that two given classes are equivalent, and that is used to specify datatype definitions. - - - equivalentClass - - - - - The property that determines that two given properties are equivalent. - - - equivalentProperty - - - - - The property that determines the collection of properties that jointly build a key. - - - hasKey - - - - - The property that determines the property that a self restriction refers to. - - - hasSelf - - - - - The property that determines the individual that a has-value restriction refers to. - - - hasValue - - - - - The property that is used for importing other ontologies into a given ontology. - - - imports - - - - - - The annotation property that indicates that a given ontology is incompatible with another ontology. - - - incompatibleWith - - - - - The property that determines the collection of classes or data ranges that build an intersection. - - - intersectionOf - - - - - The property that determines that two given properties are inverse. - - - inverseOf - - - - - The property that determines the cardinality of a maximum cardinality restriction. - - - maxCardinality - - - - - The property that determines the cardinality of a maximum qualified cardinality restriction. - - - maxQualifiedCardinality - - - - - The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom. - - - members - - - - - The property that determines the cardinality of a minimum cardinality restriction. - - - minCardinality - - - - - The property that determines the cardinality of a minimum qualified cardinality restriction. - - - minQualifiedCardinality - - - - - The property that determines the class that a qualified object cardinality restriction refers to. - - - onClass - - - - - The property that determines the data range that a qualified data cardinality restriction refers to. - - - onDataRange - - - - - The property that determines the datatype that a datatype restriction refers to. - - - onDatatype - - - - - The property that determines the collection of individuals or data values that build an enumeration. - - - oneOf - - - - - The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to. - - - onProperties - - - - - The property that determines the property that a property restriction refers to. - - - onProperty - - - - - - The annotation property that indicates the predecessor ontology of a given ontology. - - - priorVersion - - - - - The property that determines the n-tuple of properties that build a sub property chain of a given property. - - - propertyChainAxiom - - - - - The property that determines that two given properties are disjoint. - - - propertyDisjointWith - - - - - The property that determines the cardinality of an exact qualified cardinality restriction. - - - qualifiedCardinality - - - - - The property that determines that two given individuals are equal. - - - sameAs - - - - - The property that determines the class that an existential property restriction refers to. - - - someValuesFrom - - - - - The property that determines the subject of a negative property assertion. - - - sourceIndividual - - - - - The property that determines the object of a negative object property assertion. - - - targetIndividual - - - - - The property that determines the value of a negative data property assertion. - - - targetValue - - - - - The data property that relates every individual to every data value. - - - topDataProperty - - - - - The object property that relates every two individuals. - - - topObjectProperty - - - - - The property that determines the collection of classes or data ranges that build a union. - - - unionOf - - - - - The annotation property that provides version information for an ontology or another OWL construct. - - - versionInfo - - - - - The property that identifies the version IRI of an ontology. - - - versionIRI - - - - - The property that determines the collection of facet-value pairs that define a datatype restriction. - - - withRestrictions - - - diff --git a/onto-viewer-web-app/staticOntologies/rdf-schema.rdf b/onto-viewer-web-app/staticOntologies/rdf-schema.rdf deleted file mode 100644 index bf17bab0..00000000 --- a/onto-viewer-web-app/staticOntologies/rdf-schema.rdf +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - Resource - The class resource, everything. - - - - - Class - The class of classes. - - - - - - subClassOf - The subject is a subclass of a class. - - - - - - - subPropertyOf - The subject is a subproperty of a property. - - - - - - - comment - A description of the subject resource. - - - - - - - label - A human-readable name for the subject. - - - - - - - domain - A domain of the subject property. - - - - - - - range - A range of the subject property. - - - - - - - seeAlso - Further information about the subject resource. - - - - - - - - isDefinedBy - The defininition of the subject resource. - - - - - - - Literal - The class of literal values, eg. textual strings and integers. - - - - - - Container - - The class of RDF containers. - - - - - ContainerMembershipProperty - The class of container membership properties, rdf:_1, rdf:_2, ..., - all of which are sub-properties of 'member'. - - - - - - member - A member of the subject resource. - - - - - - - Datatype - The class of RDF datatypes. - - - - - - - - diff --git a/onto-viewer-web-app/staticOntologies/rdf-syntax-ns.rdf b/onto-viewer-web-app/staticOntologies/rdf-syntax-ns.rdf deleted file mode 100644 index 290c1306..00000000 --- a/onto-viewer-web-app/staticOntologies/rdf-syntax-ns.rdf +++ /dev/null @@ -1,156 +0,0 @@ - - - - The RDF Concepts Vocabulary (RDF) - This is the RDF Schema for the RDF vocabulary terms in the RDF Namespace, defined in RDF 1.1 Concepts. - - - - - - - HTML - The datatype of RDF literals storing fragments of HTML content - - - - - - - langString - The datatype of language-tagged string values - - - - - - - PlainLiteral - The class of plain (i.e. untyped) literal values, as used in RIF and OWL 2 - - - - - - type - The subject is an instance of a class. - - - - - - - Property - The class of RDF properties. - - - - - - Statement - - The class of RDF statements. - - - - - subject - The subject of the subject RDF statement. - - - - - - - predicate - The predicate of the subject RDF statement. - - - - - - - object - The object of the subject RDF statement. - - - - - - - Bag - The class of unordered containers. - - - - - - Seq - The class of ordered containers. - - - - - - Alt - The class of containers of alternatives. - - - - - - value - Idiomatic property used for structured values. - - - - - - - - - List - The class of RDF Lists. - - - - - - nil - The empty list, with no items in it. If the rest of a list is nil then the list has no more items in it. - - - - - first - The first item in the subject RDF list. - - - - - - - rest - The rest of the subject RDF list after the first item. - - - - - - - - XMLLiteral - The datatype of XML literal values. - - - - - - - -