[ 'https://w3id.org/security/v1', 'https://www.w3.org/ns/activitystreams', [ 'Hashtag' => 'as:Hashtag', 'sensitive' => 'as:sensitive', 'schema' => 'http://schema.org/', 'pixelfed' => 'http://pixelfed.org/ns#', 'commentsEnabled' => [ '@id' => 'pixelfed:commentsEnabled', '@type' => 'schema:Boolean' ], 'capabilities' => [ '@id' => 'pixelfed:capabilities', '@container' => '@set' ], 'announce' => [ '@id' => 'pixelfed:canAnnounce', '@type' => '@id' ], 'like' => [ '@id' => 'pixelfed:canLike', '@type' => '@id' ], 'reply' => [ '@id' => 'pixelfed:canReply', '@type' => '@id' ], 'toot' => 'http://joinmastodon.org/ns#', 'Emoji' => 'toot:Emoji' ] ], 'id' => $status->permalink(), 'type' => 'Create', 'actor' => $status->profile->permalink(), 'published' => $status->created_at->toAtomString(), 'to' => $status->scopeToAudience('to'), 'cc' => $status->scopeToAudience('cc'), ]; } public function includeObject(Status $status) { return $this->item($status, new Question()); } }