action osf_registrations_institutions_list { label: "List all institutions" description: "A paginated list of institutions affiliated with the registration.\n#### Returns\nReturns a JSON object containing `data` and `links` keys.\n\nThe `data` key contains an array of up to 10 affiliated institutions. Each resource in the array is a separate institution object.\n\nThe `links` key contains a dictionary of links that can be used for [pagination](#tag/Pagination)." provider: osf method: GET path: "/registrations/{registration_id}/institutions/" encoding: json input: { type: "object" properties: { registration_id: { type: "string" } } required: ["registration_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }