Oura Ring · Schema

DailyResilienceModel

Oura DailyResilienceModel schema

HealthWearablesSleepFitnessHeart RateReadinessSmart RingBiometrics

Properties

Name Type Description
id string
day string Day when the resilience record was recorded.
contributors object Contributors to the resilience score.
level object Resilience level.
View JSON Schema on GitHub

JSON Schema

oura-dailyresiliencemodel.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/oura/main/json-schema/oura-dailyresiliencemodel.json",
  "title": "DailyResilienceModel",
  "description": "Oura DailyResilienceModel schema",
  "properties": {
    "id": {
      "type": "string",
      "title": "Id"
    },
    "day": {
      "type": "string",
      "format": "date",
      "title": "Day",
      "description": "Day when the resilience record was recorded."
    },
    "contributors": {
      "$ref": "#/components/schemas/ResilienceContributors",
      "description": "Contributors to the resilience score."
    },
    "level": {
      "$ref": "#/components/schemas/LongTermResilienceLevel",
      "description": "Resilience level."
    }
  },
  "type": "object",
  "required": [
    "id",
    "day",
    "contributors",
    "level"
  ]
}