action osf_preprint_provider_licenses_list { label: "List all licenses" description: "\nA paginated list of the licenses allowed by a preprint provider.\n#### Returns\nReturns a JSON object containing `data` and `links` keys.\n\nThe `data` key contains an array of 10 preprint providers. Each resource in the array is a separate preprint provider object.\n\nThe `links` key contains a dictionary of links that can be used for [pagination](#tag/Pagination).\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: "/preprint_providers/{preprint_provider_id}/licenses/" encoding: json input: { type: "object" properties: { preprint_provider_id: { type: "string" } } required: ["preprint_provider_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }