---
title: "WeatherStationRecord"
url: "https://developers.perryweather.com/apis/perry-weather-api-1/versions/7110667a-0eb5-4377-b3c7-1dbf5b442cbb/schemas/WeatherStationRecord"
---

> Full API specification: https://developers.perryweather.com/apis/perry-weather-api-1/versions/7110667a-0eb5-4377-b3c7-1dbf5b442cbb.md

# WeatherStationRecord

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Perry Weather API
  version: "1.0"
servers:
  - url: https://customer.api.perryweather.com/v1/
    description: Production Server
components:
  schemas:
    WeatherStationRecord:
      type: object
      properties:
        id:
          type: string
          nullable: true
        locationName:
          type: string
          nullable: true
        lastUpdated:
          type: string
          format: date-time
          nullable: true
        latitude:
          type: number
          format: double
        longitude:
          type: number
          format: double
        timeZoneId:
          type: string
          nullable: true
      additionalProperties: false
```
