{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MetadataRecord",
"title": "MetadataRecord",
"type": "object",
"properties": {
"metadataValues": {
"type": "array",
"description": "A list of data in a row returned in the traffic report. The data in each of the cells match the labels in headers of the report.",
"items": {
"$ref": "#/components/schemas/Value"
}
},
"value": {
"description": "The value of the key on which the report is based. <br><br>For example, if the key is the listing ID, the value of this container could be: <br><br><code>\"value\": {<br> \"value\": \"142133954229\",<br> \"applicable\": true<br>}</code>",
"$ref": "#/components/schemas/Value"
}
},
"description": "A complex type that defines the data records returned in the report."
}