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.

26 lines 733 B
// Copyright (c) 2023 S44, LLC // Copyright Contributors to the CitrineOS Project // // SPDX-License-Identifier: Apache 2.0 /** * This message querystring schema describes the {@link IMessageQuerystring} interface. */ export const IMessageQuerystringSchema = { $id: 'MessageQuerystring', type: 'object', properties: { identifier: { anyOf: [ { type: 'string' }, { type: 'array', items: { type: 'string' }, }, ], }, tenantId: { type: 'string' }, callbackUrl: { type: 'string' }, }, required: ['identifier', 'tenantId'], }; //# sourceMappingURL=MessageQuerystring.js.map