grubhub · Schema

MerchantAssociationRequest

Request to associate merchants with the partner.

Properties

Name Type Description
merchant_ids array List of merchant IDs to associate with the partner.
View JSON Schema on GitHub

JSON Schema

grubhub-merchantassociationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MerchantAssociationRequest",
  "title": "MerchantAssociationRequest",
  "type": "object",
  "description": "Request to associate merchants with the partner.",
  "required": [
    "merchant_ids"
  ],
  "properties": {
    "merchant_ids": {
      "type": "array",
      "description": "List of merchant IDs to associate with the partner.",
      "items": {
        "type": "string"
      },
      "minItems": 1
    }
  }
}