# tech.transparencia.news.article

> Published by [transparencia.pds.transparencia.tech](https://lexicon.garden/identity/did:plc:top57c5tklg2fjl66hpidi45)

✓ This is the authoritative definition for this NSID.

## Description

A news article from a media outlet, representing the raw published content before any AI enrichment.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:top57c5tklg2fjl66hpidi45/tech.transparencia.news.article)
- [Documentation](https://lexicon.garden/lexicon/did:plc:top57c5tklg2fjl66hpidi45/tech.transparencia.news.article/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:top57c5tklg2fjl66hpidi45/tech.transparencia.news.article/examples)

## Definitions

### `tech.transparencia.news.article`

**Type**: `record`

A news article scraped from an RSS feed or website.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | Yes | Canonical URL of the article on the source website. |
| `guid` | `string` | No | Original GUID from the RSS feed, used for deduplication. |
| `title` | `string` | Yes | Original headline of the article as published by the source. |
| `author` | `string` | No | Author byline as published. |
| `source` | `ref` → `com.atproto.repo.strongRef` | Yes | Strong reference to the tech.transparencia.news.source record for this outlet. |
| `imageUrl` | `string` (uri) | No | URL of the article's featured image. |
| `language` | `string` (language) | No | Language of the article content (BCP-47, e.g., 'es', 'en', 'pt-BR'). |
| `createdAt` | `string` (datetime) | Yes | When this record was created in the AT Protocol network. |
| `description` | `string` | No | Article summary or lead paragraph, typically from the RSS feed description field. |
| `publishedAt` | `string` (datetime) | Yes | When the article was published by the source. |
| `feedCategory` | `string` | No | Category from the RSS feed (e.g., 'politica', 'deportes', 'economia'). |

## Raw Schema

```json
{
  "id": "tech.transparencia.news.article",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "url",
          "source",
          "publishedAt",
          "createdAt"
        ],
        "properties": {
          "url": {
            "type": "string",
            "format": "uri",
            "description": "Canonical URL of the article on the source website."
          },
          "guid": {
            "type": "string",
            "maxLength": 1024,
            "description": "Original GUID from the RSS feed, used for deduplication."
          },
          "title": {
            "type": "string",
            "maxLength": 2048,
            "description": "Original headline of the article as published by the source.",
            "maxGraphemes": 512
          },
          "author": {
            "type": "string",
            "maxLength": 512,
            "description": "Author byline as published.",
            "maxGraphemes": 128
          },
          "source": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "Strong reference to the tech.transparencia.news.source record for this outlet."
          },
          "imageUrl": {
            "type": "string",
            "format": "uri",
            "description": "URL of the article's featured image."
          },
          "language": {
            "type": "string",
            "format": "language",
            "description": "Language of the article content (BCP-47, e.g., 'es', 'en', 'pt-BR')."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this record was created in the AT Protocol network."
          },
          "description": {
            "type": "string",
            "maxLength": 10000,
            "description": "Article summary or lead paragraph, typically from the RSS feed description field.",
            "maxGraphemes": 2000
          },
          "publishedAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the article was published by the source."
          },
          "feedCategory": {
            "type": "string",
            "maxLength": 256,
            "description": "Category from the RSS feed (e.g., 'politica', 'deportes', 'economia').",
            "maxGraphemes": 64
          }
        }
      },
      "description": "A news article scraped from an RSS feed or website."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A news article from a media outlet, representing the raw published content before any AI enrichment."
}
```
