Validate the persisted report content schema

post/reports/{reportId}/content/validation
Internal-Use Only

Validates the report content against a schema. The schema specified in the report content is used for validation.

Request Samples

1

Response Samples

1{
2 "level": "schemaInvalid",
3 "schema": "bird-4.1.2.xsd",
4 "messages": [
5 {
6 "type": "schemaError",
7 "message": "Line 89: Value 'binder' is not facet-valid with respect to enumeration '[column, page]'. It must be a value from the enumeration."
8 },
9 {
10 "type": "schemaError",
11 "message": "Line 89: The value 'binder' of attribute 'type' on element 'Axis' is not valid with respect to its type, 'relationalAxisTypeEnum'."
12 }
13 ],
14 "version": 1
15}

Path Parameters

NameTypeRequiredDescription
reportId
string<object-id>
true

Report id for this operation.

Responses

StatusMeaningDescription
200OKReport content is valid.Schema
404Not FoundReport or report content does not exist.Schema