# tech.lenooby09.atbloons.multisigPolicy

> Published by [lenooby09.twinkers.online](https://lexicon.garden/identity/did:plc:xocoka6dmx74ciqskczoh6ci)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:xocoka6dmx74ciqskczoh6ci/tech.lenooby09.atbloons.multisigPolicy)
- [Documentation](https://lexicon.garden/lexicon/did:plc:xocoka6dmx74ciqskczoh6ci/tech.lenooby09.atbloons.multisigPolicy/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:xocoka6dmx74ciqskczoh6ci/tech.lenooby09.atbloons.multisigPolicy/examples)

## Definitions

### `tech.lenooby09.atbloons.multisigPolicy`

**Type**: `record`

Proposes a complete immutable signer policy for a DID-owned account.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `state` | `string` | Yes |  |
| `revision` | `integer` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `networkId` | `string` | Yes |  |
| `threshold` | `integer` | Yes |  |
| `accountDid` | `string` (did) | Yes |  |
| `activation` | `string` | Yes |  |
| `signerDids` | `array` | Yes |  |
| `genesisHash` | `string` | Yes |  |
| `proposerDid` | `string` (did) | Yes |  |
| `recoveryRound` | `integer` | No |  |
| `electorateEpoch` | `ref` → `com.atproto.repo.strongRef` | No |  |
| `protocolVersion` | `string` | Yes |  |
| `previousPolicies` | `array` | Yes |  |

## Raw Schema

```json
{
  "id": "tech.lenooby09.atbloons.multisigPolicy",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "networkId",
          "protocolVersion",
          "genesisHash",
          "createdAt",
          "accountDid",
          "proposerDid",
          "revision",
          "previousPolicies",
          "state",
          "signerDids",
          "threshold",
          "activation"
        ],
        "properties": {
          "state": {
            "type": "string",
            "maxLength": 64,
            "knownValues": [
              "ENABLED",
              "DISABLED"
            ]
          },
          "revision": {
            "type": "integer",
            "minimum": 0
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "networkId": {
            "type": "string",
            "maxLength": 64,
            "minLength": 3
          },
          "threshold": {
            "type": "integer",
            "maximum": 1025,
            "minimum": 1
          },
          "accountDid": {
            "type": "string",
            "format": "did"
          },
          "activation": {
            "type": "string",
            "maxLength": 64,
            "knownValues": [
              "NORMAL",
              "RECOVERY"
            ]
          },
          "signerDids": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "did"
            },
            "maxLength": 1024
          },
          "genesisHash": {
            "type": "string",
            "maxLength": 64,
            "minLength": 64
          },
          "proposerDid": {
            "type": "string",
            "format": "did"
          },
          "recoveryRound": {
            "type": "integer",
            "minimum": 1
          },
          "electorateEpoch": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref"
          },
          "protocolVersion": {
            "type": "string",
            "maxLength": 64,
            "knownValues": [
              "v2"
            ]
          },
          "previousPolicies": {
            "type": "array",
            "items": {
              "ref": "com.atproto.repo.strongRef",
              "type": "ref"
            },
            "maxLength": 1024
          }
        }
      },
      "description": "Proposes a complete immutable signer policy for a DID-owned account."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
