# social.smallbury.actor.listTrustRevisions

> Published by [lexicon.pds.smallbury.social](https://lexicon.garden/identity/did:plc:wnagcp6h73nxmvmwid2xxukx)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:wnagcp6h73nxmvmwid2xxukx/social.smallbury.actor.listTrustRevisions)
- [Documentation](https://lexicon.garden/lexicon/did:plc:wnagcp6h73nxmvmwid2xxukx/social.smallbury.actor.listTrustRevisions/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:wnagcp6h73nxmvmwid2xxukx/social.smallbury.actor.listTrustRevisions/examples)

## Definitions

### `social.smallbury.actor.listTrustRevisions`

**Type**: `query`

Returns trust-record revision hints for a set of DIDs (mutual contacts, pending connections, self). Used on app foreground and on a timer so the client learns about de-trust or reciprocation without polling every PDS blindly.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `dids` | `array` | Yes |  |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `revisions` | `array` | Yes |  |

## Raw Schema

```json
{
  "id": "social.smallbury.actor.listTrustRevisions",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "revisions"
          ],
          "properties": {
            "revisions": {
              "type": "array",
              "items": {
                "ref": "social.smallbury.feed.list#trustRevision",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "dids"
        ],
        "properties": {
          "dids": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "did"
            },
            "maxLength": 200,
            "minLength": 1
          }
        }
      },
      "description": "Returns trust-record revision hints for a set of DIDs (mutual contacts, pending connections, self). Used on app foreground and on a timer so the client learns about de-trust or reciprocation without polling every PDS blindly."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
