@golemio/parkings
Version:
Golemio Parkings Module
40 lines • 1.35 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.iptOictParkingSpacesSchema = void 0;
exports.iptOictParkingSpacesSchema = {
type: "object",
properties: {
source: { type: "string" },
parking_id: { type: "string" },
id: { type: "string" },
name: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
capacity: { type: "integer" },
access_dedicated_to: {
oneOf: [
{
type: "array",
items: {
type: "string",
enum: [
"disabled",
"designated",
"delivery",
"RV",
"charging",
"resident",
"customer",
"bus",
"motorcycle",
"parent",
"truck",
],
},
},
{ type: "null", nullable: true },
],
},
},
required: ["id", "capacity", "parking_id"],
additionalProperties: false,
};
//# sourceMappingURL=IptOictParkingSpacesSchema.js.map