action osf_citations_styles_read { label: "Retrieve a citation style" description: "Retrieves the details of a citation style.\n#### Returns\nReturns a JSON object with a `data` key containing the representation of the requested citation style, if the request is successful.\n#### Errors\nIf the request is unsuccessful, an `errors` key containing information about the failure will be returned. Refer to the [list of error codes](#tag/Errors-and-Error-Codes) to understand why this request may have failed." provider: osf method: GET path: "/citations/styles/{style_id}/" encoding: json input: { type: "object" properties: { style_id: { type: "string" } } required: ["style_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }