curl --request POST \
--url 'https://api.unify.ai/v0/logs/fields' \
--header "Authorization: Bearer $UNIFY_KEY" \
--header 'Content-Type: application/json' \
--data '{
"project": "eval-project",
"context": "experiment1/trial1",
"fields": {
"comment": {
"description": "User comment",
"mutable": true,
"type": "str"
},
"email": {
"description": "User email address",
"type": "str",
"unique": true
},
"score": "int"
},
"backfill_logs": true
}'