@golemio/parkings
Version:
Golemio Parkings Module
22 lines • 763 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.smart4CityLocationJsonSchema = void 0;
exports.smart4CityLocationJsonSchema = {
type: "array",
items: {
type: "object",
properties: {
id: { type: "number" },
name: { type: "string" },
latitude: { type: "number" },
longitude: { type: "number" },
capacity: { type: "number" },
correctionunoccupied: { oneOf: [{ type: "number" }, { type: "null", nullable: true }] },
closed: { type: "boolean" },
type: { type: "number" },
},
required: ["id"],
additionalProperties: true,
},
};
//# sourceMappingURL=Smart4CityLocationJsonSchema.js.map