refactor: 👽 Update all entity example to conform to new reference format

This commit is contained in:
Jesse Wierzbinski 2025-04-21 18:17:45 +02:00
parent 89a8b1836f
commit 975d1c9baa
No known key found for this signature in database
23 changed files with 56 additions and 127 deletions

View file

@ -41,14 +41,9 @@ Note that there is no `question` field: the question should be included in the `
{
"id": "01902e09-0f8b-72de-8ee3-9afc0cf5eae1",
"type": "Note", // [!code focus]
"uri": "https://versia.social/notes/01902e09-0f8b-72de-8ee3-9afc0cf5eae1",
"created_at": "2024-06-19T01:07:44.139Z",
"author": "https://versia.social/users/018eb863-753f-76ff-83d6-fd590de7740a",
"author": "versia.social:018eb863-753f-76ff-83d6-fd590de7740a",
"category": "microblog",
"collections": {
"replies": "https://versia.social/notes/01902e09-0f8b-72de-8ee3-9afc0cf5eae1/replies",
"quotes": "https://versia.social/notes/01902e09-0f8b-72de-8ee3-9afc0cf5eae1/quotes"
},
"content": {
"text/plain": {
"content": "What is your favourite color?"
@ -120,10 +115,9 @@ If a vote is cast to a poll that is closed, the vote should be rejected with a `
{
"id": "6f27bc77-58ee-4c9b-b804-8cc1c1182fa9",
"type": "pub.versia:polls/Vote", // [!code focus]
"uri": "https://example.com/actions/6f27bc77-58ee-4c9b-b804-8cc1c1182fa9",
"created_at": "2021-01-01T00:00:00.000Z",
"author": "https://example.com/users/6e0204a2-746c-4972-8602-c4f37fc63bbe", // [!code focus:3]
"poll": "https://example.com/notes/f08a124e-fe90-439e-8be4-15a428a72a19",
"author": "6e0204a2-746c-4972-8602-c4f37fc63bbe", // [!code focus:3]
"poll": "example.com:f08a124e-fe90-439e-8be4-15a428a72a19",
"option": 1
}
```