Giphy · Schema

GIPHY Category

PhotographyMediaGIFsStickersEmojiVideoMessagingSocialMeta

Properties

Name Type Description
name string
name_encoded string
subcategories array
gif object
View JSON Schema on GitHub

JSON Schema

giphy-category-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/giphy/json-schema/giphy-category-schema.json",
  "title": "GIPHY Category",
  "type": "object",
  "properties": {
    "name": { "type": "string" },
    "name_encoded": { "type": "string" },
    "subcategories": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": { "type": "string" },
          "name_encoded": { "type": "string" }
        }
      }
    },
    "gif": { "$ref": "giphy-gif-schema.json" }
  }
}