Subject object
A subject represents a human being who is the subject of a record (ie an experiment).
Description
A subject object includes these fields:
Name | Type | Description |
subjectName |
| The name of the subject. |
dateOfBirth |
| The date of birth of the subject. The format is "YYYY-MM-DD", e.g. "1980-12-25". |
sex |
| Can be "M", "F" or "U". These letters stands for male, female and unknown respectively. |
experimentsCount |
| |
countryCode |
| |
countryName |
| The name of the country the subject lives in. |
state |
| The state the subject lives in. |
city |
| The city the subject lives in. |
attributes |
| A list of demographic attribute objects. See below. |
Demographic attribute object
The field attributes is a list of attributes. A demographic attribute is an object with 2 fields:
Name | Type | Required | Description |
name |
| yes | The name of the attribute. |
value |
| yes | The value of the attribute. |
You must call getDemographicAttributes to know what are the valid attribute names, and what are the possible values for each attribute.
For example, to tell that the subject is right handed, you can add the attribute { "name":"Handedness", "value":"Right"}
Example
Last updated