# place.stream.key

> Published by [did:web:stream.place](https://lexicon.garden/identity/did:web:stream.place)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.key)
- [Documentation](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.key/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.key/examples)

## Definitions

### `place.stream.key`

**Type**: `record`

Record linking an atproto identity with a stream signing key

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when this key was created. |
| `createdBy` | `string` | No | The name of the client that created this key. |
| `signingKey` | `string` | Yes | The did:key signing key for the stream. |

## Raw Schema

```json
{
  "id": "place.stream.key",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "signingKey",
          "createdAt"
        ],
        "properties": {
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when this key was created."
          },
          "createdBy": {
            "type": "string",
            "description": "The name of the client that created this key."
          },
          "signingKey": {
            "type": "string",
            "maxLength": 57,
            "minLength": 57,
            "description": "The did:key signing key for the stream."
          }
        }
      },
      "description": "Record linking an atproto identity with a stream signing key"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
