Type Alias JsonBodyInputSchema

JsonBodyInputSchema: {
    arrayField?: boolean;
    defaultValue?: string | number | boolean;
    headerField?: boolean;
    helper?: string;
    hideFromDetailsDisplay?: boolean;
    hyperlink?: {
        showAsGenericView?: boolean;
        url: string;
    };
    key: string;
    label: string;
    options?: {
        label: string;
        value: string | number | boolean;
    }[];
    required?: boolean;
    type: string;
}

Type declaration

  • OptionalarrayField?: boolean
  • OptionaldefaultValue?: string | number | boolean
  • OptionalheaderField?: boolean
  • Optionalhelper?: string
  • OptionalhideFromDetailsDisplay?: boolean

    Note only applicable for public parameters input schemas

  • Optionalhyperlink?: {
        showAsGenericView?: boolean;
        url: string;
    }
    • OptionalshowAsGenericView?: boolean
    • url: string
  • key: string
  • label: string
  • Optionaloptions?: {
        label: string;
        value: string | number | boolean;
    }[]
  • Optionalrequired?: boolean
  • type: string
""