{
"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
}