# 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. @prefix rdf: . @prefix owl: . @prefix rdfs: . @prefix xml: . @prefix xsd: . @prefix sh: . @prefix dcat: . @prefix dcterms: . @prefix foaf: . @prefix vann: . @prefix voaf: . @prefix vs: . @prefix bibo: . @prefix vcard: . @prefix schema: . @prefix noria: . @base . # ============================================================================= voaf:Vocabulary a owl:Class . dcterms:title a owl:AnnotationProperty . dcterms:description a owl:AnnotationProperty . dcterms:issued a owl:AnnotationProperty . dcterms:modified a owl:AnnotationProperty . dcterms:creator a owl:AnnotationProperty . dcterms:contributor a owl:AnnotationProperty . dcterms:license a owl:AnnotationProperty . vann:preferredNamespacePrefix a owl:AnnotationProperty . vann:preferredNamespaceUri a owl:AnnotationProperty . vs:term_status a owl:AnnotationProperty . foaf:Person a owl:Class . foaf:name a owl:DatatypeProperty . # ============================================================================= a owl:Ontology, voaf:Vocabulary ; 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."""@en ; bibo:status ; # https://www.dublincore.org/specifications/bibo/bibo/bibo.rdf.xml# dcterms:creator ; # Lionel Tailhardat dcterms:creator ; # Yoan Chabot dcterms:creator ; # 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 ; owl:versionIRI ; owl:versionInfo "v0.1" ; rdfs:seeAlso ; owl:imports # --- Foundations ----------------------------- noria:CoreOntology-0.1 , noria:ApplicationOntology-0.1 , noria:ChangeRequestOntology-0.1 , noria:FunctionalOntology-0.1 , noria:LocationOntology-0.1 , noria:NotificationOntology-0.1 , noria:ObservableOntology-0.1 , noria:OrganizationOntology-0.1 , noria:RCAOntology-0.1 , noria:ResourceOntology-0.1 , noria:TroubleTicketOntology-0.1 , # --- Alignments ------------------------------ noria:BBOAlignment-0.1 , noria:BOTAlignment-0.1 , noria:DevOpsInfraAlignment-0.1 , noria:PEPAlignment-0.1 , noria:SEASAlignment-0.1 , noria:SLOGERTAlignment-0.1 , noria:UCOAlignment-0.1 ; .