schema2code 0.1.4

Generate Code in any language from a JSON Schema compliant document
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
RequestBase:
  type: object
  additionalProperties: false
  properties:
    id:
      type: string
    kind:
      type: string
      const: request
  required:
    - id
    - kind