bra0 / Docs / Ontologies / edcc-bridge
Reference

edcc-bridge

Prefix
<https://schema.bra0.org/evidence-os/edcc>:
Version
0.1.0
Created
2026-04-17
Classes
15
Properties
24
Source
ontologies/governance/evidence-os/edcc-bridge.ttl

Classes (15)

URILabelDescriptionSuperclass
edcc:BuildingBuildingA built asset under circular economy governance. Corresponds to the opendthX Entity at building scale and s4bldg:Building in SAREF4BLDG. BFO grounding: edgy:Object → material entity (BFO:0000040).edgy:Object
edcc:BuildingComponentBuilding ComponentA physical component of a building (wall, slab, window, HVAC unit). Corresponds to the opendthX Entity at component scale and IFC IfcBuildingElement hierarchy. BFO grounding: edgy:Object → material entity (BFO:0000040).edgy:Object
edcc:CircularControlCircular ControlA compliance control specific to circular construction: PEMD completeness, DPP data requirements, RE2020 thresholds, AGEC obligations. Derived from framework articles via evo:derivedFromArticle.evo:Control
edcc:CircularTransactionCircular TransactionA material exchange transaction in the circular construction marketplace. A Change event linking seller (diagnostiqueur/materiauthequeur) to buyer (MOA/MOE/entreprise). Carries PROV-O provenance for audit.evo:Change
edcc:ImpactReportImpact ReportA multi-level circular impact report (CU5): project, territory, or national scale. Covers CSRD E1/E2, REP, ACV indicators. Evidence artifact proving regulatory compliance.evo:Evidence
edcc:LifecycleTransitionLifecycle TransitionA change in the lifecycle phase of a building or component: design→construction→operation→demolition→reuse. Maps the ISO 19650 PIM→AIM transition and opendthX GOM→GO→SO progression as Change events in the evidence graph.evo:Change
edcc:MatchingDecisionMatching DecisionA supply-demand matching decision in the circular marketplace (CU3). Links available MaterialLots to project requirements. evo:chosenAlternative points to the selected supplier.evo:Decision
edcc:MaterialMaterialA construction material (concrete, wood, steel, insulation, etc.) with circular economy attributes. May be virgin, recycled, bio-sourced, or reused. Corresponds to IFC IfcMaterial and opendthX Property groups of type 'material'. BFO grounding: edgy:Object → material entity (BFO:0000040).edgy:Object
edcc:MaterialLotMaterial LotA specific quantity of a Material available for reuse or recycling. Output of a PEMD diagnostic. Carries mass, condition assessment, and reuse potential. Maps to an opendthX ConstructionObject with reuse-specific PropertyValues. BFO grounding: edgy:Object → material entity (BFO:0000040).edgy:Object
edcc:MaterialPassportMaterial PassportDigital Product Passport (DPP) for a construction material or component. An Evidence artifact proving material provenance, composition, and environmental performance. Aligned with EU Regulation 2024/1781 (Ecodesign).evo:Evidence
edcc:PEMDDiagnosticPEMD DiagnosticDiagnostic Produits Equipements Materiaux Dechets per Code de l'Environnement Art. L541-4-5 and RE2020. An Evidence artifact: the diagnostic report proving material inventory of a building before demolition/renovation. Replaces evo:TestRun in construction context.evo:Evidence
edcc:PrescriptionDecisionPrescription DecisionA decision by a MOA/MOE/architect to prescribe circular materials in a construction project (CU4). Records alternatives considered, chosen material, and justification. Links to MaterialPassport evidence via evo:justifies.evo:Decision
edcc:QualificationStudyQualification StudyTechnical study qualifying reused materials for structural, thermal, acoustic, or fire safety use. Evidence artifact proving fitness-for-purpose.evo:Evidence
edcc:SiteSiteA construction or demolition site. Spatial container for Buildings and material flows. Corresponds to IFC IfcSite. BFO grounding: edgy:Object → material entity (BFO:0000040).edgy:Object
edcc:StakeholderStakeholderAn actor in the circular construction ecosystem: diagnostiqueur PEMD, materiauthequeur, MOA, MOE, architecte, entreprise, eco-organisme, assureur. Typed via edcc:stakeholderRole.prov:Agent

Object Properties (8)

URILabelDomainRange
edcc:buyerbuyeredcc:CircularTransactionedcc:Stakeholder
edcc:hasMaterialhas materialedcc:Material---
edcc:locatedAtlocated atedcc:Buildingedcc:Site
edcc:onBuildingon buildingedcc:PEMDDiagnosticedcc:Building
edcc:passportOfpassport ofedcc:MaterialPassportedcc:MaterialLot
edcc:producesLotproduces lotedcc:PEMDDiagnosticedcc:MaterialLot
edcc:sellerselleredcc:CircularTransactionedcc:Stakeholder
edcc:transactedLottransacted lotedcc:CircularTransactionedcc:MaterialLot

Datatype Properties (16)

URILabelDomainRange
edccQ:co2AvoidedTonnesCO2 avoided (tonnes)xsd:decimal---
edcc:naceCodeNACE codexsd:string---
edcc:co2AvoidedKgavoided CO2 (kg)xsd:decimal---
edccQ:circularityRatecircularity ratexsd:decimal---
edccQ:counterfactualMethodcounterfactual methodxsd:string---
edccQ:economicSavingsEureconomic savings (EUR)xsd:decimal---
edcc:co2EmbodiedKgembodied CO2 (kg)xsd:decimal---
edcc:lifecyclePhaselifecycle phaseedcc:LifecycleTransitionxsd:string
edcc:massKgmass (kg)xsd:decimal---
edccQ:reportingPeriodEndreporting period endxsd:date---
edccQ:reportingPeriodStartreporting period startxsd:date---
edccQ:reportingScopereporting scopexsd:string---
edcc:reusePotentialreuse potentialxsd:string---
edcc:stakeholderRolestakeholder roleedcc:Stakeholderxsd:string
edccQ:tonnesReusedtonnes reusedxsd:decimal---
edcc:wasteCodewaste codexsd:string---

SPARQL example

# List all classes in this ontology
PREFIX : <>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT ?class ?label ?comment
WHERE {
  ?class a owl:Class ;
         rdfs:label ?label .
  OPTIONAL { ?class rdfs:comment ?comment }
  FILTER(STRSTARTS(STR(?class), STR(:)))
}
ORDER BY ?label