VMware · Schema

TagCategoryCreateSpec

Specification for creating a tag category

Cloud ComputingContainer ManagementHybrid CloudInfrastructureVirtualization

Properties

Name Type Description
name string Name for the new category
description string
cardinality string Cardinality of the category
associable_types array Object types that can be tagged with tags in this category
View JSON Schema on GitHub

JSON Schema

vmware-vsphere-tag-category-create-spec-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TagCategoryCreateSpec",
  "type": "object",
  "description": "Specification for creating a tag category",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name for the new category"
    },
    "description": {
      "type": "string"
    },
    "cardinality": {
      "type": "string",
      "description": "Cardinality of the category"
    },
    "associable_types": {
      "type": "array",
      "description": "Object types that can be tagged with tags in this category"
    }
  }
}