Skip to main content

Outbound Data Structures — Category

Queue Configuration

PropertyValue
Topic name{customerPrefix}.category.queue
DescriptionMessages containing category (Country or Competition) details.
Routing patternscustomerPrefix - customer unique prefix
ProducesCategory

Category Model Structure

FieldData TypeDescription
idstringCategory id
parentIdstringLink to parent. Category should be treated as a hierarchy
categoryTypestringType of category e.g. 'Country' or 'Competition'
valuestringName of category e.g. Country (England), Competition (Premier League)
sportIdStringSport Id

Category Proto

message Category {
string id = 1;
string parentId = 2;
string categoryType = 3;
string value = 4;
string sportId = 5;
}