action truora_list_check_details { label: "List Check Details" description: "Lists all details associated with a Check. It can be paginated." provider: truora method: GET path: "/v1/checks/{check_id}/details" encoding: json input: { type: "object" properties: { lang: { type: "string" } start_key: { type: "string" } } additionalProperties: false } output: { type: "object" description: "Represents a list of background check details" required: ["details", "self"] properties: { details: { type: "array" description: "Detail list" items: { type: "object" description: "Represents background check details" required: ["check_id", "result", "group", "tables", "score", "database_name", "id", "data_set"] properties: { check_id: { type: "string" description: "Associated background check ID" } data_set: { type: "string" description: "Details dataset" } database_name: { type: "string" description: "Database name. Do not use this field to identify the database as its value may vary as the check is completed" } group: { description: "table group type" enum: ["profile", "legal", "affiliations", "vehicle", "global", "media", "unknown"] type: "object" } id: { type: "string" description: "Detail ID" } result: { description: "Database result" enum: ["pending", "found", "not_found", "error"] type: "object" } score: { type: "number" description: "Partial detail score. Scores are aggregated later in the background check" } tables: { type: "array" description: "Query detailed information" items: { type: "object" description: "Represents a table to lay out search results" required: ["rows", "title"] properties: { rows: { type: "array" description: "Table rows" items: { type: "object" description: "A table row, containing one or more cells" required: ["cells"] properties: { cells: { type: "array" description: "Row cells" items: { type: "object" additionalProperties: true } } } } } title: { type: "string" description: "Table title" } } } } } } } next: { type: "string" description: "Next page path" } self: { type: "string" description: "Current page path" } } } }