W3C Member Submission

VSSo

W3C Member Submission

This version:
https://www.w3.org/submissions/2020/SUBM-vsso-20201026/
Latest published version:
https://www.w3.org/submissions/vsso/
Latest editor's draft:
https://w3c.github.io/vsso/index.html
Editors:
Benjamin Klotz (EURECOM)
Raphaël Troncy (EURECOM)
Daniel Wilms (BMW)
Christian Bonnet (EURECOM)
Participate:
GitHub vsso
File a bug
Commit history
Pull requests
Download serialization:
JSON-LD RDF/XML N-Triples TTL

Abstract

VSSo (or VSS ontology) is an ontology for describing automotive attributes, branches and signals. It is based on the [Vehicle Signal Specification] (GENIVI) and makes use of the SSN/SOSA modeling pattern for representing the vehicule signals.

Status of this document

This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications can be found in the W3C technical reports index at https://www.w3.org/TR/.

By publishing this document, W3C acknowledges that the Submitting Members have made a formal Submission request to W3C for discussion. Publication of this document by W3C indicates no endorsement of its content by W3C, nor that W3C has, is, or will be allocating any resources to the issues addressed by it. This document is not the product of a chartered W3C group, but is published as potential input to the W3C Process. A W3C Team Comment has been published in conjunction with this Member Submission. Publication of acknowledged Member Submissions at the W3C site is one of the benefits of W3C Membership. Please consult the requirements associated with Member Submissions of section 3.3 of the W3C Patent Policy. Please consult the complete list of acknowledged W3C Member Submissions.

VSSo: Overview back to ToC

This ontology has the following classes and properties.

Classes

Object Properties

Data Properties

VSSo: Description back to ToC

This section presents some examples of usage of VSSo, serialized in turtle. A vehicle is an instance of a vsso:Vehicle. It has a certain number of vsso:attributes such as vsso:brand, vsso:model, vsso:vin and vsso:year. A vehicle might produce signal that we have access to. In this example, the signal <http://automotive.eurecom.fr/1GTR1UEC6EZ289970/signal/temperatureOutside>.
Example of VSSo Vehicle
Example of VSSo Vehicle

<http://automotive.eurecom.fr/1GTR1UEC6EZ289970/branch/Vehicle> a vsso:Vehicle,
        geo:Feature,
        sosa:FeatureOfInterest ;
    vsso:brand "BMW"^^xsd:string ;
    vsso:hasSignal <http://automotive.eurecom.fr/1GTR1UEC6EZ289970/signal/temperatureOutside> ;
    vsso:model "X5"^^xsd:string ;
    vsso:vin "1GTR1UEC6EZ289970"^^xsd:string ;
    vsso:year "2015"^^xsd:int .
<http://automotive.eurecom.fr/1GTR1UEC6EZ289970/signal/temperatureOutside> a vsso:AmbientAirTemperature.
The same vehicle might be composed of several branches, which have also signals and attributes. In this case, we define the engine instance as a part of our vsso:Vehicle instance, with the following signals and attributes: the <http://automotive.eurecom.fr/1GTR1UEC6EZ289970/signal/temperatureOilEngine> signal, the vsso:displacement, vsso:engineConfiguration, vsso:fuelType, vsso:maxPower and vsso:maxTorque attributes.
Example of VSSo Engine branch
Example of VSSo Engine branch

<http://automotive.eurecom.fr/1GTR1UEC6EZ289970/branch/Engine> a vsso:Engine ;
	vsso:partOf <http://automotive.eurecom.fr/1GTR1UEC6EZ289970/branch/Vehicle> ;
    vsso:displacement "1570cm3"^^cdt:volume ;
    vsso:engineConfiguration "straight"^^xsd:string ;
    vsso:fuelType "diesel"^^xsd:string ;
    vsso:hasSignal <http://automotive.eurecom.fr/1GTR1UEC6EZ289970/signal/temperatureOilEngine> ;
    vsso:maxPower "600 kW"^^cdt:power ;
    vsso:maxTorque "280 NM"^^cdt:ucum .
<http://automotive.eurecom.fr/1GTR1UEC6EZ289970/signal/temperatureOilEngine> a vsso:EngineOilTemperature.
Any signal can produce an observation. In the following example, the observation is about the signal <http://automotive.eurecom.fr/1GTR1UEC6EZ289970/signal/temperatureEngine>, measured by the sensor <http://automotive.eurecom.fr/1GTR1UEC6EZ289970/sensor/thermometerEngine>, and has a result of 38 degree Celcius.
Example of a sosa:Observation of a VSSo signal
Example of a sosa:Observation of a VSSo signal

:Observation a sosa:Observation ;
    geo:lat "-74"^^xsd:long ;
    geo:long "117"^^xsd:long ;
    sosa:hasFeatureOfInterest <http://automotive.eurecom.fr/branch/Vehicle> ;
    sosa:hasSimpleResult "38 Cel"^^cdt:temperature ;
    sosa:madeBySensor <http://automotive.eurecom.fr/1GTR1UEC6EZ289970/sensor/thermometerEngine> ;
    sosa:observedProperty <http://automotive.eurecom.fr/1GTR1UEC6EZ289970/signal/temperatureOilEngine> ;
    sosa:phenomenonTime "2018-11-16 15:50:27"^^xsd:dateTime .

Inventory of VSSo classes, object properties and datatype properties back to ToC

This section provides details for each class and property defined by VSSo.

Classes

ABSc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ABS

Signal/Attribute.ADAS.ABS : Antilock Braking System signals

has super-classes
Branch c
has signal op only
part of op only ADAS c

AbsoluteLoadc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#AbsoluteLoad

Signal.OBD.AbsoluteLoad : PID 43 - Absolute load value

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only diagnostic system c

Accelerationc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Acceleration

Signal/Attribute.Vehicle.Acceleration : Spatial acceleration

has super-classes
Branch c
has signal op only
part of op only Vehicle c

Acceleratorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#AcceleratorPedal

Signal/Attribute.Chassis.Accelerator : Accelerator signals

has super-classes
Branch c
has signal op only PedalPosition c
part of op only Chassis c

AcceleratorPositionDc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#AcceleratorPositionD-E-F

Signal.OBD.AcceleratorPositionD/E/F : PID 49/4A/4B - Accelerator pedal position D/E/F

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Pedal position sensor c

Accelerometerc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Accelerometer

Sensor measuring the linear acceleration

has super-classes
sensor c

Accuracyc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#GPSAccuracy

Signal.Cabin.Infotainment.Navigation.CurrentLocation.Accuracy : Accuracy level of the latitude and longitude coordinates in meters.

has super-classes
Observable signal c
unit only length unit c
is observed by op only Global positioning system c

Actionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MediaAction

Signal.Cabin.Infotainment.Media.Action : Tells if the media was

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Multimedia system c
is observed by op only Multimedia system c

Actuable signalc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ActuableSignal

has super-classes
actuable property c
has sub-classes
Action c, AirDistribution c, AirStatus c, AuxInputStatus c, Backward c, Backward c, Backward c, CommandedEVAP c, Cooler c, CurrentLanguage c, DateFormat c, DayNightMode c, Decrease c, Deflate c, Deflate c, DimmingLevel c, DistanceUnit c, Down c, Down c, Down c, Down c, EVEconomyUnit c, Extension c, FanSpeed c, Forward c, Forward c, Forward c, FuelEconomyUnit c, Gear c, GearChangeMode c, Increase c, Inflate c, Inflate c, IsActive c, IsActive c, IsActive c, IsActive c, IsActive c, IsActive c, IsActive c, IsBackupOn c, IsBrakeOn c, IsDomeOn c, IsEngaged c, IsFrontDefrosterActive c, IsFrontFogOn c, IsGloveBoxOn c, IsHazardOn c, IsHighBeamOn c, IsLeftIndicatorOn c, IsLocked c, IsLocked c, IsLowBeamOn c, IsOpen c, IsOpen c, IsOpen c, IsParkingOn c, IsPassengerOn c, IsRearDefrosterActive c, IsRearFogOn c, IsRecirculationActive c, IsRightIndicatorOn c, IsRunningOn c, IsTrunkOn c, Latitude c, Longitude c, Pan c, PerformanceMode c, Position c, Position c, Position c, SelectedURI c, Source c, SpeedSet c, Status c, Status c, Status c, Switch c, Switch c, Switch c, Switch c, Switch c, Temperature c, TemperatureUnit c, ThrottleActuator c, Tilt c, Tilt c, TimeFormat c, Up c, Up c, Up c, Up c, Volume c, Warmer c
is also defined as
object property

ADASc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ADAS

Signal/Attribute.ADAS : All Advanced Driver Assist Systems attributes

has super-classes
Branch c
part of op only Vehicle c

Air conditioning systemc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#AirConditioningSystem

Air conditioning system

has super-classes
actuator c
sensor c

Airbagc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Airbag

Signal/Attribute.Cabin.Seat.RowX.PosX.Airbag : Airbag signals

has super-classes
Branch c
has signal op only IsDeployed c
part of op only Seat c
position op only { }

Airbag systemc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#AirbagSystem

Sensor measuring if the airbag is deployed

has super-classes
sensor c

AirDistributionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#AirDistribution

Signal.Cabin.HVAC.RowX.Left/Right.AirDistribution : Direction of airstream

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Fan control c
is observed by op only Fan sensor c

AirStatusc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#AirStatus

Signal.OBD.AirStatus : PID 12 - Secondary air status

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only diagnostic system c
is observed by op only diagnostic system c

Albumc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MediaAlbum

Signal.Cabin.Infotainment.Media.Played.Album : Name of album being played

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Multimedia system c

AmbientAirTemperaturec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#AmbientAirTemperature

Signal.Vehicle.AmbientAirTemperature / Signal.Cabin.HVAC.AmbientAirTemperature / Signal.Drivetrain.InternalCombustionEngine.Engine.AmbientAirTemperature / Signal.OBD.AmbientAirTemperature / PID 46 : Ambient air temperature (outside)

has super-classes
Observable signal c
unit only temperature unit c
is observed by op only Thermometer c

AmbientLightc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#AmbientLightLevel

Signal.Cabin.Lights.AmbientLight : How much ambient light is detected in cabin. 0 = No ambient light. 100 = Full brightness

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Light sensor c

Anglec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SteeringWheelAngle

Signal.Chassis.SteeringWheel.Angle : Steering wheel angle. Positive = degrees to the left. Negative = degrees to the right.

has super-classes
Observable signal c
unit only angle unit c
is observed by op only Steering wheel angle sensor c

Antilock braking systemc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#AntilockBrakingSystem

Appliance that allows thes wheels to maintain tractive contact by prevent them from locking up

has super-classes
actuator c
sensor c

Artistc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MediaArtist

Signal.Cabin.Infotainment.Media.Played.Artist : Name of artist being played

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Multimedia system c

AuxInputStatusc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#AuxInputStatus

Signal.OBD.AuxInputStatus : PID 1E - Auxiliary input status (power take off)

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only diagnostic system c
is observed by op only diagnostic system c

AverageConsumptionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#AverageConsumption

Signal.Drivetrain.FuelSystem.AverageConsumption : Average consumption in liters per 100 km.

has super-classes
Observable signal c
unit only volume per distance unit c
is observed by op only Flow sensor c

AverageSpeedc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#AverageSpeed

Signal.Vehicle.AverageSpeed : Average speed for the current trip

has super-classes
Observable signal c
unit only linear velocity unit c
is observed by op only Odometer c

Axlec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Axle

Signal/Attribute.Chassis.Axle : Axle configuration attributes

has super-classes
Branch c
part of op only Chassis c
is in domain of
Count op, TireDiameter op, TireWidth op, WheelCount op, WheelDiameter op, WheelWidth op

Backup lightc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#BackupLight

Turns on and off the backup light

has super-classes
actuator c

Backup light switchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#BackupLightSwitch

Senses if the backup light switch is on

has super-classes
sensor c

Backwardc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CushionBackward

Signal.Cabin.Seat.RowX.PosY.Switch.Cushion.Backward : Seat cushion backward/shorten switch engaged

has super-classes
Actuable signal c
Actuable signal op only Cushion position actuator c

Backwardc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ReclineBackward

Signal.Cabin.Seat.RowX.PosY.Switch.Recline.Backward : Seatback recline backward switch engaged

has super-classes
Actuable signal c
Actuable signal op only Seat position actuator c

Backwardc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SeatBackward

Signal.Cabin.Seat.RowX.PosY.Switch.Backward : Seat forward switch engaged

has super-classes
Actuable signal c
Actuable signal op only Seat position actuator c

BarometricPressurec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#BarometricPressure

Signal.OBD.BarometricPressure : PID 33 - Barometric pressure

has super-classes
Observable signal c
unit only pressure or stress unit c
is observed by op only barometer c

Battery monitorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#BatteryMonitor

Sensor measuring the capacity of a battery

has super-classes
sensor c

