# dev.gitosphere.repository.issueState

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

✓ This is the authoritative definition for this NSID.

## Description

An append-only state transition for a Gitosphere issue.

## Links

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

## Definitions

### `dev.gitosphere.repository.issueState`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `issue` | `string` (at-uri) | Yes |  |
| `state` | `string` | Yes | The state selected by this transition. |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "dev.gitosphere.repository.issueState",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "issue",
          "state",
          "createdAt"
        ],
        "properties": {
          "issue": {
            "type": "string",
            "format": "at-uri"
          },
          "state": {
            "type": "string",
            "default": "dev.gitosphere.repository.issueStateOpen",
            "description": "The state selected by this transition.",
            "knownValues": [
              "dev.gitosphere.repository.issueStateOpen",
              "dev.gitosphere.repository.issueStateClosed"
            ]
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "An append-only state transition for a Gitosphere issue."
}
```
