Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(autoware_cluster_merger): Created Schema file and updated ReadME file for parameters settings #9977

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions perception/autoware_cluster_merger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ The clusters of merged topics are simply concatenated from clusters of input top

## Parameters

| Name | Type | Description | Default value |
| :---------------- | :----- | :----------------------------------- | :------------ |
| `output_frame_id` | string | The header frame_id of output topic. | base_link |
{{ json_to_markdown("perception/autoware_cluster_merger/schema/cluster_merger.schema.json") }}

## Assumptions / Known limits

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "autoware_cluster_merger parameters",
"type": "object",
"definitions": {
"autoware_cluster_merger": {
"type": "object",
"properties": {
"output_frame_id": {
"type": "string",
"description": "The header frame_id of output topic.",
"default": "base_link"
}
},
"required": ["output_frame_id"],
"additionalProperties": false
}
},
"properties": {
"/**": {
"type": "object",
"properties": {
"ros__parameters": {
"$ref": "#/definitions/autoware_cluster_merger"
}
},
"required": ["ros__parameters"],
"additionalProperties": false
}
},
"required": ["/**"],
"additionalProperties": false
}
Loading