{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-greengrass/refs/heads/main/json-structure/iot-greengrass-get-component-response-structure.json",
"name": "GetComponentResponse",
"description": "GetComponentResponse schema",
"type": "object",
"properties": {
"recipeOutputFormat": {
"allOf": [
{
"$ref": "#/components/schemas/RecipeOutputFormat"
},
{
"description": "The format of the recipe."
}
]
},
"recipe": {
"allOf": [
{
"$ref": "#/components/schemas/RecipeBlob"
},
{
"description": "The recipe of the component version."
}
]
},
"tags": {
"allOf": [
{
"$ref": "#/components/schemas/TagMap"
},
{
"description": "A list of key-value pairs that contain metadata for the resource. For more information, see Tag your resources in the IoT Greengrass V2 Developer Guide."
}
]
}
},
"required": [
"recipeOutputFormat",
"recipe"
]
}