0.1.0 • Published 7 years ago

@nimerritt/muesli-schema v0.1.0

Weekly downloads
1
License
ISC
Repository
github
Last release
7 years ago

Muesli Schema

Build Status

Json-schema is full of sugar. Let's restrict it to the essentials and have a great day.

This subset is designed specifically to be easily converted to Typescript and other static-type systems.

Details:

In contrast to normal json-schema, the root must be an object type and contain a title. All object types are strict in the sense that all properties must be explicitly specified. This is achieved by enforcing additionalProperties to be specified as false. Additionally the required array must be specified, even if it is empty.

The following is a valid muesli schema specified as JavaScript.

{
  title: 'Person',
  type: 'object',
  properties: {
    id: { type: 'string' },
    first_name: { type: 'string' },
    last_name: { type: 'string' },
    address: {
      type: 'object',
      properties: {
        street: { type: 'string' },
        city: { type: 'string' },
      },
      required: ['city'],
      additionalProperties: false,
    },
  },
  required: ['id'],
  additionalProperties: false,
}

Todo:

  • Validate test cases against muesli schema
  • Setup test suite against TypeScript interfaces
  • Implement Muesli-schema to TypeScript interface

Muesli Swagger Server

Tooling for creating TypeScript servers from a subset of the Swagger spec.

Muesli Swagger Client

Tooling for creating TypeScript cleints from a subset of the Swagger spec.

0.1.0

7 years ago

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago