# dev.gitosphere.repository.issueCreateRequest

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

✓ This is the authoritative definition for this NSID.

## Description

A repository-lifetime idempotency receipt for an issue creation intent.

## Links

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

## Definitions

### `dev.gitosphere.repository.issueCreateRequest`

**Type**: `record`

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `issue` | `string` (at-uri) | Yes |  |
| `number` | `integer` | Yes |  |
| `issueId` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `intentDigest` | `string` | Yes |  |
| `repositoryId` | `string` | Yes |  |

## Raw Schema

```json
{
  "id": "dev.gitosphere.repository.issueCreateRequest",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "repositoryId",
          "intentDigest",
          "issueId",
          "number",
          "issue",
          "createdAt"
        ],
        "properties": {
          "issue": {
            "type": "string",
            "format": "at-uri"
          },
          "number": {
            "type": "integer",
            "maximum": 9007199254740991,
            "minimum": 1
          },
          "issueId": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "intentDigest": {
            "type": "string",
            "maxLength": 64,
            "minLength": 64
          },
          "repositoryId": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A repository-lifetime idempotency receipt for an issue creation intent."
}
```
