Interface RecordContainerPropertyDefinition

Property schema entry returned when includeTyping is true.

interface RecordContainerPropertyDefinition {
    defaultValue:
        | null
        | string
        | number
        | boolean
        | object;
    description?: string;
    name?: string;
    nullable: boolean;
    type: RecordPropertyTypeDefinition;
}

Properties

defaultValue:
    | null
    | string
    | number
    | boolean
    | object
description?: string
name?: string
nullable: boolean