DataShapeElement
type DataShapeElement = {
name: string;
type: 'string' | 'number' | 'boolean';
description?: string;
isArray?: boolean;
} | {
name: string;
type: 'object';
description?: string;
isArray?: boolean;
elements: DataShapeElement[];
};Notes on the description
descriptionExample
Last updated