{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ImageConfigResponse",
"title": "ImageConfigResponse",
"type": "object",
"properties": {
"ImageConfig": {
"allOf": [
{
"$ref": "#/components/schemas/ImageConfig"
},
{
"description": "Configuration values that override the container image Dockerfile."
}
]
},
"Error": {
"allOf": [
{
"$ref": "#/components/schemas/ImageConfigError"
},
{
"description": "Error response to GetFunctionConfiguration."
}
]
}
},
"description": "Response to a GetFunctionConfiguration request."
}