{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DatacenterInfo", "title": "DatacenterInfo", "type": "object", "description": "Detailed datacenter information", "properties": { "name": { "type": "string", "description": "Display name of the datacenter", "example": "Example Title" }, "datastore_folder": { "type": "string", "description": "Datastore folder identifier", "example": "example_value" }, "host_folder": { "type": "string", "description": "Host folder identifier", "example": "example_value" }, "network_folder": { "type": "string", "description": "Network folder identifier", "example": "example_value" }, "vm_folder": { "type": "string", "description": "VM folder identifier", "example": "example_value" } } }