# Copyright (c) 2022 Orange. All rights reserved. # # Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: # 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. # 3. All advertising materials mentioning features or use of this software must display the following acknowledgement: # This product includes software developed by Orange. # 4. Neither the name of Orange nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY Orange "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Orange BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # === PREFIXES ================================================================ # --- Basic --- @prefix rdf: . @prefix rdfs: . @prefix owl: . @prefix xml: . @prefix xsd: . @prefix sh: . # --- Ontology management --- @prefix dcat: . @prefix dcterms: . @prefix foaf: . @prefix vann: . @prefix voaf: . @prefix vs: . @prefix bibo: . @prefix vcard: . @prefix schema: . @prefix prov: . @prefix skos: . # --- Domain specific --- @prefix qudt: . # Quantities, Units, Dimensions and Types (QUDT) @prefix qudt-unit: . #QUDT units @prefix time: . # OWL-Time @prefix bot: . # Building Topology Ontology @prefix gn: . # GeoNames Ontology @prefix wgs84_pos: . # WGS84 Geo Positioning @prefix BBO: . # BPMN 2.0 Based Ontology for Business Process Representation @prefix org: . # The Organization Ontology @prefix log: . # a.k.a. SLOGERT @prefix folio: . # Failure Mode and Effect Analysis combined with Anomaly Ontology (FOLIO) @prefix ssn: . # Semantic Sensor Network (SSN) Ontology @prefix seas: . # Smart Energy Aware Systems (SEAS) @prefix pep: . # SEAS Procedure Execution ontology @prefix saref: . #SAREF smart building appliances ontology @prefix observable: . # Unified Cybersecurity Ontology (UCO) # --- NORIA --- @prefix noria: . @base . # ============================================================================= a voaf:Vocabulary, owl:Ontology ; dcterms:title "The NORIA Ontology"@en ; dcterms:description """The NORIA-O project is a data model for IT networks, events and operations information. The ontology is developed using web technologies (e.g. RDF, OWL, SKOS) and is intended as a structure for realizing an IT Service Management (ITSM) Knowledge Graph (KG) for Anomaly Detection (AD) and Risk Management applications. The model has been developed in collaboration with operational teams, and in connection with third parties linked vocabularies. Alignment with third parties vocabularies is implemented on a per class or per property basis when relevant (e.g. with `rdfs:subClassOf`, `owl:equivalentClass`). Directions for direct instanciation of these vocabularies are provided for cases where implementing a class/property alignment is redundant. Alignment holds for the following vocabulary releases: - [BBO](https://hal.archives-ouvertes.fr/hal-02365012/) 1.0.0 - [BOT](https://w3id.org/bot/) 0.3.2 - [DevOps-Infra](https://oeg-upm.github.io/devops-infra/) 1.0.0 - [FOLIO](https://github.com/IBCNServices/Folio-Ontology) 1.0.0 - [ORG](https://www.w3.org/TR/vocab-org/) 0.8 - [PEP](https://w3id.org/pep/) 1.1 - [SEAS](https://w3id.org/seas/) 1.1 - [SLOGERT](https://sepses.ifs.tuwien.ac.at/ns/log/index-en.html) 1.1.0 - [UCO](https://github.com/ucoProject/uco) Release-0.8.0 """@en ; foaf:depiction ; bibo:status ; # https://www.dublincore.org/specifications/bibo/bibo/bibo.rdf.xml# dcterms:creator "Lionel Tailhardat (https://orcid.org/0000-0001-5887-899X)" ; # Lionel Tailhardat dcterms:creator "Yoan Chabot (https://orcid.org/0000-0001-5639-1504)" ; # Yoan Chabot dcterms:creator "Raphaël Troncy (https://orcid.org/0000-0003-0457-1436)" ; # Raphaël Troncy dcterms:publisher ; dcterms:license ; vann:preferredNamespacePrefix "noria" ; vann:preferredNamespaceUri "https://w3id.org/noria/ontology/" ; # See https://dgarijo.github.io/Widoco/doc/bestPractices/index-en.html dcterms:issued "2022-05-10"^^xsd:date ; dcterms:modified "2022-12-15"^^xsd:date ; owl:versionInfo "v0.2" ; owl:versionIRI ; owl:priorVersion ; owl:incompatibleWith ; rdfs:seeAlso ; owl:imports # --- Foundations ----------------------------- noria:ApplicationOntology-0.2 , noria:CoreOntology-0.2 , noria:DocumentOntology-0.2 , noria:LocationOntology-0.2 , noria:NotificationOntology-0.2 , noria:ObservableOntology-0.2 , noria:ResourceOntology-0.2 ; # --- Alignments ------------------------------ # Alignments are implemented within each NORIA-O module as for this release. . # === EOF =====================================================================