# app.tempomusic.staff.dismissReport

> Published by [lexicons.tempomusic.fan](https://lexicon.garden/identity/did:plc:pxsuqmultto34oks44m2lgxm)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:pxsuqmultto34oks44m2lgxm/app.tempomusic.staff.dismissReport)
- [Documentation](https://lexicon.garden/lexicon/did:plc:pxsuqmultto34oks44m2lgxm/app.tempomusic.staff.dismissReport/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:pxsuqmultto34oks44m2lgxm/app.tempomusic.staff.dismissReport/examples)

## Definitions

### `app.tempomusic.staff.dismissReport`

**Type**: `procedure`

Close a report without acting on the subject. Valid from `open` (fast-path obvious junk) and from `underReview`. Writes a single `reportDismissed` audit row. Fast-path dismissal directly from `open` does NOT emit a `reportTriaged` audit row first — only the dismissal entry is written.

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `note` | `string` | No | Optional free-text note explaining the dismissal. |
| `reportId` | `integer` | Yes |  |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `status` | `ref` → `app.tempomusic.staff.defs#reportStatus` | Yes |  |
| `auditEntryId` | `integer` | Yes |  |

#### Errors

- **Forbidden**: Caller is not an active moderator.
- **NotFound**
- **AlreadyResolved**: The report is already in a terminal state (`actioned` or `dismissed`).

## Raw Schema

```json
{
  "id": "app.tempomusic.staff.dismissReport",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "reportId"
          ],
          "properties": {
            "note": {
              "type": "string",
              "maxLength": 1000,
              "description": "Optional free-text note explaining the dismissal."
            },
            "reportId": {
              "type": "integer",
              "minimum": 1
            }
          }
        },
        "encoding": "application/json"
      },
      "errors": [
        {
          "name": "Forbidden",
          "description": "Caller is not an active moderator."
        },
        {
          "name": "NotFound"
        },
        {
          "name": "AlreadyResolved",
          "description": "The report is already in a terminal state (`actioned` or `dismissed`)."
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "status",
            "auditEntryId"
          ],
          "properties": {
            "status": {
              "ref": "app.tempomusic.staff.defs#reportStatus",
              "type": "ref"
            },
            "auditEntryId": {
              "type": "integer",
              "minimum": 1
            }
          }
        },
        "encoding": "application/json"
      },
      "description": "Close a report without acting on the subject. Valid from `open` (fast-path obvious junk) and from `underReview`. Writes a single `reportDismissed` audit row. Fast-path dismissal directly from `open` does NOT emit a `reportTriaged` audit row first — only the dismissal entry is written."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
