-
Notifications
You must be signed in to change notification settings - Fork 1
/
sports-entertainment-event-venue.schema.json
120 lines (120 loc) · 4.8 KB
/
sports-entertainment-event-venue.schema.json
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"meta:license": [
"Copyright 2022 Adobe Systems Incorporated. All rights reserved.",
"This work is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license",
"you may not use this file except in compliance with the License. You may obtain a copy",
"of the License at https://creativecommons.org/licenses/by/4.0/"
],
"$id": "https://ns.adobe.com/xdm/mixins/sports-entertainment-event-venue",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Sports Entertainment Event Venue",
"type": "object",
"meta:extensible": true,
"meta:abstract": true,
"meta:intendedToExtend": [
"https://ns.adobe.com/xdm/classes/location"
],
"meta:tags": {
"industry": [
"travel_and_hospitality"
]
},
"description": "For Sports and Entertaiment Event Venue information, such as a concert hall or sports arena.",
"definitions": {
"sports-entertainment-event-venue": {
"properties": {
"xdm:eventVenue": {
"title": "Event Venue",
"type": "object",
"description": "Details of a live event venue physical location.",
"properties": {
"xdm:designatedMarketAreas": {
"description": "The list of associated DMAs (Designated Market Areas) of the venue",
"items": {
"type": "string"
},
"title": "DMA List",
"type": "array"
},
"xdm:currency": {
"$ref": "https://ns.adobe.com/xdm/datatypes/currency",
"description": "Local currency accepted by the venue.",
"title": "Currency"
},
"xdm:markets": {
"description": "Markets of the venue",
"items": {
"type": "string"
},
"required": [],
"title": "Markets",
"type": "array"
},
"xdm:physicalAddress": {
"$ref": "https://ns.adobe.com/xdm/common/address",
"description": "Physical Address of the event venue.",
"title": "Physical Address"
},
"xdm:seatingCapacity": {
"description": "Seating capacity of the venue.",
"title": "Seating Capacity",
"type": "integer"
},
"xdm:timeZone": {
"description": "Time zone in which the venue resides.",
"title": "Time Zone",
"type": "string"
},
"xdm:url": {
"description": "URL for the Venue web presence.",
"required": [],
"title": "URL",
"type": "string"
}
}
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/sports-entertainment-event-venue"
}
],
"meta:status": "experimental",
"examples": [
{
"xdm:eventVenue": {
"xdm:designatedMarketAreas": [
"123",
"456"
],
"xdm:currency": {
"xdm:amount": -200757575,
"xdm:currencyCode": "USD",
"xdm:conversionDate": "2022-01-01T15:52:25+00:00"
},
"xdm:markets": [
"463",
"123"
],
"xdm:physicalAddress": {
"xdm:primary": false,
"xdm:street1": "345 Park Ave",
"xdm:city": "San Jose",
"xdm:stateProvince": "US-CA",
"xdm:postalCode": "95110",
"xdm:country": "United States",
"xdm:countryCode": "US",
"schema:latitude": 37.3382,
"schema:longitude": 121.8863,
"xdm:status": "active",
"xdm:lastVerifiedDate": "2018-01-02"
},
"xdm:seatingCapacity": 250,
"xdm:timeZone": "America/Chicago",
"xdm:url": "https://adobe.com"
}
}
]
}