Noun Project · Schema

Tag

A single search tag applied to an icon or collection.

Art And DesignIconsSVGVisual LanguageDesign AssetsPublic APIs

Properties

Name Type Description
id integer Numeric identifier of the tag.
slug string URL-safe slug of the tag.
View JSON Schema on GitHub

JSON Schema

noun-project-tag-schema.json Raw ↑
{
  "$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"
  ]
}