> ## Documentation Index
> Fetch the complete documentation index at: https://intunedhq.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# SimpleObjectSchema

A simple object schema with properties.

```typescript theme={null}
export interface SimpleObjectSchema extends BasicSchema {
  type: "object";
  properties: Record<string, SimpleObjectStringSchema>;
  required: string[];
}
```

## Properties

<ParamField path="type" type="'object'" />

<ParamField path="properties" type="Record<string, SimpleObjectStringSchema>" />

<ParamField path="required" type="string[]" />
