HubSpot · Schema

BatchInput

Input for batch archive operations

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
inputs array Array of items to process
View JSON Schema on GitHub

JSON Schema

hubspot-blog-posts-batch-input-schema.json Raw ↑
{
  "type": "object",
  "description": "Input for batch archive operations",
  "properties": {
    "inputs": {
      "type": "array",
      "description": "Array of items to process",
      "example": [
        {
          "id": "500123"
        }
      ],
      "items": {
        "type": "object",
        "description": "Single item in a batch archive operation",
        "properties": {
          "id": {
            "type": "string",
            "description": "ID of the post to process",
            "example": "500123"
          }
        },
        "required": [
          "id"
        ]
      }
    }
  },
  "required": [
    "inputs"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "BatchInput"
}