UNPKG

@golemio/parkings

Version:
24 lines 901 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.InputParkingLotsSchema = void 0; const inputParkingLotsSchema = { type: "array", items: { type: "object", required: ["id", "lastUpdated", "lat", "lng", "name", "numOfFreePlaces", "numOfTakenPlaces", "totalNumOfPlaces"], properties: { gid: { type: "integer" }, id: { type: "integer" }, lastUpdated: { type: "integer" }, lat: { type: "number" }, lng: { type: "number" }, name: { type: "string" }, numOfFreePlaces: { type: "integer" }, numOfTakenPlaces: { type: "integer" }, pr: { type: "boolean" }, totalNumOfPlaces: { type: "integer" }, }, }, }; exports.InputParkingLotsSchema = inputParkingLotsSchema; //# sourceMappingURL=InputParkingLotsSchema.js.map