action flat_list_collection_scores { label: "List the scores contained in a collection" description: "Use this method to list the scores contained in a collection.\nIf no sort option is provided, the scores are sorted by `modificationDate` `desc`.\n" provider: flat method: GET path: "/collections/{collection}/scores" encoding: json input: { type: "object" properties: { direction: { type: "string" enum: ["asc", "desc"] } limit: { type: "integer" } next: { type: "string" } previous: { type: "string" } sort: { type: "string" enum: ["creationDate", "modificationDate", "title"] } } additionalProperties: false } output: { type: "array" items: { description: "The score and all its details" type: "object" } } }