ExtraServiceRateResponse

Extra service rate response.

GovernmentPostal ServiceShippingLogisticsAddress ValidationPackage Tracking

Properties

Name Type Description
extraServices array List of extra service rates.
View JSON Schema on GitHub

JSON Schema

domestic-prices-extra-service-rate-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/united-states-postal-service/refs/heads/main/json-schema/domestic-prices-extra-service-rate-response-schema.json",
  "title": "ExtraServiceRateResponse",
  "description": "Extra service rate response.",
  "type": "object",
  "properties": {
    "extraServices": {
      "type": "array",
      "description": "List of extra service rates.",
      "items": {
        "type": "object",
        "properties": {
          "extraServiceCode": {
            "type": "string",
            "description": "Extra service code.",
            "example": "955"
          },
          "name": {
            "type": "string",
            "description": "Name of the extra service.",
            "example": "Signature Confirmation"
          },
          "price": {
            "type": "number",
            "description": "Price for the extra service in USD.",
            "example": 3.8
          }
        }
      }
    }
  }
}