{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DatastoreSummary", "title": "DatastoreSummary", "type": "object", "description": "Summary of a datastore in the vCenter inventory", "required": [ "datastore", "name" ], "properties": { "datastore": { "type": "string", "description": "Unique identifier of the datastore (e.g., datastore-15)", "example": "example_value" }, "name": { "type": "string", "description": "Display name of the datastore", "example": "Example Title" }, "type": { "type": "string", "description": "Type of the datastore", "enum": [ "VMFS", "NFS", "NFS41", "CIFS", "VSAN", "VFFS", "VVOL" ], "example": "VMFS" }, "free_space": { "type": "integer", "description": "Free space in bytes", "format": "int64", "example": 10 }, "capacity": { "type": "integer", "description": "Total capacity in bytes", "format": "int64", "example": 10 } } }