Skip to main content
A simple object schema with properties.
export interface SimpleObjectSchema extends BasicSchema {
  type: "object";
  properties: Record<string, SimpleObjectStringSchema>;
  required: string[];
}

Properties

type
'object'
properties
Record<string, SimpleObjectStringSchema>
required
string[]