action osf_collections_collected_metadata { label: "Retrieve subject data for a specific piece of metadata info for a collection" description: "\n#### Permissions\nIn order to view these subject it must be a public collection or a user must have read permissions for collection.\n\n#### Returns\nReturns a JSON object containing `data` and `links` keys.\n\nThe `data` key contains an array of nodes ids.\nThe `links` key contains a dictionary of links that can be used for [pagination](#tag/Pagination).\n#### Errors\nThis request should never return an error, other then permissions errors." provider: osf method: GET path: "/collections/{collection_id}/collected_metadata/{cgm_id}/subjects/" encoding: json input: { type: "object" properties: { cgm_id: { type: "string" } collection_id: { type: "string" } } required: ["cgm_id", "collection_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }