AppyWay · JSON Structure

Parking Availability Structure

Real-time parking availability data from AppyWay

Type: record Properties: 0
ParkingTrafficUrban MobilitySmart CitiesEV Charging

Parking Availability Structure is a JSON Structure definition published by AppyWay. 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/appyway/main/json-structure/parking-availability-structure.json",
  "title": "ParkingAvailability",
  "description": "Real-time parking availability data from AppyWay",
  "type": "record",
  "fields": [
    {
      "name": "locationId",
      "type": "string",
      "description": "Unique parking location identifier"
    },
    {
      "name": "name",
      "type": "string",
      "description": "Parking location name"
    },
    {
      "name": "availableSpaces",
      "type": "int32",
      "description": "Available parking spaces"
    },
    {
      "name": "totalSpaces",
      "type": "int32",
      "description": "Total parking spaces"
    },
    {
      "name": "occupancyPercent",
      "type": "float64",
      "description": "Occupancy percentage"
    },
    {
      "name": "timestamp",
      "type": "string",
      "description": "Data timestamp"
    },
    {
      "name": "evCharging",
      "type": "boolean",
      "description": "EV charging available"
    }
  ]
}