A single search tag applied to an icon or collection.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/noun-project/refs/heads/main/json-schema/noun-project-tag-schema.json", "title": "Tag", "description": "A single search tag applied to an icon or collection.", "type": "object", "properties": { "id": { "type": "integer", "description": "Numeric identifier of the tag.", "example": 999 }, "slug": { "type": "string", "description": "URL-safe slug of the tag.", "example": "spaceship" } }, "required": [ "id", "slug" ] }