VMware · Schema

DatacenterSummary

Summary of a datacenter

Cloud ComputingContainer ManagementHybrid CloudInfrastructureVirtualization

Properties

Name Type Description
datacenter string Unique identifier of the datacenter
name string Display name of the datacenter
View JSON Schema on GitHub

JSON Schema

vmware-datacentersummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatacenterSummary",
  "title": "DatacenterSummary",
  "type": "object",
  "description": "Summary of a datacenter",
  "required": [
    "datacenter",
    "name"
  ],
  "properties": {
    "datacenter": {
      "type": "string",
      "description": "Unique identifier of the datacenter",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "description": "Display name of the datacenter",
      "example": "Example Title"
    }
  }
}