Skip to content
Snippets Groups Projects

Resolve "License information not displayed in the left panel (new interface)"

2 files
+ 4
4
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 2
2
import { z } from 'zod';
import { z } from 'zod';
export const disease = z.object({
export const disease = z.object({
link: z.string(),
id: z.number().int().positive(),
 
link: z.string().optional(),
type: z.string(),
type: z.string(),
resource: z.string(),
resource: z.string(),
id: z.number(),
annotatorClassName: z.string(),
annotatorClassName: z.string(),
});
});
Loading