UNPKG

@golemio/parkings

Version:
27 lines 880 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.IsphkMeasurementsSchema = void 0; const isphkMeasurementsSchema = { type: "object", properties: { type: { type: "string" }, data: { type: "array", items: { type: "object", properties: { id: { type: "string" }, capacity: { type: "integer" }, free: { type: "integer" }, status: { type: "string" }, }, required: ["id", "capacity", "free", "status"], additionalProperties: false, }, }, }, required: ["data", "type"], additionalProperties: false, }; exports.IsphkMeasurementsSchema = isphkMeasurementsSchema; //# sourceMappingURL=IsphkMeasurementsSchema.js.map