{
  "lexicon": 1,
  "id": "com.atproto.admin.updateAccountSigningKey",
  "defs": {
    "main": {
      "type": "procedure",
      "description": "Administrative action to update an account's signing key in their Did document.",
      "input": {
        "encoding": "application/json",
        "schema": {
          "type": "object",
          "required": ["did", "signingKey"],
          "properties": {
            "did": { "type": "string", "format": "did" },
            "signingKey": {
              "type": "string",
              "format": "did",
              "description": "Did-key formatted public key"
            }
          }
        }
      }
    }
  }
}

