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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://gotosocial/users/cookie"
],
"id": "http://pasture-one-actor/actor/mRVnpSCnQJI",
"published": "2024-12-02T18:39:46Z",
"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/KRiQ_G9K-JE",
"published": "2024-12-02T18:39:46Z",
"content": "text",
"sensitive": true,
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
gotosocial
{
"id": "01JE4AQRAG052B412EHWS4BFDP",
"created_at": "2024-12-02T18:39:46.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/KRiQ_G9K-JE",
"url": "http://pasture-one-actor/actor/KRiQ_G9K-JE",
"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": "01JE4AQGWFWGH142XSSDT7BPG6",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": true,
"discoverable": false,
"bot": false,
"created_at": "2024-12-02T18:39:38.399Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://gotosocial/assets/default_avatars/GoToSocial_icon5.png",
"avatar_static": "http://gotosocial/assets/default_avatars/GoToSocial_icon5.png",
"header": "http://gotosocial/assets/default_header.png",
"header_static": "http://gotosocial/assets/default_header.png",
"followers_count": 0,
"following_count": 0,
"statuses_count": 13,
"last_status_at": "2024-12-02T18:39:46.000Z",
"emojis": [],
"fields": []
},
"media_attachments": [],
"mentions": [
{
"id": "01GQVV7KF7MBTWYN6T68Y7A1XH",
"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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://gotosocial/users/cookie"
],
"id": "http://pasture-one-actor/actor/dWx27XaLeA4",
"published": "2024-12-02T18:39:46Z",
"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/7kv9f9Ilwjc",
"published": "2024-12-02T18:39:46Z",
"content": "text",
"summary": "summary",
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
gotosocial
{
"id": "01JE4AQRAGW6MQMEJCMCY0PCF5",
"created_at": "2024-12-02T18:39:46.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/7kv9f9Ilwjc",
"url": "http://pasture-one-actor/actor/7kv9f9Ilwjc",
"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": "01JE4AQGWFWGH142XSSDT7BPG6",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": true,
"discoverable": false,
"bot": false,
"created_at": "2024-12-02T18:39:38.399Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://gotosocial/assets/default_avatars/GoToSocial_icon5.png",
"avatar_static": "http://gotosocial/assets/default_avatars/GoToSocial_icon5.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": "2024-12-02T18:39:46.000Z",
"emojis": [],
"fields": []
},
"media_attachments": [],
"mentions": [
{
"id": "01GQVV7KF7MBTWYN6T68Y7A1XH",
"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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://gotosocial/users/cookie"
],
"id": "http://pasture-one-actor/actor/ea3L-L2XNFk",
"published": "2024-12-02T18:39:47Z",
"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/MHR5-7TkHbY",
"published": "2024-12-02T18:39:47Z",
"content": "text",
"summary": "summary",
"sensitive": true,
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
gotosocial
{
"id": "01JE4AQS9RNS02ZVDMVKV74P0T",
"created_at": "2024-12-02T18:39:47.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/MHR5-7TkHbY",
"url": "http://pasture-one-actor/actor/MHR5-7TkHbY",
"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": "01JE4AQGWFWGH142XSSDT7BPG6",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": true,
"discoverable": false,
"bot": false,
"created_at": "2024-12-02T18:39:38.399Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://gotosocial/assets/default_avatars/GoToSocial_icon5.png",
"avatar_static": "http://gotosocial/assets/default_avatars/GoToSocial_icon5.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": "2024-12-02T18:39:47.000Z",
"emojis": [],
"fields": []
},
"media_attachments": [],
"mentions": [
{
"id": "01GQVV7KF7MBTWYN6T68Y7A1XH",
"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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://gotosocial/users/cookie"
],
"id": "http://pasture-one-actor/actor/l1jqd0PvanU",
"published": "2024-12-02T18:39:48Z",
"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/d_BhO9EGcD8",
"published": "2024-12-02T18:39:48Z",
"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": "01JE4AQT90N2R1V0S4Q6G78VFV",
"created_at": "2024-12-02T18:39:48.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/d_BhO9EGcD8",
"url": "http://pasture-one-actor/actor/d_BhO9EGcD8",
"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": "01JE4AQGWFWGH142XSSDT7BPG6",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": true,
"discoverable": false,
"bot": false,
"created_at": "2024-12-02T18:39:38.399Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://gotosocial/assets/default_avatars/GoToSocial_icon5.png",
"avatar_static": "http://gotosocial/assets/default_avatars/GoToSocial_icon5.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": "2024-12-02T18:39:48.000Z",
"emojis": [],
"fields": []
},
"media_attachments": [
{
"id": "01JE4AQTMJSE69AHAKSEW21CRD",
"type": "image",
"url": "http://gotosocial/fileserver/01JE4AQGWFWGH142XSSDT7BPG6/attachment/original/01JE4AQTMJSE69AHAKSEW21CRD.png",
"text_url": "http://gotosocial/fileserver/01JE4AQGWFWGH142XSSDT7BPG6/attachment/original/01JE4AQTMJSE69AHAKSEW21CRD.png",
"preview_url": "http://gotosocial/fileserver/01JE4AQGWFWGH142XSSDT7BPG6/attachment/small/01JE4AQTMJSE69AHAKSEW21CRD.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": "L5EcpA$qfQ$q$qjvfQjvfQfQfQfQ"
}
],
"mentions": [
{
"id": "01GQVV7KF7MBTWYN6T68Y7A1XH",
"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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://gotosocial/users/cookie"
],
"id": "http://pasture-one-actor/actor/dGWPJFhEsGA",
"published": "2024-12-02T18:39:48Z",
"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/O5uXWlur4_M",
"published": "2024-12-02T18:39:48Z",
"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": "01JE4AQT906P3JS1ZN9YH4P0P6",
"created_at": "2024-12-02T18:39:48.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/O5uXWlur4_M",
"url": "http://pasture-one-actor/actor/O5uXWlur4_M",
"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": "01JE4AQGWFWGH142XSSDT7BPG6",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": true,
"discoverable": false,
"bot": false,
"created_at": "2024-12-02T18:39:38.399Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://gotosocial/assets/default_avatars/GoToSocial_icon5.png",
"avatar_static": "http://gotosocial/assets/default_avatars/GoToSocial_icon5.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": "2024-12-02T18:39:48.000Z",
"emojis": [],
"fields": []
},
"media_attachments": [
{
"id": "01JE4AQV9R8SR8CBR78AJ4HPAY",
"type": "image",
"url": "http://gotosocial/fileserver/01JE4AQGWFWGH142XSSDT7BPG6/attachment/original/01JE4AQV9R8SR8CBR78AJ4HPAY.png",
"text_url": "http://gotosocial/fileserver/01JE4AQGWFWGH142XSSDT7BPG6/attachment/original/01JE4AQV9R8SR8CBR78AJ4HPAY.png",
"preview_url": "http://gotosocial/fileserver/01JE4AQGWFWGH142XSSDT7BPG6/attachment/small/01JE4AQV9R8SR8CBR78AJ4HPAY.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": "L837AKl$fQl$l$f%fQf%fQfQfQfQ"
}
],
"mentions": [
{
"id": "01GQVV7KF7MBTWYN6T68Y7A1XH",
"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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://gotosocial/users/cookie"
],
"id": "http://pasture-one-actor/actor/SKWgvpnKsgo",
"published": "2024-12-02T18:39:49Z",
"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/4XxsmePGuSM",
"published": "2024-12-02T18:39:49Z",
"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": "01JE4AQV88DM4M0NAM72QAN5QK",
"created_at": "2024-12-02T18:39:49.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/4XxsmePGuSM",
"url": "http://pasture-one-actor/actor/4XxsmePGuSM",
"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": "01JE4AQGWFWGH142XSSDT7BPG6",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": true,
"discoverable": false,
"bot": false,
"created_at": "2024-12-02T18:39:38.399Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://gotosocial/assets/default_avatars/GoToSocial_icon5.png",
"avatar_static": "http://gotosocial/assets/default_avatars/GoToSocial_icon5.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": "2024-12-02T18:39:49.000Z",
"emojis": [],
"fields": []
},
"media_attachments": [
{
"id": "01JE4AQVYA2C019W35C2ED6TCM",
"type": "image",
"url": "http://gotosocial/fileserver/01JE4AQGWFWGH142XSSDT7BPG6/attachment/original/01JE4AQVYA2C019W35C2ED6TCM.png",
"text_url": "http://gotosocial/fileserver/01JE4AQGWFWGH142XSSDT7BPG6/attachment/original/01JE4AQVYA2C019W35C2ED6TCM.png",
"preview_url": "http://gotosocial/fileserver/01JE4AQGWFWGH142XSSDT7BPG6/attachment/small/01JE4AQVYA2C019W35C2ED6TCM.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": "L5M;VT}wfQ}w}woLfQoLfQfQfQfQ"
}
],
"mentions": [
{
"id": "01GQVV7KF7MBTWYN6T68Y7A1XH",
"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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://gotosocial/users/cookie"
],
"id": "http://pasture-one-actor/actor/mY-CxIfVI7E",
"published": "2024-12-02T18:39:50Z",
"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/_LMCtsilsKM",
"published": "2024-12-02T18:39:50Z",
"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": "01JE4AQW7G41FP5JW7SYZCE59X",
"created_at": "2024-12-02T18:39:50.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/_LMCtsilsKM",
"url": "http://pasture-one-actor/actor/_LMCtsilsKM",
"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": "01JE4AQGWFWGH142XSSDT7BPG6",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": true,
"discoverable": false,
"bot": false,
"created_at": "2024-12-02T18:39:38.399Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://gotosocial/assets/default_avatars/GoToSocial_icon5.png",
"avatar_static": "http://gotosocial/assets/default_avatars/GoToSocial_icon5.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": "2024-12-02T18:39:50.000Z",
"emojis": [],
"fields": []
},
"media_attachments": [
{
"id": "01JE4AQWJW1M20NVY8F7YR3J9Y",
"type": "image",
"url": "http://gotosocial/fileserver/01JE4AQGWFWGH142XSSDT7BPG6/attachment/original/01JE4AQWJW1M20NVY8F7YR3J9Y.png",
"text_url": "http://gotosocial/fileserver/01JE4AQGWFWGH142XSSDT7BPG6/attachment/original/01JE4AQWJW1M20NVY8F7YR3J9Y.png",
"preview_url": "http://gotosocial/fileserver/01JE4AQGWFWGH142XSSDT7BPG6/attachment/small/01JE4AQWJW1M20NVY8F7YR3J9Y.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": "L9GDC7*EfQ*E*EkBfQkBfQfQfQfQ"
}
],
"mentions": [
{
"id": "01GQVV7KF7MBTWYN6T68Y7A1XH",
"username": "cookie",
"url": "http://gotosocial/@cookie",
"acct": "cookie"
}
],
"tags": [],
"emojis": [],
"card": null,
"poll": null
}