Skip to content
Playground

UI Schema

UI schema allows you to customize the appearance of the form and influence its behavior.

The UI schema object follows the tree structure of the form field hierarchy, and defines how each property should be rendered.

export interface UiSchemaContent {
"ui:options"?: UiOptions;
"ui:components"?: Partial<{
[T in FoundationalComponentType]:
| Exclude<CompatibleComponentType<T>, T>
| ComponentDefinitions[T];
}>;
items?: UiSchema | UiSchema[];
anyOf?: UiSchema[];
oneOf?: UiSchema[];
additionalProperties?: UiSchema;
additionalPropertyKeyInput?: UiSchema;
additionalItems?: UiSchema;
}
export type UiSchema = UiSchemaContent & {
// This is should be `UiSchema` type, but
// https://github.com/microsoft/TypeScript/issues/17867
[key: string]: UiSchemaContent[keyof UiSchemaContent];
};
export type UiSchemaRoot = UiSchemaContent & {
"ui:globalOptions"?: UiOptions;
// This is also should be `UiSchema`
[key: string]: UiSchemaContent[keyof UiSchemaContent];
};

The UiOptions type is an extensible set of components options. By default it looks like this:

interface UiOptions {
/**
* Overrides the title of the field.
*/
title?: string;
/**
* Overrides the description of the field (over the widget).
*/
description?: string;
/**
* List of labels for enum values in the schema.
*/
enumNames?: string[];
/**
* List of enum values that are disabled. Values are compared by strict equality.
*/
disabledEnumValues?: SchemaValue[];
/**
* Order of properties in the object schema.
* You must specify all properties or use the wildcard `*`.
*/
order?: string[];
/**
* Allow adding new properties to the object schema with `additionalProperties`.
* @default true
*/
expandable?: boolean;
/**
* Allow adding new items to the array schema.
* @default true
*/
addable?: boolean;
/**
* Allow reordering items in the array schema.
* If you want an orderable array of file fields, set this to `true` explicitly.
* @default true
*/
orderable?: boolean;
/**
* Allow removing items from the array schema.
* @default true
*/
removable?: boolean;
/**
* Allow duplicating items in the array schema.
* @default false
*/
copyable?: boolean;
/**
* Prefix of the new additional property key
* @default 'newKey'
*/
additionalPropertyKeyPrefix?: string
/**
* Separator between the prefix of the optional property key and its integer suffix.
* @default '-'
*/
additionalPropertyKeySeparator?: string;
/**
* Help text for the field (under the widget).
*/
help?: string;
/**
* Hide the title of the field.
* If you want to show a title of the `boolean` field this should be set to `false` explicitly.
* @default false
*/
hideTitle?: boolean;
/**
* Overrides whether to use the `title` or `label` component in the `field` template
*/
useLabel?: boolean
}
  • Each component/widget in the theme should define at least one UI option to allow customization of it
  • All parameters must be prefixed by the theme name (e.g. daisyui5RadioButtons).
  • Only a basic theme can define options without a prefix and other themes can use the basic theme UI options for the corresponding components/widgets if their properties are compatible.
  • Using UI options of one component in another (even if they are compatible) is forbidden, e.g. text and textarea widgets must use separate options.

Check your theme page for an extended list of UI options:

Usually ui schema corresponds to the data structure described by json schema.

For example, with this JSON schema, the following UI schema would be correct:

import type { Schema, UiSchemaRoot } from "@sjsf/form";
const schema: Schema = {
oneOf: [
{
properties: {
foo: {
type: "string",
},
},
},
{
properties: {
bar: {
type: "number",
},
},
},
],
};
const uiSchema: UiSchemaRoot = {
foo: {
// ui schema for `foo` field
},
bar: {
// ui schema for `bar` field
},
};

Special cases:

Instead of defining indices in the ui schema, the items keyword should be used to specify the ui schema for the elements of the array.

For a fixed array items also can be an array. If you have additional items you should use additionalItems keyword to specify the ui schema for them.

{
items: [<uiSchema>, ...],
additionalItems: <uiSchema>
}

You should use additionalProperties keyword to specify the ui schema for additional properties.

You can use additionalPropertyKeyInput keyword to define an ui schema for the additional property key input field.

You can define separate ui schemas for each oneOf/anyOf branch using the corresponding keyword in the ui schema. Otherwise the ui schema of the current field will be used.

{
oneOf: [<uiSchema>, ...]
}

This property allows you to specify UI options for all components of a certain type or set them dynamically.

import { fromRecord } from "@sjsf/form/lib/resolver";
import { createMyForm } from "@/components/my-form";
const form = createMyForm({
schema: {},
extraUiOptions: fromRecord({
titleAttributes: {
style: "font-weight: bolder;",
},
}),
});