A single pairwise preference: the user prefers `winner` over `loser`.
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
loser
ref
#work
Required
No description available.
session
string
Optional
Optional id grouping comparisons made in one shuffle/refine or insertion session. Enables UX analytics and active-learning batching.
maxLength: 64 byteswinner
ref
#work
Required
No description available.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"winner",
"loser",
"createdAt"
],
"properties": {
"loser": {
"ref": "#work",
"type": "ref"
},
"winner": {
"ref": "#work",
"type": "ref"
},
"session": {
"type": "string",
"maxLength": 64,
"description": "Optional id grouping comparisons made in one shuffle/refine or insertion session. Enables UX analytics and active-learning batching."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A single pairwise preference: the user prefers `winner` over `loser`."
}