Skip to content

Instantly share code, notes, and snippets.

View brenmcnamara's full-sized avatar

Brendan McNamara brenmcnamara

View GitHub Profile
// jsonschema
export type JSONSchema$Type$Base = {
id?: string,
required?: boolean
}
export type JSONSchema$Type$Object = JSONSchema$Type$Base & {
type: 'object',
properties: {[key: string]: JSONSchema$Type},
additionalProperties?: false,