Skip to content

shotero/gen-schema

Repository files navigation

Gen Schema

Generate JSON Schema definitions from a PostgreSQL database

Configuration

.genschemarc.js

module.exports = {
  baseUrl: 'https://genschema.com',
  schemaVersion: 'http://json-schema.org/draft-07/schema#',
  db: {
    database: 'db',
    user: 'system'
  },
  schemas: [
    {
      name: 'public',
      renames: {},
      ignores: ['ignore', 'these', 'tables']
    }
  ]
};

Usage

import { getSchemas } from '@shotero/gen-schema';

console.dir(await getSchemas());

About

JSON Schema generator for Postgres database

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published