action osf_taxonomies_read { label: "Retrieve a taxonomy" description: "Retrieves the details of a taxonomy.\n#### Returns\n\nReturns a JSON object with a `data` key containing the representation of the requested taxonomy, if the request is successful.\n\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: "/taxonomies/{taxonomy_id}/" encoding: json input: { type: "object" properties: { taxonomy_id: { type: "string" } } required: ["taxonomy_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }