@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.
29 lines • 849 B
JavaScript
;
// 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;
/**
* 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: 'string' },
callbackUrl: { type: 'string' },
},
required: ['identifier', 'tenantId'],
};
//# sourceMappingURL=MessageQuerystring.js.map