From cb990314bef026cf9b5fa6dc715bc6da5c596055 Mon Sep 17 00:00:00 2001 From: aaron Date: Fri, 14 Sep 2018 15:20:41 -0400 Subject: [PATCH] Change type on Content.Context from int to NumberOrString --- content.go | 52 ++++++++++++++++++++++++++-------------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/content.go b/content.go index 8524e08..c118c26 100644 --- a/content.go +++ b/content.go @@ -6,30 +6,30 @@ package openrtb // knowledge of the page where the content is running, as a result of the syndication method. For // example might be a video impression embedded in an iframe on an unknown web property or device. type Content struct { - ID string `json:"id,omitempty"` // ID uniquely identifying the content. - Episode int `json:"episode,omitempty"` // Episode number (typically applies to video content). - Title string `json:"title,omitempty"` // Content title. - Series string `json:"series,omitempty"` // Content series. - Season string `json:"season,omitempty"` // Content season. - Artist string `json:"artist,omitempty"` // Artist credited with the content. - Genre string `json:"genre,omitempty"` // Genre that best describes the content - Album string `json:"album,omitempty"` // Album to which the content belongs; typically for audio. - ISRC string `json:"isrc,omitempty"` // International Standard Recording Code conforming to ISO - 3901. - Producer *Producer `json:"producer,omitempty"` // The producer. - URL string `json:"url,omitempty"` // URL of the content, for buy-side contextualization or review. - Cat []string `json:"cat,omitempty"` // Array of IAB content categories that describe the content. - ProdQuality int `json:"prodq,omitempty"` // Production quality per IAB's classification. - VideoQuality int `json:"videoquality,omitempty"` // Video quality per IAB's classification. - Context int `json:"context,omitempty"` // Type of content (game, video, text, etc.). - ContentRating string `json:"contentrating,omitempty"` // Content rating (e.g., MPAA). - UserRating string `json:"userrating,omitempty"` // User rating of the content (e.g., number of stars, likes, etc.). - QAGMediaRating int `json:"qagmediarating,omitempty"` // Media rating per QAG guidelines. - Keywords string `json:"keywords,omitempty"` // Comma separated list of keywords describing the content. - LiveStream int `json:"livestream,omitempty"` // 0 = not live, 1 = content is live (e.g., stream, live blog). - SourceRelationship int `json:"sourcerelationship,omitempty"` // 0 = indirect, 1 = direct. - Len int `json:"len,omitempty"` // Length of content in seconds; appropriate for video or audio. - Language string `json:"language,omitempty"` // Content language using ISO-639-1-alpha-2. - Embeddable int `json:"embeddable,omitempty"` // Indicator of whether or not the content is embeddable (e.g., an embeddable video player), where 0 = no, 1 = yes. - Data []Data `json:"data,omitempty"` // Additional content data. - Ext Extension `json:"ext,omitempty"` + ID string `json:"id,omitempty"` // ID uniquely identifying the content. + Episode int `json:"episode,omitempty"` // Episode number (typically applies to video content). + Title string `json:"title,omitempty"` // Content title. + Series string `json:"series,omitempty"` // Content series. + Season string `json:"season,omitempty"` // Content season. + Artist string `json:"artist,omitempty"` // Artist credited with the content. + Genre string `json:"genre,omitempty"` // Genre that best describes the content + Album string `json:"album,omitempty"` // Album to which the content belongs; typically for audio. + ISRC string `json:"isrc,omitempty"` // International Standard Recording Code conforming to ISO - 3901. + Producer *Producer `json:"producer,omitempty"` // The producer. + URL string `json:"url,omitempty"` // URL of the content, for buy-side contextualization or review. + Cat []string `json:"cat,omitempty"` // Array of IAB content categories that describe the content. + ProdQuality int `json:"prodq,omitempty"` // Production quality per IAB's classification. + VideoQuality int `json:"videoquality,omitempty"` // Video quality per IAB's classification. + Context NumberOrString `json:"context,omitempty"` // Type of content (game, video, text, etc.). + ContentRating string `json:"contentrating,omitempty"` // Content rating (e.g., MPAA). + UserRating string `json:"userrating,omitempty"` // User rating of the content (e.g., number of stars, likes, etc.). + QAGMediaRating int `json:"qagmediarating,omitempty"` // Media rating per QAG guidelines. + Keywords string `json:"keywords,omitempty"` // Comma separated list of keywords describing the content. + LiveStream int `json:"livestream,omitempty"` // 0 = not live, 1 = content is live (e.g., stream, live blog). + SourceRelationship int `json:"sourcerelationship,omitempty"` // 0 = indirect, 1 = direct. + Len int `json:"len,omitempty"` // Length of content in seconds; appropriate for video or audio. + Language string `json:"language,omitempty"` // Content language using ISO-639-1-alpha-2. + Embeddable int `json:"embeddable,omitempty"` // Indicator of whether or not the content is embeddable (e.g., an embeddable video player), where 0 = no, 1 = yes. + Data []Data `json:"data,omitempty"` // Additional content data. + Ext Extension `json:"ext,omitempty"` }