Continuing on my outbox questions, here’s the general construct I need: a collection that belongs to an actor that other actors can add objects to, with the owner having the ability to intervene. Examples:
- Walls, again — both owned by users and groups
- Photo albums in groups, where any member can upload a photo
- Discussion boards in groups, where any member can create a topic
In all these cases, there needs to be the ability for the collection owner to refuse the activity/object to be added to the collection, for example due to their privacy settings — a user should be able to only allow their friends to post on their wall. The collection owner should also be able to arbitrarily delete objects from the collection, for spam prevention or moderation purposes, or, really, any reason because they own the thing.
What I suggest:
- Adding an object to a collection is done by specifying the collection ID in its partOffield, and then sending it to the collection owner.- If the receiving server accepts the addition, it simply responds with 200 OKand stores the object in its database. It can then forward it to anyone it deems appropriate for the purpose of data consistency.
- If it does not because that would violate owner’s privacy settings, it responds with 403 Unauthorized. The originating server may reflect that in its UI.
 
- If the receiving server accepts the addition, it simply responds with 
- Deletion from the owner side is done by the owner sending a Deletewith the original object ID as theobjectto the server that hosts the object being deleted, and optionally to any servers that it forwarded the object to earlier.
Is this okay?