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