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