{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ShapeMemoryOptions", "type": "object", "description": "Options for configuring memory on a flexible shape", "properties": { "minInGBs": { "type": "number", "description": "The minimum amount of memory, in GB" }, "maxInGBs": { "type": "number", "description": "The maximum amount of memory, in GB" }, "defaultPerOcpuInGBs": { "type": "number", "description": "The default amount of memory per OCPU, in GB" }, "minPerOcpuInGBs": { "type": "number", "description": "The minimum amount of memory per OCPU, in GB" }, "maxPerOcpuInGBs": { "type": "number", "description": "The maximum amount of memory per OCPU, in GB" } } }