{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateAliasRequest", "title": "CreateAliasRequest", "type": "object", "required": [ "Name", "FunctionVersion" ], "properties": { "Name": { "allOf": [ { "$ref": "#/components/schemas/Alias" }, { "description": "The name of the alias." } ] }, "FunctionVersion": { "allOf": [ { "$ref": "#/components/schemas/Version" }, { "description": "The function version that the alias invokes." } ] }, "Description": { "allOf": [ { "$ref": "#/components/schemas/Description" }, { "description": "A description of the alias." } ] }, "RoutingConfig": { "allOf": [ { "$ref": "#/components/schemas/AliasRoutingConfiguration" }, { "description": "The routing configuration of the alias." } ] } } }