Pipedream · Schema

GetAppsResponse

Response received when retrieving a list of apps

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Properties

Name Type Description
data array
page_info object
View JSON Schema on GitHub

JSON Schema

pipedream-getappsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetAppsResponse",
  "title": "GetAppsResponse",
  "type": "object",
  "description": "Response received when retrieving a list of apps",
  "required": [
    "data",
    "page_info"
  ],
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/App"
      }
    },
    "page_info": {
      "$ref": "#/components/schemas/PageInfo"
    }
  }
}