@golemio/parkings
Version:
Golemio Parkings Module
37 lines • 1.23 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.osmParkingSpacesSchema = void 0;
exports.osmParkingSpacesSchema = {
type: "object",
properties: {
parking_id: { type: "string" },
parking_space_id: { type: "string" },
osm_id: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
name: { oneOf: [{ type: "string" }, { type: "null", nullable: true }] },
capacity: { type: "integer" },
access: {
oneOf: [
{
type: "string",
enum: [
"disabled",
"designated",
"delivery",
"RV",
"charging",
"resident",
"customer",
"bus",
"motorcycle",
"parent",
"truck",
],
},
{ type: "null", nullable: true },
],
},
},
required: ["parking_id"],
additionalProperties: false,
};
//# sourceMappingURL=OsmParkingSpacesSchema.js.map