bra0 / Docs / Ontologies / bra0 Application Profile
Reference

bra0 Application Profile

Application profile for bra0 Knowledge Space Studio. Borrows from EDGY, SKOS, PROV-O, DCAT, ADMS, dcterms, ODRL, FnO. Defines ZERO classes; only 6 properties with no standard equivalent. ADR-028: bra0 borrows, it doesn't invent. Formalized as W3C PROF Profile for EU interoperability. Note on fno:Mapping: it appears below as the domain of bra0:role and bra0:scope because bra0 reuses the FnO reifier pattern for capability realization (N-ary relation — a capability realized by an asset, with role and scope). This is distinct from data-to-RDF source mapping, which in bra0 uses RML, R2RML, and SPARQL Anything / FacadeX.

Prefix
bra0:
Version
1.2.0
License
https://creativecommons.org/licenses/by-sa/4.0/
Created
2026-04-06
Modified
2026-04-11
Properties
9
Source
ontologies/enterprise/bra0-application-profile.ttl

Object Properties (5)

URILabelDomainRange
bra0:governedByMandategoverned by mandateedgy:Capabilityasc:Mandate
bra0:inputShapeinput shapep-plan:Stepsh:NodeShape
bra0:operatedByAgentoperated by agentedgy:Capabilityasc:AgentService
bra0:outputShapeoutput shapep-plan:Stepsh:NodeShape
bra0:rolerealization rolefno:Mappingskos:Concept

Datatype Properties (4)

URILabelDomainRange
bra0:cliCommandCLI commandp-plan:Stepxsd:string
bra0:focusDistinctivenessfocus distinctivenessedgy:Capabilityxsd:integer
bra0:focusPerformancefocus performanceedgy:Capabilityxsd:integer
bra0:scoperealization scopefno:Mappingxsd:string

SPARQL example

# List all classes in this ontology
PREFIX bra0: <bra0:>
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(bra0:)))
}
ORDER BY ?label