{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/VirtualMachineSize", "title": "VirtualMachineSize", "type": "object", "description": "Describes the properties of a VM size.", "properties": { "name": { "type": "string", "description": "The name of the virtual machine size." }, "numberOfCores": { "type": "integer", "format": "int32", "description": "The number of cores supported by the virtual machine size." }, "osDiskSizeInMB": { "type": "integer", "format": "int32", "description": "The OS disk size allowed by the virtual machine size." }, "resourceDiskSizeInMB": { "type": "integer", "format": "int32", "description": "The resource disk size allowed by the virtual machine size." }, "memoryInMB": { "type": "integer", "format": "int32", "description": "The amount of memory in MB supported by the virtual machine size." }, "maxDataDiskCount": { "type": "integer", "format": "int32", "description": "The maximum number of data disks allowed by the virtual machine size." } } }