import { Property } from './Property'; import { Reference } from './Reference'; export interface Schema { type: string; required?: Array; items?: Schema | Reference | Property; properties?: { [propertyName: string]: Property; }; }