action logoraisr_reports_list { label: "Get user report list." description: "This GET method lists the user's reports." provider: logoraisr method: GET path: "/reports/" encoding: json output: { type: "object" required: ["file_id", "process_id", "report_number", "result_id"] properties: { created: { type: "string" format: "date-time" description: "The Date when the report was created." } file_id: { type: "string" format: "uuid" description: "Id of the file on which the report was applied." } process_id: { type: "integer" description: "Process_id of the process which was applied. Processes are \"color-classification\"." } report_number: { type: "integer" description: "Number of the created report." } result: { type: "object" properties: { colors: { type: "array" items: { type: "object" properties: { blue: { type: "integer" description: "RGB-Blue color value" } green: { type: "integer" description: "RGB-Green color value." } hex: { type: "string" description: "Hex-label of this color." } number_of_pixel: { type: "integer" description: "Number of pixels that holds this color." } percentage: { type: "string" format: "decimal" description: "Percentage of pixels that holds this color." } red: { type: "integer" description: "RGB-Red color value." } } } } height: { type: "integer" description: "Height of image." } number_of_pixel_in_image: { type: "integer" description: "Number of pixel in image." } width: { type: "integer" description: "Width of image." } } } result_id: { type: "integer" description: "Result_id of the result which was created." } } } }