Socket
Book a DemoInstallSign in
Socket

@mparticle/mp-config-json-schema

Package Overview
Dependencies
Maintainers
10
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mparticle/mp-config-json-schema

JSON Schema for mp.config.json

latest
Source
npmnpm
Version
0.0.3
Version published
Weekly downloads
62
138.46%
Maintainers
10
Weekly downloads
 
Created
Source


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.

FAQs

Package last updated on 13 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts