Provides answers to the form associated with a request type. Omit Jira fields from requestFieldValues if they're linked to form answers. For form answers in ADF format, set isAdfRequest to true.

interface Form {
    answers?: {
        [key: string]: FormAnswer;
    };
}

Hierarchy

  • Record<string, unknown>
    • Form

Properties

Properties

answers?: {
    [key: string]: FormAnswer;
}

JSON mapping of form field answers containing form field IDs and corresponding values.