# Gate US Brand Signal Confidence

**Use case:** 

Give scored brand signals; get deterministic accept, review, or reject decisions with threshold reasons and aggregate counts.

## Input

```json
{
  "schemaVersion": "1.0",
  "thresholds": {
    "acceptThreshold": 80,
    "reviewThreshold": 50,
    "thresholdOrder": "accept_gt_review"
  },
  "rows": [
    {
      "signalId": "signal-001",
      "normalizedSignal": 96
    },
    {
      "signalId": "signal-002",
      "normalizedSignal": 82
    },
    {
      "signalId": "signal-003",
      "normalizedSignal": 61
    },
    {
      "signalId": "signal-004",
      "normalizedSignal": 39
    }
  ]
}
```

## Output

```json
{
  "schemaVersion": {
    "label": "Schema",
    "format": "text"
  },
  "reportType": {
    "label": "Report type",
    "format": "text"
  },
  "thresholds": {
    "label": "Thresholds",
    "format": "json"
  },
  "totalRows": {
    "label": "Rows",
    "format": "number"
  },
  "acceptedIds": {
    "label": "Accepted IDs",
    "format": "json"
  },
  "reviewIds": {
    "label": "Review IDs",
    "format": "json"
  },
  "rejectedIds": {
    "label": "Rejected IDs",
    "format": "json"
  },
  "decisions": {
    "label": "Decisions",
    "format": "json"
  },
  "counts": {
    "label": "Counts",
    "format": "json"
  },
  "inputDigest": {
    "label": "Input SHA-256",
    "format": "text"
  },
  "rowsDigest": {
    "label": "Rows SHA-256",
    "format": "text"
  },
  "acceptedIdsDigest": {
    "label": "Accepted IDs SHA-256",
    "format": "text"
  },
  "reviewIdsDigest": {
    "label": "Review IDs SHA-256",
    "format": "text"
  },
  "rejectedIdsDigest": {
    "label": "Rejected IDs SHA-256",
    "format": "text"
  },
  "resultDigest": {
    "label": "Result SHA-256",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [US Brand Signal Confidence Gate](https://apify.com/zinin/us-brand-signal-confidence-gate) with a specific input configuration. Visit the [Actor detail page](https://apify.com/zinin/us-brand-signal-confidence-gate) to learn more, explore other use cases, and run it yourself.