UNPKG

@citrineos/base

Version:

The base module for OCPP v2.0.1 including all interfaces. This module is not intended to be used directly, but rather as a dependency for other modules.

30 lines 953 B
"use strict"; // Copyright (c) 2023 S44, LLC // Copyright Contributors to the CitrineOS Project // // SPDX-License-Identifier: Apache 2.0 Object.defineProperty(exports, "__esModule", { value: true }); exports.IMessageQuerystringSchema = void 0; const defineConfig_1 = require("../../config/defineConfig"); /** * This message querystring schema describes the {@link IMessageQuerystring} interface. */ exports.IMessageQuerystringSchema = { $id: 'MessageQuerystring', type: 'object', properties: { identifier: { anyOf: [ { type: 'string' }, { type: 'array', items: { type: 'string' }, }, ], }, tenantId: { type: 'number', default: defineConfig_1.DEFAULT_TENANT_ID }, callbackUrl: { type: 'string' }, }, required: ['identifier', 'tenantId'], }; //# sourceMappingURL=MessageQuerystring.js.map