Interface CustomFieldContextDefaultValueForgeObjectField

The default value for a Forge object custom field.

interface CustomFieldContextDefaultValueForgeObjectField {
    object?: {
        [key: string]: unknown;
    };
    type: string;
}

Properties

Properties

object?: {
    [key: string]: unknown;
}

The default JSON object.

type: string