# app.thesocialwire.defs

> Published by [samclemente.me](https://lexicon.garden/identity/did:plc:qy5pluw2bsuq2x6albsgkvx3)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:qy5pluw2bsuq2x6albsgkvx3/app.thesocialwire.defs)
- [Documentation](https://lexicon.garden/lexicon/did:plc:qy5pluw2bsuq2x6albsgkvx3/app.thesocialwire.defs/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:qy5pluw2bsuq2x6albsgkvx3/app.thesocialwire.defs/examples)

## Definitions

### `app.thesocialwire.defs#error`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `error` | `string` | Yes |  |
| `message` | `string` | Yes |  |

### `app.thesocialwire.defs#jsonObject`

**Type**: `object`

A forward-compatible Social Wire response object. Method-specific fields are documented by the service contract and may be extended without breaking older clients.

### `app.thesocialwire.defs#publicationIds`

**Type**: `array`

**Items**:

Type: `string`

**Constraints**: maxLength: 1000

## Raw Schema

```json
{
  "id": "app.thesocialwire.defs",
  "defs": {
    "error": {
      "type": "object",
      "required": [
        "error",
        "message"
      ],
      "properties": {
        "error": {
          "type": "string",
          "maxLength": 100
        },
        "message": {
          "type": "string",
          "maxLength": 2000
        }
      }
    },
    "jsonObject": {
      "type": "object",
      "description": "A forward-compatible Social Wire response object. Method-specific fields are documented by the service contract and may be extended without breaking older clients."
    },
    "publicationIds": {
      "type": "array",
      "items": {
        "type": "string",
        "maxLength": 2048
      },
      "maxLength": 1000
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
