Zapier · JSON Structure

Partner Api Expanded Apps Response Structure

An app that integrates with Zapier.

Type: object Properties: 3 Required: 3
IntegrationsiPaaS

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

Properties

data meta links

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-expanded-apps-response-structure.json",
  "name": "ExpandedAppsResponse",
  "description": "An app that integrates with Zapier.",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Apps"
      },
      "description": "A list of the Apps matching the request",
      "example": [
        {}
      ]
    },
    "meta": {
      "type": "object",
      "additionalProperties": {},
      "readOnly": true,
      "description": "Used for paginating results. Specifies the maximum number of items to return per page.",
      "example": {}
    },
    "links": {
      "type": "object",
      "additionalProperties": {},
      "readOnly": true,
      "description": "Used for paginating results. Specifies the offset to use. Defaults to 0",
      "example": {}
    }
  },
  "required": [
    "data",
    "links",
    "meta"
  ]
}