@mparticle/mp-config-json-schema
TypeScript icon, indicating that this package has built-in type declarations

0.0.3 • Public • Published


npm

MP Config JSON Schema

Provides a JSON Schema for validating an mp.config.json file

Installation

npm install @mparticle/mp-config-json-schema

Usage

Add import mpConfigSchema from '@mparticle/mp-config-json-schema'; to the top of any file where mp.config.json is meant to be read.

Pass mpConfigSchema into your validator to validate your config file.

AJV example

As an example, mp-config-json-schema can be used with AJV.

import Ajv from 'ajv';
import mpConfigSchema from '@mparticle/mp-config-json-schema';

const ajv = new Ajv();

const configObject = {
    global: {
        workspaceId: '1234',
        clientId: 'my_secret_id',
        clientSecret: 'SUPERSECRETKEY',
    },
    planningConfig: {
        dataPlanId: 'alex_demo_data_plan',
        dataPlanVersionFile: '.mp/data_plans/alex_demo_data_plan-v1.json',
        versionNumber: 2,
    },
};

const valid = ajv.validate(mpConfigSchema, configObject);

if (!valid) {
    console.error(ajv.errorsText());
}

License

Copyright 2019 mParticle, Inc.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Readme

Keywords

none

Package Sidebar

Install

npm i @mparticle/mp-config-json-schema

Weekly Downloads

34

Version

0.0.3

License

Apache-2.0

Unpacked Size

4.13 kB

Total Files

4

Last publish

Collaborators

  • mparticle-teamcity
  • samdozor
  • rmi22186
  • peterjenkins
  • danhendrix
  • tbreffni
  • alexs-mparticle
  • willpassidomo
  • bstalnaker
  • mparticle-ci