R550-ROS2-Graph-Dictionary / schemas /ros2_graph_dictionary_schema.json
lijinghai's picture
Add R550 ROS2 graph dictionary dataset
e13d01b verified
Raw
History Blame Contribute Delete
1.44 kB
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "R550 ROS2 Graph Dictionary Feature",
"type": "object",
"required": ["id", "name", "status", "category", "description"],
"properties": {
"id": {
"type": "string",
"description": "Stable feature identifier."
},
"name": {
"type": "string",
"description": "Human-readable feature name."
},
"status": {
"type": "string",
"description": "Capture or implementation status."
},
"category": {
"type": "string",
"description": "High-level robot subsystem category."
},
"aliases": {
"type": "array",
"items": { "type": "string" }
},
"description": {
"type": "string"
},
"commands": {
"type": "array",
"items": { "type": "string" },
"description": "Public launch or ROS commands after sanitization."
},
"nodes": {
"type": "array",
"items": { "type": "string" }
},
"topics": {
"type": "array",
"items": { "type": "string" },
"description": "Topic entries in '/topic [message/type]' format when type is available."
},
"services": {
"type": "array",
"items": { "type": "string" },
"description": "Service entries in '/service [srv/type]' format when type is available."
},
"actions": {
"type": "array",
"items": { "type": "string" }
}
}
}