github.com/grokify/go-ringcentral-client@v0.3.31/codegen/specs-engagedigital_v3.0.0/openapi-spec_timezones.json (about)

     1  {
     2      "openapi": "3.0.0",
     3      "info": {
     4        "description": "",
     5        "version": "1.0",
     6        "title": "Engage Digital API",
     7        "termsOfService": "https://developer.ringcentral.com"
     8      },
     9      "tags": [
    10        {
    11          "name": "Timezones"
    12        }
    13      ],
    14      "paths": {
    15        "/timezones": {
    16          "get": {
    17            "tags": [
    18              "Timezones"
    19            ],
    20            "summary": "Getting all timezones",
    21            "operationId": "getAllTimezones",
    22            "description": "This method renders all available timezones.",
    23            "responses": {
    24              "200": {
    25                "description": "List of all timezones",
    26                "content": {
    27                  "application/json": {
    28                    "schema": {
    29                      "type": "array",
    30                      "items": {
    31                        "$ref": "#/components/schemas/Timezone"
    32                      }
    33                    }
    34                  }
    35                }
    36              }
    37            }
    38          }
    39        }
    40      },
    41      "servers": [
    42        {
    43          "url": "https://DOMAIN.api.engagement.dimelo.com/1.0"
    44        }
    45      ],
    46      "components": {
    47        "schemas": {
    48          "Timezone": {
    49            "properties": {
    50              "name": {
    51                "format": "string"
    52              },
    53              "utc_offset": {
    54                "format": "integer"
    55              }
    56            }
    57          }
    58        }
    59      }
    60    }