# com.suibari.nagi.requestNewsReview

> Published by [suibari.com](https://lexicon.garden/identity/did:plc:uixgxpiqf4i63p6rgpu7ytmx)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:uixgxpiqf4i63p6rgpu7ytmx/com.suibari.nagi.requestNewsReview)
- [Documentation](https://lexicon.garden/lexicon/did:plc:uixgxpiqf4i63p6rgpu7ytmx/com.suibari.nagi.requestNewsReview/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:uixgxpiqf4i63p6rgpu7ytmx/com.suibari.nagi.requestNewsReview/examples)

## Definitions

### `com.suibari.nagi.requestNewsReview`

**Type**: `procedure`

本人のPDSに作成したニュースレコードを非同期審査へ送る。

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `ref` → `com.atproto.repo.strongRef` | Yes |  |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `status` | `string` | Yes |  |

#### Errors

- **AuthRequired**
- **RateLimited**
- **InvalidRecord**

## Raw Schema

```json
{
  "id": "com.suibari.nagi.requestNewsReview",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "subject"
          ],
          "properties": {
            "subject": {
              "ref": "com.atproto.repo.strongRef",
              "type": "ref"
            }
          }
        },
        "encoding": "application/json"
      },
      "errors": [
        {
          "name": "AuthRequired"
        },
        {
          "name": "RateLimited"
        },
        {
          "name": "InvalidRecord"
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "status"
          ],
          "properties": {
            "status": {
              "type": "string",
              "knownValues": [
                "pending",
                "processing",
                "approved",
                "rejected",
                "failed",
                "cancelled"
              ]
            }
          }
        },
        "encoding": "application/json"
      },
      "description": "本人のPDSに作成したニュースレコードを非同期審査へ送る。"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
