{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetFunctionResponse", "title": "GetFunctionResponse", "type": "object", "properties": { "Configuration": { "allOf": [ { "$ref": "#/components/schemas/FunctionConfiguration" }, { "description": "The configuration of the function or version." } ] }, "Code": { "allOf": [ { "$ref": "#/components/schemas/FunctionCodeLocation" }, { "description": "The deployment package of the function or version." } ] }, "Tags": { "allOf": [ { "$ref": "#/components/schemas/Tags" }, { "description": "The function's tags." } ] }, "Concurrency": { "allOf": [ { "$ref": "#/components/schemas/Concurrency" }, { "description": "The function's reserved concurrency." } ] } } }