Provides answers to the form associated with a request type that is attached to the request on creation. Jira fields should be omitted from requestFieldValues if they are linked to form answers. Form answers in ADF format should have isAdfRequest set to true. Form answers are not currently validated.

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.