# space.highport.admin.listFindings

> Published by [lexicons.highport.space](https://lexicon.garden/identity/did:plc:ciygg5hma4q7ah2kxaszkyob)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ciygg5hma4q7ah2kxaszkyob/space.highport.admin.listFindings)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ciygg5hma4q7ah2kxaszkyob/space.highport.admin.listFindings/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ciygg5hma4q7ah2kxaszkyob/space.highport.admin.listFindings/examples)

## Definitions

### `space.highport.admin.listFindings`

**Type**: `query`

Malware detections, newest first. Once a sample is deleted, this is the only record of why it was quarantined.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cid` | `string` | No | Only findings for this content address. |
| `did` | `string` (did) | No | Only findings from this repository. For a tile resource, that is the tile's author, not the site owner. |
| `limit` | `integer` | No | Maximum findings to return. |
| `cursor` | `string` | No | Pagination cursor from a previous response. |
| `pending` | `boolean` | No | Only findings whose quarantine has not finished. That content is denied but may still be served. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cursor` | `string` | No | Present when more findings exist. |
| `findings` | `array` | Yes |  |

## Raw Schema

```json
{
  "id": "space.highport.admin.listFindings",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "findings"
          ],
          "properties": {
            "cursor": {
              "type": "string",
              "description": "Present when more findings exist."
            },
            "findings": {
              "type": "array",
              "items": {
                "ref": "space.highport.defs#malwareFinding",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {
          "cid": {
            "type": "string",
            "description": "Only findings for this content address."
          },
          "did": {
            "type": "string",
            "format": "did",
            "description": "Only findings from this repository. For a tile resource, that is the tile's author, not the site owner."
          },
          "limit": {
            "type": "integer",
            "default": 50,
            "maximum": 100,
            "minimum": 1,
            "description": "Maximum findings to return."
          },
          "cursor": {
            "type": "string",
            "description": "Pagination cursor from a previous response."
          },
          "pending": {
            "type": "boolean",
            "description": "Only findings whose quarantine has not finished. That content is denied but may still be served."
          }
        }
      },
      "description": "Malware detections, newest first. Once a sample is deleted, this is the only record of why it was quarantined."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
