action osf_collections_linked_registrations_list { label: "List All Linked Registrations for a Collection" description: "List of all registrations linked to the given collection.\n#### Permissions\nThis returns all public registrations associated with this collection.\n#### Returns\nReturns a JSON object containing `data` and `links` keys.\n\nThe `data` key contains an array of up to 10 nodes. Each resource in the array is a separate node object.\n\nThe `links` key contains a dictionary of links that can be used for [pagination](#tag/Pagination)." provider: osf method: GET path: "/collections/{collection_id}/linked_registrations/" encoding: json input: { type: "object" properties: { collection_id: { type: "string" } } required: ["collection_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }