# at.glean.like

> Published by [glean.at](https://lexicon.garden/identity/did:plc:7fx3svzgnlvzighbczz3mmsd)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:7fx3svzgnlvzighbczz3mmsd/at.glean.like)
- [Documentation](https://lexicon.garden/lexicon/did:plc:7fx3svzgnlvzighbczz3mmsd/at.glean.like/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:7fx3svzgnlvzighbczz3mmsd/at.glean.like/examples)

## Definitions

### `at.glean.like`

**Type**: `record`

Like an RSS article.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `feedUrl` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | No |  |
| `articleUrl` | `string` | Yes |  |

## Raw Schema

```json
{
  "id": "at.glean.like",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "feedUrl",
          "articleUrl"
        ],
        "properties": {
          "feedUrl": {
            "type": "string"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "articleUrl": {
            "type": "string"
          }
        }
      },
      "description": "Like an RSS article."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
