Delivery distance.
{ "$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" } } }