We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello.
During run validator for audio type request, I faced above error and found that there is a bug on companion_type definition under audio.
"audio": { "type": "object", "required": [ "mimes" ], "additionalProperties": false,
.... "companiontype": { "type": "array", "items": { "$ref": "#definitions/vast_companion_type" } }, ..,
As you see it , "/" is omitted between # & definitions.
Please put the "/" like below.
"items": { "$ref": "#/definitions/vast_companion_type" }
I see the problem at openrtb-schema_bid-request_v2-4.json
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello.
During run validator for audio type request, I faced above error and found that there is a bug on companion_type definition under audio.
....
"companiontype": {
"type": "array",
"items": {
"$ref": "#definitions/vast_companion_type"
}
},
..,
As you see it , "/" is omitted between # & definitions.
Please put the "/" like below.
I see the problem at openrtb-schema_bid-request_v2-4.json
The text was updated successfully, but these errors were encountered: