# app.bivri.support.defs

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

✓ This is the authoritative definition for this NSID.

## Description

Shared types for the support inquiry system.

## Links

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

## Definitions

### `app.bivri.support.defs#inquiryView`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `id` | `string` | Yes |  |
| `title` | `string` | Yes |  |
| `status` | `string` | Yes |  |
| `category` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `updatedAt` | `string` (datetime) | No |  |

### `app.bivri.support.defs#messageView`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `id` | `string` | Yes |  |
| `content` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `senderType` | `string` | Yes |  |

## Raw Schema

```json
{
  "id": "app.bivri.support.defs",
  "defs": {
    "inquiryView": {
      "type": "object",
      "required": [
        "id",
        "category",
        "title",
        "status",
        "createdAt"
      ],
      "properties": {
        "id": {
          "type": "string"
        },
        "title": {
          "type": "string"
        },
        "status": {
          "type": "string"
        },
        "category": {
          "type": "string"
        },
        "createdAt": {
          "type": "string",
          "format": "datetime"
        },
        "updatedAt": {
          "type": "string",
          "format": "datetime"
        }
      }
    },
    "messageView": {
      "type": "object",
      "required": [
        "id",
        "senderType",
        "content",
        "createdAt"
      ],
      "properties": {
        "id": {
          "type": "string"
        },
        "content": {
          "type": "string"
        },
        "createdAt": {
          "type": "string",
          "format": "datetime"
        },
        "senderType": {
          "type": "string",
          "knownValues": [
            "member",
            "admin"
          ]
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Shared types for the support inquiry system."
}
```
