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-tagcreatespec-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TagCreateSpec",
  "title": "TagCreateSpec",
  "type": "object",
  "description": "Specification for creating a tag",
  "required": [
    "name",
    "category_id"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name for the new tag",
      "example": "Example Title"
    },
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "category_id": {
      "type": "string",
      "description": "Identifier of the parent category",
      "example": "500123"
    }
  }
}