{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListFunctionUrlConfigsResponse", "title": "ListFunctionUrlConfigsResponse", "type": "object", "required": [ "FunctionUrlConfigs" ], "properties": { "FunctionUrlConfigs": { "allOf": [ { "$ref": "#/components/schemas/FunctionUrlConfigList" }, { "description": "A list of function URL configurations." } ] }, "NextMarker": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The pagination token that's included if more results are available." } ] } } }