Skip to content
Open
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
7 changes: 5 additions & 2 deletions rmf_api_msgs/schemas/task_request.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,11 @@
"type": "string"
},
"fleet_name": {
"description": "(Optional) The name of the fleet that should perform this task. If specified, other fleets will not bid for this task.",
"type": "string"
"description": "(Optional) The name of the fleet, or an array of fleet names, allowed to perform this task. If specified, only the named fleet(s) will bid for this task.",
"oneOf": [
{ "type": "string" },
{ "type": "array", "items": { "type": "string" } }
]
}
},
"required": ["category", "description"]
Expand Down