Oura Ring · Schema

PersonalInfoResponse

Oura PersonalInfoResponse schema

HealthWearablesSleepFitnessHeart RateReadinessSmart RingBiometrics

Properties

Name Type Description
id string
age integer
weight number
height number
biological_sex string
email string
View JSON Schema on GitHub

JSON Schema

oura-personalinforesponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/oura/main/json-schema/oura-personalinforesponse.json",
  "title": "PersonalInfoResponse",
  "description": "Oura PersonalInfoResponse schema",
  "properties": {
    "id": {
      "type": "string",
      "title": "Id"
    },
    "age": {
      "type": "integer",
      "nullable": true,
      "title": "Age"
    },
    "weight": {
      "type": "number",
      "nullable": true,
      "title": "Weight"
    },
    "height": {
      "type": "number",
      "nullable": true,
      "title": "Height"
    },
    "biological_sex": {
      "type": "string",
      "nullable": true,
      "title": "Biological Sex"
    },
    "email": {
      "type": "string",
      "nullable": true,
      "title": "Email"
    }
  },
  "type": "object",
  "required": [
    "id"
  ]
}