action osf_nodes_institutions_list { label: "List all institutions" description: "List of all institutions affiliated with this node.\n#### Returns\nReturns a JSON object containing `data` and `links` keys.\n\nThe `data` key contains an array of up to 10 affilited 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: "/nodes/{node_id}/institutions/" encoding: json input: { type: "object" properties: { node_id: { type: "string" } } required: ["node_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }