action osf_registrations_citations_list { label: "List all citation styles" description: "\nA paginated list of the registration's alternative citation styles\n\n#### Returns\nReturns a JSON object containing `data` and `links` keys.\n\nThe `data` key contains an array of up to 10 citation styles. Each resource in the array is a separate citation styles object.\n\nThe `links` key contains a dictionary of links that can be used for [pagination](#tag/Pagination).\n#### Filtering\nYou can optionally request that the response only include citation styles that match your filters by utilizing the `filter` query parameter, e.g. https://api.osf.io/v2/registrations/wucr8/citations/?filter[title]=open.\n\nCitation styles may be filtered by their `id`, `title`, `short-title`, and `summary`." provider: osf method: GET path: "/registrations/{registration_id}/citations/" encoding: json input: { type: "object" properties: { registration_id: { type: "string" } } required: ["registration_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }