-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathuserSubjectivestate.schema.json
37 lines (37 loc) · 1.26 KB
/
userSubjectivestate.schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://connectproject.github.io/schemas/userSubjectivestate.schema.json",
"title": "User Subjective-state",
"description": "Record of annotated subjective-states/feelings of the user",
"type": "object",
"properties": {
"applicationId": {
"type": "string",
"description": "Unique Connect identifier of the app originating the event. Read-only (added by Connect)"
},
"userId": {
"type": "string",
"description": "Unique Connect identifier of the user originating the event. Read-only (added by Connect)"
},
"sessionId": {
"type": "string",
"description": "Identifier of the session originating the event"
},
"userEmotion": {
"type": "string",
"enum": ["lively", "happy", "sad", "tired", "content", "gloomy", "jittery","drowsy",
"grouchy", "peppy", "nervous", "calm", "loving", "fed up", "active", "stressed", "angry"
],
"description": "Feeling or emotion or subjective-state that is annotated by the user"
}
},
"oneOf": [
{
"required": [
"sessionId",
"userEmotion"
]
}
],
"additionalProperties": false
}