BatteryCapacityc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#BatteryCapacity

Signal.Drivetrain.BatteryManagement.BatteryCapacity : Remaining capacity of the batter pack

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Battery monitor c

BatteryManagementc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#BatteryManagement

Signal/Attribute.Drivetrain.BatteryManagement : Battery Management attributes

has super-classes
Branch c
has signal op only
part of op only Drivetrain c
is in domain of
Charging inlet op

BatteryTemperaturec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#BatteryTemperature

Signal.Drivetrain.BatteryManagement.BatteryTemperature : Temperature of the battery pack

has super-classes
Observable signal c
unit only temperature unit c
is observed by op only Thermometer c

Belt sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#BeltSensor

Sensor measuring if a seat is belted

has super-classes
sensor c

Bodyc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Body

Signal/Attribute.Body : All body components

has super-classes
Branch c
part of op only Vehicle c
is in domain of
BodyType op, RefuelPosition op

Brakec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Brake

Signal/Attribute.Chassis.Axle.RowX.Wheel.Left/Right.Brake : Brake signals for wheel

has super-classes
Branch c
has signal op only
part of op only Wheel c
position op only { }

Brakec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#BrakePedal

Signal/Attribute.Chassis.Brake : Brake system signals

has super-classes
Branch c
has signal op only PedalPosition c
part of op only Chassis c

Brake fluid level sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#BrakeFluidLevelSensor

Sensor measuring the brake fluid level

has super-classes
sensor c

Brake lightc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#BrakeLight

Turns on and off the brake light

has super-classes
actuator c

Brake light switchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#BrakeLightSwitch

Senses if the brake light switch is on

has super-classes
sensor c

Brake padwear sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#BrakePadWearSensor

Sensor measuring the padwear of a brake

has super-classes
sensor c

BrakesWornc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#BrakesWorn

Signal.Chassis.Axle.RowX.Wheel.Left/Right.Brake.BrakesWorn : Brake pad wear status. True = Worn. False = Not Worn.

has super-classes
Observable signal c
is observed by op only Brake padwear sensor c

Branchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Branch

Branch of the vehicle. Either a component (Body, Chassis...) or the complete vehicle

has sub-classes
ABS c, ADAS c, Acceleration c, Accelerator c, Airbag c, Axle c, BatteryManagement c, Body c, Brake c, Brake c, Cabin c, Catalyst c, Chassis c, Convertible Roof c, CruiseControl c, CurrentLocation c, Cushion c, Cushion c, DestinatonSet c, DistanceToObject c, Door c, DriveCycleStatus c, Drivetrain c, ESC c, ElectricMotor c, FuelCell c, FuelSystem c, Gyro c, HMI c, HVAC c, HVAC c, HeadRestraint c, HeadRestraint c, Heating c, Heating c, Hood c, Horn c, Infotainment c, InternalCombustionEngine c, LaneDepartureDetection c, Lights c, Lights c, Lights c, Lumbar c, Lumbar c, Massage c, Media c, Mirrors c, Navigation c, O2 Sensor c, OBD c, ObstacleDetection c, ParkingBrake c, Played c, Raindetection c, RearShade c, RearviewMirror c, Recline c, Seat c, Sensor1 c, Sensor1 c, Shade c, Shade c, SideBolster c, SideBolster c, Status c, SteeringWheel c, Sunroof c, Switch c, TCS c, Tire c, Trailer c, Transmission c, Trunk c, Vehicle c, WasherFluid c, Wheel c, Window c, Windshield c, Wiping c
is in domain of
Attribute op, has signal op, part of op, position op
is in range of
part of op

Cabinc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Cabin

Signal/Attribute.Cabin : All in-cabin components

has super-classes
Branch c
part of op only Vehicle c

Catalystc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Catalyst

Signal/Attribute.OBD.Catalyst : Catalyst signals

has super-classes
Branch c
has signal op only
part of op only OBD c

Chassisc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Chassis

Signal/Attribute.Chassis : All attributes concerning steering

has super-classes
Branch c
part of op only Vehicle c
is in domain of
CurbWeight op, GrossWeight op, Height op, Length op, TowWeight op, Track op, Wheelbase op, Width op

Child lockc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ChildLock

Child lock

has super-classes
actuator c
sensor c

Clutch wear indicatorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ClutchWearIndicator

Sensor measuring the wear of the clutch

has super-classes
sensor c

ClutchWearc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ClutchWear

Signal.Drivetrain.Transmission.ClutchWear : Clutch wear as a percent. 0 = no wear. 100 = worn.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Clutch wear indicator c

CommandedEGRc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CommandedEGR

Signal.OBD.CommandedEGR : PID 2C - Commanded exhaust gas recirculation (EGR)

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only e g r system monitor c

CommandedEquivalenceRatioc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CommandedEquivalenceRatio

Signal.OBD.CommandedEquivalenceRatio : PID 44 - Commanded equivalence ratio

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only diagnostic system c

CommandedEVAPc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CommandedEVAP

Signal.OBD.CommandedEVAP : PID 2E - Commanded evaporative purge (EVAP) valve

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only e v a p system c
is observed by op only e v a p system c

ConsumptionSinceStartc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ConsumptionSinceStart

Signal.Drivetrain.FuelSystem.ConsumptionSinceStart : Fuel amount consumed since start in liters.

has super-classes
Observable signal c
unit only volume unit c
is observed by op only Flow sensor c

ControlModuleVoltagec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ControlModuleVoltage

Signal.OBD.ControlModuleVoltage : PID 42 - Control module voltage

has super-classes
Observable signal c
unit only energy per electric charge unit c
is observed by op only voltage sensor c

Convertible Roofc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ConvertibleRoof

Signal/Attribute.Cabin.Convertible : convertible roof

has super-classes
Branch c
has signal op only Convertible roof status c
part of op only Cabin c

Convertible roof statusc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ConvertibleRoofStatus

Signal.Cabin.Convertible.Status : Roof status on convertible vehicles.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only roof position sensor c

Coolant thermometerc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CoolantThermometer

Sensor measuring the temperature of the coolant fluid

has super-classes
sensor c

CoolantTemperaturec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CoolantTemperature

Signal.OBD.CoolantTemperature : PID 05 - Coolant temperature

has super-classes
Observable signal c
unit only temperature unit c
is observed by op only coolant temperature sensor c

Coolerc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SeatCooling

Signal.Cabin.Seat.RowX.PosY.Switch.Cooler : Cooler switch for Seat heater

has super-classes
Actuable signal c
Actuable signal op only Seat cooler c

Cruise control systemc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CruiseControlSystem

Appliance that automatically controls the speed of a vehicle

has super-classes
actuator c
sensor c

CruiseControlc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CruiseControl

Signal/Attribute.ADAS.CruiseControl : Signals from Cruise Control system

has super-classes
Branch c
has signal op only
part of op only ADAS c

Currentc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#O2Current

Signal.OBD.O2WR.Sensor1.Current : PID 34-3B - Lambda current for wide range/band oxygen sensor 1

has super-classes
Observable signal c
unit only electric current unit c
is observed by op only O2 Sensor c

CurrentLanguagec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CurrentLanguage

Signal.Cabin.Infotainment.HMI.CurrentLanguage : ISO 639-1 standard language code for the current HMI

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Multimedia system c
is observed by op only Multimedia system c

CurrentLocationc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CurrentLocation

Signal/Attribute.Cabin.Infotainment.Navigation.CurrentLocation : The current latitude and longitude of the vehicle.

has super-classes
Branch c
has signal op only
part of op only Navigation c

Cushionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Cushion

Signal/Attribute.Cabin.Seat.RowX.PosX.Cushion : Cushion signals.

has super-classes
Branch c
has signal op only
part of op only Seat c
position op only { }

Cushionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CushionSwitch

Signal/Attribute.Cabin.Seat.RowX.PosX.Switch.Cushion : Cushion switches

has super-classes
Branch c
has signal op only
part of op only Switch c
position op only { }

Cushion position actuatorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CushionPositionActuator

Controls the cushion position

has super-classes
actuator c

DateFormatc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#DateFormat

Signal.Cabin.Infotainment.HMI.DateFormat : Date format used in the current HMI

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Multimedia system c
is observed by op only Multimedia system c

DayNightModec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#DayNightMode

Signal.Cabin.Infotainment.HMI.DayNightMode : Current display theme

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Multimedia system c
is observed by op only Multimedia system c

DeclinedURIc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#DeclinedMediaURI

Signal.Cabin.Infotainment.Media.DeclinedURI : URI of suggested media that was declined

has super-classes
Observable signal c
is observed by op only Multimedia system c
unit only any u r i

Decreasec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#DecreaseMassage

Signal.Cabin.Seat.RowX.PosY.Switch.Massage.Decrease : Decrease massage level switch engaged

has super-classes
Actuable signal c
Actuable signal op only Massage system c

Deflatec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#DeflateSideBolster

Signal.Cabin.Seat.RowX.PosY.Switch.SideBolster.Deflate : Lumbar deflation switch engaged

has super-classes
Actuable signal c
Actuable signal op only Lumber pressure actuator c

Deflatec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LumbarDeflate

Signal.Cabin.Seat.RowX.PosY.Switch.Lumbar.Deflate : Lumbar deflation switch engaged

has super-classes
Actuable signal c
Actuable signal op only Lumber pressure actuator c

Defrosterc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Defroster

Windshield defroster

has super-classes
actuator c
sensor c

DestinatonSetc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#DestinatonSet

Signal/Attribute.Cabin.Infotainment.Navigation.DestinatonSet : A navigation has been selected.

has super-classes
Branch c
has signal op only
part of op only Navigation c

Dimming systemc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#DimmingSystem

Mirror dimming system

has super-classes
actuator c
sensor c

DimmingLevelc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#RearviewMirrorDimmingLevel

Signal.Cabin.RearviewMirror.DimmingLevel : Dimming level of rearview mirror. 0 = undimmed. 100 = fully dimmed

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Dimming system c
is observed by op only Dimming system c

DistanceSinceDTCClearc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#DistanceSinceDTCClear

Signal.OBD.DistanceSinceDTCClear : PID 31 - Distance traveled since codes cleared

has super-classes
Observable signal c
unit only length unit c
is observed by op only diagnostic system c

DistanceToObjectc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#DistanceToObject

Signal/Attribute.ADAS.ObstacleDetection.DistanceToObject : Distance signals form Obstacle Sensor System

has super-classes
Branch c
has signal op only RearLeft c
part of op only ObstacleDetection c
position op only { }

DistanceUnitc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#DistanceUnit

Signal.Cabin.Infotainment.HMI.DistanceUnit : Distance unit used in the current HMI

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Multimedia system c
is observed by op only Multimedia system c

DistanceWithMILc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#DistanceWithMIL

Signal.OBD.DistanceWithMIL : PID 21 - Distance traveled with MIL on

has super-classes
Observable signal c
unit only length unit c
is observed by op only Odometer c

Dome lightc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#DomeLight

Dome light

has super-classes
actuator c
sensor c

Doorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Door

Signal/Attribute.Cabin.Door : All doors

has super-classes
Branch c
has signal op only
part of op only Cabin c
position op only { }
is in domain of
Count op

Door contact actuatorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#DoorContactActuator

Shuts or opens a door

has super-classes
actuator c

Door contact sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#DoorContactSensor

Sensor measuring if a door is open or closed

has super-classes
sensor c

Door lockc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#DoorLock

Door lock

has super-classes
actuator c
sensor c

Downc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CushionDown

Signal.Cabin.Seat.RowX.PosY.Switch.Cushion.Down : Seat cushion down switch engaged

has super-classes
Actuable signal c
Actuable signal op only Cushion position actuator c

Downc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#HeadRestraintDown

Signal.Cabin.Seat.RowX.PosY.Switch.HeadRestraint.Down : Head restraint down switch engaged

has super-classes
Actuable signal c
Actuable signal op only Head restraint actuator c

Downc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LumbarDown

Signal.Cabin.Seat.RowX.PosY.Switch.Down : Seat down switch engaged

has super-classes
Actuable signal c
Actuable signal op only Seat position actuator c

Downc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SeatDown

Signal.Cabin.Seat.RowX.PosY.Switch.Lumbar.Down : Lumbar down switch engaged

has super-classes
Actuable signal c
Actuable signal op only Lumbar position actuator c

Drive systemc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#DriveSystem

Driving mode control

has super-classes
actuator c
sensor c

DriveCycleStatusc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CurrentDriveCycleStatus

Signal/Attribute.OBD.DriveCycleStatus : PID 41 - OBD status for the current drive cycle

has super-classes
Branch c
has signal op only
part of op only OBD c

DriveTimec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#AccumulatedDriveTime

Signal.Vehicle.DriveTime : Accumulated drive time in seconds.

has super-classes
Observable signal c
unit only time unit c
is observed by op only Timer c

Drivetrainc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Drivetrain

