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