36 lines
1,016 B
JSON
36 lines
1,016 B
JSON
|
{
|
||
|
"@context": "https://www.w3.org/ns/activitystreams",
|
||
|
"name": "A question about robots",
|
||
|
"id": "http://polls.example.org/question/1",
|
||
|
"type": "Question",
|
||
|
"content": "I'd like to build a robot to feed my cat. Which platform is best?",
|
||
|
"oneOf": [
|
||
|
{"name": "arduino"},
|
||
|
{"name": "raspberry pi"}
|
||
|
],
|
||
|
"replies": {
|
||
|
"type": "Collection",
|
||
|
"totalItems": 3,
|
||
|
"items": [
|
||
|
{
|
||
|
"attributedTo": "http://sally.example.org",
|
||
|
"inReplyTo": "http://polls.example.org/question/1",
|
||
|
"name": "arduino"
|
||
|
},
|
||
|
{
|
||
|
"attributedTo": "http://joe.example.org",
|
||
|
"inReplyTo": "http://polls.example.org/question/1",
|
||
|
"name": "arduino"
|
||
|
},
|
||
|
{
|
||
|
"attributedTo": "http://john.example.org",
|
||
|
"inReplyTo": "http://polls.example.org/question/1",
|
||
|
"name": "raspberry pi"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"result": {
|
||
|
"type": "Note",
|
||
|
"content": "Users are favoriting "arduino" by a 33% margin."
|
||
|
}
|
||
|
}
|