Signal/Attribute.Drivetrain : Drivetrain attributes internal combustion engines

has super-classes
Branch c
part of op only Vehicle c

DTCCountc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#DTCCount

Signal.OBD.Status.DTCCount : Number of Diagnostic Trouble Codes (DTC)

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only diagnostic system c

ECTc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ECT

Signal.Drivetrain.InternalCombustionEngine.Engine.ECT : Engine coolant temperature.

has super-classes
Observable signal c
unit only temperature unit c
is observed by op only Coolant thermometer c

EGRErrorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#EGRError

Signal.OBD.EGRError : PID 2D - Exhaust gas recirculation (EGR) error

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only e g r system monitor c

ElectricMotorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ElectricMotor

Signal/Attribute.Drivetrain.ElectricMotor : Electric Motor specific signals.

has super-classes
Branch c
part of op only Drivetrain c

Electronic stability control systemc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ElectronicStabilityControlSystem

System detecting loss of traction (skidding) and reducing it

has super-classes
actuator c
sensor c

EngineLoadc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#EngineLoad

Signal.OBD.EngineLoad : PID 04 - Engine load in percent - 0 = no load, 100 = full load

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only diagnostic system c

EOPc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#EOP

Signal.Drivetrain.InternalCombustionEngine.Engine.EOP : Engine oil pressure.

has super-classes
Observable signal c
unit only temperature unit c
is observed by op only Oil pressure sensor c

EOTc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#EngineOilTemperature

Signal.Drivetrain.InternalCombustionEngine.Engine.EOT / Signal.OBD.OilTemperature / PID 5C : Engine oil temperature.

has super-classes
Observable signal c
unit only temperature unit c
is observed by op only Oil thermometer c

Errorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ABSError

Signal.ADAS.ABS.Error : Indicates if ABS incurred an error condition. True = Error. False = No Error.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Antilock braking system c

Errorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CruiseControlError

Signal.ADAS.CruiseControl.Error : Indicates if cruise control system incurred and error condition. True = Error. False = NoError.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Cruise control system c

Errorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ESCError

Signal.ADAS.ESC.Error : Indicates if ESC incurred an error condition. True = Error. False = No Error.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Electronic stability control system c

Errorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LaneDepartureDetectionError

Signal.ADAS.LaneDepartureDetection.Error : Indicates if lane departure system incurred an error condition. True = Error. False = No Error.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Lane departure detection sensor c

Errorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ObstacleDetectionError

Signal.ADAS.ObstacleDetection.Error : Indicates if obstacle sensor system incurred an error condition. True = Error. False = No Error.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Obstacle detection Sensor c

Errorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TCSError

Signal.ADAS.TCS.Error : Indicates if TCS incurred an error condition. True = Error. False = No Error.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Traction control system c

ESCc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ESC

Signal/Attribute.ADAS.ESC : Electronic Stability Control System signals

has super-classes
Branch c
has signal op only
part of op only ADAS c

EthanolPercentc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#EthanolPercent

Signal.OBD.EthanolPercent : PID 52 - Percentage of ethanol in the fuel

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only fluid sensor c

EVAPVaporPressurec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#EVAPVaporPressure

Signal.OBD.EVAPVaporPressure : PID 32 - Evaporative purge (EVAP) system pressure

has super-classes
Observable signal c
unit only pressure or stress unit c
is observed by op only e v a p system c

EVAPVaporPressureAbsolutec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#EVAPVaporPressureAbsolute

Signal.OBD.EVAPVaporPressureAbsolute : PID 53 - Absolute evaporative purge (EVAP) system pressure

has super-classes
Observable signal c
unit only pressure or stress unit c
is observed by op only e v a p system c

EVAPVaporPressureAlternatec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#EVAPVaporPressureAlternate

Signal.OBD.EVAPVaporPressureAlternate : PID 54 - Alternate evaporative purge (EVAP) system pressure

has super-classes
Observable signal c
unit only pressure or stress unit c
is observed by op only e v a p system c

EVEconomyUnitc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#EVEconomyUnit

Signal.Cabin.Infotainment.HMI.EVEconomyUnit : EV fuel economy unit used in the current HMI

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Multimedia system c
is observed by op only Multimedia system c

Extensionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SteeringWheelExtension

Signal.Chassis.SteeringWheel.Extension : Steering wheel column extension from dashboard. 0 = Closest to dashboard. 100 = Furthest from dashboard.

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Steering wheel position actuator c
is observed by op only Steering wheel position sensor c

Fan controlc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#FanControl

Controls a fan speed

has super-classes
actuator c

Fan sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#FanSensor

Sensor measuring the fan speed

has super-classes
sensor c

FanSpeedc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#FanSpeed

Signal.Cabin.HVAC.RowX.Left/Right.FanSpeed : Fan Speed, 0 = off. 100 = max

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Fan control c
is observed by op only Fan sensor c

Flow sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#FlowSensor

Sensor measuring the flow of a fluid (fuel)

has super-classes
sensor c

FluidLevelc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#BrakeFluidLevel

Signal.Chassis.Axle.RowX.Wheel.Left/Right.Brake.FluidLevel : Brake fluid level as percent. 0 = Empty. 100 = Full.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Brake fluid level sensor c

FluidLevelLowc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#BrakeFluidLevelLow

Signal.Chassis.Axle.RowX.Wheel.Left/Right.Brake.FluidLevelLow : Brake fluid level status. True = Brake fluid level low. False = Brake fluid level OK.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Brake fluid level sensor c

Forwardc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CushionForward

Signal.Cabin.Seat.RowX.PosY.Switch.Cushion.Forward : Seat cushion forward/lengthen switch engaged

has super-classes
Actuable signal c
Actuable signal op only Cushion position actuator c

Forwardc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ReclineForward

Signal.Cabin.Seat.RowX.PosY.Switch.Recline.Forward : Seatback recline forward switch engaged

has super-classes
Actuable signal c
Actuable signal op only Seat position actuator c

Forwardc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SeatForward

Signal.Cabin.Seat.RowX.PosY.Switch.Forward : Seat forward switch engaged

has super-classes
Actuable signal c
Actuable signal op only Seat position actuator c

FreezeDTCc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#FreezeDTC

Signal.OBD.FreezeDTC : PID 02 - DTC that triggered the freeze frame

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only diagnostic system c

Front fog lightc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#FrontFogLight

Turns on and off the front fog light

has super-classes
actuator c

Front fog position switchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#FrontFogLightSwitch

Senses if the front fog light switch is on

has super-classes
sensor c

Fuel tank level sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#FuelTankLevelSensor

Sensor measuring the fuel tank level

has super-classes
sensor c

FuelCellc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#FuelCell

Signal/Attribute.Drivetrain.FuelCell : Fuel Cell attributes

has super-classes
Branch c
part of op only Drivetrain c

FuelEconomyUnitc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#FuelEconomyUnit

Signal.Cabin.Infotainment.HMI.FuelEconomyUnit : Fuel economy unit used in the current HMI

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Multimedia system c
is observed by op only Multimedia system c

FuelInjectionTimingc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#FuelInjectionTiming

Signal.OBD.FuelInjectionTiming : PID 5D - Fuel injection timing

has super-classes
Observable signal c
unit only angle unit c
is observed by op only crankshaft position sensor c

FuelPressurec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#FuelPressure

Signal.OBD.FuelPressure : PID 0A - Fuel pressure

has super-classes
Observable signal c
unit only pressure or stress unit c
is observed by op only fuel pressure sensor c

FuelRailPressureAbsolutec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#FuelRailPressureAbsolute

Signal.OBD.FuelRailPressureAbsolute : PID 59 - Absolute fuel rail pressure

has super-classes
Observable signal c
unit only pressure or stress unit c
is observed by op only fuel rail pressure sensor c

FuelRailPressureDirectc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#FuelRailPressureDirect

Signal.OBD.FuelRailPressureDirect : PID 23 - Fuel rail pressure direct inject

has super-classes
Observable signal c
unit only pressure or stress unit c
is observed by op only fuel rail pressure sensor c

FuelRailPressureVacc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#FuelRailPressureVac

Signal.OBD.FuelRailPressureVac : PID 22 - Fuel rail pressure relative to vacuum

has super-classes
Observable signal c
unit only pressure or stress unit c
is observed by op only fuel rail pressure sensor c

FuelRatec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#FuelRate

Signal.OBD.FuelRate : PID 5E - Engine fuel rate

has super-classes
Observable signal c
unit only volume per time unit c
is observed by op only Flow sensor c

FuelStatusc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#FuelStatus

Signal.OBD.FuelStatus : PID 03 - Fuel status

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only diagnostic system c

FuelSystemc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#FuelSystem

has super-classes
Branch c
has signal op only
part of op only Drivetrain c
is in domain of
TankCapacity op
is also defined as
named individual

FuelTypec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#FuelType

Signal.OBD.FuelType : PID 51 - Fuel type

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only diagnostic system c

Gearc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CurrentGear

Signal.Drivetrain.Transmission.Gear : Current gear. 0=Neutral. -1=Reverse

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Gearbox system c
is observed by op only Gearbox system c

Gearbox systemc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Gearbox

Gearbox monitoring system

has super-classes
actuator c
sensor c

Gearbox temperaturec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#GearboxTemperature

Signal.Drivetrain.Transmission.Temperature : The current gearbox temperature.

has super-classes
Observable signal c
unit only temperature unit c
is observed by op only Thermometer c

GearChangeModec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#GearChangeMode

Signal.Drivetrain.Transmission.GearChangeMode : Is the gearbox in automatic or manual (paddle) mode.

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Drive system c
is observed by op only Drive system c

Global positioning systemc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#GPS

has super-classes
actuator c
sensor c
is also defined as
named individual

Glove box lightc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#GloveBoxLight

Glove box light

has super-classes
actuator c
sensor c

Gyroc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#AngularVelocity

Signal/Attribute.Vehicle.AngularVelocity : Spatial rotation

has super-classes
Branch c
has signal op only
part of op only Vehicle c

Gyroscopec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Gyroscope

Sensor measuring the angular orientation and angular velocity

has super-classes
sensor c

HasPassengerc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SeatHasPassenger

Signal.Cabin.Seat.RowX.PosY.HasPassenger : Does the seat have a passenger in it.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Occupant classification system c

Hazard lightc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#HazardLight

Turns on and off the hazard light

has super-classes
actuator c

Hazard light switchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#HazardLightSwitch

Senses if the hazard light switch is on

has super-classes
sensor c

Head restraint actuatorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#HeadRestraintActuator

Controls the head restraint position

has super-classes
actuator c

Head restraint sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#HeadRestraintSensor

Sensor measuring the position of the head restraint

has super-classes
sensor c

Headingc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#GPSHeading

Signal.Cabin.Infotainment.Navigation.CurrentLocation.Heading : Current magnetic compass heading, in degrees.

has super-classes
Observable signal c
unit only angle unit c
is observed by op only Global positioning system c

HeadRestraintc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#HeadRestraint

Signal/Attribute.Cabin.Seat.RowX.PosX.HeadRestraint : Head restraint settings

has super-classes
Branch c
has signal op only Height c
part of op only Seat c
position op only { }

HeadRestraintc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#HeadRestraintSwitch

Signal/Attribute.Cabin.Seat.RowX.PosX.Switch.HeadRestraint : Head restraint switches

has super-classes
Branch c
has signal op only
part of op only Switch c
position op only { }

Heatingc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MirrorHeating

Signal/Attribute.Body.Mirrors.Left/Right.Heating : Mirror heater signals

has super-classes
Branch c
has signal op only Status c
part of op only Mirrors c
position op only { }

Heatingc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SeatHeating

Signal.Cabin.Seat.RowX.PosY.Heating : Seat cooling / heating. 0 = off. -100 = max cold. +100 = max heat

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only seat heater c

Heatingc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#WindshieldHeating

Signal/Attribute.Body.Windshield.Front/Rear.Heating : Front/Rear windshield heater signals

has super-classes
Branch c
has signal op only Status c
part of op only Windshield c
position op only { }

Heightc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CushionHeight

Signal.Cabin.Seat.RowX.PosY.Cushion.Height : Height of the seat front. 0 = Lowermost. 100 = Uppermost.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only cushion position sensor c

Heightc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#HeadRestraintHeight

Signal.Cabin.Seat.RowX.PosY.HeadRestraint.Height : Height of head restraint. 0 = Bottommost. 100 = Topmost.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Head restraint sensor c

Heightc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LumbarHeight

Signal.Cabin.Seat.RowX.PosY.Lumbar.Height : Lumbar support position. 0 = Lowermost. 100 = Uppermost.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Lumbar position sensor c

High beam lightc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#HighBeamLight

Turns on and off the high beam light

has super-classes
actuator c

High Beam Light Switchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#HighBeamLightSwitch

Senses if the high beam switch is on

has super-classes
sensor c

HMIc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#HMI

Signal/Attribute.Cabin.Infotainment.HMI : HMI (Human Machine Interface) related signals

