{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/VirtualMachineListResult", "title": "VirtualMachineListResult", "type": "object", "description": "The List Virtual Machine operation response.", "properties": { "value": { "type": "array", "items": { "$ref": "#/components/schemas/VirtualMachine" }, "description": "The list of virtual machines." }, "nextLink": { "type": "string", "format": "uri", "description": "The URI to fetch the next page of VMs. Call ListNext() with this URI to fetch the next page." } } }