RapidAPI · Schema

Tag

API MarketplaceAPI ManagementAPI TestingAPI GatewayAPI DesignEnterprise

Properties

Name Type Description
id string Unique identifier for the tag
name string Tag name
status string Current status of the tag
View JSON Schema on GitHub

JSON Schema

rapidapi-tag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Tag",
  "title": "Tag",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the tag"
    },
    "name": {
      "type": "string",
      "description": "Tag name"
    },
    "status": {
      "type": "string",
      "description": "Current status of the tag"
    }
  }
}