has super-classes
Branch c
has signal op only
part of op only Infotainment c

Hoodc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Hood

Signal/Attribute.Body.Hood : Hood status

has super-classes
Branch c
has signal op only IsOpen c
part of op only Body c

Hood latchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#HoodLatch

System controling the hood

has super-classes
actuator c
sensor c

Hornc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Horn

Signal/Attribute.Body.Horn : Horn signals

has super-classes
Branch c
has signal op only IsActive c
part of op only Body c

Horn systemc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#HornSystem

Horn/honk system

has super-classes
actuator c
sensor c

HVACc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#HVAC

Signal/Attribute.Cabin.HVAC : Climate control

has super-classes
Branch c
has signal op only
part of op only Cabin c

HVACc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LocalHVAC

Signal/Attribute.Cabin.HVAC.RowX.Left/Right : Climate control

has super-classes
Branch c
has signal op only
part of op only HVAC c
position op only { }

HybridBatteryRemainingc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#HybridBatteryRemaining

Signal.OBD.HybridBatteryRemaining : PID 5B - Remaining life of hybrid battery

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only battery sensor c

IdleTimec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#AccumulatedIdleTime

Signal.Vehicle.IdleTime : Accumulated idle time in seconds.

has super-classes
Observable signal c
unit only time unit c
is observed by op only Timer c

IgnitionOffTimec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#AccumulatedIgnitionOffTime

Signal.Vehicle.IgnitionOffTime : Accumulated ignition off time in seconds.

has super-classes
Observable signal c
unit only time unit c
is observed by op only Timer c

IgnitionOnTimec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#AccumulatedIgnitionOnTime

Signal.Vehicle.IgnitionOnTime : Accumulated ignition on time in seconds.

has super-classes
Observable signal c
unit only time unit c
is observed by op only Timer c

Increasec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IncreaseMassage

Signal.Cabin.Seat.RowX.PosY.Switch.Massage.Increase : Increase massage level switch engaged

has super-classes
Actuable signal c
Actuable signal op only Massage system c

Inflatec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#InflateSideBolster

Signal.Cabin.Seat.RowX.PosY.Switch.SideBolster.Inflate : Lumbar inflation switch engaged

has super-classes
Actuable signal c
Actuable signal op only Lumber pressure actuator c

Inflatec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LumbarInflate

Signal.Cabin.Seat.RowX.PosY.Switch.Lumbar.Inflate : Lumbar inflation switch engaged

has super-classes
Actuable signal c
Actuable signal op only Lumber pressure actuator c

Inflationc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LumbarInflation

Signal.Cabin.Seat.RowX.PosY.Lumbar.Inflation : Lumbar support inflation. 0 = Fully deflated. 100 = Fully inflated.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Lumbar position sensor c

Inflationc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SideBolsterInflation

Signal.Cabin.Seat.RowX.PosY.SideBolster.Inflation : Lumbar support inflation. 0 = Fully deflated. 100 = Fully inflated.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only lumbar pressure sensor c

Infotainmentc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Infotainment

Signal/Attribute.Cabin.Infotainment : Infotainment system

has super-classes
Branch c
part of op only Cabin c

InstantConsumptionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#InstantConsumption

Signal.Drivetrain.FuelSystem.InstantConsumption : Current consumption in liters per 100 km.

has super-classes
Observable signal c
unit only volume per distance unit c
is observed by op only Flow sensor c

Intake Temperaturec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IntakeTemperature

Signal.OBD.IntakeTemp : PID 0F - Intake temperature

has super-classes
Observable signal c
unit only temperature unit c
is observed by op only intake air temperature sensor c

Intensityc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#RainIntensity

Signal.Body.Raindetection.Intensity : Rain intensity. 0 = Dry, No Rain. 100 = Covered.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Rain sensor c

InternalCombustionEnginec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Engine

Signal/Attribute.Drivetrain.InternalCombustionEngine : Engine-specific attributes

has super-classes
Branch c
has signal op only
part of op only Drivetrain c

IsActivec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ABSIsActive

Signal.ADAS.ABS.IsActive : Indicates if ABS is enabled. True = Enabled. False = Disabled.

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Antilock braking system c
is observed by op only Antilock braking system c

IsActivec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CruiseControlIsActive

Signal.ADAS.CruiseControl.IsActive : Indicates if cruise control system is enabled. True = Enabled. False = Disabled.

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Cruise control system c
is observed by op only Cruise control system c

IsActivec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ESCIsActive

Signal.ADAS.ESC.IsActive : Indicates if ECS is enabled. True = Enabled. False = Disabled.

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Electronic stability control system c
is observed by op only Electronic stability control system c

IsActivec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#HornIsActive

Signal.Body.Horn.IsActive : Horn active or inactive. True = Active. False = Inactive.

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Horn system c
is observed by op only Horn system c

IsActivec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LaneDepartureDetectionIsActive

Signal.ADAS.LaneDepartureDetection.IsActive : Indicates if lane departure detection system is enabled. True = Enabled. False = Disabled.

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Lane departure detection sensor c
is observed by op only Lane departure detection sensor c

IsActivec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ObstacleDetectionIsActive

Signal.ADAS.ObstacleDetection.IsActive : Indicates if obstacle sensor system is enabled. True = Enabled. False = Disabled.

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Obstacle detection Sensor c
is observed by op only Obstacle detection Sensor c

IsActivec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TCSIsActive

Signal.ADAS.TCS.IsActive : Indicates if TCS is enabled. True = Enabled. False = Disabled.

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Traction control system c
is observed by op only Traction control system c

IsAirConditioningActivec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsAirConditioningActive

Signal.Cabin.HVAC.IsAirConditioningActive : Is Air conditioning active.

has super-classes
Observable signal c
unit only dimensionless unit c
is actuated by op only Air conditioning system c
is observed by op only Air conditioning system c

IsBackupOnc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsBackupLightOn

Signal.Body.Lights.IsBackupOn : Is backup (reverse) light on

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Backup light c
is observed by op only Backup light switch c

IsBeltedc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsBelted

Signal.Cabin.Seat.RowX.PosY.IsBelted : Is the belt engaged.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Belt sensor c

IsBrakeOnc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsBrakeLightOn

Signal.Body.Lights.IsBrakeOn : Is brake light on

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Brake light c
is observed by op only Brake light switch c

IsChildLockActivec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsChildLockActive

Signal.Cabin.Door.RowX.Left/Right.IsChildLockActive : Is door child lock engaged. True = Engaged. False = Disengaged.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Child lock c

IsDeployedc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#AirbagIsDeployed

Signal.Cabin.Seat.RowX.PosY.Airbag.IsDeployed : Airbag deployment status. True = Airbag deployed. False = Airbag not deployed.

has super-classes
Observable signal c
is observed by op only Airbag system c

IsDomeOnc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsDomeLightOn

Signal.Cabin.Lights.IsDomeOn : Is central dome light light on

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Dome light c
is observed by op only Dome light c

IsEngagedc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ABSIsEngaged

Signal.ADAS.ABS.IsEngaged : Indicates if ABS is currently regulating brake pressure. True = Engaged. False = Not Engaged.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Antilock braking system c

IsEngagedc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ESCIsEngaged

Signal.ADAS.ESC.IsEngaged : Indicates if ESC is currently regulating vehicle stability. True = Engaged. False = Not Engaged.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Electronic stability control system c

IsEngagedc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ParkingBrakeIsEngaged

Signal.Chassis.ParkingBrake.IsEngaged : Parking brake status. True = Parking Brake is Engaged. False = Parking Brake is not Engaged.

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Parking brake switch c
is observed by op only Parking brake sensor c

IsEngagedc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TCSIsEngaged

Signal.ADAS.TCS.IsEngaged : Indicates if TCS is currently regulating traction. True = Engaged. False = Not Engaged.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Traction control system c

IsEngineStartStopEnabledc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsEngineStartStopEnabled

Signal.Drivetrain.FuelSystem.EngineStartStopEnabled : Indicates whether eco start stop is currently enabled.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only eco mode c

IsFrontDefrosterActivec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsFrontDefrosterActive

Signal.Cabin.HVAC.IsFrontDefrosterActive : Is front defroster active.

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Defroster c
is observed by op only Defroster c

IsFrontFogOnc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsFrontFogLightOn

Signal.Body.Lights.IsFrontFogOn : Is front fog light on

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Front fog light c
is observed by op only Front fog position switch c

IsGloveBoxOnc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsGloveBoxLightOn

Signal.Cabin.Lights.IsGloveBoxOn : Is glove box light on

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Glove box light c
is observed by op only Glove box light c

IsHazardOnc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsHazardLightOn

Signal.Body.Lights.IsHazardOn : Are hazards on

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Hazard light c
is observed by op only Hazard light switch c

IsHighBeamOnc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsHighBeamOn

Signal.Body.Lights.IsHighBeamOn : Is high beam on

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only High beam light c
is observed by op only High Beam Light Switch c

IsLeftIndicatorOnc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsLeftIndicatorOn

Signal.Body.Lights.IsLeftIndicatorOn : Is left indicator flashing

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only left indicator light c
is observed by op only Left indicator switch c

IsLockedc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#DoorIsLocked

Signal.Cabin.Door.RowX.Left/Right.IsLocked : Is door locked or unlocked. True = Locked. False = Unlocked.

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Door lock c
is observed by op only Door lock c

IsLockedc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TrunkIsLocked

Signal.Body.Trunk.IsLocked : Is trunk locked or unlocked. True = Locked. False = Unlocked.

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Trunk lock c
is observed by op only Trunk lock c

IsLowBeamOnc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsLowBeamOn

Signal.Body.Lights.IsLowBeamOn : Is low beam on

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Low beam light c
is observed by op only Low Beam Light Switch c

IsMovingc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsMoving

Signal.Vehicle.IsMoving : Indicates whether the vehicle is stationary or moving

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Speedometer c

IsOpenc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#DoorIsOpen

Signal.Cabin.Door.RowX.Left/Right.IsOpen : Is door open or closed

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Door contact actuator c
is observed by op only Door contact sensor c

IsOpenc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#HoodIsOpen

Signal.Body.Hood.IsOpen : hood open or closed. True = Open. False = Closed

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Hood latch c
is observed by op only Hood latch c

IsOpenc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TrunkIsOpen

Signal.Body.Trunk.IsOpen : Trunk open or closed. True = Open. False = Closed

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Trunk latch c
is observed by op only Trunk latch c

IsParkingOnc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsParkingLightOn

Signal.Body.Lights.IsParkingOn : Is parking light on

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Parking light c
is observed by op only Parking light switch c

IsPassengerOnc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsPassengerLightOn

Signal.Cabin.Lights.RowX.Left/Right.IsPassengerOn : Is passenger light on

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Passenger light c
is observed by op only Passenger light c

IsRearDefrosterActivec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsRearDefrosterActive

Signal.Cabin.HVAC.IsRearDefrosterActive : Is rear defroster active.

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Defroster c
is observed by op only Defroster c

IsRearFogOnc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsRearFogLightOn

Signal.Body.Lights.IsRearFogOn : Is rear fog light on

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Rear fog light c
is observed by op only Rear for light switch c

IsRecirculationActivec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsRecirculationActive

Signal.Cabin.HVAC.IsRecirculationActive : Is recirculation active.

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Recirculation system c
is observed by op only Recirculation system c

IsRightIndicatorOnc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsRightIndicatorOn

Signal.Body.Lights.IsRightIndicatorOn : Is right indicator flashing

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only right indicator light c
is observed by op only Right indicator switch c

IsRunningOnc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsRunningLightOn

Signal.Body.Lights.IsRunningOn : Are running lights on

has super-classes
Actuable signal c
Observable signal c
is actuated by op only Running light c
is observed by op only Running light switch c

IsSharedOnc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsSharedLightOn

Signal.Cabin.Lights.RowX.IsSharedOn : Is light shared across first row on

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Light sensor c

IsTrunkOnc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsTrunkLightOn

Signal.Cabin.Lights.IsTrunkOn : Is trunk light light on

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Trunk light c
is observed by op only Trunk light c

Lane departure detection sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LaneDepartureDetectionSensor

Sensor measuring when a lane is crossed

has super-classes
actuator c
sensor c

LaneDepartureDetectionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LaneDepartureDetection

Signal/Attribute.ADAS.LaneDepartureDetection : Signals from Land Departure Detection System

has super-classes
Branch c
has signal op only
part of op only ADAS c

Lateralc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LateralAcceleration

Signal.Vehicle.Acceleration.Lateral : Vehicle acceleration in Y (lateral acceleration).

has super-classes
Observable signal c
unit only linear acceleration unit c
is observed by op only Accelerometer c

Latitudec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#DestinationLatitude

Signal.Cabin.Infotainment.Navigation.DestinationSet.Latitude : Latitude of destination

