|
| 1 | +# The service tree example builds on input from the Capabilities project: |
| 2 | +# https://covesa.atlassian.net/wiki/spaces/WIK4/pages/39059848/Capabilities+Project+-+Seating+Capabilities#CapabilitiesProject-SeatingCapabilities-InformationTypes |
| 3 | + |
1 | 4 | VehicleService: |
2 | 5 | type: branch |
3 | 6 | description: The Vehicle services. |
4 | 7 |
|
5 | | -VehicleService.ExteriorLighting: |
| 8 | +VehicleService.Seating: |
6 | 9 | type: branch |
7 | | - description: The Exterior lighting service. |
| 10 | + description: The Seating service group. |
8 | 11 |
|
9 | | -VehicleService.ExteriorLighting.Properties: |
10 | | - type: branch |
11 | | - description: The common properties of Exterior lighting service. |
| 12 | +VehicleService.Seating.MoveSeat: |
| 13 | + type: procedure |
| 14 | + description: Performs all supported seat movements. |
12 | 15 |
|
13 | | -VehicleService.ExteriorLighting.Properties. HeadLampsLayout: |
14 | | - type: attribute |
| 16 | +VehicleService.Seating.MoveSeat.Input: |
| 17 | + type: iostruct |
| 18 | + description: Input parameters= (SeatId, MovementType, Position, Credentials). |
| 19 | + |
| 20 | +VehicleService.Seating.MoveSeat.Input.SeatId: |
| 21 | + type: property |
| 22 | + datatype: Types.Struct.Seating.SeatId |
| 23 | + description: Seat identity. |
| 24 | + |
| 25 | +VehicleService.Seating.MoveSeat.Input.MovementType: |
| 26 | + type: property |
15 | 27 | datatype: string |
16 | | - default: ["Left", "Right"] |
17 | | - description: The head lamp properties. |
| 28 | + description: Type of movement. Supported types are retrieved via GetPropertiesSeating(). |
18 | 29 |
|
19 | | -VehicleService.ExteriorLighting.HeadLampsOnOff: |
20 | | - type: procedure |
21 | | - description: Microservice name=HeadLampsOnOff, Input=Switch, Output=None. |
| 30 | +VehicleService.Seating.MoveSeat.Input.Position: |
| 31 | + type: property |
| 32 | + datatype: Types.Common.Percentage |
| 33 | + description: Final position of the movement, expressed as a percentage. |
22 | 34 |
|
23 | | -VehicleService.ExteriorLighting.HeadLampsOnOff.Version: |
24 | | - type: attribute |
| 35 | +VehicleService.Seating.MoveSeat.Input.Credentials: |
| 36 | + type: property |
25 | 37 | datatype: string |
26 | | - default: 1.0.0 |
27 | | - description: The HeadLampsOnOff microservice version. |
| 38 | + description: A token with client credentials. Optional parameter. |
28 | 39 |
|
29 | | -VehicleService.ExteriorLighting.HeadLampsOnOff.Input: |
| 40 | +VehicleService.Seating.MoveSeat.Output: |
30 | 41 | type: iostruct |
31 | | - description: An iostruct type containing the input parameter(s). |
| 42 | + description: Output parameters= (Status, Position, ServiceId). |
32 | 43 |
|
33 | | -VehicleService.ExteriorLighting.HeadLampsOnOff.Input.Switch: |
34 | | - type: symlink |
35 | | - path: Vehicle.Body.Lights.IsHighBeamSwitchOn |
36 | | - domain: Automotive.Vehicle.Car.ResourceData |
37 | | - version: 3.0.0+ |
38 | | - description: The reference in the VSS data tree is set to the input value. |
| 44 | +VehicleService.Seating.MoveSeat.Output.Status: |
| 45 | + type: property |
| 46 | + datatype: Types.Enum.Common.Status |
| 47 | + description: Status of the MoveSeat service. |
39 | 48 |
|
40 | | -VehicleService.Version: |
41 | | - type: branch |
42 | | - description: Supported Version. |
| 49 | +VehicleService.Seating.MoveSeat.Output.Position: |
| 50 | + type: property |
| 51 | + datatype: Types.Common.Percentage |
| 52 | + description: Final position of the movement, expressed as a percentage. |
| 53 | + |
| 54 | +VehicleService.Seating.MoveSeat.Input.ServiceId: |
| 55 | + type: property |
| 56 | + datatype: uint32 |
| 57 | + description: A reference to the service execution session. |
43 | 58 |
|
44 | | -# Here follows the mandatory Major, Minor, and Patch nodes with the version of the entire VehicleService file. |
| 59 | +VehicleService.Seating.MoveSeat.Version: |
| 60 | + type: attribute |
| 61 | + datatype: string |
| 62 | + default: 1.0.0 |
| 63 | + description: The MoveSeat service version. |
0 commit comments