Otter · Schema

FulfillmentPathEntity

Delivery distance.

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
name string Describes the entity name.
type string Type of entities in the fulfillment path.
View JSON Schema on GitHub

JSON Schema

public-api-fulfillment-path-entity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "FulfillmentPathEntity",
  "description": "Delivery distance.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-fulfillment-path-entity-schema.json",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "description": "Describes the entity name.",
      "example": "rappi"
    },
    "type": {
      "type": "string",
      "description": "Type of entities in the fulfillment path.",
      "enum": [
        "FULFILLMENT_PROCESSOR",
        "INTERMEDIARY"
      ],
      "example": "FULFILLMENT_PROCESSOR"
    }
  }
}