# app.bivri.bookmark.updateGroup

> Published by [lexicons.bivri.app](https://lexicon.garden/identity/did:plc:uqat5a7hrbww3snbbinxgwah)

✓ This is the authoritative definition for this NSID.

## Description

Rename a bookmark group the authenticated member owns.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:uqat5a7hrbww3snbbinxgwah/app.bivri.bookmark.updateGroup)
- [Documentation](https://lexicon.garden/lexicon/did:plc:uqat5a7hrbww3snbbinxgwah/app.bivri.bookmark.updateGroup/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:uqat5a7hrbww3snbbinxgwah/app.bivri.bookmark.updateGroup/examples)

## Definitions

### `app.bivri.bookmark.updateGroup`

**Type**: `procedure`

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uri` | `string` (at-uri) | Yes | AT URI of the app.bivri.bookmark.group record to rename. It must live in the authenticated member's own repository. |
| `name` | `string` | Yes | Replacement name for the bookmark group. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cid` | `string` (cid) | Yes | CID the bookmark group record now carries. |
| `uri` | `string` (at-uri) | Yes | AT URI of the renamed bookmark group record. |

## Raw Schema

```json
{
  "id": "app.bivri.bookmark.updateGroup",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "uri",
            "name"
          ],
          "properties": {
            "uri": {
              "type": "string",
              "format": "at-uri",
              "description": "AT URI of the app.bivri.bookmark.group record to rename. It must live in the authenticated member's own repository."
            },
            "name": {
              "type": "string",
              "maxLength": 640,
              "description": "Replacement name for the bookmark group.",
              "maxGraphemes": 64
            }
          }
        },
        "encoding": "application/json"
      },
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "uri",
            "cid"
          ],
          "properties": {
            "cid": {
              "type": "string",
              "format": "cid",
              "description": "CID the bookmark group record now carries."
            },
            "uri": {
              "type": "string",
              "format": "at-uri",
              "description": "AT URI of the renamed bookmark group record."
            }
          }
        },
        "encoding": "application/json"
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Rename a bookmark group the authenticated member owns."
}
```