has super-classes
Actuable signal c
Observable signal c
unit only angle unit c
is actuated by op only Global positioning system c
is observed by op only Global positioning system c

Latitudec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Latitude

Signal.Cabin.Infotainment.Navigation.CurrentLocation.Latitude : Current latitude of vehicle, as reported by GPS.

has super-classes
Observable signal c
unit only angle unit c
is observed by op only Global positioning system c

Left indicator lightc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LeftIndicator

Turns on and off the left indicator

has super-classes
actuator c

Left indicator switchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LeftIndicatorSwitch

Senses if the left indicator switch is on

has super-classes
sensor c

Lengthc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CushionLength

Signal.Cabin.Seat.RowX.PosY.Cushion.Length : Forward length of cushion (leg support). 0 = Rearmost. 100 = Forwardmost.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only cushion position sensor c

Levelc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TankLevel

Signal.Drivetrain.FuelSystem.Level / Signal.OBD.FuelLevel / PID 2F: Level in fuel tank as percent of capacity. 0 = empty. 100 = full.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Fuel tank level sensor c

Levelc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#WasherFluidLevel

Signal.Body.Windshield.Front/Rear.WasherFluid.Level : Washer fluid level as a percent. 0 = Empty. 100 = Full.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Washer fluid level sensor c

LevelLowc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#WasherFluidLevelLow

Signal.Body.Windshield.Front/Rear.WasherFluid.LevelLow : Low level indication for washer fluid. True = Level Low. False = Level OK.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Washer fluid level sensor c

Light sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LightSensor

Sensor measuring the light intensity

has super-classes
sensor c

LightIntensityc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LightIntensity

Signal.Cabin.Lights.LightIntensity : Intensity of the interior lights. 0 = Off. 100 = Full brightness.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Light sensor c

Lightsc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ExternalLights

Signal/Attribute.Body.Lights : All lights

has super-classes
Branch c
has signal op only is back up light on c or IsBrakeOn c or IsFrontFogOn c or IsHazardOn c or IsHighBeamOn c or IsLeftIndicatorOn c or IsLowBeamOn c or IsParkingOn c or IsRearFogOn c or IsRightIndicatorOn c or IsRunningOn c
part of op only Body c

Lightsc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#InternalLights

Signal/Attribute.Cabin.Lights : Interior lights signals and sensors

has super-classes
Branch c
has signal op only
part of op only Cabin c

Lightsc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LocalLights

Signal/Attribute.Cabin.Lights.RowX.Left/Right : Interior lights signals and sensors

has super-classes
Branch c
has signal op only
part of op only Lights c
position op only { }

Longitudec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Altitude

Signal.Cabin.Infotainment.Navigation.CurrentLocation.Altitude : Current elevation of the position in meters.

has super-classes
Observable signal c
unit only length unit c
is observed by op only Global positioning system c

Longitudec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#DestinationLongitude

Signal.Cabin.Infotainment.Navigation.DestinationSet.Longitude : Longitude of destination

has super-classes
Actuable signal c
Observable signal c
unit only angle unit c
is actuated by op only Global positioning system c
is observed by op only Global positioning system c

Longitudec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Longitude

Signal.Cabin.Infotainment.Navigation.CurrentLocation.Longitude : Current longitude of vehicle, as reported by GPS.

has super-classes
Observable signal c
unit only angle unit c
is observed by op only Global positioning system c

Longitudinalc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LongitudinalAcceleration

Signal.Vehicle.Acceleration.Longitudinal : Vehicle acceleration in X (longitudinal acceleration).

has super-classes
Observable signal c
unit only linear acceleration unit c
is observed by op only Accelerometer c

LongTermFuelTrim1c back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LongTermFuelTrim

Signal.OBD.LongTermFuelTrim1 : PID 07/09 - Long Term (learned) Fuel Trim - Bank 1 - negative percent leaner, positive percent richer

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only O2 Sensor c

LongTermO2Trimc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LongTermO2Trim

Signal.OBD.LongTermO2Trim : PID 56/58 - Long term secondary O2 trim

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only diagnostic system c

Low beam lightc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LowBeamLight

Turns on and off the low beam light

has super-classes
actuator c

Low Beam Light Switchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LowBeamLightSwitch

Senses if the low beam light switch is on

has super-classes
sensor c

LowBatteryLevelc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LowBatteryLevel

Signal.Drivetrain.BatteryManagement.LowBatteryLevel : Indicates that the battery level is low

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Battery monitor c

Lumbarc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Lumbar

Signal/Attribute.Cabin.Seat.RowX.PosX.Lumbar : Lumbar signals

has super-classes
Branch c
has signal op only
part of op only Seat c
position op only { }

Lumbarc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LumbarSwitch

Signal/Attribute.Cabin.Seat.RowX.PosX.Switch.Lumbar : Lumbar switches

has super-classes
Branch c
has signal op only
part of op only Switch c
position op only { }

Lumbar position actuatorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LumbarPositionActuator

Controls the lumbar position

has super-classes
actuator c

Lumbar position sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LumbarPositionSensor

Sensor measuring the lumbar position

has super-classes
sensor c

Lumber pressure actuatorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LumbarPressureActuator

Controls the lumbar pressure

has super-classes
actuator c

MAFc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MAF

Signal.Drivetrain.InternalCombustionEngine.Engine.MAF / Signal.OBD.MAF / PID 10 : Grams of air drawn into engine per second.

has super-classes
Observable signal c
unit only mass per time unit c
is observed by op only Mass air flow sensor c

Manifold Air Pressure Sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ManifoldAirPressureSensor

Sensor measuring the MAP (manifold air pressure)

has super-classes
sensor c

MAPc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MAP

Signal.Drivetrain.InternalCombustionEngine.Engine.MAP / Signal.OBD.MAP : PID 0B : Manifold air pressure possibly boosted using forced induction.

has super-classes
Observable signal c
unit only pressure or stress unit c
is observed by op only Manifold Air Pressure Sensor c

Mass air flow sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MassAirFlowSensor

Sensor measuring the MAF (mass air flow)

has super-classes
sensor c

Massagec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MassageSwitch

Signal/Attribute.Cabin.Seat.RowX.PosX.Switch.Massage : Massage switches

has super-classes
Branch c
has signal op only
part of op only Switch c
position op only { }

Massagec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SeatMassage

Signal.Cabin.Seat.RowX.PosY.Massage : Seat massage level. 0 = off. 100 = max massage.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Massage system c

Massage systemc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MassageSystem

Massage system for car seats

has super-classes
actuator c
sensor c

MaxMAFc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MaxMAF

Signal.OBD.MaxMAF : PID 50 - Maximum flow for mass air flow sensor

has super-classes
Observable signal c
unit only mass per time unit c
is observed by op only m a f sensor c

Mediac back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Media

Signal/Attribute.Cabin.Infotainment.Media : All Media actions

has super-classes
Branch c
has signal op only
part of op only Infotainment c

MILc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MIL

Signal.OBD.Status.MIL : Malfunction Indicator Light (MIL) False = Off, True = On

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only diagnostic system c

Mirro Tilt Sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MirrorTiltSensor

Sensor measuring the tilt of a mirror

has super-classes
sensor c

Mirror heaterc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Mirrorheater

Mirror heating appliance

has super-classes
actuator c
sensor c

Mirror pan actuatorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MirrorPanActuator

Controls a mirro pan

has super-classes
actuator c

Mirror Pan Sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MirrorPanSensor

Sensor measuring the pan of a mirror

has super-classes
sensor c

Mirror tilt actuatorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MirrorTiltActuator

Controls a mirro tilt

has super-classes
actuator c

Mirrorsc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Mirrors

Signal/Attribute.Body.Mirrors : All mirrors

has super-classes
Branch c
has signal op only
part of op only Body c

Multimedia systemc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MultimediaSystem

Multimedia system

has super-classes
actuator c
sensor c

O2 Sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#O2Sensor

Signal/Attribute.OBD.O2WR.SensorX : Wide range/band oxygen senor 8

has super-classes
Branch c
has signal op only
part of op only OBD c

OBDc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#OBD

Signal/Attribute.OBD : OBD data.

has super-classes
Branch c
has signal op only
part of op only Vehicle c

Observable signalc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ObservableSignal

All observable signals that can dynamically be updated by the vehicle

has super-classes
observable property c
has sub-classes
AbsoluteLoad c, AcceleratorPositionD c, Accuracy c, Action c, AirDistribution c, AirStatus c, Album c, AmbientAirTemperature c, AmbientLight c, Angle c, Artist c, AuxInputStatus c, AverageConsumption c, AverageSpeed c, BarometricPressure c, BatteryCapacity c, BatteryTemperature c, BrakesWorn c, ClutchWear c, CommandedEGR c, CommandedEVAP c, CommandedEquivalenceRatio c, ConsumptionSinceStart c, ControlModuleVoltage c, Convertible roof status c, CoolantTemperature c, Current c, CurrentLanguage c, DTCCount c, DateFormat c, DayNightMode c, DeclinedURI c, DimmingLevel c, DistanceSinceDTCClear c, DistanceUnit c, DistanceWithMIL c, DriveTime c, ECT c, EGRError c, EOP c, EOT c, EVAPVaporPressure c, EVAPVaporPressureAbsolute c, EVAPVaporPressureAlternate c, EVEconomyUnit c, EngineLoad c, Error c, Error c, Error c, Error c, Error c, Error c, EthanolPercent c, Extension c, FanSpeed c, FluidLevel c, FluidLevelLow c, FreezeDTC c, FuelEconomyUnit c, FuelInjectionTiming c, FuelPressure c, FuelRailPressureAbsolute c, FuelRailPressureDirect c, FuelRailPressureVac c, FuelRate c, FuelStatus c, FuelType c, Gear c, GearChangeMode c, Gearbox temperature c, HasPassenger c, Heading c, Heating c, Height c, Height c, Height c, HybridBatteryRemaining c, IdleTime c, IgnitionOffTime c, IgnitionOnTime c, Inflation c, Inflation c, InstantConsumption c, Intake Temperature c, Intensity c, IsActive c, IsActive c, IsActive c, IsActive c, IsActive c, IsActive c, IsActive c, IsAirConditioningActive c, IsBackupOn c, IsBelted c, IsBrakeOn c, IsChildLockActive c, IsDeployed c, IsDomeOn c, IsEngaged c, IsEngaged c, IsEngaged c, IsEngaged c, IsEngineStartStopEnabled c, IsFrontDefrosterActive c, IsFrontFogOn c, IsGloveBoxOn c, IsHazardOn c, IsHighBeamOn c, IsLeftIndicatorOn c, IsLocked c, IsLocked c, IsLowBeamOn c, IsMoving c, IsOpen c, IsOpen c, IsOpen c, IsParkingOn c, IsPassengerOn c, IsRearDefrosterActive c, IsRearFogOn c, IsRecirculationActive c, IsRightIndicatorOn c, IsRunningOn c, IsSharedOn c, IsTrunkOn c, Lateral c, Latitude c, Latitude c, Length c, Level c, Level c, LevelLow c, LightIntensity c, LongTermFuelTrim1 c, LongTermO2Trim c, Longitude c, Longitude c, Longitude c, Longitudinal c, LowBatteryLevel c, MAF c, MAP c, MIL c, Massage c, MaxMAF c, PadWear c, Pan c, PedalPosition c, PedalPosition c, PerformanceMode c, PidsA c, PidsB c, PidsC c, Pitch c, Position c, Position c, Position c, Power c, Pressure c, PressureLow c, Range c, RearLeft c, Recline c, RelativeAcceleratorPosition c, RelativeThrottlePosition c, Roll c, RunTime c, RunTimeMIL c, SelectedURI c, ShortTermFuelTrim1 c, ShortTermO2Trim c, Source c, Speed c, Speed c, SpeedSet c, Status c, Status c, Status c, TPS c, Temperature c, Temperature c, Temperature1 c, TemperatureUnit c, ThrottleActuator c, ThrottlePosition c, ThrottlePositionB c, Tilt c, Tilt c, TimeFormat c, TimeSinceDTCCleared c, TimeSinceStart c, TimingAdvance c, Torque c, Track c, Trailer Connected c, TravelledDistance c, TravelledDistance c, TripMeterReading c, URI c, Vertical c, Voltage c, Voltage c, Volume c, WarmupsSinceDTCClear c, Warning c, Yaw c

Obstacle detection Sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ObstacleDetectionSensor

Sensor measuring the distance to obstacles

has super-classes
actuator c
sensor c

ObstacleDetectionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ObstacleDetection

Signal/Attribute.ADAS.ObstacleDetection : Signals form Obstacle Sensor System

has super-classes
Branch c
has signal op only
part of op only ADAS c

Occupant classification systemc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#OccupantClassificationSystem

Sensor detecting the presence of a passenger in a seat

has super-classes
sensor c

Odometerc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Odometer

Sensor measuring the travelled distance

has super-classes
sensor c

Oil pressure sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#OilPressureSensor

