VMware · Schema

TagCreateSpec

Specification for creating a tag

Cloud ComputingContainer ManagementHybrid CloudInfrastructureVirtualization

Properties

Name Type Description
name string Name for the new tag
description string
category_id string Identifier of the parent category
View JSON Schema on GitHub

JSON Schema

vmware-vsphere-tag-create-spec-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TagCreateSpec",
  "type": "object",
  "description": "Specification for creating a tag",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name for the new tag"
    },
    "description": {
      "type": "string"
    },
    "category_id": {
      "type": "string",
      "description": "Identifier of the parent category"
    }
  }
}