Skip to content

Commit

Permalink
add two data types
Browse files Browse the repository at this point in the history
  • Loading branch information
rxu17 committed Sep 5, 2024
1 parent 35c8422 commit f42717e
Showing 1 changed file with 32 additions and 3 deletions.
35 changes: 32 additions & 3 deletions src/glue/resources/data_values_expectations.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,40 @@
{
"healthkitv2heartbeat": {
"expectation_suite_name": "healthkitv2heartbeat_expectations",
"fitbitintradaycombined": {
"expectation_suite_name": "fitbitintradaycombined_expectations",
"expectations": [
{
"expectation_type": "expect_column_values_to_be_between",
"kwargs": {
"column": "HealthKitHeartbeatKey"
"column": "Calories",
"min_value": 300,
"max_value": 25000
}
},
{
"expectation_type": "expect_column_values_to_be_between",
"kwargs": {
"column": "Steps",
"min_value": 1,
"max_value": 200000
}
},
{
"expectation_type": "expect_column_values_to_be_between",
"kwargs": {
"column": "BreathingRate",
"min_value": 4,
"max_value": 40
}
}
]
},
"healthkitv2workouts": {
"expectation_suite_name": "healthkitv2workouts_expectations",
"expectations": [
{
"expectation_type": "expect_table_columns_to_contain_set",
"kwargs": {
"column_set": ["HealthKitWorkoutKey"]
}
}
]
Expand Down

0 comments on commit f42717e

Please sign in to comment.