@hypernetlabs/objects
Version:
Objects and types shared by the Hypernet Protocol
32 lines • 1 kB
JavaScript
;
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