Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update conformance_report.ttl #92

Merged
merged 1 commit into from
Oct 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/conformance_report.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

aec3po:conformance_report a owl:Ontology ;
aec3po:compliance_verification_report a owl:Ontology ;
cc:license <https://creativecommons.org/licenses/by/4.0/> ;
dct:contributor <http://maxime-lefrancois.info/me#> ;
dct:description "The AEC3PO Compliance Verification Report module describes results of some `aec3po:ProcesVerifier` checking some entity via a `aec3po:CheckingAct`. Entities may be validated or repudiated."@en ;
dct:modified "2023-05-26"^^xsd:date ;
dct:title "AEC3PO: Compliance Verification Report"@en ;
owl:imports aec3po:check_method , aec3po:conformance_report ;
owl:imports aec3po:check_method , aec3po:compliance_verification_report ;
vann:preferredNamespacePrefix "aec3po" ;
vann:preferredNamespaceUri "https://w3id.org/lbd/aec3po/" .

Expand All @@ -23,13 +23,13 @@ aec3po:conforms a owl:DatatypeProperty ;
# rdfs:comment "True if the checking act did not produce any validation results, and false otherwise."@en ;
rdfs:comment "True if the Checking act confirms the check was validated, and false otherwise."@en ;
rdfs:domain aec3po:ConformanceReport ;
rdfs:isDefinedBy aec3po:conformance_report ;
rdfs:isDefinedBy aec3po:compliance_verification_report ;
rdfs:range xsd:boolean .

aec3po:ConformanceReport a owl:Class ;
aec3po:ComplianceChekingReport a owl:Class ;
rdfs:label "Compliance Verification Report"@en ;
rdfs:comment """Result of a checking act. May be compliant or not."""@en ;
rdfs:isDefinedBy aec3po:conformance_report ;
rdfs:isDefinedBy aec3po:compliance_verification_report ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onProperty aec3po:conforms ;
owl:cardinality 1 ] .
Expand Down
Loading