Content Warnings¶
Content Warnings are set using sensitive, then summary seems to be used as a spoiler text.
The last three examples are an attempt to add a content warning to an image.
Examples¶
Example 1¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://gotosocial/users/cookie",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/EHlVdVWCQ7g",
"published": "2025-03-23T08:26:05Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://gotosocial/users/cookie"
],
"id": "http://pasture-one-actor/actor/eiK5wsNCFH0",
"published": "2025-03-23T08:26:05Z",
"content": "text",
"sensitive": true,
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
gotosocial
{
"id": "01JQ11QVA8K6NTSD0HYZS9847K",
"created_at": "2025-03-23T08:26:05.000Z",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"sensitive": true,
"spoiler_text": "",
"visibility": "public",
"language": null,
"uri": "http://pasture-one-actor/actor/eiK5wsNCFH0",
"url": "http://pasture-one-actor/actor/eiK5wsNCFH0",
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"favourited": false,
"reblogged": false,
"muted": false,
"bookmarked": false,
"pinned": false,
"content": "text",
"reblog": null,
"account": {
"id": "01JQ11QM5JKM0XPQD9F110ZSBH",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": true,
"discoverable": false,
"bot": false,
"created_at": "2025-03-23T08:25:57.692Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://gotosocial/assets/default_avatars/GoToSocial_icon3.png",
"avatar_static": "http://gotosocial/assets/default_avatars/GoToSocial_icon3.png",
"header": "http://gotosocial/assets/default_header.png",
"header_static": "http://gotosocial/assets/default_header.png",
"followers_count": 0,
"following_count": 0,
"statuses_count": 14,
"last_status_at": "2025-03-23T08:26:05.000Z",
"emojis": [],
"fields": []
},
"media_attachments": [],
"mentions": [
{
"id": "01AJKH2GQGHF8XDARSGR3GZS89",
"username": "cookie",
"url": "http://gotosocial/@cookie",
"acct": "cookie"
}
],
"tags": [],
"emojis": [],
"card": null,
"poll": null
}
Example 2¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://gotosocial/users/cookie",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/V7r9YcKm-V4",
"published": "2025-03-23T08:26:06Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://gotosocial/users/cookie"
],
"id": "http://pasture-one-actor/actor/9WTaT9NmDRc",
"published": "2025-03-23T08:26:06Z",
"content": "text",
"summary": "summary",
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
gotosocial
{
"id": "01JQ11QW9GA0XG7QVMNV0SKVZJ",
"created_at": "2025-03-23T08:26:06.000Z",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"sensitive": false,
"spoiler_text": "summary",
"visibility": "public",
"language": null,
"uri": "http://pasture-one-actor/actor/9WTaT9NmDRc",
"url": "http://pasture-one-actor/actor/9WTaT9NmDRc",
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"favourited": false,
"reblogged": false,
"muted": false,
"bookmarked": false,
"pinned": false,
"content": "text",
"reblog": null,
"account": {
"id": "01JQ11QM5JKM0XPQD9F110ZSBH",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": true,
"discoverable": false,
"bot": false,
"created_at": "2025-03-23T08:25:57.692Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://gotosocial/assets/default_avatars/GoToSocial_icon3.png",
"avatar_static": "http://gotosocial/assets/default_avatars/GoToSocial_icon3.png",
"header": "http://gotosocial/assets/default_header.png",
"header_static": "http://gotosocial/assets/default_header.png",
"followers_count": 0,
"following_count": 0,
"statuses_count": 15,
"last_status_at": "2025-03-23T08:26:06.000Z",
"emojis": [],
"fields": []
},
"media_attachments": [],
"mentions": [
{
"id": "01AJKH2GQGHF8XDARSGR3GZS89",
"username": "cookie",
"url": "http://gotosocial/@cookie",
"acct": "cookie"
}
],
"tags": [],
"emojis": [],
"card": null,
"poll": null
}
Example 3¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://gotosocial/users/cookie",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/XAQcIzbo_nI",
"published": "2025-03-23T08:26:07Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://gotosocial/users/cookie"
],
"id": "http://pasture-one-actor/actor/jRdn9HSJ8HI",
"published": "2025-03-23T08:26:07Z",
"content": "text",
"summary": "summary",
"sensitive": true,
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
gotosocial
{
"id": "01JQ11QX8RRFXQ3NM1TD0B8JKQ",
"created_at": "2025-03-23T08:26:07.000Z",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"sensitive": true,
"spoiler_text": "summary",
"visibility": "public",
"language": null,
"uri": "http://pasture-one-actor/actor/jRdn9HSJ8HI",
"url": "http://pasture-one-actor/actor/jRdn9HSJ8HI",
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"favourited": false,
"reblogged": false,
"muted": false,
"bookmarked": false,
"pinned": false,
"content": "text",
"reblog": null,
"account": {
"id": "01JQ11QM5JKM0XPQD9F110ZSBH",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": true,
"discoverable": false,
"bot": false,
"created_at": "2025-03-23T08:25:57.692Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://gotosocial/assets/default_avatars/GoToSocial_icon3.png",
"avatar_static": "http://gotosocial/assets/default_avatars/GoToSocial_icon3.png",
"header": "http://gotosocial/assets/default_header.png",
"header_static": "http://gotosocial/assets/default_header.png",
"followers_count": 0,
"following_count": 0,
"statuses_count": 16,
"last_status_at": "2025-03-23T08:26:07.000Z",
"emojis": [],
"fields": []
},
"media_attachments": [],
"mentions": [
{
"id": "01AJKH2GQGHF8XDARSGR3GZS89",
"username": "cookie",
"url": "http://gotosocial/@cookie",
"acct": "cookie"
}
],
"tags": [],
"emojis": [],
"card": null,
"poll": null
}
Example 4¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://gotosocial/users/cookie",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/iqSRf1nAqho",
"published": "2025-03-23T08:26:07Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://gotosocial/users/cookie"
],
"id": "http://pasture-one-actor/actor/mhi4NGQnIQU",
"published": "2025-03-23T08:26:07Z",
"content": "see image",
"attachment": {
"type": "Image",
"sensitive": true,
"url": "http://pasture-one-actor/images/w001.png"
},
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
gotosocial
{
"id": "01JQ11QX8RKQCPXTFGC8EYCH21",
"created_at": "2025-03-23T08:26:07.000Z",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"sensitive": false,
"spoiler_text": "",
"visibility": "public",
"language": null,
"uri": "http://pasture-one-actor/actor/mhi4NGQnIQU",
"url": "http://pasture-one-actor/actor/mhi4NGQnIQU",
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"favourited": false,
"reblogged": false,
"muted": false,
"bookmarked": false,
"pinned": false,
"content": "see image",
"reblog": null,
"account": {
"id": "01JQ11QM5JKM0XPQD9F110ZSBH",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": true,
"discoverable": false,
"bot": false,
"created_at": "2025-03-23T08:25:57.692Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://gotosocial/assets/default_avatars/GoToSocial_icon3.png",
"avatar_static": "http://gotosocial/assets/default_avatars/GoToSocial_icon3.png",
"header": "http://gotosocial/assets/default_header.png",
"header_static": "http://gotosocial/assets/default_header.png",
"followers_count": 0,
"following_count": 0,
"statuses_count": 17,
"last_status_at": "2025-03-23T08:26:07.000Z",
"emojis": [],
"fields": []
},
"media_attachments": [
{
"id": "01JQ11QY9PX2XEQGVE41JSAARZ",
"type": "image",
"url": "http://gotosocial/fileserver/01JQ11QM5JKM0XPQD9F110ZSBH/attachment/original/01JQ11QY9PX2XEQGVE41JSAARZ.png",
"text_url": "http://gotosocial/fileserver/01JQ11QM5JKM0XPQD9F110ZSBH/attachment/original/01JQ11QY9PX2XEQGVE41JSAARZ.png",
"preview_url": "http://gotosocial/fileserver/01JQ11QM5JKM0XPQD9F110ZSBH/attachment/small/01JQ11QY9PX2XEQGVE41JSAARZ.jpg",
"remote_url": "http://pasture-one-actor/images/w001.png",
"preview_remote_url": null,
"meta": {
"original": {
"width": 40,
"height": 40,
"size": "40x40",
"aspect": 1
},
"small": {
"width": 40,
"height": 40,
"size": "40x40",
"aspect": 1
},
"focus": {
"x": 0,
"y": 0
}
},
"description": null,
"blurhash": "L7P[?5|#fQ|#|#o2fQo2fQfQfQfQ"
}
],
"mentions": [
{
"id": "01AJKH2GQGHF8XDARSGR3GZS89",
"username": "cookie",
"url": "http://gotosocial/@cookie",
"acct": "cookie"
}
],
"tags": [],
"emojis": [],
"card": null,
"poll": null
}
Example 5¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://gotosocial/users/cookie",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/400xG9OqtE4",
"published": "2025-03-23T08:26:08Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://gotosocial/users/cookie"
],
"id": "http://pasture-one-actor/actor/RfHv3iIkJiA",
"published": "2025-03-23T08:26:08Z",
"content": "see image",
"sensitive": true,
"attachment": {
"type": "Image",
"sensitive": true,
"url": "http://pasture-one-actor/images/w002.png"
},
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
gotosocial
{
"id": "01JQ11QY80K6WFR2W8DXSR3YNG",
"created_at": "2025-03-23T08:26:08.000Z",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"sensitive": true,
"spoiler_text": "",
"visibility": "public",
"language": null,
"uri": "http://pasture-one-actor/actor/RfHv3iIkJiA",
"url": "http://pasture-one-actor/actor/RfHv3iIkJiA",
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"favourited": false,
"reblogged": false,
"muted": false,
"bookmarked": false,
"pinned": false,
"content": "see image",
"reblog": null,
"account": {
"id": "01JQ11QM5JKM0XPQD9F110ZSBH",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": true,
"discoverable": false,
"bot": false,
"created_at": "2025-03-23T08:25:57.692Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://gotosocial/assets/default_avatars/GoToSocial_icon3.png",
"avatar_static": "http://gotosocial/assets/default_avatars/GoToSocial_icon3.png",
"header": "http://gotosocial/assets/default_header.png",
"header_static": "http://gotosocial/assets/default_header.png",
"followers_count": 0,
"following_count": 0,
"statuses_count": 18,
"last_status_at": "2025-03-23T08:26:08.000Z",
"emojis": [],
"fields": []
},
"media_attachments": [
{
"id": "01JQ11QYY6QPG40A3J7NEAZGCZ",
"type": "image",
"url": "http://gotosocial/fileserver/01JQ11QM5JKM0XPQD9F110ZSBH/attachment/original/01JQ11QYY6QPG40A3J7NEAZGCZ.png",
"text_url": "http://gotosocial/fileserver/01JQ11QM5JKM0XPQD9F110ZSBH/attachment/original/01JQ11QYY6QPG40A3J7NEAZGCZ.png",
"preview_url": "http://gotosocial/fileserver/01JQ11QM5JKM0XPQD9F110ZSBH/attachment/small/01JQ11QYY6QPG40A3J7NEAZGCZ.jpg",
"remote_url": "http://pasture-one-actor/images/w002.png",
"preview_remote_url": null,
"meta": {
"original": {
"width": 40,
"height": 40,
"size": "40x40",
"aspect": 1
},
"small": {
"width": 40,
"height": 40,
"size": "40x40",
"aspect": 1
},
"focus": {
"x": 0,
"y": 0
}
},
"description": null,
"blurhash": "L2DURo??fQ????kBfQkBfQfQfQfQ"
}
],
"mentions": [
{
"id": "01AJKH2GQGHF8XDARSGR3GZS89",
"username": "cookie",
"url": "http://gotosocial/@cookie",
"acct": "cookie"
}
],
"tags": [],
"emojis": [],
"card": null,
"poll": null
}
Example 6¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://gotosocial/users/cookie",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/tGdGMmyMYxE",
"published": "2025-03-23T08:26:09Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://gotosocial/users/cookie"
],
"id": "http://pasture-one-actor/actor/WkiJbzyHJro",
"published": "2025-03-23T08:26:09Z",
"content": "see image",
"attachment": {
"content": "content",
"type": "Image",
"sensitive": true,
"url": "http://pasture-one-actor/images/w003.png"
},
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
gotosocial
{
"id": "01JQ11QZ78CCR5QVCVY5XWEQ86",
"created_at": "2025-03-23T08:26:09.000Z",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"sensitive": false,
"spoiler_text": "",
"visibility": "public",
"language": null,
"uri": "http://pasture-one-actor/actor/WkiJbzyHJro",
"url": "http://pasture-one-actor/actor/WkiJbzyHJro",
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"favourited": false,
"reblogged": false,
"muted": false,
"bookmarked": false,
"pinned": false,
"content": "see image",
"reblog": null,
"account": {
"id": "01JQ11QM5JKM0XPQD9F110ZSBH",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": true,
"discoverable": false,
"bot": false,
"created_at": "2025-03-23T08:25:57.692Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://gotosocial/assets/default_avatars/GoToSocial_icon3.png",
"avatar_static": "http://gotosocial/assets/default_avatars/GoToSocial_icon3.png",
"header": "http://gotosocial/assets/default_header.png",
"header_static": "http://gotosocial/assets/default_header.png",
"followers_count": 0,
"following_count": 0,
"statuses_count": 19,
"last_status_at": "2025-03-23T08:26:09.000Z",
"emojis": [],
"fields": []
},
"media_attachments": [
{
"id": "01JQ11QZJK9REJJ06QDAPWT0AP",
"type": "image",
"url": "http://gotosocial/fileserver/01JQ11QM5JKM0XPQD9F110ZSBH/attachment/original/01JQ11QZJK9REJJ06QDAPWT0AP.png",
"text_url": "http://gotosocial/fileserver/01JQ11QM5JKM0XPQD9F110ZSBH/attachment/original/01JQ11QZJK9REJJ06QDAPWT0AP.png",
"preview_url": "http://gotosocial/fileserver/01JQ11QM5JKM0XPQD9F110ZSBH/attachment/small/01JQ11QZJK9REJJ06QDAPWT0AP.jpg",
"remote_url": "http://pasture-one-actor/images/w003.png",
"preview_remote_url": null,
"meta": {
"original": {
"width": 40,
"height": 40,
"size": "40x40",
"aspect": 1
},
"small": {
"width": 40,
"height": 40,
"size": "40x40",
"aspect": 1
},
"focus": {
"x": 0,
"y": 0
}
},
"description": null,
"blurhash": "L313[NkJfQkJkJfSfQfSfQfQfQfQ"
}
],
"mentions": [
{
"id": "01AJKH2GQGHF8XDARSGR3GZS89",
"username": "cookie",
"url": "http://gotosocial/@cookie",
"acct": "cookie"
}
],
"tags": [],
"emojis": [],
"card": null,
"poll": null
}
Example 7¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://gotosocial/users/cookie",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/Z3Ng0CC3l7I",
"published": "2025-03-23T08:26:09Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://gotosocial/users/cookie"
],
"id": "http://pasture-one-actor/actor/NSJX6GLYesc",
"published": "2025-03-23T08:26:09Z",
"content": "see image",
"attachment": {
"type": "Image",
"summary": "summary",
"sensitive": true,
"url": "http://pasture-one-actor/images/w004.png"
},
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
gotosocial
{
"id": "01JQ11QZ78H96KRP6RR5DZJTNM",
"created_at": "2025-03-23T08:26:09.000Z",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"sensitive": false,
"spoiler_text": "",
"visibility": "public",
"language": null,
"uri": "http://pasture-one-actor/actor/NSJX6GLYesc",
"url": "http://pasture-one-actor/actor/NSJX6GLYesc",
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"favourited": false,
"reblogged": false,
"muted": false,
"bookmarked": false,
"pinned": false,
"content": "see image",
"reblog": null,
"account": {
"id": "01JQ11QM5JKM0XPQD9F110ZSBH",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": true,
"discoverable": false,
"bot": false,
"created_at": "2025-03-23T08:25:57.692Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://gotosocial/assets/default_avatars/GoToSocial_icon3.png",
"avatar_static": "http://gotosocial/assets/default_avatars/GoToSocial_icon3.png",
"header": "http://gotosocial/assets/default_header.png",
"header_static": "http://gotosocial/assets/default_header.png",
"followers_count": 0,
"following_count": 0,
"statuses_count": 20,
"last_status_at": "2025-03-23T08:26:09.000Z",
"emojis": [],
"fields": []
},
"media_attachments": [
{
"id": "01JQ11R071NNZCT2HJH64JNP14",
"type": "image",
"url": "http://gotosocial/fileserver/01JQ11QM5JKM0XPQD9F110ZSBH/attachment/original/01JQ11R071NNZCT2HJH64JNP14.png",
"text_url": "http://gotosocial/fileserver/01JQ11QM5JKM0XPQD9F110ZSBH/attachment/original/01JQ11R071NNZCT2HJH64JNP14.png",
"preview_url": "http://gotosocial/fileserver/01JQ11QM5JKM0XPQD9F110ZSBH/attachment/small/01JQ11R071NNZCT2HJH64JNP14.jpg",
"remote_url": "http://pasture-one-actor/images/w004.png",
"preview_remote_url": null,
"meta": {
"original": {
"width": 40,
"height": 40,
"size": "40x40",
"aspect": 1
},
"small": {
"width": 40,
"height": 40,
"size": "40x40",
"aspect": 1
},
"focus": {
"x": 0,
"y": 0
}
},
"description": "summary",
"blurhash": "L3J=$}}^fQ}^}^oLfQoLfQfQfQfQ"
}
],
"mentions": [
{
"id": "01AJKH2GQGHF8XDARSGR3GZS89",
"username": "cookie",
"url": "http://gotosocial/@cookie",
"acct": "cookie"
}
],
"tags": [],
"emojis": [],
"card": null,
"poll": null
}