> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tesouro.com/llms.txt
> Use this file to discover all available pages before exploring further.

# DecisionComponentOutcomes

> The combined outcomes of underwriting processing on a decision component item, including automated results and items flagged for manual review.

`OBJECT`

The combined outcomes of underwriting processing on a decision component item, including automated results and items flagged for manual review.

## Fields

<ResponseField name="results" type="[DecisionComponentOutcome!]!" required>
  The outcomes of the underwriting processing on this decision component.

  <Expandable title="child attributes">
    <ResponseField name="displayOrder" type="Int!" required>
      An ordering of fields to provide a consistent view.
    </ResponseField>

    <ResponseField name="guidance" type="String">
      A detailed description of actions to be taken pertaining to a decision component.
    </ResponseField>

    <ResponseField name="label" type="String">
      A description of the component.
    </ResponseField>

    <ResponseField name="statusGuidance" type="String" deprecated>
      A detailed description of actions to be taken pertaining to a decision component.

      **Deprecated:** Use guidance instead.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="reviews" type="[DecisionComponentReview!]!" required>
  The items needing to be reviewed from the underwriting processing on this decision component.

  <Expandable title="child attributes">
    <ResponseField name="createdDate" type="Date">
      The date the data for this review was created.
    </ResponseField>

    <ResponseField name="fields" type="[DecisionComponentReviewField!]!" required>
      The data fields used in this underwriting review process.

      <Expandable title="child attributes">
        <ResponseField name="associatedApplicationFieldId" type="UUID">
          The associated application field id corresponding to the data field used in this review, if a corresponding field exists.
        </ResponseField>

        <ResponseField name="displayOrder" type="Int!" required>
          A logical ordering of the field for viewing.
        </ResponseField>

        <ResponseField name="format" type="DecisionComponentFieldFormat!" required>
          A format describing the type of data in the field value.

          <Expandable title="Possible enum values">
            <ResponseField name="CURRENCY_USD" type="enum">
              A monetary value in US dollars.
            </ResponseField>

            <ResponseField name="DATE" type="enum">
              A calendar date value.
            </ResponseField>

            <ResponseField name="NUMBER" type="enum">
              A numeric value.
            </ResponseField>

            <ResponseField name="PHONE_NUMBER" type="enum">
              A telephone number.
            </ResponseField>

            <ResponseField name="PERCENTAGE" type="enum">
              A percentage, formatted as a decimal. e.g., 5.00% will be formatted as 0.05
            </ResponseField>

            <ResponseField name="TEXT" type="enum">
              A plain text value.
            </ResponseField>
          </Expandable>
        </ResponseField>

        <ResponseField name="name" type="String!" required>
          The identifying name of the field.
        </ResponseField>

        <ResponseField name="status" type="DecisionComponentReviewFieldStatus!" required>
          The underwriting review process status associated with the field, e.g., MATCH - the fields value matched to the associated application field's value.

          <Expandable title="Possible enum values">
            <ResponseField name="MATCH" type="enum">
              The field value exactly matches the corresponding application data.
            </ResponseField>

            <ResponseField name="NOT_ATTEMPTED" type="enum">
              The comparison was not attempted for this field.
            </ResponseField>

            <ResponseField name="NOT_MATCHED" type="enum">
              The field value does not match the corresponding application data.
            </ResponseField>

            <ResponseField name="PARTIAL_MATCH" type="enum">
              The field value partially matches the corresponding application data.
            </ResponseField>
          </Expandable>
        </ResponseField>

        <ResponseField name="value" type="String!" required>
          The value of the field used in the underwriting review process.
        </ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="label" type="String!" required>
      A descriptive label.
    </ResponseField>

    <ResponseField name="lastUpdatedDate" type="Date">
      The date the data for this review was last updated.
    </ResponseField>

    <ResponseField name="type" type="DecisionComponentReviewType!" required>
      The type of the data in the review.

      <Expandable title="Possible enum values">
        <ResponseField name="INQUIRY_DATA" type="enum">
          The data in the review was supplied as the inquiry data.
        </ResponseField>

        <ResponseField name="REVIEW" type="enum">
          The data in the review was returned from a review process.
        </ResponseField>
      </Expandable>
    </ResponseField>
  </Expandable>
</ResponseField>
