Hi there I am using Activity Streams 2.0 to describe X Posts and was wondering what I could use to best support they public_metrics that looks like following:
{
"retweet_count": 665,
"reply_count": 178,
"like_count": 4961,
"quote_count": 40,
"bookmark_count": 521,
"impression_count": 296339
},
Here is a sample of what I do:
{
"@type": "as:Article",
"@id": IRI,
"as:author": author_IRI,
"as:content": "content here",
"as:likes": likes_collection_IRI,
"as:replies": replies_collection_IRI,
"as:shares": retweets_collection_IRI,
...
}
I could not find any property for quote_count, bookmark_count and impression_count.
Hi there I am using Activity Streams 2.0 to describe X Posts and was wondering what I could use to best support they
public_metricsthat looks like following:{ "retweet_count": 665, "reply_count": 178, "like_count": 4961, "quote_count": 40, "bookmark_count": 521, "impression_count": 296339 },Here is a sample of what I do:
{ "@type": "as:Article", "@id": IRI, "as:author": author_IRI, "as:content": "content here", "as:likes": likes_collection_IRI, "as:replies": replies_collection_IRI, "as:shares": retweets_collection_IRI, ... }I could not find any property for
quote_count,bookmark_countandimpression_count.