# dev.gitosphere.repository.issue

> Published by [gitosphere-lex.bsky.social](https://lexicon.garden/identity/did:plc:iz47txlteeb2ojtp5ygiqet6)

✓ This is the authoritative definition for this NSID.

## Description

Alpha issue record stored in its Gitosphere repository Space.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:iz47txlteeb2ojtp5ygiqet6/dev.gitosphere.repository.issue)
- [Documentation](https://lexicon.garden/lexicon/did:plc:iz47txlteeb2ojtp5ygiqet6/dev.gitosphere.repository.issue/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:iz47txlteeb2ojtp5ygiqet6/dev.gitosphere.repository.issue/examples)

## Definitions

### `dev.gitosphere.repository.issue`

**Type**: `record`

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `body` | `string` | No |  |
| `blobs` | `array` | No |  |
| `title` | `string` | Yes |  |
| `number` | `integer` | Yes |  |
| `issueId` | `string` | Yes |  |
| `mentions` | `array` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `references` | `array` | No |  |
| `repositoryId` | `string` | Yes |  |

## Raw Schema

```json
{
  "id": "dev.gitosphere.repository.issue",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "issueId",
          "number",
          "title",
          "repositoryId",
          "createdAt"
        ],
        "properties": {
          "body": {
            "type": "string",
            "maxLength": 100000,
            "maxGraphemes": 10000
          },
          "blobs": {
            "type": "array",
            "items": {
              "type": "blob",
              "accept": [
                "image/*"
              ],
              "maxSize": 1000000
            },
            "maxLength": 10
          },
          "title": {
            "type": "string",
            "maxLength": 2560,
            "minLength": 1,
            "maxGraphemes": 256
          },
          "number": {
            "type": "integer",
            "maximum": 9007199254740991,
            "minimum": 1
          },
          "issueId": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36
          },
          "mentions": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "did"
            },
            "maxLength": 50
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "references": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "at-uri"
            },
            "maxLength": 50
          },
          "repositoryId": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Alpha issue record stored in its Gitosphere repository Space."
}
```
