# com.suibari.nagi.putBookmarkFolder

> Published by [suibari.com](https://lexicon.garden/identity/did:plc:uixgxpiqf4i63p6rgpu7ytmx)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:uixgxpiqf4i63p6rgpu7ytmx/com.suibari.nagi.putBookmarkFolder)
- [Documentation](https://lexicon.garden/lexicon/did:plc:uixgxpiqf4i63p6rgpu7ytmx/com.suibari.nagi.putBookmarkFolder/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:uixgxpiqf4i63p6rgpu7ytmx/com.suibari.nagi.putBookmarkFolder/examples)

## Definitions

### `com.suibari.nagi.putBookmarkFolder`

**Type**: `procedure`

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `id` | `string` | No |  |
| `lang` | `string` | No |  |
| `name` | `string` | Yes |  |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `id` | `string` | Yes |  |
| `name` | `string` | Yes |  |
| `count` | `integer` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `isDefault` | `boolean` | Yes |  |
| `updatedAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "com.suibari.nagi.putBookmarkFolder",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "name"
          ],
          "properties": {
            "id": {
              "type": "string"
            },
            "lang": {
              "type": "string",
              "knownValues": [
                "ja",
                "en"
              ]
            },
            "name": {
              "type": "string",
              "maxLength": 80,
              "minLength": 1
            }
          }
        },
        "encoding": "application/json"
      },
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "id",
            "name",
            "isDefault",
            "count",
            "createdAt",
            "updatedAt"
          ],
          "properties": {
            "id": {
              "type": "string"
            },
            "name": {
              "type": "string"
            },
            "count": {
              "type": "integer"
            },
            "createdAt": {
              "type": "string",
              "format": "datetime"
            },
            "isDefault": {
              "type": "boolean"
            },
            "updatedAt": {
              "type": "string",
              "format": "datetime"
            }
          }
        },
        "encoding": "application/json"
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
