fix: 🐛 Correct some incorrect links

This commit is contained in:
Jesse Wierzbinski 2024-08-14 16:32:44 +02:00
parent 0ae85ccd42
commit c1e94ce128
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ Messages sent over the WebSocket connection are JSON objects.
<Property name="signed_by" type="URI" required={true}>
Same as the `X-Signed-By` header in HTTP requests.
</Property>
<Property name="entity" type="Entity" required={true} typeLink="/entities/entity">
<Property name="entity" type="Entity" required={true} typeLink="/entities">
Same as the request body in HTTP requests. Must be a string (stringified JSON), not JSON.
</Property>
</Properties>

View file

@ -34,7 +34,7 @@ The words **MUST**, **MUST NOT**, **SHOULD**, **SHOULD NOT**, and **MAY** are us
</Note>
The Versia Protocol uses the following terms:
- **Entity**: A generic term for any JSON object in the protocol, such as an [Actor](./entities/actors), a [Note](./entities/note), or a [Like](./entities/likes). Entities are uniquely identified by their `id` property.
- **Entity**: A generic term for any JSON object in the protocol, such as a [User](./entities/user), a [Note](./entities/note), or a [Like](./extensions/likes). Entities are uniquely identified by their `id` property.
- **Implementation**: A software application that implements the Versia Protocol.
- **Instance**: An application deploying an **Implementation**.
- Using the same nomenclature, an ActivityPub Implementation would be `Mastodon`, and an Instance would be `mastodon.social`.