Introduction

A breakdown of key endpoints and data structures used by the API

This section will describe the schema of key objects used for the request and returned in the response by the Health Scoring API as well as ways to present the scores to users. Sub sections provide information about other endpoints for generating scores and related output.

Default Health Scoring Endpoint

The default health scoring endpoint on the API allows you to generate point in time scores for more than one user in a batch. Full details of the endpoint and its definition, along with tools for testing it can be found under the API Reference page.

Request

When sending user data for scoring the key object used will be the Predictors object. This is where you able to specify the predictors and biomarkers for a user. This is specified in an array of predictorobjects using the observation_code parameter. The list of possible biomarkers and predictors that are supported by the API can be found on the next page. We support the use of LOINCs for specifying biomarkers and predictors to be used for scoring (where a mapping is available), as well as our own observation codes.

Mode of operation

The API supports 3 different modes when submitting a request. This is specified in the mode property in the scoring_event_metadata node of the input request object sent to the API. These are:

  1. score - Simply take the input biomarker data and generate scores for the data.
  2. validate - This option will only validate the input biomarker data to ensure the values are in the correct range for the given unit for the biomarker, and the gender of the user. No scores will be generated when using this option.
  3. validate_and_score - This is a combination of the previous 2 options. This will validate each biomarker and generate scores based on the input data. The validations will be returned alongside each scoring event result for a user.
{
 "scoring_event_metadata": {
  "event_id": "JSUHD79SH_20260128113614", // Unique identifier for the scoring event. This could correspond to a lab test or panel.
  "event_asof_dtutc": "2026-01-17T21:21:51.632Z", // Date of the event or date of the lab test.
  "mode": "validate_and_score"
 },
 "user_data": [
  {
   "uid_ext": "JSUHD79SH", //An ID for the user as it may exist in your system
   "predictors": [
    {
     "id": "6b0ca208-86a7-440d-b0c1-0818ad53002e",  //A unique ID for this biomarker in this scoring event. For example this ID coulbe for the instance of the biomarker included in the lab test for this user.
     "observation_code": "30525-0",
     "value": "28",
     "unit": "a"
    },
    {
     "id": "aa653593-7071-4266-b010-953cefff9eb3",
     "observation_code": "46098-0",
     "value": "male",
     "unit": ""
    },
    {
     "id": "c40aa00e-2e3d-4e7e-9718-95a25c2df8e9",
     "observation_code": "8302-2",
     "value": "78",
     "unit": "inches"
    },
    {
     "id": "1f796753-f375-494a-8539-b0f140ff4f56",
     "observation_code": "29463-7",
     "value": "210",
     "unit": "lbs"
    },
    {
     "id": "8835a752-bc03-473c-a4ba-37387c045f14",
     "observation_code": "64219-9",
     "value": "0",
     "unit": "{pack}/d.a"
    },
    {
     "id": "0dd946b0-d10a-477a-8a43-dc313e0ef0a9",
     "observation_code": "4548-4",
     "value": "5.4",
     "unit": "%"
    },
    {
     "id": "a624e601-d519-40d9-b972-b45e15d2a43e",
     "observation_code": "2885-2",
     "value": "8.1",
     "unit": "g/dL"
    },
    {
     "id": "3197ae19-9438-40d5-aded-67228b498a9e",
     "observation_code": "2571-8",
     "value": "40",
     "unit": "mg/dL"
    },
    {
     "id": "3d9b1dcd-3c70-4c36-9f7b-fc8e2e57bd49",
     "observation_code": "10835-7",
     "value": "6.2",
     "unit": "mg/dL"
    },
    {
     "id": "29ebacd2-baf0-4b86-b66d-92ece13264e3",
     "observation_code": "1751-7",
     "value": "4.8",
     "unit": "g/dL"
    },
    {
     "id": "f644ac87-420c-4656-8f07-daa6350bca0c",
     "observation_code": "17861-6",
     "value": "9.6",
     "unit": "mg/dL"
    },
    {
     "id": "0dfe36d5-a8d3-4a36-9d6d-7dcec20e647d",
     "observation_code": "2160-0",
     "value": "0.83",
     "unit": "mg/dL"
    },
    {
     "id": "c6f4d776-d8e8-486a-9ed0-2d6260c0a583",
     "observation_code": "2498-4",
     "value": "106",
     "unit": "ug/dL"
    },
    {
     "id": "bd9d03b9-1be7-4e51-a3c9-5fd7dee92ea8",
     "observation_code": "2086-7",
     "value": "76",
     "unit": "mg/dL"
    },
    {
     "id": "852a0141-90a0-4397-9480-081786fedc54",
     "observation_code": "1975-2",
     "value": "0.7",
     "unit": "mg/dL"
    },
    {
     "id": "aed5cd82-513a-47d8-b8ae-7109dc8a8065",
     "observation_code": "13457-7",
     "value": "80",
     "unit": "mg/dL"
    }
   ]
  }
 ]
}

Response

The response from the scoring event is made up of key objects that provide information about a user's health across different health domains.


1. scoring_event_metadata

Contains information about the request being sent.

FieldDescription
event_idA unique identifier to track the event. Passed back in the output as-is.
event_asof_dtutcA datetime for when the event was sent.
modeScoring behavior mode.

2. user_data

An array of scoring events. Each entry contains the following properties:

uid_ext

The ID for the user being scored — an ID from your system used to track the user.


scoring_predictors

An array of predictor metadata objects used to score upon. Returned every time, including both given predictors (provided in the request) and sideways imputed predictors. Predictors are returned as LOINCs (matching the input format).

FieldDescription
predictor_codeThe code of the predictor.
valuesThe value of the predictor.
imputation_codeWhere the predictor came from: GIVEN, FORWARD, BACKWARD, or SIDEWAYS.
percentilesThe percentile for the predictor — what percentage of predictors for people in the same sex/age group this person's predictor is higher than.

disease_scores

An array of objects containing scores associated with a particular health domain. See the default list of health domains.

FieldDescription
disease_codeThe code for the health domain.
age_to_scoreThe age the disease was scored at.
info_ratioThe information ratio for the disease.
score_percentileThe percentage of people in the same sex/age group that this user has a higher Volo Score than.

health_score

The Volo Score for the user for the particular health domain.

FieldDescription
health_scoreThe Volo Score for the disease.
min_scoreThe minimum score for the disease (currently varies by gender only).
max_scoreThe maximum score for the disease (currently varies by gender only).

risk_ratios

The risk ratios for the user, associated with the health domain as calculated by the model.

FieldDescription
your_risk_fracThe user's risk for the health domain.
peer_risk_fracThe average risk of people within the user's sex/age group for the health domain.
risk_ratioThe risk ratio for the health domain.

disease_age

The Volo Age for the disease.

FieldDescription
disease_ageThe biological age for the disease.
disease_age_deltaThe difference between disease_age and the age the model scored at.

predictor_attributions

An array of objects containing details about the attribution of the score to a particular predictor.

FieldDescription
predictor_codeThe code of the predictor.
multiplierThe multiplier on the health score. Values > 1 indicate the predictor is decreasing risk; values < 1 indicate the predictor is increasing risk. The product of all attributions equals the inverse of risk_ratio.
score_attributionThe portion of the score attributed to this predictor. All values sum to health_score.
risk_attributionThe portion of the risk ratio attributed to this predictor. All values sum to risk_ratio.

errors

A list of any errors or issues encountered during scoring for a particular user. Returned as an array of strings.


3. Validations

An array of objects returning validation information for each biomarker/predictor sent in the request.

FieldDescription
idThe ID of the predictor that was validated.
obs_codeThe observation code validated (internal codes mapping to input predictor/biomarker codes). See the full list.
obs_code_extExtended observation code (e.g. the associated LOINC), if available.
qa_statusStatus of the validation process: PASS, FLAGGED, or FAIL.
messageAdditional information about the validation result.
validated_valueThe converted, acceptable value for the predictor based on the preferred UCUM unit.
validated_unitThe preferred UCUM unit the converted value conforms to.

return_code Values

CodeDescription
valid_entryEntry passes all validation checks.
invalid_codeLOINC or observation code not found in database.
invalid_valueValue format or content is invalid (used by custom validators).
invalid_ucum_unitUnit doesn't match expected unit for biomarker.
not_pref_unitValue provided in a non-preferred but convertible unit; conversion succeeded.
invalid_unit_dimensionUnit doesn't match expected unit and conversion failed (incompatible or invalid unit).
value_over_implausible_maximumValue is below the implausible lower threshold.
value_under_implausible_minimumValue is above the implausible upper threshold.
value_over_borderline_maximumValue is below the borderline lower threshold.
value_under_borderline_minimumValue is above the borderline upper threshold.
value_over_unusual_maximumValue is below the unusual lower threshold.
value_under_unusual_minimumValue is above the unusual upper threshold.

severity Levels

