Stack Exchange · JSON Structure

Stackexchange Api V2 3 Tag Structure

A tag on a Stack Exchange site.

Type: object Properties: 7
Q And ADeveloper CommunityKnowledge GraphStack OverflowStack ExchangeReputationTagsCommunityMCPAI Grounding

Tag is a JSON Structure definition published by Stack Exchange, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name count is_required is_moderator_only has_synonyms user_id last_activity_date

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "name": "Tag",
  "description": "A tag on a Stack Exchange site.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/stackexchange/refs/heads/main/json-structure/stackexchange-api-v2-3-tag-structure.json",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "openapi"
    },
    "count": {
      "type": "int32",
      "example": 3200
    },
    "is_required": {
      "type": "boolean",
      "example": false
    },
    "is_moderator_only": {
      "type": "boolean",
      "example": false
    },
    "has_synonyms": {
      "type": "boolean",
      "example": true
    },
    "user_id": {
      "type": "int32",
      "description": "For tag-wikis, the most recent editor."
    },
    "last_activity_date": {
      "type": "int64"
    }
  }
}