Nutanix · Schema

Reference

A reference to another entity.

Cloud ManagementHyperconvergedInfrastructureVirtualizationKubernetesDatabase

Properties

Name Type Description
kind string The kind of entity being referenced.
uuid string The UUID of the referenced entity.
name string The name of the referenced entity.
View JSON Schema on GitHub

JSON Schema

nutanix-reference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Reference",
  "title": "Reference",
  "type": "object",
  "description": "A reference to another entity.",
  "required": [
    "kind",
    "uuid"
  ],
  "properties": {
    "kind": {
      "type": "string",
      "description": "The kind of entity being referenced."
    },
    "uuid": {
      "type": "string",
      "format": "uuid",
      "description": "The UUID of the referenced entity."
    },
    "name": {
      "type": "string",
      "description": "The name of the referenced entity."
    }
  }
}