There is no standard for this. You have options:
1. List of links
Returns a list of links to the resources of collection items (for example, user identifiers).
http://www.example.com/users/ users : [ "jsmith", "mjones", ... ]
Note that in fact they can be interpreted as relative URIs, which somewhat supports "all resources must be accessible following URIs from the root URI".
http://www.example.com/users/ + jsmith = http://www.example.com/users/jsmith
2. List of partial resources
Returns a list of partial resources (users), allowing the caller to specify which fields to include. You can also have a default selection of fields in case the user does not provide any data - by default it can even be “include all fields”.
http://www.example.com/users/?field=id&field=name&field=link users : [ { id : "jsmith", name : "John Smith", link : "www.google.com" }, ... ]
source share