Merge · Schema

TagInput

Tag key-value pair for use in requests.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
key string Tag key
value string Tag value
View JSON Schema on GitHub

JSON Schema

merge-taginput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TagInput",
  "title": "TagInput",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "description": "Tag key"
    },
    "value": {
      "type": "string",
      "description": "Tag value"
    }
  },
  "required": [
    "key",
    "value"
  ],
  "description": "Tag key-value pair for use in requests."
}