UNPKG

@hypernetlabs/objects

Version:
32 lines 1 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AuthorizedGatewaysSchema = void 0; exports.AuthorizedGatewaysSchema = { $schema: "http://json-schema.org/draft-07/schema", title: "AuthorizedGateways", type: "object", properties: { data: { type: "array", title: "data", items: { type: "object", title: "AuthorizedGatewayItem", properties: { gatewayUrl: { type: "string", title: "gatewayUrl", maxLength: 500, }, authorizationSignature: { type: "string", title: "authorizationSignature", maxLength: 1000, }, }, }, }, }, required: ["data"], }; //# sourceMappingURL=AuthorizedGatewaysSchema.js.map