2023-08-27 10:55:55 +02:00
---
2025-08-12 13:29:42 +05:30
title: basic
2023-08-27 10:55:55 +02:00
slug: /main-concepts/metadata-standard/schemas/tests/basic
---
# Basic
*This schema defines basic types that are used by other test schemas.*
## Definitions
2025-01-15 17:46:55 +05:30
- **`columnTestSummaryDefinition` ** *(object)* : Schema to capture test case execution summary at the column level.
- **`success` ** *(integer)* : Number of test cases that passed.
- **`failed` ** *(integer)* : Number of test cases that failed.
- **`aborted` ** *(integer)* : Number of test cases that aborted.
- **`queued` ** *(integer)* : Number of test cases that are queued for execution.
- **`total` ** *(integer)* : Total number of test cases.
2025-08-12 13:29:42 +05:30
- **`entityLink` **: Refer to *../type/basic.json#/definitions/entityLink* .
2023-08-27 10:55:55 +02:00
- **`testSummary` ** *(object)* : Schema to capture test case execution summary.
- **`success` ** *(integer)* : Number of test cases that passed.
- **`failed` ** *(integer)* : Number of test cases that failed.
- **`aborted` ** *(integer)* : Number of test cases that aborted.
2025-01-15 17:46:55 +05:30
- **`queued` ** *(integer)* : Number of test cases that are queued for execution.
2023-08-27 10:55:55 +02:00
- **`total` ** *(integer)* : Total number of test cases.
2025-01-15 17:46:55 +05:30
- **`columnTestSummary` ** *(array)*
2025-08-12 13:29:42 +05:30
- **Items**: Refer to *#/definitions/columnTestSummaryDefinition* .
2023-08-27 10:55:55 +02:00
- **`testResultValue` ** *(object)* : Schema to capture test case result values.
- **`name` ** *(string)* : name of the value.
- **`value` ** *(string)* : test result value.
2025-01-15 17:46:55 +05:30
- **`predictedValue` ** *(string)* : predicted value.
2025-08-12 13:29:42 +05:30
- **`testCaseStatus` ** *(string)* : Status of Test Case run. Must be one of: `['Success', 'Failed', 'Aborted', 'Queued']` .
2025-01-15 17:46:55 +05:30
- **`testCaseResult` ** *(object)* : Schema to capture test case result.
2025-08-12 13:29:42 +05:30
- **`id` **: Unique identifier of this failure instance. Refer to *../type/basic.json#/definitions/uuid* .
- **`testCaseFQN` **: Fully qualified name of the test case. Refer to *../type/basic.json#/definitions/fullyQualifiedEntityName* .
- **`timestamp` **: Data one which test case result is taken. Refer to *../type/basic.json#/definitions/timestamp* .
- **`testCaseStatus` **: Status of Test Case run. Refer to *#/definitions/testCaseStatus* .
2023-08-27 10:55:55 +02:00
- **`result` ** *(string)* : Details of test case results.
- **`sampleData` ** *(string)* : sample data to capture rows/columns that didn't match the expressed testcase.
- **`testResultValue` ** *(array)*
2025-08-12 13:29:42 +05:30
- **Items**: Refer to *#/definitions/testResultValue* .
2025-01-15 17:46:55 +05:30
- **`passedRows` ** *(integer)* : Number of rows that passed.
- **`failedRows` ** *(integer)* : Number of rows that failed.
- **`passedRowsPercentage` ** *(number)* : Percentage of rows that passed.
- **`failedRowsPercentage` ** *(number)* : Percentage of rows that failed.
2025-08-12 13:29:42 +05:30
- **`incidentId` **: Incident State ID associated with this result. This association happens when the result is created, and will stay there even when the incident is resolved. Refer to *../type/basic.json#/definitions/uuid* .
2025-01-15 17:46:55 +05:30
- **`maxBound` ** *(number)* : Upper bound limit for the test case result as defined in the test definition.
- **`minBound` ** *(number)* : Lower bound limit for the test case result as defined in the test definition.
2025-08-12 13:29:42 +05:30
- **`testCase` **: Test case that this result is for. Refer to *../type/entityReference.json* .
- **`testDefinition` **: Test definition that this result is for. Refer to *../type/entityReference.json* .
- **`testSuiteExecutionFrequency` ** *(string)* : How often the test case should run. Must be one of: `['Hourly', 'Daily', 'Weekly']` .
2023-08-27 10:55:55 +02:00
2025-08-12 13:29:42 +05:30
Documentation file automatically generated at 2025-08-12 05:39:47.683420+00:00.