0.0.4 • Published 1 year ago

ngx-json-schema-gen v0.0.4

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

ngx-json-schema-gen

This library was generated with Angular CLI version 13.3.0.

Installing

Run npm i ngx-json-schema-gen to install the package

Getting started

Use the NgxJsonSchemaGenService Service in your project:

import { Component } from '@angular/core';
import { NgxJsonSchemaGenService } from 'ngx-json-schema-gen';

@Component({
  ...
})
export class AppComponent {
  constructor(private service: NgxJsonSchemaGenService) {}

  //Input JSON Object
  injson = {
    phone: {
      isd: 91,
      num: 123456,
      active: true,
    },
  };
 
  //Output JSON Schema as String
  outschemaStr = this.service.generateSchemaStr(this.injson, 'all');
  
}

Demo

https://stackblitz.com/edit/angular-json-schema-gen?file=src/app/hello.component.ts

For a more detailed explanation of how to use this library, please refer to the full documentation.

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago