@golemio/pid
Version:
Golemio PID Module
22 lines • 693 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GtfsTripStopsCacheDtoSchema = void 0;
const gtfsTripStopsCacheDtoSchema = {
$schema: "http://json-schema.org/draft-04/schema#",
title: "GtfsTripStopsCacheDto",
type: "object",
properties: {
stops: {
type: "array",
items: {
type: "array",
items: [{ type: "string" }, { type: "string" }],
minItems: 2,
maxItems: 2,
},
},
},
required: ["stops"],
};
exports.GtfsTripStopsCacheDtoSchema = gtfsTripStopsCacheDtoSchema;
//# sourceMappingURL=GtfsTripStopsCacheDtoSchema.js.map