2063 team

https://forgefed.peers.community/nsteam

JSON

Inbox

Definition

Notes:: Specifies a Collection of actors who are working on the object, or responsible for it, or managing or administrating it, or having edit access to it. For example, for a Repository, it could be the people who have push/edit access, the “collaborators” of the repository.
see 4

Example

json A repository https://dev.example/aviva/treesim: { "@context": [ "https://www.w3.org/ns/activitystreams", "https://w3id.org/security/v1", "https://forgefed.peers.community/ns" ], "id": "https://dev.example/aviva/treesim", "type": "Repository", "publicKey": { "id": "https://dev.example/aviva/treesim#main-key", "owner": "https://dev.example/aviva/treesim", "publicKeyPem": "-----BEGIN PUBLIC KEY----- MIIBIjANBgkqhki....." }, "inbox": "https://dev.example/aviva/treesim/inbox", "outbox": "https://dev.example/aviva/treesim/outbox", "followers": "https://dev.example/aviva/treesim/followers", "name": "Tree Growth 3D Simulation", "summary": "

Tree growth 3D simulator for my nature exploration game

",

"team": "https://dev.example/aviva/treesim/team"

} The repository’s team https://dev.example/aviva/treesim/team: { "@context": "https://www.w3.org/ns/activitystreams", "id": "https://dev.example/aviva/treesim/team", "type": "Collection", "totalItems": 3, "items": [ "https://dev.example/aviva", "https://dev.example/luke", "https://code.community/users/lorax" ] }```