rcao:hasBrakeStatus leaf node


URI

https://www.w3id.org/rcao#hasBrakeStatus

Label

hasBrakeStatus

Description

Status of the brakes (Active/Inactive).

Usage

DOMAINPROPERTYRANGE
rcao:ConnectedVehicle rcao:hasBrakeStatus xsd:boolean

Implementation

@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rcao: <https://www.w3id.org/rcao#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

rcao:hasBrakeStatus a owl:DatatypeProperty ;
    rdfs:comment "Status of the brakes (Active/Inactive)." ;
    rdfs:domain rcao:ConnectedVehicle ;
    rdfs:range xsd:boolean .