event-object convert tabs to spaces

This commit is contained in:
André Menrath 2023-10-13 12:56:49 +02:00
parent 1b99e74161
commit dad1a4f006

View file

@ -4,33 +4,33 @@ This document describes what Event object implementations of existing services l
```diff ```diff
{ {
"id": "https://gancio-test.event-federation.eu/federation/m/1", "id": "https://gancio-test.event-federation.eu/federation/m/1",
"name": "Test Event", "name": "Test Event",
"url": "https://gancio-test.event-federation.eu/event/test-event", "url": "https://gancio-test.event-federation.eu/event/test-event",
"type": "Event", "type": "Event",
"startTime": "2024-01-18T12:10:00.000+01:00", "startTime": "2024-01-18T12:10:00.000+01:00",
"endTime": "2024-01-18T18:30:00.000+01:00", "endTime": "2024-01-18T18:30:00.000+01:00",
"location": { "location": {
"type": "Place" "type": "Place"
"name": "Gmota", "name": "Gmota",
"address": "Münzgragebenstraße 21, 8010 Graz", "address": "Münzgragebenstraße 21, 8010 Graz",
"latitude": null, "latitude": null,
"longitude": null "longitude": null
}, },
"attachment": [], "attachment": [],
"tag": [], "tag": [],
"published": "2023-10-13T09:56:25.858Z", "published": "2023-10-13T09:56:25.858Z",
"attributedTo": "https://gancio-test.event-federation.eu/federation/u/ganciofortesting", "attributedTo": "https://gancio-test.event-federation.eu/federation/u/ganciofortesting",
"to": [ "to": [
"https://www.w3.org/ns/activitystreams#Public" "https://www.w3.org/ns/activitystreams#Public"
], ],
"cc": [ "cc": [
"https://gancio-test.event-federation.eu/federation/u/ganciofortesting/followers" "https://gancio-test.event-federation.eu/federation/u/ganciofortesting/followers"
], ],
- "content": "\n 📍 Gmota\n 📅 Thursday, 18 January (12:10)\n \n This is an awesome test event! Do not miss it!\n\n\n\nFor sure!\n", - "content": "\n 📍 Gmota\n 📅 Thursday, 18 January (12:10)\n \n This is an awesome test event! Do not miss it!\n\n\n\nFor sure!\n",
+ "content": "This is an awesome test event! Do not miss it!\n\n\n\nFor sure!\n", + "content": "This is an awesome test event! Do not miss it!\n\n\n\nFor sure!\n",
"summary": "\n 📍 Gmota\n 📅 Thursday, 18 January (12:10)\n \n This is an awesome test event! Do not miss it!\n\n\n\nFor sure!\n", "summary": "\n 📍 Gmota\n 📅 Thursday, 18 January (12:10)\n \n This is an awesome test event! Do not miss it!\n\n\n\nFor sure!\n",
"@context": [ "@context": [
- "https://www.w3.org/ns/activitystreams", - "https://www.w3.org/ns/activitystreams",
+ "https://www.w3.org/ns/activitystreams", + "https://www.w3.org/ns/activitystreams",
+ { + {
@ -40,5 +40,5 @@ This document describes what Event object implementations of existing services l
+ "@type": "sc:Text" + "@type": "sc:Text"
+ }, + },
+ } + }
] ]
}``` }```