# org.plrd.update

> Published by [satyam2.climateai.org](https://lexicon.garden/identity/did:plc:cpoagodpqrgs4t7thi5z37uf)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:cpoagodpqrgs4t7thi5z37uf/org.plrd.update)
- [Documentation](https://lexicon.garden/lexicon/did:plc:cpoagodpqrgs4t7thi5z37uf/org.plrd.update/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:cpoagodpqrgs4t7thi5z37uf/org.plrd.update/examples)

## Definitions

### `org.plrd.update`

**Type**: `record`

A network update (news item) about a PL Network team — shipping, raises, partnerships, milestones. Mirrored from the PLN Directory team-news API (the 'Network updates' feed on https://directory.plnetwork.io/home). The `team` field links to the org.plrd.team record.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uid` | `string` | Yes | Upstream PLN Directory uid (also used as the record key). |
| `tags` | `array` | No |  |
| `team` | `string` (at-uri) | No | The org.plrd.team record this update is about. |
| `title` | `string` | Yes |  |
| `sources` | `array` | No |  |
| `summary` | `string` | No |  |
| `teamName` | `string` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `eventDate` | `string` (datetime) | No |  |
| `eventType` | `string` | Yes |  |
| `sourceUrl` | `string` (uri) | No |  |
| `focusAreas` | `array` | No |  |
| `contentHtml` | `string` | No | Full HTML body of the update. |
| `teamLogoUrl` | `string` (uri) | No |  |
| `upvoteCount` | `integer` | No |  |
| `sourceDomain` | `string` | No |  |
| `subFocusAreas` | `array` | No |  |

## Raw Schema

```json
{
  "id": "org.plrd.update",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "uid",
          "title",
          "eventType",
          "createdAt"
        ],
        "properties": {
          "uid": {
            "type": "string",
            "description": "Upstream PLN Directory uid (also used as the record key)."
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "team": {
            "type": "string",
            "format": "at-uri",
            "description": "The org.plrd.team record this update is about."
          },
          "title": {
            "type": "string"
          },
          "sources": {
            "type": "array",
            "items": {
              "type": "unknown"
            }
          },
          "summary": {
            "type": "string"
          },
          "teamName": {
            "type": "string"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "eventDate": {
            "type": "string",
            "format": "datetime"
          },
          "eventType": {
            "type": "string",
            "knownValues": [
              "FUNDING",
              "LAUNCH",
              "PARTNERSHIP",
              "ANNOUNCEMENT",
              "MILESTONE",
              "HIRING",
              "OTHER"
            ]
          },
          "sourceUrl": {
            "type": "string",
            "format": "uri"
          },
          "focusAreas": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "contentHtml": {
            "type": "string",
            "description": "Full HTML body of the update."
          },
          "teamLogoUrl": {
            "type": "string",
            "format": "uri"
          },
          "upvoteCount": {
            "type": "integer"
          },
          "sourceDomain": {
            "type": "string"
          },
          "subFocusAreas": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "description": "A network update (news item) about a PL Network team — shipping, raises, partnerships, milestones. Mirrored from the PLN Directory team-news API (the 'Network updates' feed on https://directory.plnetwork.io/home). The `team` field links to the org.plrd.team record."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
