# app.bivri.support.getFaq

> Published by [lexicons.bivri.app](https://lexicon.garden/identity/did:plc:uqat5a7hrbww3snbbinxgwah)

✓ This is the authoritative definition for this NSID.

## Description

Get one published FAQ entry. Authentication is not required.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:uqat5a7hrbww3snbbinxgwah/app.bivri.support.getFaq)
- [Documentation](https://lexicon.garden/lexicon/did:plc:uqat5a7hrbww3snbbinxgwah/app.bivri.support.getFaq/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:uqat5a7hrbww3snbbinxgwah/app.bivri.support.getFaq/examples)

## Definitions

### `app.bivri.support.getFaq`

**Type**: `query`

#### Parameters

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

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `faq` | `ref` → `app.bivri.support.contentDefs#faqView` | Yes |  |

#### Errors

- **FaqNotFound**
- **InvalidFaqId**

## Raw Schema

```json
{
  "id": "app.bivri.support.getFaq",
  "defs": {
    "main": {
      "type": "query",
      "errors": [
        {
          "name": "FaqNotFound"
        },
        {
          "name": "InvalidFaqId"
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "faq"
          ],
          "properties": {
            "faq": {
              "ref": "app.bivri.support.contentDefs#faqView",
              "type": "ref"
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "id"
        ],
        "properties": {
          "id": {
            "type": "string"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Get one published FAQ entry. Authentication is not required."
}
```