LevelDescription
IMPLAUSIBLEEntry is definitely wrong (most severe).
BORDERLINEEntry is questionable with low confidence (moderate severity).
UNUSUALEntry is uncommon but potentially valid (least severe).
NoneEntry passed; no severity level needed.
{
    "scoring_event_metadata": {
        "event_id": "SPOT1WJOQH_1768684911632",
        "event_asof_dtutc": "2026-01-17T21:21:51.632Z",
        "product_version": "4.3.0"
    },
    "scoring_results": [
        {
            "uid_ext": "SPOT1WJOQH",
            "data": [
                {
                    "scoring_predictors": [
                        {
                            "predictor_code": "srSmoke__Pack_years_of_smoking",
                            "value": 0.0,
                            "imputation_code": "GIVEN",
                            "percentile": 59.60410557184751
                        },
                        {
                            "predictor_code": "41909-3",
                            "value": 24.265285996055226,
                            "imputation_code": "GIVEN",
                            "percentile": 21.901236452450007
                        },
                        {
                            "predictor_code": "8302-2",
                            "value": 78.0,
                            "imputation_code": "GIVEN",
                            "percentile": 99.58784918333079
                        },
                        {
                            "predictor_code": "8462-4",
                            "value": 71.06679400032827,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 40.24121913454486
                        },
                        {
                            "predictor_code": "8480-6",
                            "value": 119.67778583214007,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 49.92054113524306
                        },
                        {
                            "predictor_code": "pm__grip_strength_mean_lbs",
                            "value": 104.92213163888103,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 68.78127028988274
                        },
                        {
                            "predictor_code": "40443-4",
                            "value": 64.85154564239221,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 45.11449759595795
                        },
                        {
                            "predictor_code": "1751-7",
                            "value": 4.8,
                            "imputation_code": "GIVEN",
                            "percentile": 70.74458722055977
                        },
                        {
                            "predictor_code": "6768-6",
                            "value": 78.32361224268618,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 50.9687880016214
                        },
                        {
                            "predictor_code": "1742-6",
                            "value": 23.055872833565854,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 39.33760857212436
                        },
                        {
                            "predictor_code": "1884-6",
                            "value": 53.13061480463352,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 0.765703054622881
                        },
                        {
                            "predictor_code": "1920-8",
                            "value": 25.677798707107822,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 45.38492871690428
                        },
                        {
                            "predictor_code": "3094-0",
                            "value": 14.45137291812994,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 52.15256644349767
                        },
                        {
                            "predictor_code": "17861-6",
                            "value": 9.6,
                            "imputation_code": "GIVEN",
                            "percentile": 53.590770992030286
                        },
                        {
                            "predictor_code": "2160-0",
                            "value": 0.83,
                            "imputation_code": "GIVEN",
                            "percentile": 30.266039419255414
                        },
                        {
                            "predictor_code": "1988-5",
                            "value": 1.069482469810572,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 50.780551264330434
                        },
                        {
                            "predictor_code": "33863-2",
                            "value": 0.8914020156971584,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 62.52077674626019
                        },
                        {
                            "predictor_code": "2324-2",
                            "value": 26.081394886274428,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 36.285807027509534
                        },
                        {
                            "predictor_code": "4548-4",
                            "value": 5.4,
                            "imputation_code": "GIVEN",
                            "percentile": 69.72225630956763
                        },
                        {
                            "predictor_code": "2086-7",
                            "value": 76.0,
                            "imputation_code": "GIVEN",
                            "percentile": 98.06573845611561
                        },
                        {
                            "predictor_code": "2484-4",
                            "value": 189.45185241694236,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 56.837641686373644
                        },
                        {
                            "predictor_code": "13457-7",
                            "value": 80.0,
                            "imputation_code": "GIVEN",
                            "percentile": 7.2195121951219505
                        },
                        {
                            "predictor_code": "43583-4",
                            "value": 38.899797186371984,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 64.92955612785941
                        },
                        {
                            "predictor_code": "13967-5",
                            "value": 40.73939455564831,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 77.00594024292934
                        },
                        {
                            "predictor_code": "1975-2",
                            "value": 0.7,
                            "imputation_code": "GIVEN",
                            "percentile": 75.76276019389792
                        },
                        {
                            "predictor_code": "2986-8",
                            "value": 564.9862336650463,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 73.96974652493867
                        },
                        {
                            "predictor_code": "2885-2",
                            "value": 8.1,
                            "imputation_code": "GIVEN",
                            "percentile": 95.93725213712875
                        },
                        {
                            "predictor_code": "2571-8",
                            "value": 40.0,
                            "imputation_code": "GIVEN",
                            "percentile": 0.40196516301920504
                        },
                        {
                            "predictor_code": "3084-1",
                            "value": 5.196631280059059,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 28.246845457865057
                        },
                        {
                            "predictor_code": "14635-7",
                            "value": 41.61055142150268,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 71.25589622641509
                        },
                        {
                            "predictor_code": "6690-2",
                            "value": 5.822673672262803,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 35.287553305966284
                        },
                        {
                            "predictor_code": "789-8",
                            "value": 4.853367372418893,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 51.41684269259894
                        },
                        {
                            "predictor_code": "30350-3",
                            "value": 15.122401112344287,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 50.10561555936391
                        },
                        {
                            "predictor_code": "20570-8",
                            "value": 43.60129333093285,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 50.04184767446495
                        },
                        {
                            "predictor_code": "30428-7",
                            "value": 89.59648551762287,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 43.995855087481566
                        },
                        {
                            "predictor_code": "785-6",
                            "value": 31.067829004505402,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 42.9157865370053
                        },
                        {
                            "predictor_code": "28540-3",
                            "value": 34.697917583819034,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 53.429516559722614
                        },
                        {
                            "predictor_code": "788-0",
                            "value": 13.124054403810012,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 48.75054800526085
                        },
                        {
                            "predictor_code": "29463-7",
                            "value": 210.0,
                            "imputation_code": "GIVEN",
                            "percentile": 76.60280873149138
                        },
                        {
                            "predictor_code": "bl__AST_ALT_Ratio",
                            "value": 1.1137205211214056,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 61.39993481095176
                        },
                        {
                            "predictor_code": "bl__BUN_creat_ratio",
                            "value": 17.41129267244571,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 65.64275279987015
                        },
                        {
                            "predictor_code": "bl__LDL_ApoB_ratio",
                            "value": 1.7783922170717612,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 99.79477918240026
                        },
                        {
                            "predictor_code": "1869-7",
                            "value": 176.32270832334947,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 95.0954038690345
                        },
                        {
                            "predictor_code": "2339-0",
                            "value": 85.7442385345538,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 44.485569508702355
                        },
                        {
                            "predictor_code": "704-7",
                            "value": 24.966308749285176,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 57.97396582015652
                        },
                        {
                            "predictor_code": "30180-4",
                            "value": 0.5109687423993962,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 66.39514454559975
                        },
                        {
                            "predictor_code": "26449-9",
                            "value": 174.26475019921654,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 54.74365117393387
                        },
                        {
                            "predictor_code": "26450-7",
                            "value": 2.9555012164866117,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 63.228717457275195
                        },
                        {
                            "predictor_code": "731-0",
                            "value": 1706.8993098761314,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 41.03977000479156
                        },
                        {
                            "predictor_code": "736-9",
                            "value": 29.406688180909338,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 51.81280945535857
                        },
                        {
                            "predictor_code": "742-7",
                            "value": 440.8207987221936,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 47.45647660118192
                        },
                        {
                            "predictor_code": "5905-5",
                            "value": 7.410427622835616,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 55.99744449768408
                        },
                        {
                            "predictor_code": "751-8",
                            "value": 3546.980115963049,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 41.19549592716819
                        },
                        {
                            "predictor_code": "23761-0",
                            "value": 59.68521370560717,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 48.714262897300756
                        },
                        {
                            "predictor_code": "777-3",
                            "value": 225.54343377944326,
                            "imputation_code": "SIDEWAYS",
                            "percentile": 38.83065641066518
                        }
                    ],
                    "disease_scores": [
                        {
                            "disease_code": "Liver",
                            "age_to_score": 0.0,
                            "info_ratio": 0.0,
                            "health_score": {
                                "health_score": 229.02287715399174,
                                "max_score": 250.0
                            },
                            "risk_ratios": {
                                "your_risk_frac": 0.003741230801645124,
                                "peer_risk_frac": 0.01022945109568367,
                                "risk_ratio": 0.36573133461909224
                            },
                            "disease_age": {
                                "disease_age": 21.0,
                                "disease_age_delta": -7.0
                            },
                            "predictor_attributions": [
                                {
                                    "predictor_code": "30525-0",
                                    "score_attribution": -36.0632908432867,
                                    "risk_attribution": 0.788130523071485
                                },
                                {
                                    "predictor_code": "srSmoke__Pack_years_of_smoking",
                                    "score_attribution": 5.254817680861311,
                                    "risk_attribution": -0.1148392759124328
                                },
                                {
                                    "predictor_code": "63632-4",
                                    "score_attribution": -0.0,
                                    "risk_attribution": 0.0
                                },
                                {
                                    "predictor_code": "8302-2",
                                    "score_attribution": 4.737047221014627,
                                    "risk_attribution": -0.10352387197097873
                                },
                                {
                                    "predictor_code": "pm__grip_strength_mean_lbs",
                                    "score_attribution": 12.921887367771593,
                                    "risk_attribution": -0.28239613224671783
                                },
                                {
                                    "predictor_code": "40443-4",
                                    "score_attribution": 4.09475183536255,
                                    "risk_attribution": -0.08948708868184067
                                },
                                {
                                    "predictor_code": "1751-7",
                                    "score_attribution": 3.505055283914883,
                                    "risk_attribution": -0.0765998052232814
                                },
                                {
                                    "predictor_code": "6768-6",
                                    "score_attribution": 2.4426874980080395,
                                    "risk_attribution": -0.05338272050299113
                                },
                                {
                                    "predictor_code": "1742-6",
                                    "score_attribution": 1.58161655325476,
                                    "risk_attribution": -0.03456479573181372
                                },
                                {
                                    "predictor_code": "1920-8",
                                    "score_attribution": -0.50355269953141,
                                    "risk_attribution": 0.011004687680897714
                                },
                                {
                                    "predictor_code": "3094-0",
                                    "score_attribution": 1.0274075232803448,
                                    "risk_attribution": -0.02245305987878949
                                },
                                {
                                    "predictor_code": "17861-6",
                                    "score_attribution": -0.043967792451696505,
                                    "risk_attribution": 0.0009608762387724441
                                },
                                {
                                    "predictor_code": "2160-0",
                                    "score_attribution": 0.9033605366478139,
                                    "risk_attribution": -0.01974212545838461
                                },
                                {
                                    "predictor_code": "1988-5",
                                    "score_attribution": 2.676696993290948,
                                    "risk_attribution": -0.05849678584778883
                                },
                                {
                                    "predictor_code": "33863-2",
                                    "score_attribution": 1.7149241759346032,
                                    "risk_attribution": -0.03747811295648511
                                },
                                {
                                    "predictor_code": "2324-2",
                                    "score_attribution": -3.8378541882945343,
                                    "risk_attribution": 0.08387282353229071
                                },
                                {
                                    "predictor_code": "4548-4",
                                    "score_attribution": 3.369813620484097,
                                    "risk_attribution": -0.07364422129157805
                                },
                                {
                                    "predictor_code": "2086-7",
                                    "score_attribution": 6.429169146611463,
                                    "risk_attribution": -0.14050366242095702
                                },
                                {
                                    "predictor_code": "2484-4",
                                    "score_attribution": 10.88117870941999,
                                    "risk_attribution": -0.23779829481329473
                                },
                                {
                                    "predictor_code": "43583-4",
                                    "score_attribution": -1.281681093324002,
                                    "risk_attribution": 0.028009978204202566
                                },
                                {
                                    "predictor_code": "13967-5",
                                    "score_attribution": 2.504414143586486,
                                    "risk_attribution": -0.054731700375033096
                                },
                                {
                                    "predictor_code": "1975-2",
                                    "score_attribution": -2.7756185417764496,
                                    "risk_attribution": 0.06065862659853199
                                },
                                {
                                    "predictor_code": "2986-8",
                                    "score_attribution": 1.7977927529623545,
                                    "risk_attribution": -0.03928913057112493
                                },
                                {
                                    "predictor_code": "2885-2",
                                    "score_attribution": -13.148845468213452,
                                    "risk_attribution": 0.2873560957507099
                                },
                                {
                                    "predictor_code": "2571-8",
                                    "score_attribution": 1.2420059161700332,
                                    "risk_attribution": -0.027142913180680673
                                },
                                {
                                    "predictor_code": "3084-1",
                                    "score_attribution": -0.9368830384418692,
                                    "risk_attribution": 0.02047472934049904
                                },
                                {
                                    "predictor_code": "14635-7",
                                    "score_attribution": 1.0945885618090427,
                                    "risk_attribution": -0.02392124056330305
                                },
                                {
                                    "predictor_code": "6690-2",
                                    "score_attribution": 0.016967894645410403,
                                    "risk_attribution": -0.00037081795281582186
                                },
                                {
                                    "predictor_code": "789-8",
                                    "score_attribution": 1.4686024157961155,
                                    "risk_attribution": -0.03209497422670461
                                },
                                {
                                    "predictor_code": "30350-3",
                                    "score_attribution": 0.5453052922530093,
                                    "risk_attribution": -0.011917152738073446
                                },
                                {
                                    "predictor_code": "20570-8",
                                    "score_attribution": 0.7036696006750031,
                                    "risk_attribution": -0.01537806111093521
                                },
                                {
                                    "predictor_code": "30428-7",
                                    "score_attribution": 2.6972686613057615,
                                    "risk_attribution": -0.05894636100007935
                                },
                                {
                                    "predictor_code": "785-6",
                                    "score_attribution": 1.2314641487990745,
                                    "risk_attribution": -0.0269125324129278
                                },
                                {
                                    "predictor_code": "28540-3",
                                    "score_attribution": -0.07798933552498438,
                                    "risk_attribution": 0.0017043862155676106
                                },
                                {
                                    "predictor_code": "788-0",
                                    "score_attribution": 3.2062022233935887,
                                    "risk_attribution": -0.07006864255336086
                                },
                                {
                                    "predictor_code": "13457-7",
                                    "score_attribution": -7.4894068362891755,
                                    "risk_attribution": 0.16367419581950152
                                },
                                {
                                    "predictor_code": "1884-6",
                                    "score_attribution": -2.915409747201823,
                                    "risk_attribution": 0.0637136366454923
                                },
                                {
                                    "predictor_code": "8480-6",
                                    "score_attribution": 0.1563654987412127,
                                    "risk_attribution": -0.0034172261995936634
                                },
                                {
                                    "predictor_code": "8462-4",
                                    "score_attribution": 0.3298032504031215,
                                    "risk_attribution": -0.007207551007488672
                                },
                                {
                                    "predictor_code": "41909-3",
                                    "score_attribution": 10.510420081678166,
                                    "risk_attribution": -0.22969570116799448
                                },
                                {
                                    "predictor_code": "56117-5",
                                    "score_attribution": 2.0177595964536135,
                                    "risk_attribution": -0.044096306493380553
                                },
                                {
                                    "predictor_code": "77233-5",
                                    "score_attribution": 2.0393454246881255,
                                    "risk_attribution": -0.04456804519774131
                                }
                            ]
                        },
                        {
                            "disease_code": "Blood",
                            "age_to_score": 0.0,
                            "info_ratio": 0.0,
                            "health_score": {
                                "health_score": 212.71492002324428,
                                "max_score": 235.0
                            },
                            "risk_ratios": {
                                "your_risk_frac": 0.003324498280850494,
                                "peer_risk_frac": 0.005165409163908386,
                                "risk_ratio": 0.6436079263728695
                            },
                            "disease_age": {
                                "disease_age": 24.8,
                                "disease_age_delta": -3.2
                            },
                            "predictor_attributions": [
                                {
                                    "predictor_code": "30525-0",
                                    "score_attribution": -24.794837084627392,
                                    "risk_attribution": 0.6949853705475768
                                },
                                {
                                    "predictor_code": "srSmoke__Pack_years_of_smoking",
                                    "score_attribution": 1.5575256206734769,
                                    "risk_attribution": -0.0436565691852122
                                },
                                {
                                    "predictor_code": "63632-4",
                                    "score_attribution": -0.0,
                                    "risk_attribution": 0.0
                                },
                                {
                                    "predictor_code": "8302-2",
                                    "score_attribution": 0.8468939167130642,
                                    "risk_attribution": -0.02373796127445548
                                },
                                {
                                    "predictor_code": "pm__grip_strength_mean_lbs",
                                    "score_attribution": 4.564651748760866,
                                    "risk_attribution": -0.12794462719015232
                                },
                                {
                                    "predictor_code": "40443-4",
                                    "score_attribution": 2.326059174885443,
                                    "risk_attribution": -0.06519813346850403
                                },
                                {
                                    "predictor_code": "1751-7",
                                    "score_attribution": 1.1705572986936277,
                                    "risk_attribution": -0.03281006425664872
                                },
                                {
                                    "predictor_code": "6768-6",
                                    "score_attribution": 0.12674443723316992,
                                    "risk_attribution": -0.003552575456523206
                                },
                                {
                                    "predictor_code": "1742-6",
                                    "score_attribution": -0.13624148648617251,
                                    "risk_attribution": 0.0038187724180793175
                                },
                                {
                                    "predictor_code": "1920-8",
                                    "score_attribution": 1.630892617018801,
                                    "risk_attribution": -0.04571300492491829
                                },
                                {
                                    "predictor_code": "3094-0",
                                    "score_attribution": -0.30389031452173776,
                                    "risk_attribution": 0.008517874996430266
                                },
                                {
                                    "predictor_code": "17861-6",
                                    "score_attribution": 0.010167818249904214,
                                    "risk_attribution": -0.00028499824015586135
                                },
                                {
                                    "predictor_code": "2160-0",
                                    "score_attribution": -1.2035720554091802,
                                    "risk_attribution": 0.03373544936207141
                                },
                                {
                                    "predictor_code": "1988-5",
                                    "score_attribution": 0.32938317827283153,
                                    "risk_attribution": -0.00923242566276061
                                },
                                {
                                    "predictor_code": "33863-2",
                                    "score_attribution": 0.21283382464587802,
                                    "risk_attribution": -0.005965612679031496
                                },
                                {
                                    "predictor_code": "2324-2",
                                    "score_attribution": 2.6493040582022607,
                                    "risk_attribution": -0.07425850616798141
                                },
                                {
                                    "predictor_code": "4548-4",
                                    "score_attribution": -1.0340151561832325,
                                    "risk_attribution": 0.028982864618915225
                                },
                                {
                                    "predictor_code": "2086-7",
                                    "score_attribution": 1.7032658520305468,
                                    "risk_attribution": -0.047741586092065774
                                },
                                {
                                    "predictor_code": "2484-4",
                                    "score_attribution": 0.5088850483608783,
                                    "risk_attribution": -0.014263762358837105
                                },
                                {
                                    "predictor_code": "43583-4",
                                    "score_attribution": -0.9517645468267882,
                                    "risk_attribution": 0.026677426191300264
                                },
                                {
                                    "predictor_code": "13967-5",
                                    "score_attribution": 0.8077750940672274,
                                    "risk_attribution": -0.022641482626134066
                                },
                                {
                                    "predictor_code": "1975-2",
                                    "score_attribution": 0.3064803074877236,
                                    "risk_attribution": -0.008590471045964193
                                },
                                {
                                    "predictor_code": "2986-8",
                                    "score_attribution": -7.930527354608479,
                                    "risk_attribution": 0.22228823175440088
                                },
                                {
                                    "predictor_code": "2885-2",
                                    "score_attribution": -3.625648112197796,
                                    "risk_attribution": 0.10162488215311351
                                },
                                {
                                    "predictor_code": "2571-8",
                                    "score_attribution": 0.5425044205140249,
                                    "risk_attribution": -0.015206094495712391
                                },
                                {
                                    "predictor_code": "3084-1",
                                    "score_attribution": 0.6226488717784996,
                                    "risk_attribution": -0.017452498493821585
                                },
                                {
                                    "predictor_code": "14635-7",
                                    "score_attribution": 0.0966108489998215,
                                    "risk_attribution": -0.002707947886968983
                                },
                                {
                                    "predictor_code": "6690-2",
                                    "score_attribution": 0.39120320493690514,
                                    "risk_attribution": -0.010965206321562743
                                },
                                {
                                    "predictor_code": "789-8",
                                    "score_attribution": 2.599783081046854,
                                    "risk_attribution": -0.07287046096563699
                                },
                                {
                                    "predictor_code": "30350-3",
                                    "score_attribution": 8.3128766010228,
                                    "risk_attribution": -0.23300526658672865
                                },
                                {
                                    "predictor_code": "20570-8",
                                    "score_attribution": 6.362469485931179,
                                    "risk_attribution": -0.17833644956752015
                                },
                                {
                                    "predictor_code": "30428-7",
                                    "score_attribution": -0.23479470978183975,
                                    "risk_attribution": 0.00658116396665144
                                },
                                {
                                    "predictor_code": "785-6",
                                    "score_attribution": 0.8216097645487461,
                                    "risk_attribution": -0.02302926067678974
                                },
                                {
                                    "predictor_code": "28540-3",
                                    "score_attribution": -0.9598509365706932,
                                    "risk_attribution": 0.026904083158368796
                                },
                                {
                                    "predictor_code": "788-0",
                                    "score_attribution": 4.40975564931533,
                                    "risk_attribution": -0.12360297643834026
                                },
                                {
                                    "predictor_code": "13457-7",
                                    "score_attribution": -6.863604010296228,
                                    "risk_attribution": 0.19238296908774552
                                },
                                {
                                    "predictor_code": "1884-6",
                                    "score_attribution": 9.68624554308542,
                                    "risk_attribution": -0.27150002740488655
                                },
                                {
                                    "predictor_code": "8480-6",
                                    "score_attribution": 1.2994530010366923,
                                    "risk_attribution": -0.03642293846707958
                                },
                                {
                                    "predictor_code": "8462-4",
                                    "score_attribution": 0.0734229442475749,
                                    "risk_attribution": -0.0020580039280125697
                                },
                                {
                                    "predictor_code": "41909-3",
                                    "score_attribution": -0.005940609818976882,
                                    "risk_attribution": 0.00016651195981763254
                                },
                                {
                                    "predictor_code": "56117-5",
                                    "score_attribution": -0.5896183880917065,
                                    "risk_attribution": 0.016526672570219777
                                },
                                {
                                    "predictor_code": "77233-5",
                                    "score_attribution": -0.24713966746303517,
                                    "risk_attribution": 0.006927186203425039
                                }
                            ]
                        },
                        {
                            "disease_code": "COPD",
                            "age_to_score": 70.0,
                            "info_ratio": 0.0,
                            "health_score": {
                                "health_score": 212.76429171848585,
                                "max_score": 255.0
                            },
                            "risk_ratios": {
                                "your_risk_frac": 0.033879758788244965,
                                "peer_risk_frac": 0.0527305187313129,
                                "risk_ratio": 0.6425075952861087
                            },
                            "disease_age": {
                                "disease_age": 64.6,
                                "disease_age_delta": -5.4
                            },
                            "predictor_attributions": [
                                {
                                    "predictor_code": "30525-0",
                                    "score_attribution": 14.370163610545582,
                                    "risk_attribution": -0.4024684219513745
                                },
                                {
                                    "predictor_code": "srSmoke__Pack_years_of_smoking",
                                    "score_attribution": 12.552491744889645,
                                    "risk_attribution": -0.3515604749563172
                                },
                                {
                                    "predictor_code": "63632-4",
                                    "score_attribution": -0.0,
                                    "risk_attribution": 0.0
                                },
                                {
                                    "predictor_code": "8302-2",
                                    "score_attribution": 8.818130933135874,
                                    "risk_attribution": -0.24697138720225426
                                },
                                {
                                    "predictor_code": "pm__grip_strength_mean_lbs",
                                    "score_attribution": 3.7069153842788856,
                                    "risk_attribution": -0.10382041746018461
                                },
                                {
                                    "predictor_code": "40443-4",
                                    "score_attribution": 2.4229485003571978,
                                    "risk_attribution": -0.06786006658216383
                                },
                                {
                                    "predictor_code": "1751-7",
                                    "score_attribution": 0.39312820467665976,
                                    "risk_attribution": -0.011010430531541118
                                },
                                {
                                    "predictor_code": "6768-6",
                                    "score_attribution": -2.193132289255159,
                                    "risk_attribution": 0.061423551986518936
                                },
                                {
                                    "predictor_code": "1742-6",
                                    "score_attribution": -4.351093874873092,
                                    "risk_attribution": 0.12186207012266431
                                },
                                {
                                    "predictor_code": "1920-8",
                                    "score_attribution": 1.0123126361476962,
                                    "risk_attribution": -0.028352068927928572
                                },
                                {
                                    "predictor_code": "3094-0",
                                    "score_attribution": 2.580018630958297,
                                    "risk_attribution": -0.0722591652502075
                                },
                                {
                                    "predictor_code": "17861-6",
                                    "score_attribution": -1.0422618323674118,
                                    "risk_attribution": 0.02919086283925297
                                },
                                {
                                    "predictor_code": "2160-0",
                                    "score_attribution": 1.6992522779342643,
                                    "risk_attribution": -0.04759134282198453
                                },
                                {
                                    "predictor_code": "1988-5",
                                    "score_attribution": -0.7747699883816171,
                                    "risk_attribution": 0.02169915827335494
                                },
                                {
                                    "predictor_code": "33863-2",
                                    "score_attribution": -8.90544330232458,
                                    "risk_attribution": 0.24941676447119684
                                },
                                {
                                    "predictor_code": "2324-2",
                                    "score_attribution": -1.9517401819985651,
                                    "risk_attribution": 0.054662828649466436
                                },
                                {
                                    "predictor_code": "4548-4",
                                    "score_attribution": -5.637242812254103,
                                    "risk_attribution": 0.15788353426537632
                                },
                                {
                                    "predictor_code": "2086-7",
                                    "score_attribution": -1.843158815014133,
                                    "risk_attribution": 0.05162176574942556
                                },
                                {
                                    "predictor_code": "2484-4",
                                    "score_attribution": 0.10251863400824027,
                                    "risk_attribution": -0.0028712625665324953
                                },
                                {
                                    "predictor_code": "43583-4",
                                    "score_attribution": -0.4652368421624715,
                                    "risk_attribution": 0.013029993448464412
                                },
                                {
                                    "predictor_code": "13967-5",
                                    "score_attribution": -2.1844084526477103,
                                    "risk_attribution": 0.061179221521820204
                                },
                                {
                                    "predictor_code": "1975-2",
                                    "score_attribution": 2.7952421365758395,
                                    "risk_attribution": -0.07828697864331098
                                },
                                {
                                    "predictor_code": "2986-8",
                                    "score_attribution": -0.9197945995471012,
                                    "risk_attribution": 0.02576089535455634
                                },
                                {
                                    "predictor_code": "2885-2",
                                    "score_attribution": -0.2108871085722277,
                                    "risk_attribution": 0.0059063629404098525
                                },
                                {
                                    "predictor_code": "2571-8",
                                    "score_attribution": 0.35716790405142634,
                                    "risk_attribution": -0.010003282259762656
                                },
                                {
                                    "predictor_code": "3084-1",
                                    "score_attribution": 1.4702427121043002,
                                    "risk_attribution": -0.04117742012289177
                                },
                                {
                                    "predictor_code": "14635-7",
                                    "score_attribution": 1.001682394287341,
                                    "risk_attribution": -0.028054345340191623
                                },
                                {
                                    "predictor_code": "6690-2",
                                    "score_attribution": 2.373171227174688,
                                    "risk_attribution": -0.06646594323536315
                                },
                                {
                                    "predictor_code": "789-8",
                                    "score_attribution": -0.6643607406830637,
                                    "risk_attribution": 0.018606901504791388
                                },
                                {
                                    "predictor_code": "30350-3",
                                    "score_attribution": -2.0535618093039347,
                                    "risk_attribution": 0.0575145699916485
                                },
                                {
                                    "predictor_code": "20570-8",
                                    "score_attribution": -1.1145416890070163,
                                    "risk_attribution": 0.031215221129736535
                                },
                                {
                                    "predictor_code": "30428-7",
                                    "score_attribution": 1.8314836617254928,
                                    "risk_attribution": -0.05129477709101731
                                },
                                {
                                    "predictor_code": "785-6",
                                    "score_attribution": -1.156225570341601,
                                    "risk_attribution": 0.032382671020789074
                                },
                                {
                                    "predictor_code": "28540-3",
                                    "score_attribution": -0.7079848899838282,
                                    "risk_attribution": 0.0198286929195506
                                },
                                {
                                    "predictor_code": "788-0",
                                    "score_attribution": -5.013843283762416,
                                    "risk_attribution": 0.14042384269351715
                                },
                                {
                                    "predictor_code": "13457-7",
                                    "score_attribution": -6.378774571863439,
                                    "risk_attribution": 0.17865178194891576
                                },
                                {
                                    "predictor_code": "1884-6",
                                    "score_attribution": 0.18790648383053127,
                                    "risk_attribution": -0.005262739386363475
                                },
                                {
                                    "predictor_code": "8480-6",
                                    "score_attribution": 0.6039251655164295,
                                    "risk_attribution": -0.01691426868402175
                                },
                                {
                                    "predictor_code": "8462-4",
                                    "score_attribution": 0.10831336139716598,
                                    "risk_attribution": -0.0030335568069507365
                                },
                                {
                                    "predictor_code": "41909-3",
                                    "score_attribution": -4.194654857484405,
                                    "risk_attribution": 0.11748064718508248
                                },
                                {
                                    "predictor_code": "56117-5",
                                    "score_attribution": -0.5908741780759559,
                                    "risk_attribution": 0.016548746727387938
                                },
                                {
                                    "predictor_code": "77233-5",
                                    "score_attribution": 0.3255613736700163,
                                    "risk_attribution": -0.009118071015777293
                                }
                            ]
                        },
                        {
                            "disease_code": "Mortality",
                            "age_to_score": 70.0,
                            "info_ratio": 0.0,
                            "health_score": {
                                "health_score": 200.79613760382748,
                                "max_score": 225.0
                            },
                            "risk_ratios": {
                                "your_risk_frac": 0.11622378541293545,
                                "peer_risk_frac": 0.1194752866831407,
                                "risk_ratio": 0.9727851561567831
                            },
                            "disease_age": {
                                "disease_age": 69.7,
                                "disease_age_delta": -0.3
                            },
                            "predictor_attributions": [
                                {
                                    "predictor_code": "30525-0",
                                    "score_attribution": 14.166662896304281,
                                    "risk_attribution": -0.48426743900664143
                                },
                                {
                                    "predictor_code": "srSmoke__Pack_years_of_smoking",
                                    "score_attribution": 0.25209311337636575,
                                    "risk_attribution": -0.008617448392721425
                                },
                                {
                                    "predictor_code": "63632-4",
                                    "score_attribution": -0.0,
                                    "risk_attribution": 0.0
                                },
                                {
                                    "predictor_code": "8302-2",
                                    "score_attribution": -3.2423427346603955,
                                    "risk_attribution": 0.11083492449766663
                                },
                                {
                                    "predictor_code": "pm__grip_strength_mean_lbs",
                                    "score_attribution": 2.8418830418876535,
                                    "risk_attribution": -0.09714577333596054
                                },
                                {
                                    "predictor_code": "40443-4",
                                    "score_attribution": 0.9144615187960864,
                                    "risk_attribution": -0.03125958039793769
                                },
                                {
                                    "predictor_code": "1751-7",
                                    "score_attribution": 0.9332648282583065,
                                    "risk_attribution": -0.031902345076166475
                                },
                                {
                                    "predictor_code": "6768-6",
                                    "score_attribution": -0.78137642944709,
                                    "risk_attribution": 0.02671025386558817
                                },
                                {
                                    "predictor_code": "1742-6",
                                    "score_attribution": -2.937247052407605,
                                    "risk_attribution": 0.1004056578610555
                                },
                                {
                                    "predictor_code": "1920-8",
                                    "score_attribution": 1.3762148539155739,
                                    "risk_attribution": -0.04704396848480495
                                },
                                {
                                    "predictor_code": "3094-0",
                                    "score_attribution": 1.3748700768757802,
                                    "risk_attribution": -0.04699799917376376
                                },
                                {
                                    "predictor_code": "17861-6",
                                    "score_attribution": -0.412911128136757,
                                    "risk_attribution": 0.014114785960799193
                                },
                                {
                                    "predictor_code": "2160-0",
                                    "score_attribution": 0.5781214816513423,
                                    "risk_attribution": -0.01976226944928974
                                },
                                {
                                    "predictor_code": "1988-5",
                                    "score_attribution": -1.1423674947761056,
                                    "risk_attribution": 0.039050225529399456
                                },
                                {
                                    "predictor_code": "33863-2",
                                    "score_attribution": -5.409479990274907,
                                    "risk_attribution": 0.18491546247856977
                                },
                                {
                                    "predictor_code": "2324-2",
                                    "score_attribution": -5.206517229452681,
                                    "risk_attribution": 0.17797746606286216
                                },
                                {
                                    "predictor_code": "4548-4",
                                    "score_attribution": -0.8043337125780164,
                                    "risk_attribution": 0.027495016289155433
                                },
                                {
                                    "predictor_code": "2086-7",
                                    "score_attribution": 0.632420746049339,
                                    "risk_attribution": -0.021618413405169574
                                },
                                {
                                    "predictor_code": "2484-4",
                                    "score_attribution": 0.6141750565095475,
                                    "risk_attribution": -0.020994710179433183
                                },
                                {
                                    "predictor_code": "43583-4",
                                    "score_attribution": -0.8667008159568496,
                                    "risk_attribution": 0.02962694796936849
                                },
                                {
                                    "predictor_code": "13967-5",
                                    "score_attribution": -1.3651204467371296,
                                    "risk_attribution": 0.046664721784934395
                                },
                                {
                                    "predictor_code": "1975-2",
                                    "score_attribution": -0.4725578313254309,
                                    "risk_attribution": 0.016153724588039608
                                },
                                {
                                    "predictor_code": "2986-8",
                                    "score_attribution": -1.1165630452796895,
                                    "risk_attribution": 0.03816813672951239
                                },
                                {
                                    "predictor_code": "2885-2",
                                    "score_attribution": -0.9385915924713886,
                                    "risk_attribution": 0.032084433016180525
                                },
                                {
                                    "predictor_code": "2571-8",
                                    "score_attribution": -2.3366139408323234,
                                    "risk_attribution": 0.0798738600160576
                                },
                                {
                                    "predictor_code": "3084-1",
                                    "score_attribution": 0.021305285978813225,
                                    "risk_attribution": -0.0007282912252366468
                                },
                                {
                                    "predictor_code": "14635-7",
                                    "score_attribution": 1.1962470876852629,
                                    "risk_attribution": -0.040892023605899525
                                },
                                {
                                    "predictor_code": "6690-2",
                                    "score_attribution": 1.2692745672049508,
                                    "risk_attribution": -0.043388365245632825
                                },
                                {
                                    "predictor_code": "789-8",
                                    "score_attribution": 0.4391762838386697,
                                    "risk_attribution": -0.015012623354120246
                                },
                                {
                                    "predictor_code": "30350-3",
                                    "score_attribution": 0.5107052330267746,
                                    "risk_attribution": -0.01745773984285919
                                },
                                {
                                    "predictor_code": "20570-8",
                                    "score_attribution": 0.12310919718615096,
                                    "risk_attribution": -0.004208314694567463
                                },
                                {
                                    "predictor_code": "30428-7",
                                    "score_attribution": 0.6762278774946419,
                                    "risk_attribution": -0.02311589855820293
                                },
                                {
                                    "predictor_code": "785-6",
                                    "score_attribution": -0.37725884297136086,
                                    "risk_attribution": 0.012896062754200912
                                },
                                {
                                    "predictor_code": "28540-3",
                                    "score_attribution": -0.800621975261643,
                                    "risk_attribution": 0.027368135771307124
                                },
                                {
                                    "predictor_code": "788-0",
                                    "score_attribution": -0.24120597546664585,
                                    "risk_attribution": 0.008245286901180069
                                },
                                {
                                    "predictor_code": "13457-7",
                                    "score_attribution": -2.8201608606522823,
                                    "risk_attribution": 0.09640323113293857
                                },
                                {
                                    "predictor_code": "1884-6",
                                    "score_attribution": 2.2455353376612455,
                                    "risk_attribution": -0.07676046611173408
                                },
                                {
                                    "predictor_code": "8480-6",
                                    "score_attribution": -0.9928397847542323,
                                    "risk_attribution": 0.03393883114366091
                                },
                                {
                                    "predictor_code": "8462-4",
                                    "score_attribution": -0.8544396550680586,
                                    "risk_attribution": 0.02920781743549998
                                },
                                {
                                    "predictor_code": "41909-3",
                                    "score_attribution": 0.20335906503424922,
                                    "risk_attribution": -0.006951543517606526
                                },
                                {
                                    "predictor_code": "56117-5",
                                    "score_attribution": -0.17660963540910296,
                                    "risk_attribution": 0.00603715190157977
                                },
                                {
                                    "predictor_code": "77233-5",
                                    "score_attribution": -0.3470894878755668,
                                    "risk_attribution": 0.011864765797700764
                                }
                            ]
                        },
                        {
                            "disease_code": "Dementia",
                            "age_to_score": 70.0,
                            "info_ratio": 0.0,
                            "health_score": {
                                "health_score": 208.70670118261182,
                                "max_score": 235.0
                            },
                            "risk_ratios": {
                                "your_risk_frac": 0.03177823556540058,
                                "peer_risk_frac": 0.04297131964324846,
                                "risk_ratio": 0.7395219841798248
                            },
                            "disease_age": {
                                "disease_age": 68.3,
                                "disease_age_delta": -1.7
                            },
                            "predictor_attributions": [
                                {
                                    "predictor_code": "30525-0",
                                    "score_attribution": 3.837788641669527,
                                    "risk_attribution": -0.11481496258487722
                                },
                                {
                                    "predictor_code": "srSmoke__Pack_years_of_smoking",
                                    "score_attribution": -0.7407249268153265,
                                    "risk_attribution": 0.022160236714075663
                                },
                                {
                                    "predictor_code": "63632-4",
                                    "score_attribution": -0.0,
                                    "risk_attribution": 0.0
                                },
                                {
                                    "predictor_code": "8302-2",
                                    "score_attribution": 6.797135877963095,
                                    "risk_attribution": -0.20334963031553546
                                },
                                {
                                    "predictor_code": "pm__grip_strength_mean_lbs",
                                    "score_attribution": 9.769356637955427,
                                    "risk_attribution": -0.29226943471728617
                                },
                                {
                                    "predictor_code": "40443-4",
                                    "score_attribution": 0.3766167816945967,
                                    "risk_attribution": -0.011267228536142378
                                },
                                {
                                    "predictor_code": "1751-7",
                                    "score_attribution": 0.2288945280143458,
                                    "risk_attribution": -0.006847828039435128
                                },
                                {
                                    "predictor_code": "6768-6",
                                    "score_attribution": -0.32364445541026865,
                                    "risk_attribution": 0.009682457662016487
                                },
                                {
                                    "predictor_code": "1742-6",
                                    "score_attribution": -9.60023199880662,
                                    "risk_attribution": 0.28720973994795573
                                },
                                {
                                    "predictor_code": "1920-8",
                                    "score_attribution": 4.5956572516259815,
                                    "risk_attribution": -0.13748808615182534
                                },
                                {
                                    "predictor_code": "3094-0",
                                    "score_attribution": 1.2310505401643344,
                                    "risk_attribution": -0.03682928762006379
                                },
                                {
                                    "predictor_code": "17861-6",
                                    "score_attribution": -0.06488349781651762,
                                    "risk_attribution": 0.0019411168956242168
                                },
                                {
                                    "predictor_code": "2160-0",
                                    "score_attribution": -0.7412182652513475,
                                    "risk_attribution": 0.022174995899471757
                                },
                                {
                                    "predictor_code": "1988-5",
                                    "score_attribution": -0.03818002288952614,
                                    "risk_attribution": 0.0011422301509662386
                                },
                                {
                                    "predictor_code": "33863-2",
                                    "score_attribution": -2.744872453198124,
                                    "risk_attribution": 0.08211823459801165
                                },
                                {
                                    "predictor_code": "2324-2",
                                    "score_attribution": -2.1957567535738027,
                                    "risk_attribution": 0.06569036313510891
                                },
                                {
                                    "predictor_code": "4548-4",
                                    "score_attribution": -0.04661773537133911,
                                    "risk_attribution": 0.0013946608430535099
                                },
                                {
                                    "predictor_code": "2086-7",
                                    "score_attribution": 0.4299824095458814,
                                    "risk_attribution": -0.012863765796828592
                                },
                                {
                                    "predictor_code": "2484-4",
                                    "score_attribution": -0.5597320548006443,
                                    "risk_attribution": 0.01674548051753454
                                },
                                {
                                    "predictor_code": "43583-4",
                                    "score_attribution": -1.2470352035936862,
                                    "risk_attribution": 0.037307500128602164
                                },
                                {
                                    "predictor_code": "13967-5",
                                    "score_attribution": -1.043074129321023,
                                    "risk_attribution": 0.031205605183913417
                                },
                                {
                                    "predictor_code": "1975-2",
                                    "score_attribution": 0.08050711883627361,
                                    "risk_attribution": -0.0024085281134663826
                                },
                                {
                                    "predictor_code": "2986-8",
                                    "score_attribution": -3.5646605655019155,
                                    "risk_attribution": 0.1066438013318641
                                },
                                {
                                    "predictor_code": "2885-2",
                                    "score_attribution": 0.27042451604577084,
                                    "risk_attribution": -0.00809027895770773
                                },
                                {
                                    "predictor_code": "2571-8",
                                    "score_attribution": -13.076424564871125,
                                    "risk_attribution": 0.39120684783373505
                                },
                                {
                                    "predictor_code": "3084-1",
                                    "score_attribution": -0.7313670943963646,
                                    "risk_attribution": 0.021880278832238986
                                },
                                {
                                    "predictor_code": "14635-7",
                                    "score_attribution": 1.3603299051015962,
                                    "risk_attribution": -0.04069693298414285
                                },
                                {
                                    "predictor_code": "6690-2",
                                    "score_attribution": 0.9429241367730995,
                                    "risk_attribution": -0.028209422037604622
                                },
                                {
                                    "predictor_code": "789-8",
                                    "score_attribution": 0.33010005161683376,
                                    "risk_attribution": -0.009875589464240334
                                },
                                {
                                    "predictor_code": "30350-3",
                                    "score_attribution": 0.3283613299841145,
                                    "risk_attribution": -0.009823572201736963
                                },
                                {
                                    "predictor_code": "20570-8",
                                    "score_attribution": 0.42014671473895326,
                                    "risk_attribution": -0.012569511725879428
                                },
                                {
                                    "predictor_code": "30428-7",
                                    "score_attribution": -0.4540194120233226,
                                    "risk_attribution": 0.013582879796524892
                                },
                                {
                                    "predictor_code": "785-6",
                                    "score_attribution": 0.11163322235554707,
                                    "risk_attribution": -0.0033397264530976496
                                },
                                {
                                    "predictor_code": "28540-3",
                                    "score_attribution": 0.004428476386448647,
                                    "risk_attribution": -0.00013248654318725686
                                },
                                {
                                    "predictor_code": "788-0",
                                    "score_attribution": 0.37428681560871224,
                                    "risk_attribution": -0.01119752303801508
                                },
                                {
                                    "predictor_code": "13457-7",
                                    "score_attribution": -9.646590244519176,
                                    "risk_attribution": 0.28859663764971977
                                },
                                {
                                    "predictor_code": "1884-6",
                                    "score_attribution": 19.229175343072434,
                                    "risk_attribution": -0.575278436019463
                                },
                                {
                                    "predictor_code": "8480-6",
                                    "score_attribution": -0.026065335780858234,
                                    "risk_attribution": 0.0007797955624621395
                                },
                                {
                                    "predictor_code": "8462-4",
                                    "score_attribution": -0.6137745099184599,
                                    "risk_attribution": 0.018362266391299502
                                },
                                {
                                    "predictor_code": "41909-3",
                                    "score_attribution": -0.46569149431082213,
                                    "risk_attribution": 0.013932072995070575
                                },
                                {
                                    "predictor_code": "56117-5",
                                    "score_attribution": -0.5180686264993896,
                                    "risk_attribution": 0.01549903747227989
                                },
                                {
                                    "predictor_code": "77233-5",
                                    "score_attribution": -1.7622925011252888,
                                    "risk_attribution": 0.05272243118951131
                                }
                            ]
                        },
                        {
                            "disease_code": "MACE3",
                            "age_to_score": 55.0,
                            "info_ratio": 0.0,
                            "health_score": {
                                "health_score": 221.44709651236468,
                                "max_score": 240.0
                            },
                            "risk_ratios": {
                                "your_risk_frac": 0.013675400657547068,
                                "peer_risk_frac": 0.028757493315862633,
                                "risk_ratio": 0.4755421659092838
                            },
                            "disease_age": {
                                "disease_age": 45.6,
                                "disease_age_delta": -9.4
                            },
                            "predictor_attributions": [
                                {
                                    "predictor_code": "30525-0",
                                    "score_attribution": -10.20539470830235,
                                    "risk_attribution": 0.2495582188326239
                                },
                                {
                                    "predictor_code": "srSmoke__Pack_years_of_smoking",
                                    "score_attribution": 2.981092155620433,
                                    "risk_attribution": -0.07289831209833708
                                },
                                {
                                    "predictor_code": "63632-4",
                                    "score_attribution": -0.0,
                                    "risk_attribution": 0.0
                                },
                                {
                                    "predictor_code": "8302-2",
                                    "score_attribution": 7.129450762394979,
                                    "risk_attribution": -0.1743404429101354
                                },
                                {
                                    "predictor_code": "pm__grip_strength_mean_lbs",
                                    "score_attribution": 3.928911906327343,
                                    "risk_attribution": -0.09607587803494606
                                },
                                {
                                    "predictor_code": "40443-4",
                                    "score_attribution": 0.6118867266762789,
                                    "risk_attribution": -0.014962808005106382
                                },
                                {
                                    "predictor_code": "1751-7",
                                    "score_attribution": 1.840093994835599,
                                    "risk_attribution": -0.04499684656608136
                                },
                                {
                                    "predictor_code": "6768-6",
                                    "score_attribution": -1.0036677679118569,
                                    "risk_attribution": 0.02454324870512178
                                },
                                {
                                    "predictor_code": "1742-6",
                                    "score_attribution": -0.7040534403620025,
                                    "risk_attribution": 0.017216612150903286
                                },
                                {
                                    "predictor_code": "1920-8",
                                    "score_attribution": 2.4045108209921744,
                                    "risk_attribution": -0.058798846571059965
                                },
                                {
                                    "predictor_code": "3094-0",
                                    "score_attribution": -0.16615948393996177,
                                    "risk_attribution": 0.00406319069858913
                                },
                                {
                                    "predictor_code": "17861-6",
                                    "score_attribution": -0.3017773724116426,
                                    "risk_attribution": 0.007379530698775569
                                },
                                {
                                    "predictor_code": "2160-0",
                                    "score_attribution": -0.5141343461995012,
                                    "risk_attribution": 0.012572414428404474
                                },
                                {
                                    "predictor_code": "1988-5",
                                    "score_attribution": 0.8874099684010679,
                                    "risk_attribution": -0.021700331777302236
                                },
                                {
                                    "predictor_code": "33863-2",
                                    "score_attribution": -0.8495782105277234,
                                    "risk_attribution": 0.020775210664397286
                                },
                                {
                                    "predictor_code": "2324-2",
                                    "score_attribution": -1.803906244544255,
                                    "risk_attribution": 0.044111927289130645
                                },
                                {
                                    "predictor_code": "4548-4",
                                    "score_attribution": -2.9083589623461163,
                                    "risk_attribution": 0.07111972668519466
                                },
                                {
                                    "predictor_code": "2086-7",
                                    "score_attribution": 5.391395868282585,
                                    "risk_attribution": -0.13183881548604853
                                },
                                {
                                    "predictor_code": "2484-4",
                                    "score_attribution": 0.28092714349636305,
                                    "risk_attribution": -0.006869668401522473
                                },
                                {
                                    "predictor_code": "43583-4",
                                    "score_attribution": -0.91898931575029,
                                    "risk_attribution": 0.02247255920226967
                                },
                                {
                                    "predictor_code": "13967-5",
                                    "score_attribution": 0.08311698078132032,
                                    "risk_attribution": -0.002032505970754581
                                },
                                {
                                    "predictor_code": "1975-2",
                                    "score_attribution": 0.13102016198495275,
                                    "risk_attribution": -0.003203909225532129
                                },
                                {
                                    "predictor_code": "2986-8",
                                    "score_attribution": -0.6694183737997611,
                                    "risk_attribution": 0.016369661516706782
                                },
                                {
                                    "predictor_code": "2885-2",
                                    "score_attribution": 2.5378064764451427,
                                    "risk_attribution": -0.06205839970974532
                                },
                                {
                                    "predictor_code": "2571-8",
                                    "score_attribution": -0.33232858386649994,
                                    "risk_attribution": 0.008126616542270725
                                },
                                {
                                    "predictor_code": "3084-1",
                                    "score_attribution": -0.017018293397319903,
                                    "risk_attribution": 0.0004161578370262416
                                },
                                {
                                    "predictor_code": "14635-7",
                                    "score_attribution": -1.4884836569707938,
                                    "risk_attribution": 0.03639872252005174
                                },
                                {
                                    "predictor_code": "6690-2",
                                    "score_attribution": 0.9781359723515448,
                                    "risk_attribution": -0.023918905442979588
                                },
                                {
                                    "predictor_code": "789-8",
                                    "score_attribution": -0.16253857727160154,
                                    "risk_attribution": 0.0039746466447290645
                                },
                                {
                                    "predictor_code": "30350-3",
                                    "score_attribution": 0.12911156004755714,
                                    "risk_attribution": -0.003157237115969384
                                },
                                {
                                    "predictor_code": "20570-8",
                                    "score_attribution": 0.03905468735271116,
                                    "risk_attribution": -0.0009550260907477335
                                },
                                {
                                    "predictor_code": "30428-7",
                                    "score_attribution": 1.15967717944142,
                                    "risk_attribution": -0.028358234011938994
                                },
                                {
                                    "predictor_code": "785-6",
                                    "score_attribution": -0.6608686993553785,
                                    "risk_attribution": 0.016160591550583553
                                },
                                {
                                    "predictor_code": "28540-3",
                                    "score_attribution": -0.3534878713811569,
                                    "risk_attribution": 0.00864403642213381
                                },
                                {
                                    "predictor_code": "788-0",
                                    "score_attribution": 0.0027675895144185095,
                                    "risk_attribution": -6.767741272331663e-05
                                },
                                {
                                    "predictor_code": "13457-7",
                                    "score_attribution": 0.7797589937155193,
                                    "risk_attribution": -0.019067882345800494
                                },
                                {
                                    "predictor_code": "1884-6",
                                    "score_attribution": 8.189577435657052,
                                    "risk_attribution": -0.20026431277290596
                                },
                                {
                                    "predictor_code": "8480-6",
                                    "score_attribution": 1.1217327035800002,
                                    "risk_attribution": -0.027430356543093046
                                },
                                {
                                    "predictor_code": "8462-4",
                                    "score_attribution": 0.2701416800149973,
                                    "risk_attribution": -0.006605925436881989
                                },
                                {
                                    "predictor_code": "41909-3",
                                    "score_attribution": -0.2466039749078908,
                                    "risk_attribution": 0.006030344782744392
                                },
                                {
                                    "predictor_code": "56117-5",
                                    "score_attribution": -2.3849495850415843,
                                    "risk_attribution": 0.058320504738967716
                                },
                                {
                                    "predictor_code": "77233-5",
                                    "score_attribution": -0.467660612715034,
                                    "risk_attribution": 0.01143596625737484
                                }
                            ]
                        },
                        {
                            "disease_code": "T2D",
                            "age_to_score": 0.0,
                            "info_ratio": 0.0,
                            "health_score": {
                                "health_score": 240.34614901802414,
                                "max_score": 275.0
                            },
                            "risk_ratios": {
                                "your_risk_frac": 0.0009493439909960846,
                                "peer_risk_frac": 0.003843205958119163,
                                "risk_ratio": 0.24701876541133555
                            },
                            "disease_age": {
                                "disease_age": 18.7,
                                "disease_age_delta": -9.3
                            },
                            "predictor_attributions": [
                                {
                                    "predictor_code": "30525-0",
                                    "score_attribution": -56.633147390421655,
                                    "risk_attribution": 1.0569459112846429
                                },
                                {
                                    "predictor_code": "srSmoke__Pack_years_of_smoking",
                                    "score_attribution": 0.06743845950094815,
                                    "risk_attribution": -0.0012586057338730477
                                },
                                {
                                    "predictor_code": "63632-4",
                                    "score_attribution": -0.0,
                                    "risk_attribution": 0.0
                                },
                                {
                                    "predictor_code": "8302-2",
                                    "score_attribution": 7.822773876040864,
                                    "risk_attribution": -0.14599663349425843
                                },
                                {
                                    "predictor_code": "pm__grip_strength_mean_lbs",
                                    "score_attribution": 8.325585358534072,
                                    "risk_attribution": -0.15538061734570244
                                },
                                {
                                    "predictor_code": "40443-4",
                                    "score_attribution": 3.382151201119443,
                                    "risk_attribution": -0.06312117634440771
                                },
                                {
                                    "predictor_code": "1751-7",
                                    "score_attribution": -2.2978527629853756,
                                    "risk_attribution": 0.04288488622799513
                                },
                                {
                                    "predictor_code": "6768-6",
                                    "score_attribution": 3.6562223392682887,
                                    "risk_attribution": -0.06823617316544867
                                },
                                {
                                    "predictor_code": "1742-6",
                                    "score_attribution": 0.8500699815702316,
                                    "risk_attribution": -0.01586487830408711
                                },
                                {
                                    "predictor_code": "1920-8",
                                    "score_attribution": 0.5373445969415251,
                                    "risk_attribution": -0.010028476269787817
                                },
                                {
                                    "predictor_code": "3094-0",
                                    "score_attribution": 0.17436737243546427,
                                    "risk_attribution": -0.0032542228332568457
                                },
                                {
                                    "predictor_code": "17861-6",
                                    "score_attribution": -0.6535104037134744,
                                    "risk_attribution": 0.012196481760499065
                                },
                                {
                                    "predictor_code": "2160-0",
                                    "score_attribution": 0.8403364018012438,
                                    "risk_attribution": -0.015683220250225623
                                },
                                {
                                    "predictor_code": "1988-5",
                                    "score_attribution": 14.95980185061563,
                                    "risk_attribution": -0.27919517329017196
                                },
                                {
                                    "predictor_code": "33863-2",
                                    "score_attribution": 2.3199859355453536,
                                    "risk_attribution": -0.043297958206491294
                                },
                                {
                                    "predictor_code": "2324-2",
                                    "score_attribution": -0.5964205229666474,
                                    "risk_attribution": 0.011131011822635572
                                },
                                {
                                    "predictor_code": "4548-4",
                                    "score_attribution": 16.97575397434023,
                                    "risk_attribution": -0.3168189405130524
                                },
                                {
                                    "predictor_code": "2086-7",
                                    "score_attribution": 10.875931825198116,
                                    "risk_attribution": -0.20297780017075057
                                },
                                {
                                    "predictor_code": "2484-4",
                                    "score_attribution": 2.0949413457288597,
                                    "risk_attribution": -0.0390979451395237
                                },
                                {
                                    "predictor_code": "43583-4",
                                    "score_attribution": -0.7888258043146666,
                                    "risk_attribution": 0.014721876621803609
                                },
                                {
                                    "predictor_code": "13967-5",
                                    "score_attribution": -2.0140152978187076,
                                    "risk_attribution": 0.03758762019033101
                                },
                                {
                                    "predictor_code": "1975-2",
                                    "score_attribution": -4.630707598587881,
                                    "risk_attribution": 0.08642301705290666
                                },
                                {
                                    "predictor_code": "2986-8",
                                    "score_attribution": 2.5578350422279525,
                                    "risk_attribution": -0.04773694230670035
                                },
                                {
                                    "predictor_code": "2885-2",
                                    "score_attribution": 3.5368258462524134,
                                    "risk_attribution": -0.06600787329285147
                                },
                                {
                                    "predictor_code": "2571-8",
                                    "score_attribution": 5.5969054920891,
                                    "risk_attribution": -0.1044551936152968
                                },
                                {
                                    "predictor_code": "3084-1",
                                    "score_attribution": -0.061240647741497505,
                                    "risk_attribution": 0.001142935810870125
                                },
                                {
                                    "predictor_code": "14635-7",
                                    "score_attribution": 1.2781087478199018,
                                    "risk_attribution": -0.023853376996205156
                                },
                                {
                                    "predictor_code": "6690-2",
                                    "score_attribution": 0.6554289396305764,
                                    "risk_attribution": -0.012232287446509315
                                },
                                {
                                    "predictor_code": "789-8",
                                    "score_attribution": 0.2850894320984932,
                                    "risk_attribution": -0.005320631529264539
                                },
                                {
                                    "predictor_code": "30350-3",
                                    "score_attribution": -2.1931626549209313,
                                    "risk_attribution": 0.04093105200246917
                                },
                                {
                                    "predictor_code": "20570-8",
                                    "score_attribution": -0.049193210788801005,
                                    "risk_attribution": 0.0009180941798580069
                                },
                                {
                                    "predictor_code": "30428-7",
                                    "score_attribution": 0.05775041054109736,
                                    "risk_attribution": -0.0010777974226935851
                                },
                                {
                                    "predictor_code": "785-6",
                                    "score_attribution": 1.2459199444652787,
                                    "risk_attribution": -0.023252636517130727
                                },
                                {
                                    "predictor_code": "28540-3",
                                    "score_attribution": 0.1408180906154319,
                                    "risk_attribution": -0.002628091708992035
                                },
                                {
                                    "predictor_code": "788-0",
                                    "score_attribution": -0.019060816146434376,
                                    "risk_attribution": 0.0003557325103765899
                                },
                                {
                                    "predictor_code": "13457-7",
                                    "score_attribution": -17.844402018848548,
                                    "risk_attribution": 0.33303054169175983
                                },
                                {
                                    "predictor_code": "1884-6",
                                    "score_attribution": 10.461798859207839,
                                    "risk_attribution": -0.19524882579265276
                                },
                                {
                                    "predictor_code": "8480-6",
                                    "score_attribution": 3.549315669223651,
                                    "risk_attribution": -0.06624097118570056
                                },
                                {
                                    "predictor_code": "8462-4",
                                    "score_attribution": 0.3582572767101121,
                                    "risk_attribution": -0.006686164927340171
                                },
                                {
                                    "predictor_code": "41909-3",
                                    "score_attribution": 19.51742864008371,
                                    "risk_attribution": -0.3642542812906637
                                },
                                {
                                    "predictor_code": "56117-5",
                                    "score_attribution": -1.4703370772571234,
                                    "risk_attribution": 0.027440939337232864
                                },
                                {
                                    "predictor_code": "77233-5",
                                    "score_attribution": 4.4243429018604825,
                                    "risk_attribution": -0.0825716273193315
                                }
                            ]
                        },
                        {
                            "disease_code": "Bone",
                            "age_to_score": 0.0,
                            "info_ratio": 0.0,
                            "health_score": {
                                "health_score": 206.45252577103443,
                                "max_score": 240.0
                            },
                            "risk_ratios": {
                                "your_risk_frac": 0.0006853943382024651,
                                "peer_risk_frac": 0.0008571576446659744,
                                "risk_ratio": 0.7996129328923577
                            },
                            "disease_age": {
                                "disease_age": 26.4,
                                "disease_age_delta": -1.6
                            },
                            "predictor_attributions": [
                                {
                                    "predictor_code": "30525-0",
                                    "score_attribution": -16.70167665872215,
                                    "risk_attribution": 0.5186806097614349
                                },
                                {
                                    "predictor_code": "srSmoke__Pack_years_of_smoking",
                                    "score_attribution": 2.451293619619662,
                                    "risk_attribution": -0.07612639708628627
                                },
                                {
                                    "predictor_code": "63632-4",
                                    "score_attribution": -0.0,
                                    "risk_attribution": 0.0
                                },
                                {
                                    "predictor_code": "8302-2",
                                    "score_attribution": 2.3688346888044167,
                                    "risk_attribution": -0.07356558541513039
                                },
                                {
                                    "predictor_code": "pm__grip_strength_mean_lbs",
                                    "score_attribution": 11.066200352474976,
                                    "risk_attribution": -0.34366750499665594
                                },
                                {
                                    "predictor_code": "40443-4",
                                    "score_attribution": 1.9988593047055538,
                                    "risk_attribution": -0.06207577743103777
                                },
                                {
                                    "predictor_code": "1751-7",
                                    "score_attribution": 3.350448950118613,
                                    "risk_attribution": -0.10405020645125113
                                },
                                {
                                    "predictor_code": "6768-6",
                                    "score_attribution": 4.646908858530154,
                                    "risk_attribution": -0.14431254834463092
                                },
                                {
                                    "predictor_code": "1742-6",
                                    "score_attribution": 0.7434918560178918,
                                    "risk_attribution": -0.023089586579358806
                                },
                                {
                                    "predictor_code": "1920-8",
                                    "score_attribution": 1.5972981706040277,
                                    "risk_attribution": -0.049605054991114256
                                },
                                {
                                    "predictor_code": "3094-0",
                                    "score_attribution": 0.47708918108782705,
                                    "risk_attribution": -0.014816291346892283
                                },
                                {
                                    "predictor_code": "17861-6",
                                    "score_attribution": -0.7941005417423214,
                                    "risk_attribution": 0.024661269740705573
                                },
                                {
                                    "predictor_code": "2160-0",
                                    "score_attribution": 0.7989306900476794,
                                    "risk_attribution": -0.024811272900235836
                                },
                                {
                                    "predictor_code": "1988-5",
                                    "score_attribution": 3.2558259853619997,
                                    "risk_attribution": -0.10111163339297291
                                },
                                {
                                    "predictor_code": "33863-2",
                                    "score_attribution": -2.200097988770156,
                                    "risk_attribution": 0.06832536575028635
                                },
                                {
                                    "predictor_code": "2324-2",
                                    "score_attribution": 4.681151432830333,
                                    "risk_attribution": -0.14537597207631614
                                },
                                {
                                    "predictor_code": "4548-4",
                                    "score_attribution": -0.9364914317659947,
                                    "risk_attribution": 0.02908330443644869
                                },
                                {
                                    "predictor_code": "2086-7",
                                    "score_attribution": -4.750361964399153,
                                    "risk_attribution": 0.1475253467438757
                                },
                                {
                                    "predictor_code": "2484-4",
                                    "score_attribution": 2.3404447957064747,
                                    "risk_attribution": -0.0726839202168395
                                },
                                {
                                    "predictor_code": "43583-4",
                                    "score_attribution": -0.12269362746319612,
                                    "risk_attribution": 0.0038103243648426573
                                },
                                {
                                    "predictor_code": "13967-5",
                                    "score_attribution": 3.737277201781361,
                                    "risk_attribution": -0.1160633903695617
                                },
                                {
                                    "predictor_code": "1975-2",
                                    "score_attribution": 0.4214951841130776,
                                    "risk_attribution": -0.013089786347474779
                                },
                                {
                                    "predictor_code": "2986-8",
                                    "score_attribution": -8.80439643984728,
                                    "risk_attribution": 0.2734258246830885
                                },
                                {
                                    "predictor_code": "2885-2",
                                    "score_attribution": 0.11604134505990281,
                                    "risk_attribution": -0.0036037337354256085
                                },
                                {
                                    "predictor_code": "2571-8",
                                    "score_attribution": -1.28904992002915,
                                    "risk_attribution": 0.04003222024924554
                                },
                                {
                                    "predictor_code": "3084-1",
                                    "score_attribution": 2.028955846987147,
                                    "risk_attribution": -0.06301044364577227
                                },
                                {
                                    "predictor_code": "14635-7",
                                    "score_attribution": 0.17683050623953395,
                                    "risk_attribution": -0.005491577682582325
                                },
                                {
                                    "predictor_code": "6690-2",
                                    "score_attribution": 0.5745156299640547,
                                    "risk_attribution": -0.017841928289972664
                                },
                                {
                                    "predictor_code": "789-8",
                                    "score_attribution": 1.4926916956166159,
                                    "risk_attribution": -0.04635643802048633
                                },
                                {
                                    "predictor_code": "30350-3",
                                    "score_attribution": 0.445156414397413,
                                    "risk_attribution": -0.013824600079195282
                                },
                                {
                                    "predictor_code": "20570-8",
                                    "score_attribution": 0.09211601365362632,
                                    "risk_attribution": -0.0028607181845844176
                                },
                                {
                                    "predictor_code": "30428-7",
                                    "score_attribution": 0.3258279190780606,
                                    "risk_attribution": -0.010118781916212611
                                },
                                {
                                    "predictor_code": "785-6",
                                    "score_attribution": 0.0812706230008379,
                                    "risk_attribution": -0.002523908057563335
                                },
                                {
                                    "predictor_code": "28540-3",
                                    "score_attribution": -0.9011657106987112,
                                    "risk_attribution": 0.027986242930718226
                                },
                                {
                                    "predictor_code": "788-0",
                                    "score_attribution": 1.1612512217809836,
                                    "risk_attribution": -0.0360633548419836
                                },
                                {
                                    "predictor_code": "13457-7",
                                    "score_attribution": -0.6254256820038201,
                                    "risk_attribution": 0.019422970563425
                                },
                                {
                                    "predictor_code": "1884-6",
                                    "score_attribution": -1.4337214766085515,
                                    "risk_attribution": 0.04452508241602402
                                },
                                {
                                    "predictor_code": "8480-6",
                                    "score_attribution": -1.096390485202156,
                                    "risk_attribution": 0.03404906567295498
                                },
                                {
                                    "predictor_code": "8462-4",
                                    "score_attribution": 0.713982937992703,
                                    "risk_attribution": -0.022173169389189333
                                },
                                {
                                    "predictor_code": "41909-3",
                                    "score_attribution": -5.921118508586507,
                                    "risk_attribution": 0.18388389508783268
                                },
                                {
                                    "predictor_code": "56117-5",
                                    "score_attribution": -0.919781787176197,
                                    "risk_attribution": 0.028564376377797344
                                },
                                {
                                    "predictor_code": "77233-5",
                                    "score_attribution": -3.358510346290265,
                                    "risk_attribution": 0.10430055795591023
                                }
                            ]
                        },
                        {
                            "disease_code": "Inflammation",
                            "age_to_score": 0.0,
                            "info_ratio": 0.0,
                            "health_score": null,
                            "risk_ratios": null,
                            "disease_age": {
                                "disease_age": 22.3,
                                "disease_age_delta": -5.7
                            },
                            "predictor_attributions": null
                        },
                        {
                            "disease_code": "ARD",
                            "age_to_score": 55.0,
                            "info_ratio": 0.0,
                            "health_score": {
                                "health_score": 210.0358524879248,
                                "max_score": 245.0
                            },
                            "risk_ratios": {
                                "your_risk_frac": 0.012104218026654194,
                                "peer_risk_frac": 0.017139232466686437,
                                "risk_ratio": 0.7062287094933328
                            },
                            "disease_age": {
                                "disease_age": 52.0,
                                "disease_age_delta": -3.0
                            },
                            "predictor_attributions": [
                                {
                                    "predictor_code": "30525-0",
                                    "score_attribution": -12.2807383536414,
                                    "risk_attribution": 0.3594839958902141
                                },
                                {
                                    "predictor_code": "srSmoke__Pack_years_of_smoking",
                                    "score_attribution": 1.285461930333843,
                                    "risk_attribution": -0.03762827429216732
                                },
                                {
                                    "predictor_code": "63632-4",
                                    "score_attribution": -0.0,
                                    "risk_attribution": 0.0
                                },
                                {
                                    "predictor_code": "8302-2",
                                    "score_attribution": 0.5862351773275353,
                                    "risk_attribution": -0.01716038221876316
                                },
                                {
                                    "predictor_code": "pm__grip_strength_mean_lbs",
                                    "score_attribution": 5.922498086363117,
                                    "risk_attribution": -0.17336443595076434
                                },
                                {
                                    "predictor_code": "40443-4",
                                    "score_attribution": 2.299840947870985,
                                    "risk_attribution": -0.06732136049519004
                                },
                                {
                                    "predictor_code": "1751-7",
                                    "score_attribution": 2.100707121476661,
                                    "risk_attribution": -0.06149227908593473
                                },
                                {
                                    "predictor_code": "6768-6",
                                    "score_attribution": 1.0049698487784735,
                                    "risk_attribution": -0.029417659312068023
                                },
                                {
                                    "predictor_code": "1742-6",
                                    "score_attribution": -1.4622006782249923,
                                    "risk_attribution": 0.04280180290998895
                                },
                                {
                                    "predictor_code": "1920-8",
                                    "score_attribution": 2.6134991661595337,
                                    "risk_attribution": -0.07650282063278341
                                },
                                {
                                    "predictor_code": "3094-0",
                                    "score_attribution": 1.4545383380476937,
                                    "risk_attribution": -0.04257750950144249
                                },
                                {
                                    "predictor_code": "17861-6",
                                    "score_attribution": -0.5554331167914041,
                                    "risk_attribution": 0.016258738727604707
                                },
                                {
                                    "predictor_code": "2160-0",
                                    "score_attribution": 0.05922188548968782,
                                    "risk_attribution": -0.0017335537511613138
                                },
                                {
                                    "predictor_code": "1988-5",
                                    "score_attribution": 0.736903310271368,
                                    "risk_attribution": -0.021570767077089454
                                },
                                {
                                    "predictor_code": "33863-2",
                                    "score_attribution": -0.4934178245382944,
                                    "risk_attribution": 0.014443415868060437
                                },
                                {
                                    "predictor_code": "2324-2",
                                    "score_attribution": -1.184664353129071,
                                    "risk_attribution": 0.034677709367959844
                                },
                                {
                                    "predictor_code": "4548-4",
                                    "score_attribution": -1.1144742348302366,
                                    "risk_attribution": 0.032623091520769074
                                },
                                {
                                    "predictor_code": "2086-7",
                                    "score_attribution": -0.9833292755553407,
                                    "risk_attribution": 0.028784192535756495
                                },
                                {
                                    "predictor_code": "2484-4",
                                    "score_attribution": 1.3378066843809027,
                                    "risk_attribution": -0.03916051940698551
                                },
                                {
                                    "predictor_code": "43583-4",
                                    "score_attribution": -1.0724062417226978,
                                    "risk_attribution": 0.031391669612256874
                                },
                                {
                                    "predictor_code": "13967-5",
                                    "score_attribution": 0.28804839335574645,
                                    "risk_attribution": -0.008431804706805464
                                },
                                {
                                    "predictor_code": "1975-2",
                                    "score_attribution": -0.4318744081862583,
                                    "risk_attribution": 0.012641905845301499
                                },
                                {
                                    "predictor_code": "2986-8",
                                    "score_attribution": -0.5543415944195526,
                                    "risk_attribution": 0.016226787487171317
                                },
                                {
                                    "predictor_code": "2885-2",
                                    "score_attribution": -1.664535104780783,
                                    "risk_attribution": 0.04872457286647642
                                },
                                {
                                    "predictor_code": "2571-8",
                                    "score_attribution": -3.5632311648516306,
                                    "risk_attribution": 0.10430354759912261
                                },
                                {
                                    "predictor_code": "3084-1",
                                    "score_attribution": 0.8664509979606839,
                                    "risk_attribution": -0.02536291043914423
                                },
                                {
                                    "predictor_code": "14635-7",
                                    "score_attribution": 1.2185695473880682,
                                    "risk_attribution": -0.0356701883511184
                                },
                                {
                                    "predictor_code": "6690-2",
                                    "score_attribution": 1.6492358840322372,
                                    "risk_attribution": -0.048276731307580006
                                },
                                {
                                    "predictor_code": "789-8",
                                    "score_attribution": 2.39973311209227,
                                    "risk_attribution": -0.07024542200666596
                                },
                                {
                                    "predictor_code": "30350-3",
                                    "score_attribution": 1.0249860445667816,
                                    "risk_attribution": -0.030003577018096528
                                },
                                {
                                    "predictor_code": "20570-8",
                                    "score_attribution": 0.6977146738131748,
                                    "risk_attribution": -0.020423630217577822
                                },
                                {
                                    "predictor_code": "30428-7",
                                    "score_attribution": 1.364771555283943,
                                    "risk_attribution": -0.03994983998867631
                                },
                                {
                                    "predictor_code": "785-6",
                                    "score_attribution": -0.25379791029699905,
                                    "risk_attribution": 0.007429218367403665
                                },
                                {
                                    "predictor_code": "28540-3",
                                    "score_attribution": -0.27527006899684303,
                                    "risk_attribution": 0.008057755283306607
                                },
                                {
                                    "predictor_code": "788-0",
                                    "score_attribution": 1.2451952279141625,
                                    "risk_attribution": -0.03644958009070208
                                },
                                {
                                    "predictor_code": "13457-7",
                                    "score_attribution": -3.5240280417618535,
                                    "risk_attribution": 0.1031559866843092
                                },
                                {
                                    "predictor_code": "1884-6",
                                    "score_attribution": 1.5015036430230917,
                                    "risk_attribution": -0.04395228640935964
                                },
                                {
                                    "predictor_code": "8480-6",
                                    "score_attribution": 1.1108042920111774,
                                    "risk_attribution": -0.03251566429031327
                                },
                                {
                                    "predictor_code": "8462-4",
                                    "score_attribution": 0.44421780515065096,
                                    "risk_attribution": -0.013003223995386776
                                },
                                {
                                    "predictor_code": "41909-3",
                                    "score_attribution": 3.8322087263936755,
                                    "risk_attribution": -0.11217710746527426
                                },
                                {
                                    "predictor_code": "56117-5",
                                    "score_attribution": -2.3376840657620406,
                                    "risk_attribution": 0.06842911109166679
                                },
                                {
                                    "predictor_code": "77233-5",
                                    "score_attribution": -0.13984851281577568,
                                    "risk_attribution": 0.004093670979596448
                                }
                            ]
                        }
                    ],
                    "errors": null
                }
            ],
            "validations": [
                {
                    "code": "30525-0",
                    "qa_status": "FAIL",
                    "severity": "IMPLAUSIBLE",
                    "message": "No threshold data for predictor code 'age' (resolved from '30525-0')",
                    "return_code": "no_threshold_data",
                    "id": "6b0ca208-86a7-440d-b0c1-0818ad53002e"
                },
                {
                    "code": "8302-2",
                    "qa_status": "FAIL",
                    "severity": "IMPLAUSIBLE",
                    "message": "Unit mismatch: expected 'cm', got 'inches'",
                    "return_code": "invalid_ucum_unit",
                    "id": "c40aa00e-2e3d-4e7e-9718-95a25c2df8e9"
                },
                {
                    "code": "29463-7",
                    "qa_status": "FAIL",
                    "severity": "IMPLAUSIBLE",
                    "message": "Unit mismatch: expected 'kg', got 'lbs'",
                    "return_code": "invalid_ucum_unit",
                    "id": "1f796753-f375-494a-8539-b0f140ff4f56"
                },
                {
                    "code": "64219-9",
                    "qa_status": "FAIL",
                    "severity": "IMPLAUSIBLE",
                    "message": "No threshold data for predictor code 'srSmoke__Cigarette_packs_per_day' (resolved from '64219-9')",
                    "return_code": "no_threshold_data",
                    "id": "8835a752-bc03-473c-a4ba-37387c045f14"
                },
                {
                    "code": "4548-4",
                    "qa_status": "FAIL",
                    "severity": "IMPLAUSIBLE",
                    "message": "Unit mismatch: expected '%{HemoglobinA1C}', got '%'",
                    "return_code": "invalid_ucum_unit",
                    "id": "0dd946b0-d10a-477a-8a43-dc313e0ef0a9"
                },
                {
                    "code": "2885-2",
                    "qa_status": "PASS",
                    "severity": null,
                    "message": "Valid entry",
                    "return_code": "valid_entry",
                    "id": "a624e601-d519-40d9-b972-b45e15d2a43e"
                },
                {
                    "code": "2571-8",
                    "qa_status": "FAIL",
                    "severity": "UNUSUAL",
                    "message": "Value 40.0 under unusual lower trim threshold 44.728",
                    "return_code": "value_under_unusual_minimum",
                    "id": "3197ae19-9438-40d5-aded-67228b498a9e"
                },
                {
                    "code": "10835-7",
                    "qa_status": "FAIL",
                    "severity": "IMPLAUSIBLE",
                    "message": "Code '10835-7' could not be resolved (as LOINC or obs_code)",
                    "return_code": "invalid_code",
                    "id": "3d9b1dcd-3c70-4c36-9f7b-fc8e2e57bd49"
                },
                {
                    "code": "1751-7",
                    "qa_status": "PASS",
                    "severity": null,
                    "message": "Valid entry",
                    "return_code": "valid_entry",
                    "id": "29ebacd2-baf0-4b86-b66d-92ece13264e3"
                },
                {
                    "code": "17861-6",
                    "qa_status": "PASS",
                    "severity": null,
                    "message": "Valid entry",
                    "return_code": "valid_entry",
                    "id": "f644ac87-420c-4656-8f07-daa6350bca0c"
                },
                {
                    "code": "2160-0",
                    "qa_status": "PASS",
                    "severity": null,
                    "message": "Valid entry",
                    "return_code": "valid_entry",
                    "id": "0dfe36d5-a8d3-4a36-9d6d-7dcec20e647d"
                },
                {
                    "code": "2498-4",
                    "qa_status": "FAIL",
                    "severity": "IMPLAUSIBLE",
                    "message": "No threshold data for predictor code 'bl__Iron' (resolved from '2498-4')",
                    "return_code": "no_threshold_data",
                    "id": "c6f4d776-d8e8-486a-9ed0-2d6260c0a583"
                },
                {
                    "code": "2086-7",
                    "qa_status": "PASS",
                    "severity": null,
                    "message": "Valid entry",
                    "return_code": "valid_entry",
                    "id": "bd9d03b9-1be7-4e51-a3c9-5fd7dee92ea8"
                },
                {
                    "code": "1975-2",
                    "qa_status": "PASS",
                    "severity": null,
                    "message": "Valid entry",
                    "return_code": "valid_entry",
                    "id": "852a0141-90a0-4397-9480-081786fedc54"
                },
                {
                    "code": "77147-7",
                    "qa_status": "FAIL",
                    "severity": "IMPLAUSIBLE",
                    "message": "Code '77147-7' could not be resolved (as LOINC or obs_code)",
                    "return_code": "invalid_code",
                    "id": "120c6aff-1613-4a14-9a29-88803c8eef71"
                },
                {
                    "code": "13457-7",
                    "qa_status": "PASS",
                    "severity": null,
                    "message": "Valid entry",
                    "return_code": "valid_entry",
                    "id": "aed5cd82-513a-47d8-b8ae-7109dc8a8065"
                },
                {
                    "code": "2276-4",
                    "qa_status": "FAIL",
                    "severity": "IMPLAUSIBLE",
                    "message": "No threshold data for predictor code 'bl__Ferritin' (resolved from '2276-4')",
                    "return_code": "no_threshold_data",
                    "id": "199bd4d3-07ac-494f-93e4-d96979f86824"
                }
            ]
        }
    ]
}

Each data object represents the scoring events for a particular user, represented by the uid_ext field. Any errors encountered during the scoring process will be written to the errors array (string). Any validations for the input data will be stored in the validations array against each user's scoring events.



What’s Next

Details of the biomarkers that can be used