{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-greengrass/refs/heads/main/json-schema/iot-greengrass-get-component-response-schema.json",
"title": "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"
]
}