-
Notifications
You must be signed in to change notification settings - Fork 769
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Made changes regarding GitHub reviews
- Loading branch information
1 parent
f1b859c
commit 025a574
Showing
9 changed files
with
18 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
package openrtb_ext | ||
|
||
type ImpExtPixfuture struct { | ||
PlacementID string `json:"pix_id"` | ||
PixID string `json:"pix_id"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "PixFuture Adapter Params", | ||
"description": "A schema which validates params accepted by the PixFuture adapter", | ||
"type": "object", | ||
"properties": { | ||
"pix_id": { | ||
"type": "string", | ||
"description": "PixFuture placement ID", | ||
"minLength": 3 | ||
} | ||
}, | ||
"required": ["pix_id"] | ||
} | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "PixFuture Adapter Params", | ||
"description": "A schema which validates params accepted by the PixFuture adapter", | ||
"type": "object", | ||
"properties": { | ||
"pix_id": { | ||
"type": "string", | ||
"description": "PixFuture placement ID", | ||
"minLength": 3 | ||
} | ||
}, | ||
"required": [ | ||
"pix_id" | ||
] | ||
} |