Type alias ObjectTypeSkeleton

ObjectTypeSkeleton: {
    $schema: string;
    id: string;
    nativeType: string;
    properties: Record<string, ObjectPropertySkeleton>;
    type: "object";
}

Type declaration