# app.matakite.dispute

> Published by [matakite.app](https://lexicon.garden/identity/did:plc:vhycfha6sjn44hxepb5bmjax)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:vhycfha6sjn44hxepb5bmjax/app.matakite.dispute)
- [Documentation](https://lexicon.garden/lexicon/did:plc:vhycfha6sjn44hxepb5bmjax/app.matakite.dispute/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:vhycfha6sjn44hxepb5bmjax/app.matakite.dispute/examples)

## Definitions

### `app.matakite.dispute`

**Type**: `record`

A public counter-attestation against a resolution. With no bonds available (no money), the deterrent is reputational: disputes are signed records attached to the disputer's DID, so frivolous disputes cost the disputer. Disputes feed resolver track records ('N resolutions, M disputed, K upheld') that appviews surface when applying trust policies.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `note` | `string` | No |  |
| `subject` | `ref` → `com.atproto.repo.strongRef` | Yes | The resolution being disputed (uri + cid). |
| `evidence` | `array` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `claimedOutcome` | `string` | Yes | The outcome the disputer asserts is correct. |

## Raw Schema

```json
{
  "id": "app.matakite.dispute",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "claimedOutcome",
          "createdAt"
        ],
        "properties": {
          "note": {
            "type": "string",
            "maxLength": 3000,
            "maxGraphemes": 300
          },
          "subject": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "The resolution being disputed (uri + cid)."
          },
          "evidence": {
            "type": "array",
            "items": {
              "ref": "app.matakite.question#source",
              "type": "ref"
            },
            "maxLength": 10
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "claimedOutcome": {
            "type": "string",
            "description": "The outcome the disputer asserts is correct.",
            "knownValues": [
              "yes",
              "no",
              "ambiguous",
              "annulled"
            ]
          }
        }
      },
      "description": "A public counter-attestation against a resolution. With no bonds available (no money), the deterrent is reputational: disputes are signed records attached to the disputer's DID, so frivolous disputes cost the disputer. Disputes feed resolver track records ('N resolutions, M disputed, K upheld') that appviews surface when applying trust policies."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
