@golemio/parkings
Version:
Golemio Parkings Module
24 lines • 901 B
JavaScript
;
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