Sensor measuring the pressure of oil in the engine

has super-classes
sensor c

Oil thermometerc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#OilThermometer

Sensor measuring the oil temperature

has super-classes
sensor c

PadWearc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#PadWear

Signal.Chassis.Axle.RowX.Wheel.Left/Right.Brake.PadWear : Brake pad wear as percent. 0 = No Wear. 100 = Worn.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Brake padwear sensor c

Panc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MirrorPan

Signal.Body.Mirrors.Left/Right.Pan : Mirror pan as a percent. 0 = Center Position. 100 = Fully Left Position. -100 = Fully Right Position.

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Mirror pan actuator c
is observed by op only Mirror Pan Sensor c

Parking brake sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ParkingBrakeSensor

Sensor measuring if the parking brake is engaged

has super-classes
sensor c

Parking brake switchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ParkingBrakeSwitch

Controls the parking brake

has super-classes
actuator c

Parking lightc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ParkingLight

Turns on and off the parking light

has super-classes
actuator c

Parking light switchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ParkingLightSwitch

Senses if the parking lkight switch is on

has super-classes
sensor c

ParkingBrakec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ParkingBrake

Signal/Attribute.Chassis.ParkingBrake : Parking brake signals

has super-classes
Branch c
has signal op only IsEngaged c
part of op only Chassis c

Passenger lightc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#PassengerLight

Individual passenger light system

has super-classes
actuator c
sensor c

Pedal position sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#PedalPositionSensor

Sensor measuring the pedal position

has super-classes
sensor c

PedalPositionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#AcceleratorPedalPosition

Signal.Chassis.Accelerator.PedalPosition : Accelerator pedal position as percent. 0 = Not depressed. 100 = Fully depressed.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Pedal position sensor c

PedalPositionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#BrakePedalPosition

Signal.Chassis.Brake.PedalPosition : Brake pedal position as percent. 0 = Not depressed. 100 = Fully depressed.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Pedal position sensor c

PerformanceModec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#PerformanceMode

Signal.Drivetrain.Transmission.PerformanceMode : Current gearbox performance mode.

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Drive system c
is observed by op only Drive system c

PidsAc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#PidsA

Signal.OBD.PidsA : PID 00 - Bit array of the supported pids 01 to 20

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only diagnostic system c

PidsBc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#PidsB

Signal.OBD.PidsB : PID 20 - Bit array of the supported pids 21 to 40

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only diagnostic system c

PidsCc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#PidsC

Signal.OBD.PidsC : PID 40 - Bit array of the supported pids 41 to 60

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only diagnostic system c

Pitchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#VehiclePitch

Signal.Vehicle.AngularVelocity.Pitch : Vehicle rotation rate along Y (lateral).

has super-classes
Observable signal c
unit only angular velocity unit c
is observed by op only Gyroscope c

Playedc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Played

Signal/Attribute.Cabin.Infotainment.Media.Played : Collection of signals updated in concert when a new media is played

has super-classes
Branch c
has signal op only
part of op only Media c

Positionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#RearShadePosition

Signal.Cabin.RearShade.Position : Position of side window blind. 0 = Fully retracted. 100 = Fully deployed.

has super-classes
Actuable signal c
Actuable signal op only Rear shade actuator c

Positionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SeatPosition

Signal.Cabin.Seat.RowX.PosY.Position : Seat horizontal position. 0 = Frontmost. 100 = Rearmost

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Seat position sensor c

Positionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SunRoofShadePosition

Signal.Cabin.Sunroof.Shade.Position : Position of side window blind. 0 = Fully retracted. 100 = Fully deployed.

has super-classes
Actuable signal c
Actuable signal op only Rear shade actuator c

Positionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SunroofPosition

Signal.Cabin.Sunroof.Position : Sunroof position. 0 = Fully closed 100 = Fully opened. -100 = Fully tilted

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Sunroof position sensor c

Positionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#WindowPosition

Signal.Cabin.Door.RowX.Left/Right.Window.Position : Window position. 0 = Fully closed 100 = Fully opened.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Window position sensor c

Positionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#WindowShadePosition

Signal.Cabin.Door.RowX.Left/Right.Shade.Position : Position of side window blind. 0 = Fully retracted. 100 = Fully deployed.

has super-classes
Actuable signal c
is actuated by op only Rear shade actuator c

Powerc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CurrentPower

Signal.Drivetrain.InternalCombustionEngine.Engine.Power : Current engine power output.

has super-classes
Observable signal c
unit only power unit c
is observed by op only Power meter c

Power meterc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#PowerMeter

Sensor measuring the engine power

has super-classes
sensor c

Pressurec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TirePressure

Signal.Chassis.Axle.RowX.Wheel.Left/Right.Tire.Pressure : Tire pressure in kilo-Pascal

has super-classes
Observable signal c
unit only pressure or stress unit c
is observed by op only Tire pressure monitoring system c

PressureLowc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TirePressureLow

Signal.Chassis.Axle.RowX.Wheel.Left/Right.Tire.PressureLow : Tire Pressure Status. True = Low tire pressure. False = Good tire pressure.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Tire pressure monitoring system c

Rain sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#RainSensor

Sensor measuring the rain intensity

has super-classes
sensor c

Raindetectionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Raindetection

Signal/Attribute.Body.Raindetection : Rainsensor signals

has super-classes
Branch c
has signal op only Intensity c
part of op only Body c

Rangec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ReachableRange

Signal.Drivetrain.FuelSystem.Range : Range in meters.

has super-classes
Observable signal c
unit only length unit c
is observed by op only Fuel tank level sensor c

Rear fog lightc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#RearFogLight

Turns on and off the rear fog light

has super-classes
actuator c

Rear for light switchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#RearFogLightSwitch

Senses if the rear fog light switch is on

has super-classes
sensor c

Rear shade actuatorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#RearShadeActuator

Controls a window blind

has super-classes
actuator c

Rear shade systemc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#RearShadeSystem

Controls sliding actions

has super-classes
actuator c

RearLeftc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#DistanceToObjectSignal

Signal.ADAS.ObstacleDetection.DistanceToObject.Front/Rear/Left/Right : distance to object in meters

has super-classes
Observable signal c
unit only length unit c
is observed by op only Obstacle detection Sensor c

RearShadec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#RearShade

Signal/Attribute.Cabin.RearShade : Rear window shade.

has super-classes
Branch c
has signal op only
part of op only Cabin c

RearviewMirrorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#RearviewMirror

Signal/Attribute.Cabin.RearviewMirror : Rearview mirror

has super-classes
Branch c
has signal op only DimmingLevel c
part of op only Cabin c

Recirculation systemc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#RecirculationSystem

Recirculation system

has super-classes
actuator c
sensor c

Reclinec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ReclineSwitch

Signal/Attribute.Cabin.Seat.RowX.PosX.Switch.Recline : Recline switches

has super-classes
Branch c
has signal op only
part of op only Switch c
position op only { }

Reclinec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SeatRecline

Signal.Cabin.Seat.RowX.PosY.Recline : Recline level. -90 = Max forward recline. 90 max backward recline

has super-classes
Observable signal c
unit only angle unit c
is observed by op only Seat position sensor c

RelativeAcceleratorPositionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#RelativeAcceleratorPosition

Signal.OBD.RelativeAcceleratorPosition : PID 5A - Relative accelerator pedal position

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Pedal position sensor c

RelativeThrottlePositionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#RelativeThrottlePosition

Signal.OBD.RelativeThrottlePosition : PID 45 - Relative throttle position

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Throttle position c

Right indicator lightc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#RightIndicator

Turns on and off the right indicator

has super-classes
actuator c

Right indicator switchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#RightIndicatorSwitch

Senses if the right indicator switch is on

has super-classes
sensor c

Rollc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#VehicleRoll

Signal.Vehicle.AngularVelocity.Roll : Vehicle rotation rate along X (longitudinal).

has super-classes
Observable signal c
unit only angular velocity unit c
is observed by op only Gyroscope c

Rotational speed sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#RotationalSpeedSensor

Sensor measuring the rotational speed

has super-classes
sensor c

Running lightc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#RunningLight

Turns on and off the running light

has super-classes
actuator c

Running light switchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#RunningLightSwitch

Senses if the running light switch is on

has super-classes
sensor c

RunTimec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#RunTime

Signal.OBD.RunTime : PID 1F - Engine run time

has super-classes
Observable signal c
unit only time unit c
is observed by op only Timer c

RunTimeMILc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#RunTimeMIL

Signal.OBD.RunTimeMIL : PID 4D - Run time with MIL on

has super-classes
Observable signal c
unit only time unit c
is observed by op only Timer c

Seatc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Seat

Signal/Attribute.Cabin.Seat : All seats.

has super-classes
Branch c
has signal op only
part of op only Cabin c
position op only { }
is in domain of
DriverPostion op, Row1PosCount op, Row1PosCount op, Row1PosCount op, Row4PosCount op, Row4PosCount op, RowCount op

Seat coolerc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SeatCooler

Controls the seat cooler and heater

has super-classes
actuator c

seat heaterc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SeatHeater

Sensor measuring the

has super-classes
sensor c

Seat position actuatorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SeatPositionActuator

Controls the seat position

has super-classes
actuator c

Seat position sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SeatPositionSensor

Sensor measuring the position of the seat

has super-classes
sensor c

SelectedURIc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SelectedMediaURI

Signal.Cabin.Infotainment.Media.SelectedURI : URI of suggested media that was selected

has super-classes
Actuable signal c
Observable signal c
is actuated by op only Multimedia system c
is observed by op only Multimedia system c
unit only any u r i

Sensor1c back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#AltenateO2Sensor

Signal/Attribute.OBD.O2Alt.BankX.SensorX : Alternate oxygen sensor

has super-classes
Branch c
part of op only OBD c

Sensor1c back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#O2SensorOther

Signal/Attribute.OBD.O2.Bank2.Sensor1 : Oxygen sensor

has super-classes
Branch c
has signal op only
part of op only bank2 c

Shadec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SunRoofShade

Signal/Attribute.Cabin.Sunroof.Shade : Sun roof shade status

has super-classes
Branch c
has signal op only
part of op only Sunroof c

Shadec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#WindowShade

Signal/Attribute.Cabin.Door.RowX.Left/Right.Shade : Side window shade

has super-classes
Branch c
has signal op only
part of op only Door c
position op only { }

ShortTermFuelTrim1c back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ShortTermFuelTrim

Signal.OBD.ShortTermFuelTrim1 : PID 06/08 - Short Term (immediate) Fuel Trim - Bank 1 - negative percent leaner, positive percent richer

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only O2 Sensor c

ShortTermO2Trimc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ShortTermO2Trim

Signal.OBD.ShortTermO2Trim : PID 55/57 - Short term secondary O2 trim

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only diagnostic system c

SideBolsterc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SideBolster

Signal/Attribute.Cabin.Seat.RowX.PosX.SideBolster : Side bolster settings

has super-classes
Branch c
has signal op only Inflation c
part of op only Seat c
position op only { }

SideBolsterc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SideBolsterSwitch

Signal/Attribute.Cabin.Seat.RowX.PosX.Switch.SideBolster : Side bolster switches

has super-classes
Branch c
has signal op only
part of op only Switch c
position op only { }

Sourcec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MediaSource

Signal.Cabin.Infotainment.Media.Played.Source : Media selected for playback

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Multimedia system c
is observed by op only Multimedia system c

Speedc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#RotationSpeed

Signal.Drivetrain.InternalCombustionEngine.Engine.Speed / Signal.OBD.EngineSpeed : PID 0C : Engine speed measured as rotations per minute.

has super-classes
Observable signal c
unit only angular velocity unit c
is observed by op only Rotational speed sensor c

Speedc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#VehicleSpeed

Signal.Vehicle.Speed / Signal.Drivetrain.Transmission.Speed / Signal.Cabin.Infotainment.Navigation.CurrentLocation.Speed / Signal.OBD.Speed : PID 0D: Vehicle speed

has super-classes
Observable signal c
unit only linear velocity unit c
is observed by op only { Global positioning system , Speedometer }

Speedometerc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Speedometer

has super-classes
sensor c
is also defined as
named individual

SpeedSetc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SpeedSet

Signal.ADAS.CruiseControl.SpeedSet : Set cruise control speed in kilometers per hour

has super-classes
Actuable signal c
Observable signal c
unit only linear velocity unit c
is actuated by op only Cruise control system c
is observed by op only Cruise control system c

Statusc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MirrorHeatingStatus

Signal.Body.Mirrors.Left/Right.Heating.Status : Mirror Heater on or off. True = Heater On. False = Heater Off.

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Mirror heater c
is observed by op only Mirror heater c

Statusc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#OBDStatus

Signal/Attribute.OBD.Status : PID 01 - OBD status

has super-classes
Branch c
has signal op only
part of op only OBD c

Statusc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#WindshieldHeatingStatus

