Let's say you have a complex resource in a REST API. You have several one-to-many flags and attributes on this resource (i.e., a user may have given the resource a rating of 1 to 5 or the user may have 'liked' the resource or marked it as spam or ignored it or caused some other state to be set).
Some suggestions have been made on the best way to represent this in a resource-centric architecture, but so far none of them have really made me happy. So let's crowd-source this; which variants do you find easiest to understand? Which variants haven't we thought of? Assume an OAuth-based API and everything here is done in the context of the currently authorized user.
Boolean Flags
Variant 1:
GET /resource/{id}/muted POST /resource/{id}/muted BODY:true POST /resource/{id}/muted BODY:falseVariant 2:
GET /resource/{id}/muted PUT /resource/{id}/muted BODY:true DELETE /resource/{id}/mutedVariant 3:
GET /resource/{id}/attributes POST /resource/{id}/attributes BODY:muted=true POST /resource/{id}/attributes BODY:muted=falseVariant 4:
GET /resource/{id}/muted POST /resource/{id}/mute POST /resource/{id}/unmute
Attributes
Variant 1
GET /resource/{id}/rating POST /resource/{id}/rating BODY:4Variant 2:
GET /resource/{id}/rating PUT /resource/{id}/rating BODY:4 DELETE /resource/{id}/ratingVariant 3:
GET /resource/{id}/attributes POST /resource/{id}/attributes BODY:rating=4 POST /resource/{id}/attributes BODY:rating=
Thoughts? Suggestions? How have other APIs handled this? How have you handled it? Have you found that design issues like this have had significant effects on developer happiness or the ease-of-use of your APIs?