action osf_nodes_citation_read { label: "Retrieve a styled citation" description: "The citation for a node in a specific style.\n#### Returns\nReturns a JSON object with a `data` key that contains the representation of the node citation, in the requested style." provider: osf method: GET path: "/nodes/{node_id}/citation/{style_id}/" encoding: json input: { type: "object" properties: { node_id: { type: "string" } style_id: { type: "string" } } required: ["node_id", "style_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }