action osf_nodes_draft_registrations_subjects { label: "Retrieve Subjects associated with a Draft Registration" description: "This retrieves a list of subjects associated with a Draft Registration. Subjects are formatted here in a flat paginated list, but are hierarchical and nested by specificity of subject matter." provider: osf method: GET path: "/draft_registrations/{draft_id}/subjects/" encoding: json input: { type: "object" properties: { draft_id: { type: "string" } } required: ["draft_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }