@golemio/parkings
Version:
Golemio Parkings Module
23 lines • 823 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TskParkingMachinesSchema = void 0;
exports.TskParkingMachinesSchema = {
name: "TskParkingMachines",
jsonSchema: {
type: "array",
items: {
type: "object",
properties: {
idParkMachine: { type: "string" },
code: { type: "string" },
idStatus: { type: "number" },
type: { type: "string" },
idTariff: { type: "string" },
positionWKT: { type: "string" },
activeFrom: { type: "string" },
},
required: ["idParkMachine", "code", "idStatus", "type", "idTariff", "positionWKT", "activeFrom"],
},
},
};
//# sourceMappingURL=TskParkingMachinesSchema.js.map