Image Attachments¶
The Image type is defined in ActivityStreams Vocabulary.
In the following, we test how various configurations of it are rendered.
A ❌ in the support table means that the entire message has failed to parse.
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://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/Y24WknVHNdc",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/rQuCYdy5Q4w",
"published": "2024-04-01T14:13:33Z",
"content": "Format png",
"attachment": {
"type": "Document",
"url": "http://pasture-one-actor/images/001.png"
}
}
}
misskey
{
"id": "9rklhivchkyj001v",
"createdAt": "2024-04-01T14:13:33.000Z",
"userId": "9rkles54hkyj0002",
"user": {
"id": "9rkles54hkyj0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "Format png",
"cw": null,
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [
"9rklhj9hhkyj001u"
],
"files": [
{
"id": "9rklhj9hhkyj001u",
"createdAt": "2024-04-01T14:13:33.509Z",
"name": "001.png",
"type": "image/png",
"md5": "7bb853cffe07d39137da59e9cd975894",
"size": 0,
"isSensitive": false,
"blurhash": "e3E;EL%ifQ%ifQ%ij[fQj[fQfQfQfQfQfQ%ij[fQj[fQfQfQfQfQfQ",
"properties": {
"width": 40,
"height": 40
},
"url": "http://pasture-one-actor/images/001.png",
"thumbnailUrl": "http://pasture-one-actor/images/001.png",
"comment": null,
"folderId": null,
"folder": null,
"userId": null,
"user": null
}
],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/rQuCYdy5Q4w",
"clippedCount": 0
}
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://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/m-M8t52u1g0",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/ze735gA0aCY",
"published": "2024-04-01T14:13:33Z",
"content": "Format png",
"attachment": {
"type": "Document",
"url": "http://pasture-one-actor/images/001b.png",
"mediaType": "image/png"
}
}
}
misskey
{
"id": "9rklhivchkyj001x",
"createdAt": "2024-04-01T14:13:33.000Z",
"userId": "9rkles54hkyj0002",
"user": {
"id": "9rkles54hkyj0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "Format png",
"cw": null,
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [
"9rklhjtghkyj001w"
],
"files": [
{
"id": "9rklhjtghkyj001w",
"createdAt": "2024-04-01T14:13:34.228Z",
"name": "001b.png",
"type": "image/png",
"md5": "08af627acfa5833d2a7303adfb83d587",
"size": 0,
"isSensitive": false,
"blurhash": "e11~o=k]fQk]fQk]fkfQfkfQfQfQfQfQfQk]fkfQfkfQfQfQfQfQfQ",
"properties": {
"width": 40,
"height": 40
},
"url": "http://pasture-one-actor/images/001b.png",
"thumbnailUrl": "http://pasture-one-actor/images/001b.png",
"comment": null,
"folderId": null,
"folder": null,
"userId": null,
"user": null
}
],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/ze735gA0aCY",
"clippedCount": 0
}
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://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/QmCmdWvU_cQ",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/BcDVczMzSzo",
"published": "2024-04-01T14:13:34Z",
"content": "Format jpg",
"attachment": {
"type": "Image",
"url": "http://pasture-one-actor/images/002.jpg"
}
}
}
misskey
{
"id": "9rklhjn4hkyj001z",
"createdAt": "2024-04-01T14:13:34.000Z",
"userId": "9rkles54hkyj0002",
"user": {
"id": "9rkles54hkyj0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "Format jpg",
"cw": null,
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [
"9rklhkazhkyj001y"
],
"files": [
{
"id": "9rklhkazhkyj001y",
"createdAt": "2024-04-01T14:13:34.859Z",
"name": "002.jpg",
"type": "image/jpeg",
"md5": "c61f9497e66e2accfee74ba777027618",
"size": 0,
"isSensitive": false,
"blurhash": "e4Kg.e.ifQ.ifQ.ij[fQj[fQfQfQfQfQfQ.ij[fQj[fQfQfQfQfQfQ",
"properties": {
"width": 40,
"height": 40
},
"url": "http://pasture-one-actor/images/002.jpg",
"thumbnailUrl": "http://pasture-one-actor/images/002.jpg",
"comment": null,
"folderId": null,
"folder": null,
"userId": null,
"user": null
}
],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/BcDVczMzSzo",
"clippedCount": 0
}
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://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/PSW_LPKUYAs",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/NTl-cwny4Ww",
"published": "2024-04-01T14:13:35Z",
"content": "Format jpg",
"attachment": {
"type": "Image",
"url": "http://pasture-one-actor/images/002b.jpg",
"mediaType": "image/jpeg"
}
}
}
misskey
{
"id": "9rklhkewhkyj0021",
"createdAt": "2024-04-01T14:13:35.000Z",
"userId": "9rkles54hkyj0002",
"user": {
"id": "9rkles54hkyj0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "Format jpg",
"cw": null,
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [
"9rklhkszhkyj0020"
],
"files": [
{
"id": "9rklhkszhkyj0020",
"createdAt": "2024-04-01T14:13:35.507Z",
"name": "002b.jpg",
"type": "image/jpeg",
"md5": "f8844e5dbddfd7de6541a77ae3060f10",
"size": 0,
"isSensitive": false,
"blurhash": "e4C42dswfQswfQswfRfQfRfQfQfQfQfQfQswfRfQfRfQfQfQfQfQfQ",
"properties": {
"width": 40,
"height": 40
},
"url": "http://pasture-one-actor/images/002b.jpg",
"thumbnailUrl": "http://pasture-one-actor/images/002b.jpg",
"comment": null,
"folderId": null,
"folder": null,
"userId": null,
"user": null
}
],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/NTl-cwny4Ww",
"clippedCount": 0
}
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://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/ZsTXyOVmPiw",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/1BiAdQ8jgTw",
"published": "2024-04-01T14:13:36Z",
"content": "Format svg",
"attachment": {
"type": "Image",
"url": "http://pasture-one-actor/assets/FediverseLogo.svg"
}
}
}
misskey
{
"id": "9rklhl6ohkyj0023",
"createdAt": "2024-04-01T14:13:36.000Z",
"userId": "9rkles54hkyj0002",
"user": {
"id": "9rkles54hkyj0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "Format svg",
"cw": null,
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [
"9rklhldqhkyj0022"
],
"files": [
{
"id": "9rklhldqhkyj0022",
"createdAt": "2024-04-01T14:13:36.254Z",
"name": "FediverseLogo.svg",
"type": "image/svg+xml",
"md5": "c0cf4aac6c02350b855e29194f209216",
"size": 0,
"isSensitive": false,
"blurhash": "eLDlNJ.}4.T?Im}fnOEVw[xb9IK[N1w~-T5cO?RPX2$yARM{tkj0t7",
"properties": {},
"url": "http://pasture-one-actor/assets/FediverseLogo.svg",
"thumbnailUrl": "http://pasture-one-actor/assets/FediverseLogo.svg",
"comment": null,
"folderId": null,
"folder": null,
"userId": null,
"user": null
}
],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/1BiAdQ8jgTw",
"clippedCount": 0
}
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://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/s5-CLlU9uQI",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/htwUz_iNvuo",
"published": "2024-04-01T14:13:36Z",
"content": "Format eps",
"attachment": {
"type": "Image",
"url": "http://pasture-one-actor/images/003.eps"
}
}
}
misskey
{
"id": "9rklhl6ohkyj0025",
"createdAt": "2024-04-01T14:13:36.000Z",
"userId": "9rkles54hkyj0002",
"user": {
"id": "9rkles54hkyj0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "Format eps",
"cw": null,
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [
"9rklhltthkyj0024"
],
"files": [
{
"id": "9rklhltthkyj0024",
"createdAt": "2024-04-01T14:13:36.833Z",
"name": "003.eps",
"type": "application/eps",
"md5": "3576897dda7538c66f1e05674f7751e4",
"size": 0,
"isSensitive": false,
"blurhash": null,
"properties": {},
"url": "http://pasture-one-actor/images/003.eps",
"thumbnailUrl": null,
"comment": null,
"folderId": null,
"folder": null,
"userId": null,
"user": null
}
],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/htwUz_iNvuo",
"clippedCount": 0
}
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://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/4pzrp-fHoNk",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/Cp5fsttPEJ0",
"published": "2024-04-01T14:13:37Z",
"content": "Format gif",
"attachment": {
"type": "Image",
"url": "http://pasture-one-actor/images/003b.gif"
}
}
}
misskey
{
"id": "9rklhlyghkyj0027",
"createdAt": "2024-04-01T14:13:37.000Z",
"userId": "9rkles54hkyj0002",
"user": {
"id": "9rkles54hkyj0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "Format gif",
"cw": null,
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [
"9rklhmd8hkyj0026"
],
"files": [
{
"id": "9rklhmd8hkyj0026",
"createdAt": "2024-04-01T14:13:37.532Z",
"name": "003b.gif",
"type": "image/gif",
"md5": "4f5f5a3ac3f6f8a45bee65a8233e9702",
"size": 0,
"isSensitive": false,
"blurhash": "e2N6b[}YfQ}YfQ}YjtfQjtfQfQfQfQfQfQ}YjtfQjtfQfQfQfQfQfQ",
"properties": {
"width": 40,
"height": 40
},
"url": "http://pasture-one-actor/images/003b.gif",
"thumbnailUrl": "http://pasture-one-actor/images/003b.gif",
"comment": null,
"folderId": null,
"folder": null,
"userId": null,
"user": null
}
],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/Cp5fsttPEJ0",
"clippedCount": 0
}
Example 8¶
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://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/QAvO_Q9jVCk",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/ZuR3xCZk6VA",
"published": "2024-04-01T14:13:37Z",
"content": "Format tiff",
"attachment": {
"type": "Image",
"url": "http://pasture-one-actor/images/003c.tiff"
}
}
}
misskey
{
"id": "9rklhlyghkyj0029",
"createdAt": "2024-04-01T14:13:37.000Z",
"userId": "9rkles54hkyj0002",
"user": {
"id": "9rkles54hkyj0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "Format tiff",
"cw": null,
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [
"9rklhmtehkyj0028"
],
"files": [
{
"id": "9rklhmtehkyj0028",
"createdAt": "2024-04-01T14:13:38.114Z",
"name": "003c.tiff",
"type": "image/tiff",
"md5": "80e0a3750e9588f05817bd65e6604b45",
"size": 0,
"isSensitive": false,
"blurhash": null,
"properties": {
"width": 40,
"height": 40
},
"url": "http://pasture-one-actor/images/003c.tiff",
"thumbnailUrl": "http://pasture-one-actor/images/003c.tiff",
"comment": null,
"folderId": null,
"folder": null,
"userId": null,
"user": null
}
],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/ZuR3xCZk6VA",
"clippedCount": 0
}
Example 9¶
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://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/VfHQTsxyPIA",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/iL2QApJdEUE",
"published": "2024-04-01T14:13:38Z",
"content": "Format webp",
"attachment": {
"type": "Image",
"url": "http://pasture-one-actor/images/003d.webp"
}
}
}
misskey
{
"id": "9rklhmq8hkyj002b",
"createdAt": "2024-04-01T14:13:38.000Z",
"userId": "9rkles54hkyj0002",
"user": {
"id": "9rkles54hkyj0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "Format webp",
"cw": null,
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [
"9rklhnerhkyj002a"
],
"files": [
{
"id": "9rklhnerhkyj002a",
"createdAt": "2024-04-01T14:13:38.883Z",
"name": "003d.webp",
"type": "image/webp",
"md5": "755f1242f4270833b57c4c8c8bad25b1",
"size": 0,
"isSensitive": false,
"blurhash": "e1Ie3V}GfQ}GfQ}GjtfQjtfQfQfQfQfQfQ}GjtfQjtfQfQfQfQfQfQ",
"properties": {
"width": 40,
"height": 40
},
"url": "http://pasture-one-actor/images/003d.webp",
"thumbnailUrl": "http://pasture-one-actor/images/003d.webp",
"comment": null,
"folderId": null,
"folder": null,
"userId": null,
"user": null
}
],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/iL2QApJdEUE",
"clippedCount": 0
}
Example 10¶
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://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/JHxbi8xUNoA",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/Wl09p05wdck",
"published": "2024-04-01T14:13:39Z",
"content": "url does not exit",
"attachment": {
"type": "Document",
"url": "http://pasture-one-actor/assets/does_not_exist.png"
}
}
}
no result
Example 11¶
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://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/ab3tDrv_v-0",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/gJPSv-xZ-zw",
"published": "2024-04-01T14:13:50Z",
"content": "Wrong height / width",
"attachment": {
"type": "Document",
"width": 13,
"height": 17,
"url": "http://pasture-one-actor/images/004.png"
}
}
}
misskey
{
"id": "9rklhvzkhkyj002d",
"createdAt": "2024-04-01T14:13:50.000Z",
"userId": "9rkles54hkyj0002",
"user": {
"id": "9rkles54hkyj0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "Wrong height / width",
"cw": null,
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [
"9rklhwt1hkyj002c"
],
"files": [
{
"id": "9rklhwt1hkyj002c",
"createdAt": "2024-04-01T14:13:51.061Z",
"name": "004.png",
"type": "image/png",
"md5": "1201e914f6d61f73674838f35f9f6200",
"size": 0,
"isSensitive": false,
"blurhash": "e28#h3tVfQtVfQtVfRfQfRfQfQfQfQfQfQtVfRfQfRfQfQfQfQfQfQ",
"properties": {
"width": 40,
"height": 40
},
"url": "http://pasture-one-actor/images/004.png",
"thumbnailUrl": "http://pasture-one-actor/images/004.png",
"comment": null,
"folderId": null,
"folder": null,
"userId": null,
"user": null
}
],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/gJPSv-xZ-zw",
"clippedCount": 0
}
Example 12¶
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://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/821qMOHxh1U",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/CxnUOZ2jcj8",
"published": "2024-04-01T14:13:51Z",
"content": "No type",
"attachment": {
"url": "http://pasture-one-actor/images/005.png"
}
}
}
misskey
{
"id": "9rklhwrchkyj002f",
"createdAt": "2024-04-01T14:13:51.000Z",
"userId": "9rkles54hkyj0002",
"user": {
"id": "9rkles54hkyj0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "No type",
"cw": null,
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [
"9rklhxanhkyj002e"
],
"files": [
{
"id": "9rklhxanhkyj002e",
"createdAt": "2024-04-01T14:13:51.695Z",
"name": "005.png",
"type": "image/png",
"md5": "316a2cdbb477c722524225b2891abf26",
"size": 0,
"isSensitive": false,
"blurhash": "e3E?Kd%}fQ%}fQ%}j[fQj[fQfQfQfQfQfQ%}j[fQj[fQfQfQfQfQfQ",
"properties": {
"width": 40,
"height": 40
},
"url": "http://pasture-one-actor/images/005.png",
"thumbnailUrl": "http://pasture-one-actor/images/005.png",
"comment": null,
"folderId": null,
"folder": null,
"userId": null,
"user": null
}
],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/CxnUOZ2jcj8",
"clippedCount": 0
}
Example 13¶
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://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/CdUeWzUKGFU",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/FOAfba_skac",
"published": "2024-04-01T14:13:52Z",
"content": "url is Link object",
"attachment": {
"type": "Image",
"url": {
"type": "Link",
"href": "http://pasture-one-actor/images/006.png"
}
}
}
}
no result
Example 14¶
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://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/JaAX7WMP9qw",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/jmRC6kTaKeI",
"published": "2024-04-01T14:14:03Z",
"content": "url is Link object with media type",
"attachment": {
"type": "Image",
"url": {
"type": "Link",
"href": "http://pasture-one-actor/images/006b.png",
"mediaType": "image/png"
}
}
}
}
no result
Example 15¶
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://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/5dFE1W_rTN4",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/YN-taUqnFWA",
"published": "2024-04-01T14:14:14Z",
"content": "url is Link object in an array",
"attachment": {
"type": "Image",
"url": [
{
"type": "Link",
"href": "http://pasture-one-actor/images/006c.png"
}
]
}
}
}
no result
Example 16¶
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://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/TgLVxOSRP1E",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/9rkld43ll7r80001"
],
"id": "http://pasture-one-actor/actor/GZjvqody3YA",
"published": "2024-04-01T14:14:26Z",
"content": "url is array of two Link objects",
"attachment": {
"type": "Image",
"url": [
{
"type": "Link",
"href": "http://pasture-one-actor/images/007.png",
"mediaType": "image/png"
},
{
"type": "Link",
"href": "http://pasture-one-actor/images/008.jpg",
"mediaType": "image/jpeg"
}
]
}
}
}
no result