Otter · JSON Structure

Public Api Parcel Carrier Delivery Info Structure

ParcelCarrierDeliveryInfo schema from Public API (Otter Public API).

Type: Properties: 0
RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

ParcelCarrierDeliveryInfo is a JSON Structure definition published by Otter. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-structure/public-api-parcel-carrier-delivery-info-structure.json",
  "name": "ParcelCarrierDeliveryInfo",
  "description": "ParcelCarrierDeliveryInfo schema from Public API (Otter Public API).",
  "allOf": [
    {
      "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-delivery-metadata-schema.json"
    },
    {
      "required": [
        "carrierName"
      ],
      "type": "object",
      "description": "Detailed delivery information for standard postal carriers who deliver parcel shipments.",
      "properties": {
        "carrierName": {
          "type": "string",
          "description": "The name of the company delivering the shipment.",
          "enum": [
            "FED_EX",
            "UPS",
            "ON_TRAC",
            "DHL",
            "CORREOS",
            "ESTAFETA",
            "BR_POST",
            "TNT",
            "OTHER"
          ]
        },
        "trackingNumber": {
          "type": "string",
          "description": "The tracking number for this shipment",
          "example": "18492b99ad000"
        }
      },
      "additionalProperties": true
    }
  ]
}