Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The ID of the Record.
"777"
The ID of the MetricConfig.
"a1b2c3d4-e5f6-7890-1234-567890abcdef"
Body
The score of the Record, as arbitrary JSON. This data should ideally conform to the output schema defined by the associated MetricConfig. If it doesn't, validation errors will be captured in the validationErrors
field.
Response
Score upserted successfully.
A Score represents the evaluation of a Record against a specific MetricConfig. The actual score
is stored as flexible JSON. While any JSON is accepted, it is expected to conform to the output schema defined by the MetricConfig. Any discrepancies will be noted in the validationErrors
field, but the Score will still be stored.
The ID of the Record this Score is for.
The ID of the MetricConfig this Score is for.
The score of the Record, as arbitrary JSON. This data should ideally conform to the output schema defined by the associated MetricConfig. If it doesn't, validation errors will be captured in the validationErrors
field.
Validation errors found in the Score data. If present, the Score doesn't fully conform to its MetricConfig's schema.