Frodo Library - v4.8.5
    Preparing search index...

    Type Alias PropertyContainer

    A schema property container: a managed-object type's own schema, or a nested type: object property's own sub-schema — both shapes carry the same properties/order/required triad.

    type PropertyContainer = {
        order?: string[];
        properties?: Record<string, Record<string, unknown>>;
        required?: string[];
    }
    Index

    Properties

    order?: string[]
    properties?: Record<string, Record<string, unknown>>
    required?: string[]