# buzz.bookhive.reorderList

> Published by [bookhive.buzz](https://lexicon.garden/identity/did:plc:enu2j5xjlqsjaylv3du4myh4)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:enu2j5xjlqsjaylv3du4myh4/buzz.bookhive.reorderList)
- [Documentation](https://lexicon.garden/lexicon/did:plc:enu2j5xjlqsjaylv3du4myh4/buzz.bookhive.reorderList/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:enu2j5xjlqsjaylv3du4myh4/buzz.bookhive.reorderList/examples)

## Definitions

### `buzz.bookhive.reorderList`

**Type**: `procedure`

Reorder items in a list.

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `listUri` | `string` | Yes | AT-URI of the list |
| `itemUris` | `array` | Yes | Item URIs in the new desired order |

## Raw Schema

```json
{
  "id": "buzz.bookhive.reorderList",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "listUri",
            "itemUris"
          ],
          "properties": {
            "listUri": {
              "type": "string",
              "description": "AT-URI of the list"
            },
            "itemUris": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "Item URIs in the new desired order"
            }
          }
        },
        "encoding": "application/json"
      },
      "description": "Reorder items in a list."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
