Zapier · JSON Structure

Partner Api App Category Structure

Category an app belongs to.

Type: object Properties: 8 Required: 8
IntegrationsiPaaS

AppCategory is a JSON Structure definition published by Zapier, describing 8 properties, of which 8 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id title slug description url type_of featured_entry_slug role

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-structure/partner-api-app-category-structure.json",
  "name": "AppCategory",
  "description": "Category an app belongs to.",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "description": "The unique ID for this Category",
      "example": 100
    },
    "title": {
      "type": "string",
      "description": "The title of this Category",
      "example": "Example Name"
    },
    "slug": {
      "type": "string",
      "description": "The shortened slug for this Category",
      "example": "example-value"
    },
    "description": {
      "type": "string",
      "description": "The description of this Categeory",
      "example": "Example description for this resource."
    },
    "url": {
      "type": "string",
      "description": "The URL for this Category",
      "example": "https://example.com/path/abc123"
    },
    "type_of": {
      "type": "string",
      "description": "The type of this Category",
      "example": "standard"
    },
    "featured_entry_slug": {
      "type": "string",
      "description": "The featured entry for this Category (if present)",
      "example": "example-value"
    },
    "role": {
      "type": "string",
      "description": "This Category's role",
      "example": "example-value"
    }
  },
  "required": [
    "description",
    "featured_entry_slug",
    "id",
    "role",
    "slug",
    "title",
    "type_of",
    "url"
  ]
}