-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautoware_auto_msgs_adapter.schema.json
46 lines (46 loc) · 1.44 KB
/
autoware_auto_msgs_adapter.schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Parameters for autoware_auto_msg_adapter",
"type": "object",
"definitions": {
"autoware_auto_msgs_adapter": {
"type": "object",
"properties": {
"msg_type_target": {
"type": "string",
"description": "Target message type",
"enum": [
"autoware_auto_control_msgs/msg/AckermannControlCommand",
"autoware_auto_mapping_msgs/msg/HADMapBin",
"autoware_auto_perception_msgs/msg/PredictedObjects",
"autoware_auto_planning_msgs/msg/Trajectory"
],
"default": "autoware_auto_control_msgs/msg/AckermannControlCommand"
},
"topic_name_source": {
"type": "string",
"description": "Topic name of the message to be converted.",
"default": "/control/command/control_cmd"
},
"topic_name_target": {
"type": "string",
"description": "Target topic name which the message will be converted into.",
"default": "/control/command/control_cmd_auto"
}
},
"required": ["msg_type_target", "topic_name_source", "topic_name_target"]
}
},
"properties": {
"/**": {
"type": "object",
"properties": {
"ros__parameters": {
"$ref": "#/definitions/autoware_auto_msgs_adapter"
}
},
"required": ["ros__parameters"]
}
},
"required": ["/**"]
}