{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListLayersResponse", "title": "ListLayersResponse", "type": "object", "properties": { "NextMarker": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "A pagination token returned when the response doesn't contain all layers." } ] }, "Layers": { "allOf": [ { "$ref": "#/components/schemas/LayersList" }, { "description": "A list of function layers." } ] } } }