{
  "x402Version": 2,
  "id": 4482,
  "slug": "4482",
  "resource": "https://schedule-tools.use.x402atlas.com/timezone-convert",
  "description": "Timezone converter — resolve civil-time daylight-saving (DST) folds or gaps and convert one local time between IANA zones.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x8C128f1Ee62Bb5e47867CfbAe2ad89be325Df1b2",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "5000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:137",
      "payTo": "0x8C128f1Ee62Bb5e47867CfbAe2ad89be325Df1b2",
      "asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
      "amount": "5000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:42161",
      "payTo": "0x8C128f1Ee62Bb5e47867CfbAe2ad89be325Df1b2",
      "asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
      "amount": "5000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "category": "calendar",
      "info": {
        "input": {
          "body": {
            "ambiguous_time": "later",
            "destination_timezone": "Europe/London",
            "local_time": "2024-11-03T01:30:00",
            "nonexistent_time": "reject",
            "source_timezone": "America/New_York"
          },
          "bodyType": "json",
          "method": "POST",
          "type": "http"
        },
        "output": {
          "example": {
            "algorithm_version": "schedule-v1",
            "ambiguous_time": "later",
            "destination": {
              "abbreviation": "GMT",
              "local_time": "2024-11-03T06:30:00+00:00",
              "offset_seconds": 0,
              "timezone": "Europe/London"
            },
            "destination_timezone": "Europe/London",
            "go_toolchain_version": "go1.26.3",
            "iana_tzdata_version": "2026a",
            "input_local": "2024-11-03T01:30:00",
            "nonexistent_time": "reject",
            "operation": "timezone-convert",
            "resolved_utc": "2024-11-03T06:30:00Z",
            "source": {
              "abbreviation": "EST",
              "local_time": "2024-11-03T01:30:00-05:00",
              "offset_seconds": -18000,
              "timezone": "America/New_York"
            },
            "source_timezone": "America/New_York",
            "tzdata_source": "bridge-embedded",
            "warnings": []
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "body": {
                "additionalProperties": false,
                "properties": {
                  "ambiguous_time": {
                    "description": "Policy for a repeated civil time",
                    "enum": [
                      "earlier",
                      "later",
                      "reject"
                    ],
                    "type": "string"
                  },
                  "destination_timezone": {
                    "description": "UTC or destination IANA area/location name",
                    "maxLength": 128,
                    "minLength": 3,
                    "type": "string"
                  },
                  "local_time": {
                    "description": "Civil timestamp in YYYY-MM-DDTHH:MM:SS",
                    "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}$",
                    "type": "string"
                  },
                  "nonexistent_time": {
                    "description": "Policy for a skipped civil time",
                    "enum": [
                      "reject",
                      "shift_forward"
                    ],
                    "type": "string"
                  },
                  "source_timezone": {
                    "description": "UTC or source IANA area/location name",
                    "maxLength": 128,
                    "minLength": 3,
                    "type": "string"
                  }
                },
                "required": [
                  "local_time",
                  "source_timezone",
                  "destination_timezone",
                  "ambiguous_time",
                  "nonexistent_time"
                ],
                "type": "object"
              },
              "bodyType": {
                "enum": [
                  "json",
                  "form-data",
                  "text"
                ],
                "type": "string"
              },
              "method": {
                "enum": [
                  "POST"
                ],
                "type": "string"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method",
              "bodyType",
              "body"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "additionalProperties": false,
                "properties": {
                  "_atlas": {
                    "additionalProperties": false,
                    "description": "Atlas documentation and related-route metadata added after deployment",
                    "properties": {
                      "docs": {
                        "description": "Documentation URL for this bridge",
                        "format": "uri",
                        "maxLength": 512,
                        "type": "string"
                      },
                      "related": {
                        "description": "Bounded related Atlas routes",
                        "items": {
                          "additionalProperties": false,
                          "description": "One related Atlas route",
                          "properties": {
                            "bridge": {
                              "description": "Related bridge name",
                              "maxLength": 64,
                              "type": "string"
                            },
                            "docs": {
                              "description": "Related bridge documentation URL",
                              "format": "uri",
                              "maxLength": 512,
                              "type": "string"
                            },
                            "summary": {
                              "description": "Short capability summary",
                              "maxLength": 256,
                              "type": "string"
                            },
                            "url": {
                              "description": "Related route URL",
                              "format": "uri",
                              "maxLength": 512,
                              "type": "string"
                            }
                          },
                          "required": [
                            "bridge",
                            "url",
                            "docs",
                            "summary"
                          ],
                          "type": "object"
                        },
                        "maxItems": 3,
                        "type": "array"
                      }
                    },
                    "required": [
                      "docs"
                    ],
                    "type": "object"
                  },
                  "algorithm_version": {
                    "const": "schedule-v1",
                    "description": "Pinned timezone-resolution contract",
                    "type": "string"
                  },
                  "ambiguous_time": {
                    "description": "Applied fold policy",
                    "enum": [
                      "earlier",
                      "later",
                      "reject"
                    ],
                    "type": "string"
                  },
                  "destination": {
                    "additionalProperties": false,
                    "description": "One localized representation of the resolved instant",
                    "properties": {
                      "abbreviation": {
                        "description": "Display-only timezone abbreviation",
                        "type": "string"
                      },
                      "local_time": {
                        "description": "RFC3339 local form with numeric offset",
                        "format": "date-time",
                        "type": "string"
                      },
                      "offset_seconds": {
                        "description": "UTC offset in seconds",
                        "maximum": 86400,
                        "minimum": -86400,
                        "type": "integer"
                      },
                      "timezone": {
                        "description": "IANA timezone name",
                        "type": "string"
                      }
                    },
                    "required": [
                      "local_time",
                      "timezone",
                      "offset_seconds",
                      "abbreviation"
                    ],
                    "type": "object"
                  },
                  "destination_timezone": {
                    "description": "Destination IANA timezone",
                    "type": "string"
                  },
                  "go_toolchain_version": {
                    "const": "go1.26.3",
                    "description": "Reviewed Go toolchain carrying the embedded data",
                    "type": "string"
                  },
                  "iana_tzdata_version": {
                    "const": "2026a",
                    "description": "Reviewed IANA timezone database release",
                    "type": "string"
                  },
                  "input_local": {
                    "description": "Original civil timestamp",
                    "type": "string"
                  },
                  "nonexistent_time": {
                    "description": "Applied gap policy",
                    "enum": [
                      "reject",
                      "shift_forward"
                    ],
                    "type": "string"
                  },
                  "operation": {
                    "const": "timezone-convert",
                    "description": "Stable route operation",
                    "type": "string"
                  },
                  "resolved_utc": {
                    "description": "Resolved UTC instant",
                    "format": "date-time",
                    "type": "string"
                  },
                  "source": {
                    "additionalProperties": false,
                    "description": "One localized representation of the resolved instant",
                    "properties": {
                      "abbreviation": {
                        "description": "Display-only timezone abbreviation",
                        "type": "string"
                      },
                      "local_time": {
                        "description": "RFC3339 local form with numeric offset",
                        "format": "date-time",
                        "type": "string"
                      },
                      "offset_seconds": {
                        "description": "UTC offset in seconds",
                        "maximum": 86400,
                        "minimum": -86400,
                        "type": "integer"
                      },
                      "timezone": {
                        "description": "IANA timezone name",
                        "type": "string"
                      }
                    },
                    "required": [
                      "local_time",
                      "timezone",
                      "offset_seconds",
                      "abbreviation"
                    ],
                    "type": "object"
                  },
                  "source_timezone": {
                    "description": "Source IANA timezone",
                    "type": "string"
                  },
                  "tzdata_source": {
                    "const": "bridge-embedded",
                    "description": "Timezone data source",
                    "type": "string"
                  },
                  "warnings": {
                    "description": "DST shift warnings; empty when no shift was required",
                    "items": {
                      "description": "Human-readable warning",
                      "type": "string"
                    },
                    "maxItems": 1,
                    "type": "array"
                  }
                },
                "required": [
                  "operation",
                  "algorithm_version",
                  "tzdata_source",
                  "go_toolchain_version",
                  "iana_tzdata_version",
                  "input_local",
                  "source_timezone",
                  "destination_timezone",
                  "ambiguous_time",
                  "nonexistent_time",
                  "resolved_utc",
                  "source",
                  "destination",
                  "warnings"
                ],
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      },
      "tags": [
        "timezone-convert",
        "iana-timezone",
        "dst-fold",
        "dst-gap",
        "calendar"
      ]
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "schedule-tools.use.x402atlas.com",
  "lastUpdated": "2026-09-15T06:32:36.53Z",
  "quality": {
    "calls30d": 3,
    "uniquePayers30d": 2,
    "lastCalledAt": "2026-09-15T06:32:36.403Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "schedule-tools.use.x402atlas.com",
    "manifest_name": "schedule-tools.use.x402atlas.com",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}