Signal.Body.Windshield.Front.Heating.Status : Front/Rear windshield heater status. 0 - off, 1 - on

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Windshiel heater c
is observed by op only Windshield heater switch c

Statusc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#WipingStatus

Signal.Body.Windshield.Front.Wiping.Status : Front wiper status

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Wiper c
is observed by op only Wiper switch c

Steering wheel angle sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SteeringWheelAngleSensor

Sensor measuring the angle of the steering wheel

has super-classes
sensor c

Steering wheel position actuatorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SteeringWheelPositionActuator

Controls the steering wheel position

has super-classes
actuator c

Steering wheel position sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SteeringWheelPositionSensor

Sensor measuring the position of a steering wheel

has super-classes
sensor c

SteeringWheelc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SteeringWheel

Signal/Attribute.Chassis.SteeringWheel : Steering wheel signals

has super-classes
Branch c
has signal op only { }
part of op only Chassis c
is in domain of
Position op

Sunroofc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Sunroof

Signal/Attribute.Cabin.Sunroof : Sun roof status.

has super-classes
Branch c
has signal op only
part of op only Cabin c

Sunroof position actuatorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SunroofPositionActuator

Controls the sunroof slide

has super-classes
actuator c

Sunroof position sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SunroofPositionSensor

Sensor measuring the position of the sunroof

has super-classes
sensor c

Switchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#RearShadeSwitch

Signal.Cabin.RearShade.Switch : Switch controlling sliding action such as window, sunroof, or blind.

has super-classes
Actuable signal c
Actuable signal op only Rear shade system c

Switchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SeatSwitch

Signal/Attribute.Cabin.Seat.RowX.PosX.Switch : Seat switch signals

has super-classes
Branch c
has signal op only
part of op only Seat c
position op only { }

Switchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SunRoofShadeSwitch

Signal.Cabin.Sunroof.Shade.Switch : Switch controlling sliding action such as window, sunroof, or blind.

has super-classes
Actuable signal c
Actuable signal op only Rear shade system c

Switchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SunroofSwitch

Signal.Cabin.Sunroof.Switch : Switch controlling sliding action such as window, sunroof, or shade.

has super-classes
Actuable signal c
Actuable signal op only Sunroof position actuator c

Switchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#WindowShadeSwitch

Signal.Cabin.Door.RowX.Left/Right.Shade.Switch : Switch controlling sliding action such as window, sunroof, or blind.

has super-classes
Actuable signal c
Actuable signal op only Rear shade system c

Switchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#WindowSwitch

Signal.Cabin.Door.RowX.Left/Right.Window.Switch : Switch controlling sliding action such as window, sunroof, or blind.

has super-classes
Actuable signal c
Actuable signal op only Rear shade system c

TCSc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TCS

Signal/Attribute.ADAS.TCS : Traction Control System signals

has super-classes
Branch c
has signal op only
part of op only ADAS c

Temperaturec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LocalTemperature

Signal.Cabin.HVAC.RowX.Left/Right.Temperature : Temperature

has super-classes
Actuable signal c
Observable signal c
unit only temperature unit c
is actuated by op only Temperature switch c
is observed by op only Thermometer c

Temperaturec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TireTemperature

Signal.Chassis.Axle.RowX.Wheel.Left/Right.Tire.Temperature : Tire temperature in Celsius.

has super-classes
Observable signal c
unit only temperature unit c
is observed by op only Tire temperature sensor c

Temperature switchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TemperatureSwitch

Controls the local temperature in HVAC systems

has super-classes
actuator c

Temperature1c back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CatalystTemperature

Signal.OBD.Catalyst.BankX.TemperatureY : PID 3C->3F - Catalyst temperature from bank X, sensor Y

has super-classes
Observable signal c
unit only temperature unit c
is observed by op only catalyst temperature sensor c

TemperatureUnitc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TemperatureUnit

Signal.Cabin.Infotainment.HMI.TemperatureUnit : Temperature unit used in the current HMI

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Multimedia system c
is observed by op only Multimedia system c

Thermometerc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Thermometer

Sensor measuring the temperature

has super-classes
sensor c

Throttle positionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ThrottlePositionSensor

Sensor measuring the trottle position

has super-classes
sensor c

ThrottleActuatorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ThrottleActuation

Signal.OBD.ThrottleActuator : PID 4C - Commanded throttle actuator

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only throttle actuator c
is observed by op only Throttle position c

ThrottlePositionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ThrottlePosition

Signal.OBD.ThrottlePosition : PID 11 - Throttle position - 0 = closed throttle, 100 = open throttle

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Throttle position c

ThrottlePositionBc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#ThrottlePositionB-C

Signal.OBD.ThrottlePositionB/C : PID 47/48 - Absolute throttle position B/C

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Throttle position c

Tiltc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MirrorTilt

Signal.Body.Mirrors.Left/Right.Tilt : Mirror tilt as a percent. 0 = Center Position. 100 = Fully Upward Position. -100 = Fully Downward Position.

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Mirror tilt actuator c
is observed by op only Mirro Tilt Sensor c

Tiltc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SteeringWheelTilt

Signal.Chassis.SteeringWheel.Tilt : Steering wheel column tilt. 0 = Lowest position. 100 = Highest position.

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Steering wheel position actuator c
is observed by op only Steering wheel position sensor c

TimeFormatc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TimeFormat

Signal.Cabin.Infotainment.HMI.TimeFormat : Time format used in the current HMI

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Multimedia system c
is observed by op only Multimedia system c

Timerc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Timer

Sensor measuring the elapsed time

has super-classes
sensor c

TimeSinceDTCClearedc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TimeSinceDTCCleared

Signal.OBD.TimeSinceDTCCleared : PID 4E - Time since trouble codes cleared

has super-classes
Observable signal c
unit only time unit c
is observed by op only Timer c

TimeSinceStartc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TimeSinceStart

Signal.Drivetrain.FuelSystem.TimeSinceStart : Time elapsed since start in seconds.

has super-classes
Observable signal c
unit only time unit c
is observed by op only Timer c

TimingAdvancec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TimingAdvance

Signal.OBD.TimingAdvance : PID 0E - Time advance (angle)

has super-classes
Observable signal c
unit only angle unit c
is observed by op only diagnostic system c

Tirec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Tire

Signal/Attribute.Chassis.Axle.RowX.Wheel.Left/Right.Tire : Tire signals for wheel

has super-classes
Branch c
has signal op only
part of op only Wheel c
position op only { }

Tire pressure monitoring systemc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TirePressureMonitoringSystem

Sensor measuring the pressure of a tire

has super-classes
sensor c

Tire temperature sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TireTemperatureSensor

Sensor measuring the temperature of a tire

has super-classes
sensor c

Torquec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Torque

Signal.Drivetrain.InternalCombustionEngine.Engine.Torque : Current engine torque.

has super-classes
Observable signal c
unit only bending moment or torque unit c
is observed by op only Torquemeter c

Torquemeterc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TorqueMeter

Sensor measuring a torque

has super-classes
sensor c

TPSc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TPS

Signal.Drivetrain.InternalCombustionEngine.Engine.TPS : Current throttle position.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Throttle position c

Trackc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MediaTrack

Signal.Cabin.Infotainment.Media.Played.Track : Name of track being played

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Multimedia system c

Traction control systemc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TractionControlSystem

Appliance designed to prevent loss of traction of wheels

has super-classes
actuator c
sensor c

Trailerc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Trailer

Signal/Attribute.Chassis.Trailer : Trailer signals

has super-classes
Branch c
has signal op only Trailer Connected c
part of op only Chassis c

Trailer Connectedc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#IsTrailerConnected

Signal.Chassis.Trailer.Connected : Signal indicating if trailer is connected or no.

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only trailer sensor c

Transmissionc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Transmission

Signal/Attribute.Drivetrain.Transmission : Transmission-specific attributes

has super-classes
Branch c
has signal op only
part of op only Drivetrain c
is in domain of
DriveType op, GearCount op, Type op

TravelledDistancec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#AccumulatedTravelledDistance

Signal.Vehicle.TravelledDistance : Odometer reading

has super-classes
Observable signal c
unit only length unit c
is observed by op only Odometer c

TravelledDistancec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TravelledDistance

Signal.Drivetrain.Transmission.TravelledDistance : Odometer reading

has super-classes
Observable signal c
unit only length unit c
is observed by op only Odometer c

TripMeterReadingc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CurrentTravelledDistance

Signal.Vehicle.TripMeterReading : Current trip meter reading

has super-classes
Observable signal c
unit only time unit c
is observed by op only Odometer c

Trunkc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Trunk

Signal/Attribute.Body.Trunk : Trunk status

has super-classes
Branch c
has signal op only
part of op only Body c

Trunk latchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TrunkLatch

System opening the trunk

has super-classes
actuator c
sensor c

Trunk lightc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TrunkLight

Trunk light

has super-classes
actuator c
sensor c

Trunk lockc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#TrunkLock

System locking the trunk

has super-classes
actuator c
sensor c

Upc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#CushionUp

Signal.Cabin.Seat.RowX.PosY.Switch.Cushion.Up : Seat cushion up switch engaged

has super-classes
Actuable signal c
Actuable signal op only Cushion position actuator c

Upc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#HeadRestraintUp

Signal.Cabin.Seat.RowX.PosY.Switch.HeadRestraint.Up : Head restraint up switch engaged

has super-classes
Actuable signal c
Actuable signal op only Head restraint actuator c

Upc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LumbarUp

Signal.Cabin.Seat.RowX.PosY.Switch.Lumbar.Up : Lumbar up switch engaged

has super-classes
Actuable signal c
Actuable signal op only Lumbar position actuator c

Upc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SeatUp

Signal.Cabin.Seat.RowX.PosY.Switch.Up : Seat up switch engaged

has super-classes
Actuable signal c
Actuable signal op only Seat position actuator c

URIc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MediaURI

Signal.Cabin.Infotainment.Media.Played.URI : User Resource associated with the media

has super-classes
Observable signal c
is observed by op only Multimedia system c
unit only any u r i

Vehiclec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Vehicle

Signal/Attribute.Vehicle : High-vele vehicle data

has super-classes
Branch c
has signal op only
is in domain of
ACRISSCode op, AccelerationTime op, Brand op, CargoColume op, EmissionsCO2 op, KnownVehicleDamages op, Model op, Modeldate op, ProductionDate op, PurchaseDate op, Roofload op, VIN op, VehicleConfiguration op, VehicleInteriorColor op, VehicleInteriorType op, VehicleSeatingCapacity op, VehicleSpecialUsage op, WMI op, Year op, meets Emision Standard op

Verticalc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#VerticalAcceleration

Signal.Vehicle.Acceleration.Vertical : Vehicle acceleration in Z (vertical acceleration).

has super-classes
Observable signal c
unit only linear acceleration unit c
is observed by op only Accelerometer c

Voltagec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#O2Voltage

Signal.OBD.O2.BankX.SensorY.Voltage : PID 14->1B - Sensor voltage

has super-classes
Observable signal c
unit only energy per electric charge unit c
is observed by op only O2 Sensor c

Voltagec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#O2WRVoltage

Signal.OBD.O2WR.SensorX.Voltage : PID 24->2B - Lambda voltage for wide range/band oxygen sensor X

has super-classes
Observable signal c
unit only energy per electric charge unit c
is observed by op only O2 Sensor c

Volumec back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#MediaVolume

Signal.Cabin.Infotainment.Media.Volume : Current Media Volume

has super-classes
Actuable signal c
Observable signal c
unit only dimensionless unit c
is actuated by op only Multimedia system c
is observed by op only Multimedia system c

Warmerc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#SeatWarming

Signal.Cabin.Seat.RowX.PosY.Switch.Warmer : Warmer switch for Seat heater

has super-classes
Actuable signal c
Actuable signal op only seat heater c

WarmupsSinceDTCClearc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#WarmupsSinceDTCClear

Signal.OBD.WarmupsSinceDTCClear : PID 30 - Number of warm-ups since codes cleared

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only diagnostic system c

Warningc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#LaneDepartureDetectionWarning

Signal.ADAS.LaneDepartureDetection.Warning : Indicates if lane departure detection registered a lane departure

has super-classes
Observable signal c
unit only dimensionless unit c
is observed by op only Lane departure detection sensor c

Washer fluid level sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#WasherFuildLevelSensor

Sensor measuring the washer fluid level

has super-classes
sensor c

WasherFluidc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#WasherFluid

Signal/Attribute.Body.Windshield.Front/Rear.WasherFluid : Front/Rear windshield washer fluid signals

has super-classes
Branch c
has signal op only
part of op only Windshield c
position op only { }

Wheelc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Wheel

Signal/Attribute.Chassis.Axle.RowX.Wheel : wheel signals

has super-classes
Branch c
part of op only Axle c
position op only { }

Windowc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Window

Signal/Attribute.Cabin.Door.RowX.Left/Right.Window : Door window status

