action microcks_get_latest_test_results { label: "Get latest tests results" provider: microcks method: GET path: "/metrics/tests/latest" encoding: json input: { type: "object" properties: { limit: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { description: "Represents the summary result of a Service or API test run by Microcks. " required: ["id", "testDate", "serviceId", "success"] properties: { id: { type: "string" description: "Unique identifier of TestResult" } serviceId: { type: "string" description: "Unique identifier of service tested" } success: { type: "boolean" description: "Flag telling if test is a success" } testDate: { type: "integer" format: "int64" description: "Timestamp of creation date of this service" } } } } }