action osf_nodes_forks_list { label: "List all forks of this node" description: "\nA paginated list of the current node's forks. The returned fork nodes are sorted by their `forked_date`, with the most recently forked nodes appearing first.\n\nForking a project creates a copy of an existing node and all of its contents. The fork always points back to the original node, forming a network of nodes.\n#### Returns\nReturns a JSON object containing `data` and `links` keys.\n\nThe `data` key contains an array of up to 10 forked nodes. If the current node has zero forked nodes, the `data` key will contain an empty array. Each resource in the array is a separate node object and contains the full representation of the forked node, meaning additional requests to the forked node's detail view are not necessary.\n\nThe `links` key contains a dictionary of links that can be used for [pagination](#tag/Pagination).\n\nThis request should never return an error." provider: osf method: GET path: "/nodes/{node_id}/forks/" encoding: json input: { type: "object" properties: { node_id: { type: "string" } } required: ["node_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }