# imports: https://www.omg.org/spec/Commons/AnnotationVocabulary/ # imports: https://www.omg.org/spec/Commons/ContextualDesignators/ # imports: https://www.omg.org/spec/Commons/DatesAndTimes/ # imports: https://www.omg.org/spec/Commons/Documents/ # imports: https://www.omg.org/spec/Commons/PartiesAndSituations/ @prefix cmns-av: . @prefix cmns-cxtdsg: . @prefix cmns-doc: . @prefix cmns-dt: . @prefix cmns-pts: . @prefix dct: . @prefix owl: . @prefix rdf: . @prefix rdfs: . @prefix sbrm-rev: . @prefix skos: . @prefix xsd: . a owl:Ontology ; rdfs:label "Report Definition Ontology" ; dct:abstract "This ontology defines the general notion of a reporting envelope and related party concepts. It is designed to be very high level such that it can be extended to support any kind of domain-specific report, including but not limited to a business or regulatory report." ; dct:contributor , ; dct:license "https://opensource.org/licenses/MIT"^^xsd:anyURI ; owl:imports , , , , ; owl:versionIRI ; skos:note "This ontology was derived, in part, from the Financial Industry Business Ontology (FIBO) for representing regulatory and other business reports, such credit reports. It has since been extended based on usage in other projects, such as the emerging OMG Retail Industry Ontology (RIO) and Pistoia Alliance's Identification of Medicinal Products Ontology (IDMP-O) project. It also includes content developed by Federated Knowledge and Auditchain as a component of their original SBRM development effort." ; cmns-av:copyright "Copyright (c) 2018-2024 EDM Council, Inc." , "Copyright (c) 2018-2024 Object Management Group, Inc." , "Copyright (c) 2018-2024 Thematix Partners LLC" , "Copyright (c) 2019-2024 Federated Knowledge, LLC" , "Copyright (c) 2022-2024 Adaptive, Inc." , "Copyright (c) 2022-2024 Auditchain Labs AG" ; . sbrm-rev:IntendedRecipient a owl:Class ; rdfs:subClassOf cmns-pts:PartyRole ; rdfs:label "intended recipient" ; skos:definition "party that is responsible for and authorized to receive something, such as a message, package, or business or regulatory report" ; cmns-av:adaptedFrom "ISO 11568:2023(en) Financial services — Key management (retail), clause 3.73" ; . sbrm-rev:Report a owl:Class ; rdfs:subClassOf cmns-doc:Document , [ a owl:Restriction ; owl:onProperty sbrm-rev:isReportedTo ; owl:onClass sbrm-rev:IntendedRecipient ; owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; ] , [ a owl:Restriction ; owl:onProperty sbrm-rev:isSubmittedBy ; owl:onClass sbrm-rev:Submitter ; owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; ] , [ a owl:Restriction ; owl:onProperty cmns-cxtdsg:hasApplicablePeriod ; owl:onClass cmns-dt:DatePeriod ; owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; ] , [ a owl:Restriction ; owl:onProperty sbrm-rev:hasReportDateTime ; owl:onClass cmns-dt:DateTime ; owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; ] , [ a owl:Restriction ; owl:onProperty sbrm-rev:hasSubmissionDateTime ; owl:onClass cmns-dt:DateTime ; owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; ] , [ a owl:Restriction ; owl:onProperty sbrm-rev:hasReportDate ; owl:onClass cmns-dt:ExplicitDate ; owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; ] , [ a owl:Restriction ; owl:onProperty sbrm-rev:hasSubmissionDate ; owl:onClass cmns-dt:ExplicitDate ; owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; ] , [ a owl:Restriction ; owl:onProperty sbrm-rev:isSubmittedTo ; owl:onClass cmns-pts:PartyRole ; owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; ] , [ a owl:Restriction ; owl:onProperty sbrm-rev:isReportedBy ; owl:someValuesFrom sbrm-rev:ReportingParty ; ] ; rdfs:label "report" ; skos:definition "document containing a presentation of facts or a description of some proceeding, investigation or event" ; cmns-av:adaptedFrom "ISO 5127:2017(en), Information and documentation - Foundation and vocabulary, clause 3.4.7.32" ; cmns-av:explanatoryNote "Reports may refer to specific periods, events, or subjects, and may be communicated or presented in oral, electronic, or written form." ; . sbrm-rev:ReportingParty a owl:Class ; rdfs:subClassOf cmns-pts:PartyRole , [ a owl:Restriction ; owl:onProperty cmns-doc:specifies ; owl:someValuesFrom sbrm-rev:Report ; ] ; rdfs:label "reporting party" ; skos:definition "party that develops and provides a report, often in response to some contractual, legal, business, or regulatory requirement" ; cmns-av:synonym "entity" ; . sbrm-rev:Submitter a owl:Class ; rdfs:subClassOf cmns-pts:PartyRole , [ a owl:Restriction ; owl:onProperty sbrm-rev:submits ; owl:onClass sbrm-rev:Report ; owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; ] ; rdfs:label "submitter" ; skos:definition "party delivering something, such as a regulatory report" ; cmns-av:explanatoryNote "Note that in many cases, but not all, the reporting party and submitter are the same party." ; . sbrm-rev:hasReportDate a owl:ObjectProperty ; rdfs:subPropertyOf cmns-dt:hasDateOfIssuance , cmns-dt:hasExplicitDate ; rdfs:label "has report date"@en ; rdfs:range cmns-dt:ExplicitDate ; skos:definition "date on which a report was issued"@en ; . sbrm-rev:hasReportDateTime a owl:ObjectProperty ; rdfs:subPropertyOf cmns-dt:hasDateTime ; rdfs:label "has report date time"@en ; rdfs:range cmns-dt:DateTime ; skos:definition "date and time at which a report was issued"@en ; . sbrm-rev:hasSubmissionDate a owl:ObjectProperty ; rdfs:subPropertyOf cmns-dt:hasDateOfIssuance , cmns-dt:hasExplicitDate ; rdfs:label "has submission date"@en ; rdfs:range cmns-dt:ExplicitDate ; skos:definition "date on which a report was provided to its intended recipient"@en ; . sbrm-rev:hasSubmissionDateTime a owl:ObjectProperty ; rdfs:subPropertyOf cmns-dt:hasDateTime ; rdfs:label "has submission date time"@en ; rdfs:range cmns-dt:DateTime ; skos:definition "date and time at which a report was provided to its intended recipient"@en ; . sbrm-rev:isReportedBy a owl:ObjectProperty ; rdfs:subPropertyOf cmns-pts:hasPartyRole ; rdfs:label "is reported by" ; rdfs:range sbrm-rev:ReportingParty ; skos:definition "indicates the party that submits something" ; cmns-av:synonym "has reporting entity" ; . sbrm-rev:isReportedTo a owl:ObjectProperty ; rdfs:subPropertyOf cmns-pts:hasPartyRole ; rdfs:label "is reported to" ; rdfs:range sbrm-rev:IntendedRecipient ; skos:definition "indicates the party for which a report has been prepared and to whom the report should be delivered" ; . sbrm-rev:isSubmittedBy a owl:ObjectProperty ; rdfs:subPropertyOf cmns-pts:hasPartyRole ; rdfs:label "is submitted by" ; rdfs:range sbrm-rev:Submitter ; owl:inverseOf sbrm-rev:submits ; skos:definition "indicates the party that submits something" ; . sbrm-rev:isSubmittedTo a owl:ObjectProperty ; rdfs:subPropertyOf cmns-pts:hasPartyRole ; rdfs:label "is submitted to" ; rdfs:range cmns-pts:PartyRole ; skos:definition "indicates the party to which something is submitted" ; . sbrm-rev:reportsOn a owl:ObjectProperty ; rdfs:subPropertyOf cmns-doc:isAbout ; rdfs:label "reports on" ; rdfs:domain sbrm-rev:Report ; skos:definition "indicates a subject matter, observation(s), assessment(s), focus or other topic of a report" ; . sbrm-rev:submits a owl:ObjectProperty ; rdfs:label "submits" ; rdfs:domain sbrm-rev:Submitter ; skos:definition "presents something (a proposal, application, report, or other document) for consideration or review" ; .