Frodo Library - v4.0.0-42
    Preparing search index...

    Type Alias ManagedObjectSchema<TProperties>

    type ManagedObjectSchema<
        TProperties extends
            Record<string, ManagedObjectSchemaProperty> = Record<
            string,
            ManagedObjectSchemaProperty,
        >,
    > = {
        $schema: string;
        icon?: string;
        order: (keyof TProperties & string)[];
        properties: TProperties;
        required: (keyof TProperties & string)[];
        resourceCollection: string;
        title: string;
        type: "object";
    }

    Type Parameters

    Index

    Properties

    $schema: string
    icon?: string
    order: (keyof TProperties & string)[]
    properties: TProperties
    required: (keyof TProperties & string)[]
    resourceCollection: string
    title: string
    type: "object"