Skip to content

Latest commit

 

History

History
63 lines (53 loc) · 1.49 KB

File metadata and controls

63 lines (53 loc) · 1.49 KB

OpenAPI FormKit

Transform an OpenAPI document to a FormKit schema

WARNING: This package is still under development.
Implemented:

  • Basic types:
    • Booleans
    • Numbers
      • Float
      • Integer
    • String
      • text
      • file
      • special: telephone, email, url, date/date-time, password
    • Object

Not implemented:

  • anyOf keyword
  • oneOf keyword
  • allOf keyword
  • not keyword
  • And more

import { Convert } from 'openapi-formkit'    

// Helper function to convert from url or file openapi document  
Convert(<url/path>, options)

Or

import { Converter } from 'openapi-formkit'    

// Convert a JS object representating a dereferenced OpenAPI document  
new Converter(options).convert(object)

Return a promise with the result.


Options:

  • step: Default step for number and range inputs
    • default : 0.1
  • transformers: List of transformer function which apply to every parameters/object fields
    • default : [ ]
    • definition :
(param: Parameter, options: Options, item: FormKitItem) => FormKitItem
  • operationTransformers: List of transformer function which apply to every operation
    • default : [ Converter.OperationToForm ]
    • definition :
(path: string, op: method, options: Options, item: Route) => Route

Passed arguments to a transformer function:

  • OpenAPI parameter or object field
  • The options passed to the converter
  • The item to transform