@golemio/parkings
Version:
Golemio Parkings Module
22 lines • 695 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ParkomatInputSchema = void 0;
const parkomatInputSchema = {
type: "array",
items: {
type: "object",
properties: {
Channel: { type: "string" },
DateFrom: { type: "string" },
DateTime: { type: "string" },
DateTo: { type: "string" },
Id: { type: "string" },
Price: { type: "number" },
Section: { type: "string" },
},
required: ["Id", "Price"],
additionalProperties: false,
},
};
exports.ParkomatInputSchema = parkomatInputSchema;
//# sourceMappingURL=ParkomatInputSchema.js.map