has super-classes
Branch c
has signal op only
part of op only Door c
position op only { }

Window position sensorc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#WindowPositionSensor

Sensor measuring the position of a window

has super-classes
sensor c

Windshiel heaterc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#WindshieldHeater

Controls a windshield heater

has super-classes
actuator c

Windshieldc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Windshield

Signal/Attribute.Body.Windshield : Windshield signals

has super-classes
Branch c
part of op only Body c

Windshield heater switchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#WindshieldHeaterSwitch

Senses the windshield heater status

has super-classes
sensor c

Wiperc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Wiper

Controls a wiper

has super-classes
actuator c

Wiper switchc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#WiperSwitch

Senses the wiping level

has super-classes
sensor c

Wipingc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#Wiping

Signal/Attribute.Body.Windshield.Front/Rear.Wiping : Front/Rear windshield wiper signals

has super-classes
Branch c
has signal op only Status c
part of op only Windshield c
position op only { }

Yawc back to ToC or Class ToC

IRI: http://automotive.eurecom.fr/vsso#VehicleYaw

Signal.Vehicle.AngularVelocity.Yaw : Vehicle rotation rate along Z (vertical).

has super-classes
Observable signal c
unit only angular velocity unit c
is observed by op only Gyroscope c

Object Properties

AccelerationTimeop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#accelerationTime

has super-properties
Attribute op
has domain
Vehicle c
has range
time c
is also defined as
datatype property

ACRISSCodeop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#acrissCode

has super-properties
Attribute op
has domain
Vehicle c
is also defined as
datatype property

Attributeop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#attribute

Attribute signals that do not change during the power cycle of a vehicle.

BodyTypeop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#bodyType

has super-properties
Attribute op
has domain
Body c
is also defined as
datatype property

Brandop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#brand

has super-properties
Attribute op
has domain
Vehicle c
is also defined as
datatype property

CargoColumeop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#cargoVolume

has super-properties
Attribute op
has domain
Vehicle c
has range
volume c
is also defined as
datatype property

Charging inletop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#chargingInlet

has super-properties
Attribute op
has domain
BatteryManagement c
has range
{ }
is also defined as
datatype property

Configurationop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#engineConfiguration

has super-properties
Attribute op
has domain
internal combustion engine c
has range
{ }
is also defined as
datatype property

Countop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#axleCount

has super-properties
Attribute op
has domain
Axle c
is also defined as
datatype property

Countop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#doorCount

has super-properties
Attribute op
has domain
Door c
is also defined as
datatype property

CurbWeightop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#curbWeight

has super-properties
Attribute op
has domain
Chassis c
has range
mass c
is also defined as
datatype property

Displacementop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#displacement

has super-properties
Attribute op
has range
volume c
is also defined as
datatype property

DriverPostionop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#driverPostion

has super-properties
Attribute op
has domain
Seat c
is also defined as
datatype property

DriveTypeop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#driveType

has super-properties
Attribute op
has domain
Transmission c
has range
{ }
is also defined as
datatype property

EmissionsCO2op back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#emissionsCO2

has super-properties
Attribute op
has domain
Vehicle c
has range
ucum c
is also defined as
datatype property

Fuel Typeop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#fuelType

has super-properties
Attribute op
has domain
{ FuelSystem , internal combustion engine }
has range
{ }
is also defined as
datatype property

GearCountop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#gearCount

has super-properties
Attribute op
has domain
Transmission c
is also defined as
datatype property

GrossWeightop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#grossWeight

has super-properties
Attribute op
has domain
Chassis c
has range
mass c
is also defined as
datatype property

has signalop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#hasSignal

Property of having signals in a branch

has domain
Branch c
has range

Heightop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#height

has super-properties
Attribute op
has domain
Chassis c
has range
length c
is also defined as
datatype property

Hybrid Typeop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#hybridType

has super-properties
Attribute op
has domain
{ FuelSystem , internal combustion engine }
has range
{ }
is also defined as
datatype property

KnownVehicleDamagesop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#knownVehicleDamages

has super-properties
Attribute op
has domain
Vehicle c
is also defined as
datatype property

Lengthop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#length

has super-properties
Attribute op
has domain
Chassis c
has range
length c
is also defined as
datatype property

MaxPowerop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#maxPower

has super-properties
Attribute op
has domain
internal combustion engine c
has range
power c
is also defined as
datatype property

MaxTorqueop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#maxTorque

has super-properties
Attribute op
has domain
internal combustion engine c
has range
ucum c
is also defined as
datatype property

meets Emision Standardop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#meetsEmissionStandard

has super-properties
Attribute op
has domain
Vehicle c
is also defined as
datatype property

Modelop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#model

has super-properties
Attribute op
has domain
Vehicle c
is also defined as
datatype property

Modeldateop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#modelDate

has super-properties
Attribute op
has domain
Vehicle c
is also defined as
datatype property

part ofop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#partOf

Relationship between 2 branches where one is a component of the second

has characteristics: transitive

has domain
Branch c
has range
Branch c

positionop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#position

position of the branch within the vehicle

has domain
Branch c

Positionop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#steeringWheelSide

has super-properties
Attribute op
has domain
SteeringWheel c
has range
{ }
is also defined as
datatype property

ProductionDateop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#productionDate

has super-properties
Attribute op
has domain
Vehicle c
is also defined as
datatype property

PurchaseDateop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#purchaseDate

has super-properties
Attribute op
has domain
Vehicle c
is also defined as
datatype property

RefuelPositionop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#refuelPosition

has super-properties
Attribute op
has domain
Body c
has range
{ }
is also defined as
datatype property

Roofloadop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#roofLoad

has super-properties
Attribute op
has domain
Vehicle c
has range
mass c
is also defined as
datatype property

Row1PosCountop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#row1PosCount

has super-properties
Attribute op
has domain
Seat c
is also defined as
datatype property

Row1PosCountop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#row2PosCount

has super-properties
Attribute op
has domain
Seat c
is also defined as
datatype property

Row1PosCountop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#row3PosCount

has super-properties
Attribute op
has domain
Seat c
is also defined as
datatype property

Row4PosCountop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#row4PosCount

has super-properties
Attribute op
has domain
Seat c
is also defined as
datatype property

Row4PosCountop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#row5PosCount

has super-properties
Attribute op
has domain
Seat c
is also defined as
datatype property

RowCountop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#rowCount

has super-properties
Attribute op
has domain
Seat c
is also defined as
datatype property

TankCapacityop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#tankCapacity

has super-properties
Attribute op
has domain
FuelSystem c
has range
volume c
is also defined as
datatype property

TireDiameterop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#tireDiameter

has super-properties
Attribute op
has domain
Axle c
has range
length c
is also defined as
datatype property

TireWidthop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#tireWidth

has super-properties
Attribute op
has domain
Axle c
has range
length c
is also defined as
datatype property

TowWeightop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#towWeight

has super-properties
Attribute op
has domain
Chassis c
has range
mass c
is also defined as
datatype property

Trackop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#track

has super-properties
Attribute op
has domain
Chassis c
has range
length c
is also defined as
datatype property

Typeop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#transmissionType

has super-properties
Attribute op
has domain
Transmission c
has range
{ }
is also defined as
datatype property

VehicleConfigurationop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#vehicleConfiguration

has super-properties
Attribute op
has domain
Vehicle c
is also defined as
datatype property

VehicleInteriorColorop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#vehicleInteriorColor

has super-properties
Attribute op
has domain
Vehicle c
is also defined as
datatype property

VehicleInteriorTypeop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#vehicleInteriorType

has super-properties
Attribute op
has domain
Vehicle c
is also defined as
datatype property

VehicleSeatingCapacityop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#vehicleSeatingCapacity

has super-properties
Attribute op
has domain
Vehicle c
is also defined as
datatype property

VehicleSpecialUsageop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#vehicleSpecialUsage

has super-properties
Attribute op
has domain
Vehicle c
is also defined as
datatype property

VINop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#vin

has super-properties
Attribute op
has domain
Vehicle c
is also defined as
datatype property

Wheelbaseop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#wheelbase

has super-properties
Attribute op
has domain
Chassis c
has range
length c
is also defined as
datatype property

WheelCountop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#wheelCount

has super-properties
Attribute op
has domain
Axle c
is also defined as
datatype property

WheelDiameterop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#wheelDiameter

has super-properties
Attribute op
has domain
Axle c
has range
length c
is also defined as
datatype property

WheelWidthop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#wheelWidth

has super-properties
Attribute op
has domain
Axle c
has range
length c
is also defined as
datatype property

Widthop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#width

has super-properties
Attribute op
has domain
Chassis c
has range
length c
is also defined as
datatype property

WMIop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#wmi

has super-properties
Attribute op
has domain
Vehicle c
is also defined as
datatype property

Yearop back to ToC or Object Property ToC

IRI: http://automotive.eurecom.fr/vsso#year

has super-properties
Attribute op
has domain
Vehicle c
is also defined as
datatype property

Datatype Properties

ACRISSCodeop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#acrissCode

has range
string
is also defined as
object property

BodyTypeop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#bodyType

has range
string
is also defined as
object property

Brandop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#brand

has range
string
is also defined as
object property

Countop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#axleCount

has range
int
is also defined as
object property

Countop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#doorCount

has range
int
is also defined as
object property

Displacementop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#displacement

has domain
internal combustion engine c
is also defined as
object property

DriverPostionop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#driverPostion

has range
int
is also defined as
object property

GearCountop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#gearCount

has range
integer
is also defined as
object property

KnownVehicleDamagesop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#knownVehicleDamages

has range
string
is also defined as
object property

meets Emision Standardop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#meetsEmissionStandard

has range
boolean
is also defined as
object property

Modelop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#model

has range
string
is also defined as
object property

Modeldateop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#modelDate

has range
string
is also defined as
object property

ProductionDateop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#productionDate

has range
string
is also defined as
object property

PurchaseDateop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#purchaseDate

has range
string
is also defined as
object property

Row1PosCountop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#row1PosCount

has range
int
is also defined as
object property

Row1PosCountop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#row2PosCount

has range
int
is also defined as
object property

Row1PosCountop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#row3PosCount

has range
int
is also defined as
object property

Row4PosCountop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#row4PosCount

has range
int
is also defined as
object property

Row4PosCountop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#row5PosCount

has range
int
is also defined as
object property

RowCountop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#rowCount

has range
int
is also defined as
object property

VehicleConfigurationop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#vehicleConfiguration

has range
string
is also defined as
object property

VehicleInteriorColorop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#vehicleInteriorColor

has range
string
is also defined as
object property

VehicleInteriorTypeop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#vehicleInteriorType

has range
string
is also defined as
object property

VehicleSeatingCapacityop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#vehicleSeatingCapacity

has range
int
is also defined as
object property

VehicleSpecialUsageop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#vehicleSpecialUsage

has range
string
is also defined as
object property

VINop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#vin

has range
string
is also defined as
object property

WheelCountop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#wheelCount

has range
int
is also defined as
object property

WMIop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#wmi

has range
string
is also defined as
object property

Yearop back to ToC or datatype property ToC

IRI: http://automotive.eurecom.fr/vsso#year

has range
int
is also defined as
object property

Legend back to ToC

c: Classes
op: Object Properties
dp: Datatype Properties
ni: Named Individuals

References back to ToC

[OWL-Time]
Time Ontology in OWL. Simon Cox; Chris Little. W3C. 19 October 2017. W3C Recommendation. URL: https://www.w3.org/TR/owl-time/
[QUDT]
QUDT - Quantities, Units, Dimensions and Data Types Ontologies. Ralph Hodgson; Paul J. Keller; Jack Hodges; Jack Spivak.18 March 2014. URL: http://www.qudt.org/
[SOSA]
Semantic Sensor Network Ontology. Krzysztof Janowicz and Simon Cox and Kerry Taylor and Danh Le Phuoc and Maxime Lefranccois and Armin Haller.08 December 2017. URL: https://www.w3.org/TR/vocab-ssn/
[custom-datatypes]
Custom Datatypes - Toward a web of Linked Datatypes. Maxime Lefranccois and Antoine Zimmermann. 20 March 2018. URL: http://w3id.org/lindt/custom_datatypes
[VSS]
The Vehicle Signal Specification. GENIVI. URL: https://github.com/GENIVI/vehicle_signal_specification/
[WOT-ARCHITECTURE]
URI" Template. J. Gregorio; R. Fielding; M. Hadley; M. Nottingham; D. Orchard. IETF. March 2012. Proposed Standard. URL: https://tools.ietf.org/html/rfc6570"
[WOT-ARCHITECTURE]
Introductory signal processing (Vol. 6). Priemer, R. World Scientific Publishing Company. 1990.

Acknowledgements back to ToC

The authors would like to thank Silvio Peroni for developing LODE, a Live OWL Documentation Environment, which is used for representing the Cross Referencing Section of this document and Daniel Garijo for developing Widoco, the program used to create the template used in this documentation.