@golemio/parkings
Version:
Golemio Parkings Module
40 lines • 1.52 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.iptOictParkingProhibitionsSchema = void 0;
exports.iptOictParkingProhibitionsSchema = {
type: "array",
items: {
type: "object",
properties: {
parking_id: { type: "string" },
source: { type: "string" },
prohibited_access: {
type: "object",
properties: {
"lpg/cng": {
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
},
bus: {
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
},
truck: {
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
},
motorcycle: {
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
},
bicycle: {
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
},
trailer: {
oneOf: [{ type: "boolean" }, { type: "null", nullable: true }],
},
},
required: [],
},
},
required: ["parking_id", "prohibited_access", "source"],
},
additionalProperties: false,
};
//# sourceMappingURL=IptOictParkingProhibitionsSchema.js.map