@thunderfat/backend-sdk
Version:
TypeScript SDK for ThunderFat Nutrition Management API
12 lines (11 loc) • 392 B
TypeScript
import type { AbstractJsonSchemaPropertyObject } from './AbstractJsonSchemaPropertyObject';
import type { Item } from './Item';
export type JsonSchema = {
title?: string;
description?: string;
properties?: Record<string, AbstractJsonSchemaPropertyObject>;
requiredProperties?: Array<string>;
definitions?: Record<string, Item>;
type?: string;
$schema?: string;
};