-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjson-schema.yml
More file actions
83 lines (83 loc) · 1.8 KB
/
Copy pathjson-schema.yml
File metadata and controls
83 lines (83 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
$schema: https://json-schema.org/draft/2020-12/schema
$id: https://raw.githubusercontent.com/api-evangelist/google-ad-manager/refs/heads/main/json-schema/json-schema.yml
title: Google Ad Manager API Schema
description: >-
JSON Schema for the Google Ad Manager API covering networks, ad units,
orders, companies, and reports.
type: object
properties:
Network:
type: object
properties:
name:
type: string
description: Resource name of the network.
displayName:
type: string
description: The display name of the network.
networkCode:
type: string
description: The network code.
timeZone:
type: string
description: The timezone of the network.
currencyCode:
type: string
description: The default currency code.
required:
- name
- networkCode
AdUnit:
type: object
properties:
name:
type: string
description: Resource name of the ad unit.
adUnitId:
type: string
displayName:
type: string
adUnitCode:
type: string
status:
type: string
enum:
- ACTIVE
- INACTIVE
- ARCHIVED
required:
- name
Order:
type: object
properties:
name:
type: string
orderId:
type: string
displayName:
type: string
advertiser:
type: string
status:
type: string
required:
- name
Company:
type: object
properties:
name:
type: string
companyId:
type: string
displayName:
type: string
type:
type: string
enum:
- ADVERTISER
- AGENCY
- HOUSE_ADVERTISER
- HOUSE_AGENCY
required:
- name
- type