actv 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. data/.gitignore +30 -0
  2. data/.rspec +2 -0
  3. data/.ruby-gemset +1 -0
  4. data/.ruby-version +1 -0
  5. data/CHANGELOG.md +64 -0
  6. data/Gemfile +4 -0
  7. data/Guardfile +20 -0
  8. data/LICENSE +22 -0
  9. data/README.md +63 -0
  10. data/Rakefile +17 -0
  11. data/actv.gemspec +34 -0
  12. data/lib/actv.rb +48 -0
  13. data/lib/actv/address.rb +9 -0
  14. data/lib/actv/article.rb +89 -0
  15. data/lib/actv/article_search_results.rb +15 -0
  16. data/lib/actv/asset.rb +186 -0
  17. data/lib/actv/asset_channel.rb +13 -0
  18. data/lib/actv/asset_component.rb +8 -0
  19. data/lib/actv/asset_description.rb +15 -0
  20. data/lib/actv/asset_description_type.rb +12 -0
  21. data/lib/actv/asset_image.rb +13 -0
  22. data/lib/actv/asset_legacy_data.rb +20 -0
  23. data/lib/actv/asset_price.rb +11 -0
  24. data/lib/actv/asset_seo_url.rb +5 -0
  25. data/lib/actv/asset_status.rb +17 -0
  26. data/lib/actv/asset_tag.rb +9 -0
  27. data/lib/actv/asset_topic.rb +11 -0
  28. data/lib/actv/base.rb +148 -0
  29. data/lib/actv/channel.rb +13 -0
  30. data/lib/actv/client.rb +330 -0
  31. data/lib/actv/configurable.rb +39 -0
  32. data/lib/actv/default.rb +87 -0
  33. data/lib/actv/error.rb +32 -0
  34. data/lib/actv/error/bad_gateway.rb +11 -0
  35. data/lib/actv/error/bad_request.rb +10 -0
  36. data/lib/actv/error/client_error.rb +39 -0
  37. data/lib/actv/error/enhance_your_calm.rb +10 -0
  38. data/lib/actv/error/forbidden.rb +10 -0
  39. data/lib/actv/error/internal_server_error.rb +11 -0
  40. data/lib/actv/error/not_acceptable.rb +10 -0
  41. data/lib/actv/error/not_found.rb +10 -0
  42. data/lib/actv/error/server_error.rb +19 -0
  43. data/lib/actv/error/service_unavailable.rb +11 -0
  44. data/lib/actv/error/unauthorized.rb +10 -0
  45. data/lib/actv/event.rb +213 -0
  46. data/lib/actv/event_result.rb +8 -0
  47. data/lib/actv/event_search_results.rb +11 -0
  48. data/lib/actv/evergreen.rb +53 -0
  49. data/lib/actv/facet.rb +16 -0
  50. data/lib/actv/facet_term.rb +5 -0
  51. data/lib/actv/facet_value.rb +7 -0
  52. data/lib/actv/identity.rb +28 -0
  53. data/lib/actv/interest.rb +39 -0
  54. data/lib/actv/null_object.rb +19 -0
  55. data/lib/actv/phone_number.rb +9 -0
  56. data/lib/actv/place.rb +24 -0
  57. data/lib/actv/popular_interest.rb +18 -0
  58. data/lib/actv/popular_interest_search_results.rb +12 -0
  59. data/lib/actv/request/multipart_with_file.rb +37 -0
  60. data/lib/actv/response/parse_json.rb +29 -0
  61. data/lib/actv/response/raise_client_error.rb +21 -0
  62. data/lib/actv/response/raise_server_error.rb +18 -0
  63. data/lib/actv/search_results.rb +30 -0
  64. data/lib/actv/sub_event.rb +15 -0
  65. data/lib/actv/tag.rb +9 -0
  66. data/lib/actv/topic.rb +9 -0
  67. data/lib/actv/user.rb +38 -0
  68. data/lib/actv/version.rb +3 -0
  69. data/spec/actv/article_search_results_spec.rb +16 -0
  70. data/spec/actv/article_spec.rb +44 -0
  71. data/spec/actv/asset_channel_spec.rb +17 -0
  72. data/spec/actv/asset_description_spec.rb +17 -0
  73. data/spec/actv/asset_image_spec.rb +27 -0
  74. data/spec/actv/asset_price_spec.rb +23 -0
  75. data/spec/actv/asset_spec.rb +172 -0
  76. data/spec/actv/asset_status_spec.rb +24 -0
  77. data/spec/actv/base_spec.rb +51 -0
  78. data/spec/actv/client/articles_spec.rb +130 -0
  79. data/spec/actv/client/assets_spec.rb +87 -0
  80. data/spec/actv/client/event_results_spec.rb +35 -0
  81. data/spec/actv/client/events_spec.rb +99 -0
  82. data/spec/actv/client/search_spec.rb +58 -0
  83. data/spec/actv/client/system_health_spec.rb +16 -0
  84. data/spec/actv/client/users_spec.rb +31 -0
  85. data/spec/actv/client_spec.rb +140 -0
  86. data/spec/actv/event_spec.rb +331 -0
  87. data/spec/actv/evergreen_spec.rb +33 -0
  88. data/spec/actv/identifiable_spec.rb +31 -0
  89. data/spec/actv/null_object_spec.rb +24 -0
  90. data/spec/actv/place_spec.rb +25 -0
  91. data/spec/actv/search_results_spec.rb +44 -0
  92. data/spec/actv/user_spec.rb +25 -0
  93. data/spec/actv_spec.rb +60 -0
  94. data/spec/faraday/response_spec.rb +0 -0
  95. data/spec/fixtures/me.json +21 -0
  96. data/spec/fixtures/system_health.json +1 -0
  97. data/spec/fixtures/valid_article.json +187 -0
  98. data/spec/fixtures/valid_asset.json +185 -0
  99. data/spec/fixtures/valid_event.json +188 -0
  100. data/spec/fixtures/valid_event_results.json +23 -0
  101. data/spec/fixtures/valid_evergreen.json +1 -0
  102. data/spec/fixtures/valid_evergreen_child_1.json +1 -0
  103. data/spec/fixtures/valid_search.json +1282 -0
  104. data/spec/fixtures/valid_search_no_event_results.json +5 -0
  105. data/spec/fixtures/valid_search_no_results.json +9 -0
  106. data/spec/spec_helper.rb +15 -0
  107. data/spec/support/helper.rb +43 -0
  108. metadata +432 -0
@@ -0,0 +1,185 @@
1
+ {
2
+ "assetStatus": {
3
+ "assetStatusId": "2",
4
+ "assetStatusName": "VISIBLE",
5
+ "isSearchable": "true",
6
+ "isDeleted": "false",
7
+ "createdDate": "2012-05-17T18:19:49",
8
+ "modifiedDate": "2012-05-17T18:19:49"
9
+ },
10
+ "organization": {},
11
+ "place": {
12
+ "placeGuid": "3993F0DC-2168-4497-943D-C64334CC8714",
13
+ "placeName": "Kingwood Park New Jersey",
14
+ "placeDsc": "",
15
+ "placeUrlAdr": "",
16
+ "addressLine1Txt": "200 Union Road",
17
+ "addressLine2Txt": "",
18
+ "cityName": "Frenchtown",
19
+ "stateProvinceCode": "",
20
+ "localityName": "New Jersey",
21
+ "postalCode": "08825",
22
+ "countryName": "United States",
23
+ "countryCode": "",
24
+ "latitude": "40.504792",
25
+ "longitude": "-75.001827",
26
+ "directionsTxt": "",
27
+ "geoPoint": {
28
+ "lat": "40.504792",
29
+ "lon": "-75.001827"
30
+ }
31
+ },
32
+ "evergreenAsset": {},
33
+ "dma": {
34
+ "dmaId": "52",
35
+ "dmaName": "New York"
36
+ },
37
+ "sourceSystem": {
38
+ "sourceSystemName": "RegCenter",
39
+ "legacyGuid": "EA4E860A-9DCD-4DAA-A7CA-4A77AD194F65"
40
+ },
41
+ "assetRootAsset": {},
42
+ "assetParentAsset": {},
43
+ "market": {},
44
+ "assetGuid": "BA288960-2718-4B20-B380-8F939596BB59",
45
+ "assetName": "Run Daddy Run 5k Race, 2 Mile Walk & Kids Fun Run",
46
+ "assetDsc": "The Run Daddy Run Event is the HCM Foundation way to bring the community together on Fathers Day Weekend to celebrate Fathers and their families. 100% of the proceeds will go to HCM service & scholarship programs.",
47
+ "alternateName": "",
48
+ "timezone": "",
49
+ "timezoneAbb": "",
50
+ "timezoneName": "",
51
+ "currencyCd": "",
52
+ "localeCd": "",
53
+ "salesStartDate": null,
54
+ "salesEndDate": null,
55
+ "urlAdr": "",
56
+ "detailPageTemplateId": "",
57
+ "preferredUrlAdr": "",
58
+ "logoUrlAdr": "",
59
+ "activityStartDate": "2012-06-24T00:00:00",
60
+ "activityStartTime": "9:00:00",
61
+ "activityEndDate": "2012-06-24T00:00:00",
62
+ "activityEndTime": "9:00:00",
63
+ "donationUrlAdr": "",
64
+ "teamUrlAdr": "",
65
+ "homePageUrlAdr": "http://www.hcmfoundation.org",
66
+ "registrationUrlAdr": "",
67
+ "regReqMinAge": "",
68
+ "regReqMaxAge": "",
69
+ "regReqGenderCd": "",
70
+ "resultsUrlAdr": "",
71
+ "isRecurring": "false",
72
+ "contactName": "Mike Marsteller",
73
+ "contactEmailAdr": "hcmfund@gmail.com",
74
+ "contactPhone": "484-347-3993",
75
+ "contactTxt": "",
76
+ "showContact": "true",
77
+ "sorId": "",
78
+ "sorCreateDtm": null,
79
+ "sorCreateUserId": "",
80
+ "authorName": "",
81
+ "publishDate": null,
82
+ "createdDate": "2012-04-19T18:16:06",
83
+ "modifiedDate": "2012-05-17T18:29:18",
84
+ "activityRecurrences": [],
85
+ "assetQuantity": {},
86
+ "assetLegacyData": {
87
+ "assetTypeId": "",
88
+ "typeName": "",
89
+ "uploadSearchUrlAdr": "",
90
+ "authorName": "",
91
+ "onlineRegistration": "true",
92
+ "onlineDonation": "",
93
+ "onlineMembership": "",
94
+ "onlineMembershipCostAmt": "",
95
+ "costAmt": "",
96
+ "avgUserRatingTxt": "",
97
+ "estParticipantNb": "",
98
+ "maxTeamNb": "",
99
+ "minGuaranteedGameNb": "",
100
+ "multipleStartDate": "",
101
+ "genderRequirementTxt": "",
102
+ "participationCriteriaTxt": "",
103
+ "userCommentTxt": "",
104
+ "priceExtensionTxt": "",
105
+ "searchWeight": "",
106
+ "seoUrl": "http://www.active.com/running/frenchtown-nj/run-daddy-run-5k-race-2-mile-walk-and-kids-fun-run-2012",
107
+ "substitutionUrl": "2028700",
108
+ "trackbackUrl": "",
109
+ "eventCategories": "",
110
+ "isSearchable": "true",
111
+ "createdDate": "2012-04-19T18:16:06",
112
+ "modifiedDate": "2012-05-17T18:29:19"
113
+ },
114
+ "assetTags": [],
115
+ "assetPrices": [{
116
+ "effectiveDate": "2012-08-03T06:59:00",
117
+ "priceAmt": "10",
118
+ "maxPriceAmt": "",
119
+ "minPriceAmt": ""
120
+ }],
121
+ "assetDescriptions": [{
122
+ "descriptionType": {
123
+ "descriptionTypeId": "1",
124
+ "descriptionTypeName": "PRIMARY"
125
+ },
126
+ "description": "The Run Daddy Run Event is the HCM Foundation way to bring the community together on Fathers Day Weekend to celebrate Fathers and their families. 100% of the proceeds will go to HCM service & scholarship programs."
127
+ }],
128
+ "assetChannels": [{
129
+ "sequence": "1",
130
+ "channel": {
131
+ "channelId": "1020",
132
+ "channelName": "Running",
133
+ "channelDsc": "Running"
134
+ }
135
+ }, {
136
+ "sequence": "2",
137
+ "channel": {
138
+ "channelId": "1148",
139
+ "channelName": "Running\\Cross Country",
140
+ "channelDsc": ""
141
+ }
142
+ }],
143
+ "assetMediaTypes": [{
144
+ "sequence": "2",
145
+ "mediaType": {
146
+ "mediaTypeId": "256",
147
+ "mediaTypeName": "Event\\5K",
148
+ "mediaTypeDsc": ""
149
+ }
150
+ }, {
151
+ "sequence": "1",
152
+ "mediaType": {
153
+ "mediaTypeId": "2",
154
+ "mediaTypeName": "Event",
155
+ "mediaTypeDsc": ""
156
+ }
157
+ }],
158
+ "assetImages": [],
159
+ "assetTopics": [{
160
+ "sequence": "3",
161
+ "topic": {
162
+ "topicId": "26",
163
+ "topicTaxonomy": "Endurance/Duathlon",
164
+ "topicName": "Duathlon"
165
+ }
166
+ }],
167
+ "assetCategories": [],
168
+ "assetMetaInterests": [],
169
+ "assetComponents": [
170
+ {
171
+ "assetGuid": "63e030f3-3df4-402c-9617-d37f6fb2c11b"
172
+ },
173
+ {
174
+ "assetGuid": "63e030f3-3df4-402c-9617-d37f6fb2c11c"
175
+ }
176
+ ],
177
+ "assetServiceHostName": "asset-03",
178
+ "assetSeoUrls": [
179
+ {
180
+ "seoSystemName": "as3",
181
+ "statusCode": "true",
182
+ "urlAdr": "http://www.active.com/san-francisco-ca/running/crazy-eight-fall-2013"
183
+ }
184
+ ]
185
+ }
@@ -0,0 +1,188 @@
1
+ {
2
+ "assetStatus": {
3
+ "assetStatusId": "2",
4
+ "assetStatusName": "VISIBLE",
5
+ "isSearchable": "true",
6
+ "isDeleted": "false",
7
+ "createdDate": "2012-05-17T18:19:49",
8
+ "modifiedDate": "2012-05-17T18:19:49"
9
+ },
10
+ "organization": {},
11
+ "place": {
12
+ "timezoneOffset": -5,
13
+ "timezoneDST": 1,
14
+ "placeGuid": "3993F0DC-2168-4497-943D-C64334CC8714",
15
+ "placeName": "Kingwood Park New Jersey",
16
+ "placeDsc": "",
17
+ "placeUrlAdr": "",
18
+ "addressLine1Txt": "200 Union Road",
19
+ "addressLine2Txt": "",
20
+ "cityName": "Frenchtown",
21
+ "stateProvinceCode": "",
22
+ "localityName": "New Jersey",
23
+ "postalCode": "08825",
24
+ "countryName": "United States",
25
+ "countryCode": "",
26
+ "latitude": "40.504792",
27
+ "longitude": "-75.001827",
28
+ "directionsTxt": "",
29
+ "geoPoint": {
30
+ "lat": "40.504792",
31
+ "lon": "-75.001827"
32
+ }
33
+ },
34
+ "evergreenAsset": {},
35
+ "dma": {
36
+ "dmaId": "52",
37
+ "dmaName": "New York"
38
+ },
39
+ "sourceSystem": {
40
+ "sourceSystemName": "RegCenter",
41
+ "legacyGuid": "EA4E860A-9DCD-4DAA-A7CA-4A77AD194F65"
42
+ },
43
+ "assetRootAsset": {},
44
+ "assetParentAsset": {},
45
+ "market": {},
46
+ "assetGuid": "BA288960-2718-4B20-B380-8F939596BB59",
47
+ "assetName": "Run Daddy Run 5k Race, 2 Mile Walk & Kids Fun Run",
48
+ "assetDsc": "The Run Daddy Run Event is the HCM Foundation way to bring the community together on Fathers Day Weekend to celebrate Fathers and their families. 100% of the proceeds will go to HCM service & scholarship programs.",
49
+ "alternateName": "",
50
+ "timezone": "",
51
+ "timezoneAbb": "",
52
+ "timezoneName": "",
53
+ "currencyCd": "",
54
+ "localeCd": "",
55
+ "salesStartDate": "2012-06-24T00:00:00",
56
+ "salesEndDate": "2012-07-24T00:00:00",
57
+ "urlAdr": "",
58
+ "detailPageTemplateId": "",
59
+ "preferredUrlAdr": "",
60
+ "logoUrlAdr": "",
61
+ "activityStartDate": "2012-06-24T00:00:00",
62
+ "activityStartTime": "9:00:00",
63
+ "activityEndDate": "2012-07-24T00:00:00",
64
+ "activityEndTime": "9:00:00",
65
+ "donationUrlAdr": "",
66
+ "teamUrlAdr": "",
67
+ "homePageUrlAdr": "http://www.hcmfoundation.org",
68
+ "registrationUrlAdr": "https://www.active.com/register/index.cfm?EVENT_ID=2028700",
69
+ "regReqMinAge": "",
70
+ "regReqMaxAge": "",
71
+ "regReqGenderCd": "",
72
+ "resultsUrlAdr": "",
73
+ "isRecurring": "false",
74
+ "contactName": "Mike Marsteller",
75
+ "contactEmailAdr": "hcmfund@gmail.com",
76
+ "contactPhone": "484-347-3993",
77
+ "contactTxt": "",
78
+ "showContact": "true",
79
+ "sorId": "",
80
+ "sorCreateDtm": null,
81
+ "sorCreateUserId": "",
82
+ "authorName": "",
83
+ "publishDate": null,
84
+ "createdDate": "2012-04-19T18:16:06",
85
+ "modifiedDate": "2012-05-17T18:29:18",
86
+ "activityRecurrences": [],
87
+ "assetQuantity": {},
88
+ "assetLegacyData": {
89
+ "assetTypeId": "",
90
+ "typeName": "",
91
+ "uploadSearchUrlAdr": "",
92
+ "authorName": "",
93
+ "onlineRegistration": "true",
94
+ "onlineDonation": "",
95
+ "onlineMembership": "",
96
+ "onlineMembershipCostAmt": "",
97
+ "costAmt": "",
98
+ "avgUserRatingTxt": "",
99
+ "estParticipantNb": "",
100
+ "maxTeamNb": "",
101
+ "minGuaranteedGameNb": "",
102
+ "multipleStartDate": "",
103
+ "genderRequirementTxt": "",
104
+ "participationCriteriaTxt": "",
105
+ "userCommentTxt": "",
106
+ "priceExtensionTxt": "",
107
+ "searchWeight": "",
108
+ "seoUrl": "http://www.active.com/running/frenchtown-nj/run-daddy-run-5k-race-2-mile-walk-and-kids-fun-run-2012",
109
+ "substitutionUrl": "2028700",
110
+ "trackbackUrl": "",
111
+ "eventCategories": "",
112
+ "isSearchable": "true",
113
+ "createdDate": "2012-04-19T18:16:06",
114
+ "modifiedDate": "2012-05-17T18:29:19"
115
+ },
116
+ "assetTags": [],
117
+ "assetPrices": [{
118
+ "effectiveDate": "2012-08-03T06:59:00",
119
+ "priceAmt": "10",
120
+ "maxPriceAmt": "",
121
+ "minPriceAmt": ""
122
+ }],
123
+ "assetDescriptions": [{
124
+ "descriptionType": {
125
+ "descriptionTypeId": "1",
126
+ "descriptionTypeName": "PRIMARY"
127
+ },
128
+ "description": "The Run Daddy Run Event is the HCM Foundation way to bring the community together on Fathers Day Weekend to celebrate Fathers and their families. 100% of the proceeds will go to HCM service & scholarship programs."
129
+ }],
130
+ "assetChannels": [{
131
+ "sequence": "1",
132
+ "channel": {
133
+ "channelId": "1020",
134
+ "channelName": "Running",
135
+ "channelDsc": "Running"
136
+ }
137
+ }, {
138
+ "sequence": "2",
139
+ "channel": {
140
+ "channelId": "1148",
141
+ "channelName": "Running\\Cross Country",
142
+ "channelDsc": ""
143
+ }
144
+ }],
145
+ "assetMediaTypes": [{
146
+ "sequence": "2",
147
+ "mediaType": {
148
+ "mediaTypeId": "256",
149
+ "mediaTypeName": "Event\\5K",
150
+ "mediaTypeDsc": ""
151
+ }
152
+ }, {
153
+ "sequence": "1",
154
+ "mediaType": {
155
+ "mediaTypeId": "2",
156
+ "mediaTypeName": "Event",
157
+ "mediaTypeDsc": ""
158
+ }
159
+ }],
160
+ "assetImages": [],
161
+ "assetTopics": [{
162
+ "sequence": "3",
163
+ "topic": {
164
+ "topicId": "26",
165
+ "topicTaxonomy": "Endurance/Duathlon",
166
+ "topicName": "Duathlon"
167
+ }
168
+ }],
169
+ "assetCategories": [
170
+ {
171
+ "category": {
172
+ "categoryName": "Races",
173
+ "categoryId": "22",
174
+ "categoryTaxonomy": "Event/Races"
175
+ },
176
+ "sequence": "1"
177
+ }],
178
+ "assetMetaInterests": [],
179
+ "assetComponents": [
180
+ {
181
+ "assetGuid": "63e030f3-3df4-402c-9617-d37f6fb2c11b"
182
+ },
183
+ {
184
+ "assetGuid": "63e030f3-3df4-402c-9617-d37f6fb2c11c"
185
+ }
186
+ ],
187
+ "assetServiceHostName": "asset-03"
188
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "id": 34,
3
+ "title": "2013 IRONMAN 70.3 Hawaii",
4
+ "date": "2013-06-01T14:00:00Z",
5
+ "asset_type_id": "3BF82BBE-CF88-4E8C-A56F-78F5CE87E4C6",
6
+ "asset_id": "286F5731-9800-4C6E-ADD5-0E3B72392CA7",
7
+ "event_type": null,
8
+ "latitude": 20.0203,
9
+ "longitude": -155.669,
10
+ "address": "The Fairmont Orchid Hawai'i on the Kohala Coast",
11
+ "url": "http://results2qa01.dev.activenetwork.com/events/2013-ironman-70-3-hawaii",
12
+ "user": {
13
+ "full_name": "Jonathan Spooner"
14
+ },
15
+ "sub_events": [
16
+ {
17
+ "sub_event": {
18
+ "id": 49,
19
+ "title": "Results"
20
+ }
21
+ }
22
+ ]
23
+ }
@@ -0,0 +1 @@
1
+ {"assetStatus":{"assetStatusId":"2","assetStatusName":"VISIBLE","createdDate":"2012-05-22T17:57:06","modifiedDate":"2012-05-22T17:57:06"},"organization":{},"place":{"placeGuid":"e3fb3569-c28d-44f3-84d5-4329c6973cb6","placeName":"Del Mar Fairgrounds","placeDsc":"","placeUrlAdr":"","addressLine1Txt":"2260 Jimmy Durante Blvd","addressLine2Txt":"","cityName":"Del Mar","stateProvinceCode":"CA","localityName":"","postalCode":"92014","countryName":"United States","countryCode":"","timezone":"America/Los_Angeles","timezoneOffset":-8,"timezoneDST":1,"latitude":"32.972428","longitude":"-117.258067","directionsTxt":"","geoPoint":{"lat":"32.972428","lon":"-117.258067"},"dma":{"dmaId":"825","dmaName":"San Diego"}},"evergreenParentAsset":{},"sourceSystem":{"sourceSystemName":"RegCenter","legacyGuid":"EA4E860A-9DCD-4DAA-A7CA-4A77AD194F65","affiliate":"true"},"assetRootAsset":{},"assetParentAsset":{},"market":{"marketId":"8","marketName":"endurance-running"},"assetGuid":"fb48ff3f-82d5-4bbb-9674-501aea9e89df","assetName":"Del Mar Mud Run","assetDsc":"","alternateName":"","timezone":"","timezoneAbb":"","timezoneName":"","currencyCd":"","localeCd":"","salesStartDate":"2013-02-03T00:00:00","salesEndDate":"2013-07-29T23:59:59","urlAdr":"http://www.active.com/running/del-mar-ca/del-mar-mud-run-2013","detailPageTemplateId":"","preferredUrlAdr":"","logoUrlAdr":"http://photos-images.active.com/file/3/1/optimized/521ade28-b989-41d7-a871-597491139757.jpg","activityStartDate":"2099-12-31T09:00:00","activityEndDate":"2099-12-31T00:00:00","donationUrlAdr":"","teamUrlAdr":"","homePageUrlAdr":"http://www.delmarmudrun.com/","registrationUrlAdr":"https://cui.active.com/event-reg/select-race?e=4382202","registrantSearchUrlAdr":"","regReqMinAge":"","regReqMaxAge":"","regReqGenderCd":"","resultsUrlAdr":"","isRecurring":"false","contactName":"","contactEmailAdr":"n/a","contactPhone":"n/a","contactTxt":"","showContact":"false","sorId":"","sorCreateDtm":null,"sorCreateUserId":"","authorName":"","publishDate":null,"createdDate":"2013-06-25T18:14:52","modifiedDate":"2013-06-26T06:59:16","activityRecurrences":[],"assetQuantity":{},"assetLegacyData":{"assetTypeId":"DFAA997A-D591-44CA-9FB7-BF4A4C8984F1","typeName":"","uploadSearchUrlAdr":"","authorName":"","onlineRegistration":"true","onlineDonation":"false","onlineMembership":"false","onlineMembershipCostAmt":"","costAmt":"","avgUserRatingTxt":"","estParticipantNb":"","maxTeamNb":"","minGuaranteedGameNb":"","multipleStartDate":"false","genderRequirementTxt":"","participationCriteriaTxt":"Kids||Family","userCommentTxt":"","priceExtensionTxt":"","searchWeight":"1","seoUrl":"http://activestg.dev.activenetwork.com/running/del-mar-ca/del-mar-mud-run-2099","substitutionUrl":"E-004R31CC","trackbackUrl":"http://www.active.com/page/event_details_fn.htm?event_id=E-004R31CC","eventCategories":"","isSearchable":"false","createdDate":"2013-06-25T18:36:11","modifiedDate":"2013-06-30T15:59:22"},"assetTags":[{"tag":{"tagId":"32308","tagName":"true","tagDescription":"activeadvantage"}}],"assetAttributes":[],"assetPrices":[{"effectiveUntilDate":null,"priceAmt":"0","maxPriceAmt":null,"minPriceAmt":null}],"assetDescriptions":[{"descriptionType":{"descriptionTypeId":"6","descriptionTypeName":"Standard"},"description":"<p style=\"text-align:left\">The iconic Del Mar Mud Run is back at the historic Del Mar Fairgrounds for its 4th consecutive year. One of the most fun mud runs in the world, it has attracted celebrities, international media and participants from across the country. A 5K race with 15+ obstacles and an after party unlike any other, sign up now because this race will sell out!</p><h4>Event schedule and times</h4><p></p><p style=\"text-align:left\">1. Morning: your run will start at 8am, 9am, 10am or 11am.</p><p style=\"text-align:left\">2. Afternoon: your run will start at noon, 1pm, 2pm or 3pm.</p><br/><p style=\"text-align:left\">We will send out an email to all participants approximately 2 weeks prior to race day letting you know what time your run will start. Times are first come, first serve so the sooner you register the earlier you run! If you sign up as a team you are guaranteed to be put in the same start time.</p>"},{"descriptionType":{"descriptionTypeId":"4","descriptionTypeName":"summary"},"description":"<p style=\"text-align:left\"><font style=\"font-family:UniverseMX;font-size:11;color:#000000;\" LETTERSPACING=\"0\" KERNING=\"0\">The iconic Del Mar Mud Run is back at the historic Del Mar Fairgrounds for its 4th consecutive year. One of the most fun mud runs in the world, it has attracted celebrities, international media and participants from across the country. A 5K race with 15+ obstacles and an after party unlike any other, sign up now because this race will sell out!</font></p>"}],"assetChannels":[{"sequence":"1","channel":{"channelId":"1020","channelName":"Running","channelDsc":"Running"}}],"assetMediaTypes":[{"sequence":"2","mediaType":{"mediaTypeId":"88","mediaTypeName":"Obstacle","mediaTypeDsc":""}},{"sequence":"7","mediaType":{"mediaTypeId":"8","mediaTypeName":"Other","mediaTypeDsc":""}},{"sequence":"8","mediaType":{"mediaTypeId":"178","mediaTypeName":"Military","mediaTypeDsc":""}},{"sequence":"5","mediaType":{"mediaTypeId":"180","mediaTypeName":"Recreational","mediaTypeDsc":""}},{"sequence":"3","mediaType":{"mediaTypeId":"234","mediaTypeName":"Obstacle course","mediaTypeDsc":""}},{"sequence":"6","mediaType":{"mediaTypeId":"2","mediaTypeName":"Event","mediaTypeDsc":""}},{"sequence":"1","mediaType":{"mediaTypeId":"275","mediaTypeName":"Mud","mediaTypeDsc":""}},{"sequence":"4","mediaType":{"mediaTypeId":"101","mediaTypeName":"Mud run","mediaTypeDsc":""}}],"assetImages":[{"imageUrlAdr":"http://photos-images.active.com/file/3/1/optimized/521ade28-b989-41d7-a871-597491139757.jpg","imageName":"image1","linkUrl":"","linkTarget":"","imageCaptionTxt":""}],"assetTopics":[{"sequence":"1","topic":{"topicId":"27","topicTaxonomy":"Endurance/Running","topicName":"Running"}}],"assetCategories":[{"sequence":"2","category":{"categoryId":"22","categoryTaxonomy":"Event/Races","categoryName":"Races"}},{"sequence":"1","category":{"categoryId":"2","categoryTaxonomy":"Event","categoryName":"Event"}}],"assetMetaInterests":[],"assetInterests":[],"assetDeals":[],"assetComponents":[],"assetServiceHostName":"as-app-stg02","componentInUrlAdr":{},"assetSeoUrls":[{"seoSystemName":"as3","statusCode":"true","urlAdr":"http://www.active.com/del-mar-ca/running/races/del-mar-mud-run"}],"overrideSeourlFlag":"true","activenetTopGraphic":{},"evergreenAssetFlag":"true","evergreenAssets":[{"assetGuid":"386050fa-9500-4376-b5c7-9448511a1dbe","assetName":"Del Mar Mud Run 5K","activityStartDate":"2012-10-06T00:00:00","activityEndDate":"2012-10-06T23:59:59","assetSeoUrls":[{"seoSystemName":"as3","statusCode":"true","urlAdr":"http://www.active.com/del-mar-ca/running/del-mar-mud-run-5k-2012"}]},{"assetGuid":"e03bcdf8-6857-4dc5-83f6-213498e179b5","assetName":"Del Mar Mud Run 5K","activityStartDate":"2011-10-15T08:00:00","activityEndDate":"2011-10-15T08:00:00","assetSeoUrls":[{"seoSystemName":"as3","statusCode":"true","urlAdr":"http://www.active.com/del-mar-ca/running/del-mar-mud-run-5k-2011"}]},{"assetGuid":"068487f1-807f-4fcd-8561-53740f80f6b3","assetName":"2013 Del Mar Mud Run","activityStartDate":"2013-10-05T00:00:00","activityEndDate":"2013-10-05T23:59:59","assetSeoUrls":[{"seoSystemName":"as3","statusCode":"true","urlAdr":"http://www.active.com/del-mar-ca/running/mud-runs-races/del-mar-mud-run-2013"}]},{"assetGuid":"c7e282a5-9383-49a8-9a29-140f2e99d8ab","assetName":"2010 Del Mar Mud Run","activityStartDate":"2010-11-13T08:00:00","activityEndDate":"2010-11-13T08:00:00","assetSeoUrls":[{"seoSystemName":"as3","statusCode":"true","urlAdr":"http://www.active.com/del-mar-ca/running/del-mar-mud-run-2010"}]}]}
@@ -0,0 +1 @@
1
+ {"assetStatus":{"assetStatusId":"2","assetStatusName":"VISIBLE","createdDate":"2012-05-22T17:57:06","modifiedDate":"2012-05-22T17:57:06"},"organization":{"organizationGuid":"ff680ca9-1ac2-4e19-83ee-e15d9da4e81b","organizationName":" ","organizationDsc":"","organizationUrlAdr":"","addressLine1Txt":"","addressLine2Txt":"","addressCityName":"","addressStateProvinceCode":"","addressLocalityName":"","addressPostalCd":"","addressCountryCd":"","fax":"","primaryContactEmailAdr":"","primaryContactPhone":"","primaryContactName":"","showOrganizationName":"false","hideOrganizationContact":"false"},"place":{"placeGuid":"e3fb3569-c28d-44f3-84d5-4329c6973cb6","placeName":"Del Mar Fairgrounds","placeDsc":"","placeUrlAdr":"","addressLine1Txt":"2260 Jimmy Durante Blvd","addressLine2Txt":"","cityName":"Del Mar","stateProvinceCode":"CA","localityName":"","postalCode":"92014","countryName":"United States","countryCode":"","timezone":"America/Los_Angeles","timezoneOffset":-8,"timezoneDST":1,"latitude":"32.972428","longitude":"-117.258067","directionsTxt":"","geoPoint":{"lat":"32.972428","lon":"-117.258067"},"dma":{"dmaId":"825","dmaName":"San Diego"}},"evergreenParentAsset":{"assetGuid":"fb48ff3f-82d5-4bbb-9674-501aea9e89df"},"sourceSystem":{"sourceSystemName":"ActiveWorks Endurance","legacyGuid":"DFAA997A-D591-44CA-9FB7-BF4A4C8984F1","affiliate":"true"},"assetRootAsset":{},"assetParentAsset":{},"market":{"marketId":"8","marketName":"endurance-running"},"assetGuid":"068487f1-807f-4fcd-8561-53740f80f6b3","assetName":"2013 Del Mar Mud Run","assetDsc":"","alternateName":"","timezone":"","timezoneAbb":"","timezoneName":"","currencyCd":"","localeCd":"","salesStartDate":"2013-02-03T00:00:00","salesEndDate":"2013-07-29T23:59:59","urlAdr":"http://www.active.com/running/del-mar-ca/del-mar-mud-run-2013","detailPageTemplateId":"","preferredUrlAdr":"","logoUrlAdr":"http://photos-images.active.com/file/3/1/optimized/521ade28-b989-41d7-a871-597491139757.jpg","activityStartDate":"2013-10-05T00:00:00","activityEndDate":"2013-10-05T23:59:59","donationUrlAdr":"","teamUrlAdr":"","homePageUrlAdr":"http://www.delmarmudrun.com/","registrationUrlAdr":"https://cui.active.com/event-reg/select-race?e=4382202","registrantSearchUrlAdr":"","regReqMinAge":"","regReqMaxAge":"","regReqGenderCd":"","resultsUrlAdr":"","isRecurring":"false","contactName":"","contactEmailAdr":"n/a","contactPhone":"n/a","contactTxt":"","showContact":"false","sorId":"","sorCreateDtm":null,"sorCreateUserId":"","authorName":"","publishDate":null,"createdDate":"2013-03-19T19:09:10","modifiedDate":"2013-06-26T07:12:57","activityRecurrences":[],"assetQuantity":{},"assetLegacyData":{"assetTypeId":"DFAA997A-D591-44CA-9FB7-BF4A4C8984F1","typeName":"","uploadSearchUrlAdr":"","authorName":"","onlineRegistration":"true","onlineDonation":"false","onlineMembership":"false","onlineMembershipCostAmt":"","costAmt":"","avgUserRatingTxt":"","estParticipantNb":"","maxTeamNb":"","minGuaranteedGameNb":"","multipleStartDate":"false","genderRequirementTxt":"","participationCriteriaTxt":"Kids||Family","userCommentTxt":"","priceExtensionTxt":"","searchWeight":"1","seoUrl":"http://activestg.dev.activenetwork.com/running/del-mar-ca/del-mar-mud-run-2013","substitutionUrl":"E-004R31CC","trackbackUrl":"http://www.active.com/page/event_details_fn.htm?event_id=E-004R31CC","eventCategories":"","isSearchable":"false","createdDate":"2013-03-19T19:09:10","modifiedDate":"2013-06-30T15:59:31"},"assetTags":[{"tag":{"tagId":"32308","tagName":"true","tagDescription":"activeadvantage"}}],"assetAttributes":[],"assetPrices":[{"effectiveUntilDate":null,"priceAmt":"0","maxPriceAmt":null,"minPriceAmt":null}],"assetDescriptions":[{"descriptionType":{"descriptionTypeId":"4","descriptionTypeName":"summary"},"description":"<p style=\"text-align:left\"><font style=\"font-family:UniverseMX;font-size:11;color:#000000;\" LETTERSPACING=\"0\" KERNING=\"0\">The iconic Del Mar Mud Run is back at the historic Del Mar Fairgrounds for its 4th consecutive year. One of the most fun mud runs in the world, it has attracted celebrities, international media and participants from across the country. A 5K race with 15+ obstacles and an after party unlike any other, sign up now because this race will sell out!</font></p>"},{"descriptionType":{"descriptionTypeId":"6","descriptionTypeName":"Standard"},"description":"<p style=\"text-align:left\">The iconic Del Mar Mud Run is back at the historic Del Mar Fairgrounds for its 4th consecutive year. One of the most fun mud runs in the world, it has attracted celebrities, international media and participants from across the country. A 5K race with 15+ obstacles and an after party unlike any other, sign up now because this race will sell out!</p><h4>Event schedule and times</h4><p></p><p style=\"text-align:left\">1. Morning: your run will start at 8am, 9am, 10am or 11am.</p><p style=\"text-align:left\">2. Afternoon: your run will start at noon, 1pm, 2pm or 3pm.</p><br/><p style=\"text-align:left\">We will send out an email to all participants approximately 2 weeks prior to race day letting you know what time your run will start. Times are first come, first serve so the sooner you register the earlier you run! If you sign up as a team you are guaranteed to be put in the same start time.</p>"}],"assetChannels":[{"sequence":"1","channel":{"channelId":"1020","channelName":"Running","channelDsc":"Running"}}],"assetMediaTypes":[{"sequence":"7","mediaType":{"mediaTypeId":"8","mediaTypeName":"Other","mediaTypeDsc":""}},{"sequence":"2","mediaType":{"mediaTypeId":"88","mediaTypeName":"Obstacle","mediaTypeDsc":""}},{"sequence":"1","mediaType":{"mediaTypeId":"275","mediaTypeName":"Mud","mediaTypeDsc":""}},{"sequence":"6","mediaType":{"mediaTypeId":"2","mediaTypeName":"Event","mediaTypeDsc":""}},{"sequence":"5","mediaType":{"mediaTypeId":"180","mediaTypeName":"Recreational","mediaTypeDsc":""}},{"sequence":"8","mediaType":{"mediaTypeId":"178","mediaTypeName":"Military","mediaTypeDsc":""}},{"sequence":"4","mediaType":{"mediaTypeId":"101","mediaTypeName":"Mud run","mediaTypeDsc":""}},{"sequence":"3","mediaType":{"mediaTypeId":"234","mediaTypeName":"Obstacle course","mediaTypeDsc":""}}],"assetImages":[{"imageUrlAdr":"http://photos-images.active.com/file/3/1/optimized/521ade28-b989-41d7-a871-597491139757.jpg","imageName":"image1","linkUrl":"","linkTarget":"","imageCaptionTxt":""}],"assetTopics":[{"sequence":"1","topic":{"topicId":"280","topicTaxonomy":"Endurance/Running/Mud running","topicName":"Mud running"}}],"assetCategories":[{"sequence":"1","category":{"categoryId":"22","categoryTaxonomy":"Event/Races","categoryName":"Races"}},{"sequence":"2","category":{"categoryId":"2","categoryTaxonomy":"Event","categoryName":"Event"}}],"assetMetaInterests":[],"assetInterests":[],"assetDeals":[],"assetComponents":[],"assetServiceHostName":"as-app-stg02","componentInUrlAdr":{},"assetSeoUrls":[{"seoSystemName":"as3","statusCode":"true","urlAdr":"http://www.active.com/del-mar-ca/running/mud-runs-races/del-mar-mud-run-2013"}],"overrideSeourlFlag":"false","activenetTopGraphic":{},"evergreenAssetFlag":"false","evergreenAssets":[]}
@@ -0,0 +1,1282 @@
1
+ {
2
+
3
+ "results": [
4
+ {
5
+ "assetStatus": {
6
+ "assetStatusId": "2",
7
+ "assetStatusName": "VISIBLE",
8
+ "isSearchable": "true",
9
+ "isDeleted": "false",
10
+ "createdDate": "2012-05-09T09:18:06",
11
+ "modifiedDate": "2012-05-09T09:18:06"
12
+ },
13
+ "organization": { },
14
+ "place": {
15
+ "placeGuid": "bebdafae-62d6-4faf-bb67-c613c98f55be",
16
+ "placeName": "My all-new Place",
17
+ "placeDsc": "232x",
18
+ "placeUrlAdr": "",
19
+ "addressLine1Txt": "415 Colima St.",
20
+ "addressLine2Txt": "",
21
+ "cityName": "San Diego",
22
+ "stateProvinceCode": "CA",
23
+ "localityName": "",
24
+ "postalCode": "92109",
25
+ "countryName": "USA",
26
+ "countryCode": "",
27
+ "latitude": "32.811205",
28
+ "longitude": "-117.266330",
29
+ "directionsTxt": "I have no directions for you",
30
+ "geoPoint": {
31
+ "lat": "32.811205",
32
+ "lon": "-117.266330"
33
+ }
34
+ },
35
+ "evergreenAsset": { },
36
+ "dma": {
37
+ "dmaId": "143",
38
+ "dmaName": "Phoenix"
39
+ },
40
+ "sourceSystem": {
41
+ "sourceSystemName": "RegCenter",
42
+ "legacyGuid": "EA4E860A-9DCD-4DAA-A7CA-4A77AD194F65"
43
+ },
44
+ "assetRootAsset": { },
45
+ "assetParentAsset": { },
46
+ "market": { },
47
+ "assetGuid": "dd25451e-fc25-4cf9-b3a8-bb27e42835d7",
48
+ "assetName": "Running 5K",
49
+ "assetDsc": "asset dsc test",
50
+ "alternateName": "",
51
+ "timezone": "",
52
+ "timezoneAbb": "",
53
+ "timezoneName": "",
54
+ "currencyCd": "",
55
+ "localeCd": "",
56
+ "salesStartDate": null,
57
+ "salesEndDate": null,
58
+ "urlAdr": "gimma a url",
59
+ "detailPageTemplateId": "0",
60
+ "preferredUrlAdr": "http://www.ur.com/and%20here",
61
+ "logoUrlAdr": "a logo url",
62
+ "activityStartDate": "2012-04-07T00:00:00",
63
+ "activityStartTime": "07:08:09",
64
+ "activityEndDate": "2012-09-22T00:00:00",
65
+ "activityEndTime": "07:08:09",
66
+ "donationUrlAdr": "test donation",
67
+ "teamUrlAdr": "test team",
68
+ "homePageUrlAdr": "",
69
+ "registrationUrlAdr": "test reg",
70
+ "registrantSearchUrlAdr": "",
71
+ "regReqMinAge": "10",
72
+ "regReqMaxAge": "80",
73
+ "regReqGenderCd": "m",
74
+ "resultsUrlAdr": "test url addr",
75
+ "isRecurring": "true",
76
+ "contactName": "contact name test1",
77
+ "contactEmailAdr": "test email",
78
+ "contactPhone": "111222333",
79
+ "contactTxt": "",
80
+ "showContact": "true",
81
+ "sorId": "",
82
+ "sorCreateDtm": null,
83
+ "sorCreateUserId": "",
84
+ "authorName": "Author Name",
85
+ "publishDate": null,
86
+ "createdDate": "2012-08-02T01:58:00",
87
+ "modifiedDate": "2012-08-02T01:58:00",
88
+ "activityRecurrences": [ ],
89
+ "assetQuantity": { },
90
+ "assetLegacyData": {
91
+ "assetTypeId": "asset-type-here",
92
+ "typeName": "type name 1",
93
+ "uploadSearchUrlAdr": "up-srch url",
94
+ "authorName": "author name",
95
+ "onlineRegistration": "true",
96
+ "onlineDonation": "false",
97
+ "onlineMembership": "true",
98
+ "onlineMembershipCostAmt": "10.00",
99
+ "costAmt": "12.00",
100
+ "avgUserRatingTxt": "five stars",
101
+ "estParticipantNb": "200",
102
+ "maxTeamNb": "2",
103
+ "minGuaranteedGameNb": "1",
104
+ "multipleStartDate": "false",
105
+ "genderRequirementTxt": "M",
106
+ "participationCriteriaTxt": "participation",
107
+ "userCommentTxt": "",
108
+ "priceExtensionTxt": "",
109
+ "searchWeight": "",
110
+ "seoUrl": "",
111
+ "substitutionUrl": "",
112
+ "trackbackUrl": "",
113
+ "eventCategories": "",
114
+ "isSearchable": "true",
115
+ "createdDate": "2012-08-02T01:58:41",
116
+ "modifiedDate": "2012-08-02T01:58:41"
117
+ },
118
+ "assetTags": [
119
+ {
120
+ "tag": {
121
+ "tagId": "38416",
122
+ "tagName": "tagJason4",
123
+ "tagDescription": "MISCELLANEOUS"
124
+ }
125
+ },
126
+ {
127
+ "tag": {
128
+ "tagId": "38415",
129
+ "tagName": "tagJason6",
130
+ "tagDescription": "MISCELLANEOUS"
131
+ }
132
+ }
133
+ ],
134
+ "assetPrices": [ ],
135
+ "assetDescriptions": [
136
+ {
137
+ "descriptionType": {
138
+ "descriptionTypeId": "3",
139
+ "descriptionTypeName": "allText"
140
+ },
141
+ "description": "I am the allText."
142
+ },
143
+ {
144
+ "descriptionType": {
145
+ "descriptionTypeId": "4",
146
+ "descriptionTypeName": "summary"
147
+ },
148
+ "description": "Summary text."
149
+ }
150
+ ],
151
+ "assetChannels": [
152
+ {
153
+ "sequence": "1",
154
+ "channel": {
155
+ "channelId": "1049",
156
+ "channelName": "Skiing",
157
+ "channelDsc": ""
158
+ }
159
+ }
160
+ ],
161
+ "assetMediaTypes": [
162
+ {
163
+ "sequence": "1",
164
+ "mediaType": {
165
+ "mediaTypeId": "9",
166
+ "mediaTypeName": "Marathon",
167
+ "mediaTypeDsc": ""
168
+ }
169
+ }
170
+ ],
171
+ "assetImages": [
172
+ {
173
+ "imageUrlAdr": "test url",
174
+ "imageName": "test name",
175
+ "imageCaptionTxt": "test caption"
176
+ },
177
+ {
178
+ "imageUrlAdr": "test url2",
179
+ "imageName": "test name2",
180
+ "imageCaptionTxt": "test caption2"
181
+ }
182
+ ],
183
+ "assetTopics": [ ],
184
+ "assetCategories": [
185
+ {
186
+ "sequence": "2",
187
+ "category": {
188
+ "categoryId": "28",
189
+ "categoryName": "Experts"
190
+ }
191
+ }
192
+ ],
193
+ "assetMetaInterests": [ ],
194
+ "assetComponents": [ ],
195
+ "assetServiceHostName": "wl92760004.active.local"
196
+ },
197
+ {
198
+ "assetStatus": {
199
+ "assetStatusId": "2",
200
+ "assetStatusName": "VISIBLE",
201
+ "isSearchable": "true",
202
+ "isDeleted": "false",
203
+ "createdDate": "2012-05-22T17:57:06",
204
+ "modifiedDate": "2012-05-22T17:57:06"
205
+ },
206
+ "organization": { },
207
+ "place": {
208
+ "placeGuid": "9e398d05-ac28-4ef2-a849-0f4e2162b467",
209
+ "placeName": "mobile",
210
+ "placeDsc": "",
211
+ "placeUrlAdr": "",
212
+ "addressLine1Txt": "fsdfdsggfhgt",
213
+ "addressLine2Txt": "",
214
+ "cityName": "Austin",
215
+ "stateProvinceCode": "TX",
216
+ "localityName": "",
217
+ "postalCode": "73301",
218
+ "countryName": "United States",
219
+ "countryCode": "",
220
+ "latitude": "30.230000",
221
+ "longitude": "-97.710000",
222
+ "directionsTxt": "",
223
+ "geoPoint": {
224
+ "lat": "30.230000",
225
+ "lon": "-97.710000"
226
+ }
227
+ },
228
+ "evergreenAsset": { },
229
+ "dma": { },
230
+ "sourceSystem": {
231
+ "sourceSystemName": "RegCenter",
232
+ "legacyGuid": "EA4E860A-9DCD-4DAA-A7CA-4A77AD194F65"
233
+ },
234
+ "assetRootAsset": { },
235
+ "assetParentAsset": {
236
+ "assetGuid": "8764EC81-9D24-425F-815B-7D3D6D64C9B7"
237
+ },
238
+ "market": { },
239
+ "assetGuid": "6a358dfa-602a-4359-8e9d-e8464aeda315",
240
+ "assetName": "5K Running",
241
+ "assetDsc": "",
242
+ "alternateName": "",
243
+ "timezone": "",
244
+ "timezoneAbb": "",
245
+ "timezoneName": "",
246
+ "currencyCd": "",
247
+ "localeCd": "",
248
+ "salesStartDate": null,
249
+ "salesEndDate": null,
250
+ "urlAdr": "",
251
+ "detailPageTemplateId": "",
252
+ "preferredUrlAdr": "",
253
+ "logoUrlAdr": "http://www.active.com/images/events/hotrace.gif",
254
+ "activityStartDate": "2012-12-31T00:00:00",
255
+ "activityStartTime": "0:00:00",
256
+ "activityEndDate": "2012-12-31T00:00:00",
257
+ "activityEndTime": "0:00:00",
258
+ "donationUrlAdr": "",
259
+ "teamUrlAdr": "",
260
+ "homePageUrlAdr": "",
261
+ "registrationUrlAdr": "",
262
+ "regReqMinAge": "",
263
+ "regReqMaxAge": "",
264
+ "regReqGenderCd": "",
265
+ "resultsUrlAdr": "",
266
+ "isRecurring": "false",
267
+ "contactName": "Steven",
268
+ "contactEmailAdr": "1234@gmail.com",
269
+ "contactPhone": "1111111111",
270
+ "contactTxt": "",
271
+ "showContact": "false",
272
+ "sorId": "",
273
+ "sorCreateDtm": null,
274
+ "sorCreateUserId": "",
275
+ "authorName": "",
276
+ "publishDate": null,
277
+ "createdDate": "2012-07-23T23:16:06",
278
+ "modifiedDate": "2012-07-23T23:16:06",
279
+ "activityRecurrences": "",
280
+ "assetQuantity": { },
281
+ "assetLegacyData": {
282
+ "assetTypeId": "",
283
+ "typeName": "",
284
+ "uploadSearchUrlAdr": "",
285
+ "authorName": "",
286
+ "onlineRegistration": "true",
287
+ "onlineDonation": "false",
288
+ "onlineMembership": "false",
289
+ "onlineMembershipCostAmt": "",
290
+ "costAmt": "",
291
+ "avgUserRatingTxt": "",
292
+ "estParticipantNb": "20",
293
+ "maxTeamNb": "",
294
+ "minGuaranteedGameNb": "",
295
+ "multipleStartDate": "",
296
+ "genderRequirementTxt": "",
297
+ "participationCriteriaTxt": "Adult,Family,Kids,Men,Women",
298
+ "userCommentTxt": "",
299
+ "priceExtensionTxt": "",
300
+ "searchWeight": "1",
301
+ "seoUrl": "",
302
+ "substitutionUrl": "1970443",
303
+ "trackbackUrl": "",
304
+ "eventCategories": "",
305
+ "isSearchable": "false",
306
+ "createdDate": null,
307
+ "modifiedDate": null
308
+ },
309
+ "assetTags": [
310
+ {
311
+ "tag": {
312
+ "tagId": "125937",
313
+ "tagName": "false",
314
+ "tagDescription": "usatsanctioned"
315
+ }
316
+ },
317
+ {
318
+ "tag": {
319
+ "tagId": "89802",
320
+ "tagName": "Austin",
321
+ "tagDescription": "market"
322
+ }
323
+ },
324
+ {
325
+ "tag": {
326
+ "tagId": "32308",
327
+ "tagName": "true",
328
+ "tagDescription": "activeadvantage"
329
+ }
330
+ }
331
+ ],
332
+ "assetPrices": [
333
+ {
334
+ "effectiveDate": "2013-07-30T19:00:00",
335
+ "priceAmt": "0.01",
336
+ "maxPriceAmt": "",
337
+ "minPriceAmt": ""
338
+ },
339
+ {
340
+ "effectiveDate": "2012-06-25T07:00:00",
341
+ "priceAmt": "0.0",
342
+ "maxPriceAmt": "",
343
+ "minPriceAmt": ""
344
+ }
345
+ ],
346
+ "assetDescriptions": [
347
+ {
348
+ "descriptionType": {
349
+ "descriptionTypeId": "4",
350
+ "descriptionTypeName": "summary"
351
+ },
352
+ "description": "qqq's aaa?s @!@$#%$#%#%#%%"
353
+ },
354
+ {
355
+ "descriptionType": {
356
+ "descriptionTypeId": "6",
357
+ "descriptionTypeName": "Standard"
358
+ },
359
+ "description": "qqq's aaa?s @!@$#%$#%#%#%%"
360
+ }
361
+ ],
362
+ "assetChannels": [
363
+ {
364
+ "sequence": "1",
365
+ "channel": {
366
+ "channelId": "1020",
367
+ "channelName": "Running",
368
+ "channelDsc": "Running"
369
+ }
370
+ }
371
+ ],
372
+ "assetMediaTypes": [
373
+ {
374
+ "sequence": "3",
375
+ "mediaType": {
376
+ "mediaTypeId": "95",
377
+ "mediaTypeName": "Event\\5K",
378
+ "mediaTypeDsc": ""
379
+ }
380
+ },
381
+ {
382
+ "sequence": "1",
383
+ "mediaType": {
384
+ "mediaTypeId": "2",
385
+ "mediaTypeName": "Event",
386
+ "mediaTypeDsc": ""
387
+ }
388
+ },
389
+ {
390
+ "sequence": "2",
391
+ "mediaType": {
392
+ "mediaTypeId": "316",
393
+ "mediaTypeName": "Event\\5 mile",
394
+ "mediaTypeDsc": ""
395
+ }
396
+ }
397
+ ],
398
+ "assetImages": [
399
+ {
400
+ "imageUrlAdr": "http://www.active.com/images/events/hotrace.gif",
401
+ "imageName": "image1",
402
+ "imageCaptionTxt": ""
403
+ }
404
+ ],
405
+ "assetTopics": [
406
+ {
407
+ "sequence": "2",
408
+ "topic": {
409
+ "topicId": "27",
410
+ "topicName": "Running"
411
+ }
412
+ }
413
+ ],
414
+ "assetCategories": "",
415
+ "assetMetaInterests": "",
416
+ "assetComponents": [ ],
417
+ "assetServiceHostName": "asset-01"
418
+ },
419
+ {
420
+ "assetStatus": {
421
+ "assetStatusId": "2",
422
+ "assetStatusName": "VISIBLE",
423
+ "isSearchable": "true",
424
+ "isDeleted": "false",
425
+ "createdDate": "2012-05-22T17:57:06",
426
+ "modifiedDate": "2012-05-22T17:57:06"
427
+ },
428
+ "organization": { },
429
+ "place": {
430
+ "placeGuid": "b6e9648a-8ea4-4244-bdf1-77c4b1632040",
431
+ "placeName": "Nashville Fall Festival",
432
+ "placeDsc": "",
433
+ "placeUrlAdr": "",
434
+ "addressLine1Txt": "245 N. Kaskaskia St.",
435
+ "addressLine2Txt": "",
436
+ "cityName": "Nashville",
437
+ "stateProvinceCode": "IL",
438
+ "localityName": "",
439
+ "postalCode": "62263",
440
+ "countryName": "USA",
441
+ "countryCode": "",
442
+ "latitude": "38.344928",
443
+ "longitude": "-89.382868",
444
+ "directionsTxt": "",
445
+ "geoPoint": {
446
+ "lat": "38.344928",
447
+ "lon": "-89.382868"
448
+ }
449
+ },
450
+ "evergreenAsset": { },
451
+ "dma": { },
452
+ "sourceSystem": {
453
+ "sourceSystemName": "RegCenter",
454
+ "legacyGuid": "EA4E860A-9DCD-4DAA-A7CA-4A77AD194F65"
455
+ },
456
+ "assetRootAsset": { },
457
+ "assetParentAsset": { },
458
+ "market": {
459
+ "marketId": "8",
460
+ "marketName": "endurance-running"
461
+ },
462
+ "assetGuid": "8fed092d-2b07-4f82-a119-8516c4efa3d5",
463
+ "assetName": "Running Event - 5K run",
464
+ "assetDsc": "",
465
+ "alternateName": "",
466
+ "timezone": "",
467
+ "timezoneAbb": "",
468
+ "timezoneName": "",
469
+ "currencyCd": "",
470
+ "localeCd": "",
471
+ "salesStartDate": null,
472
+ "salesEndDate": null,
473
+ "urlAdr": "",
474
+ "detailPageTemplateId": "",
475
+ "preferredUrlAdr": "",
476
+ "logoUrlAdr": "http://www.active.com/images/events/hotrace.gif",
477
+ "activityStartDate": "2012-09-22T00:00:00",
478
+ "activityStartTime": "7:30:00",
479
+ "activityEndDate": "2012-09-22T00:00:00",
480
+ "activityEndTime": "7:30:00",
481
+ "donationUrlAdr": "",
482
+ "teamUrlAdr": "",
483
+ "homePageUrlAdr": "http://www.angelforautism.com",
484
+ "registrationUrlAdr": "",
485
+ "regReqMinAge": "",
486
+ "regReqMaxAge": "",
487
+ "regReqGenderCd": "",
488
+ "resultsUrlAdr": "",
489
+ "isRecurring": "false",
490
+ "contactName": "Heather Maschhoff",
491
+ "contactEmailAdr": "heather@angelforautism.com",
492
+ "contactPhone": "618-322-8387",
493
+ "contactTxt": "",
494
+ "showContact": "false",
495
+ "sorId": "",
496
+ "sorCreateDtm": null,
497
+ "sorCreateUserId": "",
498
+ "authorName": "",
499
+ "publishDate": null,
500
+ "createdDate": "2012-07-30T03:15:26",
501
+ "modifiedDate": "2012-08-02T18:16:06",
502
+ "activityRecurrences": [ ],
503
+ "assetQuantity": {
504
+ "capacityNb": "",
505
+ "soldCnt": "0",
506
+ "availableCnt": "0",
507
+ "waitlistCapacityNb": "",
508
+ "waitlistCnt": "",
509
+ "createdDate": "2012-07-30T03:15:26",
510
+ "modifiedDate": "2012-07-30T03:15:26"
511
+ },
512
+ "assetLegacyData": {
513
+ "assetTypeId": "",
514
+ "typeName": "",
515
+ "uploadSearchUrlAdr": "",
516
+ "authorName": "",
517
+ "onlineRegistration": "true",
518
+ "onlineDonation": "false",
519
+ "onlineMembership": "false",
520
+ "onlineMembershipCostAmt": "",
521
+ "costAmt": "",
522
+ "avgUserRatingTxt": "",
523
+ "estParticipantNb": "300",
524
+ "maxTeamNb": "",
525
+ "minGuaranteedGameNb": "",
526
+ "multipleStartDate": "",
527
+ "genderRequirementTxt": "",
528
+ "participationCriteriaTxt": "Family,Kids,Men,Women",
529
+ "userCommentTxt": "",
530
+ "priceExtensionTxt": "",
531
+ "searchWeight": "1.0000",
532
+ "seoUrl": "",
533
+ "substitutionUrl": "2049150",
534
+ "trackbackUrl": "",
535
+ "eventCategories": "",
536
+ "isSearchable": "false",
537
+ "createdDate": "2012-07-30T03:15:26",
538
+ "modifiedDate": "2012-07-30T03:15:26"
539
+ },
540
+ "assetTags": [
541
+ {
542
+ "tag": {
543
+ "tagId": "32308",
544
+ "tagName": "true",
545
+ "tagDescription": "activeadvantage"
546
+ }
547
+ },
548
+ {
549
+ "tag": {
550
+ "tagId": "88733",
551
+ "tagName": "Saint Louis",
552
+ "tagDescription": "market"
553
+ }
554
+ },
555
+ {
556
+ "tag": {
557
+ "tagId": "125937",
558
+ "tagName": "false",
559
+ "tagDescription": "usatsanctioned"
560
+ }
561
+ }
562
+ ],
563
+ "assetPrices": [
564
+ {
565
+ "effectiveDate": "2012-09-02T06:59:59",
566
+ "priceAmt": "20.00",
567
+ "maxPriceAmt": "",
568
+ "minPriceAmt": ""
569
+ }
570
+ ],
571
+ "assetDescriptions": [
572
+ {
573
+ "descriptionType": {
574
+ "descriptionTypeId": "6",
575
+ "descriptionTypeName": "Standard"
576
+ },
577
+ "description": " "
578
+ }
579
+ ],
580
+ "assetChannels": [
581
+ {
582
+ "sequence": "1",
583
+ "channel": {
584
+ "channelId": "1020",
585
+ "channelName": "Running",
586
+ "channelDsc": "Running"
587
+ }
588
+ },
589
+ {
590
+ "sequence": "2",
591
+ "channel": {
592
+ "channelId": "1029",
593
+ "channelName": "Walking",
594
+ "channelDsc": "Walking"
595
+ }
596
+ }
597
+ ],
598
+ "assetMediaTypes": [
599
+ {
600
+ "sequence": "2",
601
+ "mediaType": {
602
+ "mediaTypeId": "95",
603
+ "mediaTypeName": "Event\\5K",
604
+ "mediaTypeDsc": ""
605
+ }
606
+ },
607
+ {
608
+ "sequence": "1",
609
+ "mediaType": {
610
+ "mediaTypeId": "2",
611
+ "mediaTypeName": "Event",
612
+ "mediaTypeDsc": ""
613
+ }
614
+ },
615
+ {
616
+ "sequence": "4",
617
+ "mediaType": {
618
+ "mediaTypeId": "224",
619
+ "mediaTypeName": "=difficulty:Intermediate",
620
+ "mediaTypeDsc": ""
621
+ }
622
+ },
623
+ {
624
+ "sequence": "3",
625
+ "mediaType": {
626
+ "mediaTypeId": "48",
627
+ "mediaTypeName": "=difficulty:Beginner",
628
+ "mediaTypeDsc": ""
629
+ }
630
+ }
631
+ ],
632
+ "assetImages": [
633
+ {
634
+ "imageUrlAdr": "http://www.active.com/images/events/hotrace.gif",
635
+ "imageName": "image1",
636
+ "imageCaptionTxt": ""
637
+ }
638
+ ],
639
+ "assetTopics": [
640
+ {
641
+ "sequence": "3",
642
+ "topic": {
643
+ "topicId": "29",
644
+ "topicName": "Walking"
645
+ }
646
+ },
647
+ {
648
+ "sequence": "2",
649
+ "topic": {
650
+ "topicId": "27",
651
+ "topicName": "Running"
652
+ }
653
+ }
654
+ ],
655
+ "assetCategories": [ ],
656
+ "assetMetaInterests": [ ],
657
+ "assetComponents": [ ],
658
+ "assetServiceHostName": "asset-02"
659
+ },
660
+ {
661
+ "assetStatus": {
662
+ "assetStatusId": "2",
663
+ "assetStatusName": "VISIBLE",
664
+ "isSearchable": "true",
665
+ "isDeleted": "false",
666
+ "createdDate": "2012-05-22T17:57:06",
667
+ "modifiedDate": "2012-05-22T17:57:06"
668
+ },
669
+ "organization": { },
670
+ "place": {
671
+ "placeGuid": "bd7d4ec3-1504-4304-a372-8dfc0f813606",
672
+ "placeName": "Granite Peak Ski Area",
673
+ "placeDsc": "",
674
+ "placeUrlAdr": "",
675
+ "addressLine1Txt": "3605 N. Mountain Road",
676
+ "addressLine2Txt": "",
677
+ "cityName": "Wausau",
678
+ "stateProvinceCode": "WI",
679
+ "localityName": "",
680
+ "postalCode": "54401",
681
+ "countryName": "United States",
682
+ "countryCode": "",
683
+ "latitude": "44.934264",
684
+ "longitude": "-89.681123",
685
+ "directionsTxt": "",
686
+ "geoPoint": {
687
+ "lat": "44.934264",
688
+ "lon": "-89.681123"
689
+ }
690
+ },
691
+ "evergreenAsset": { },
692
+ "dma": { },
693
+ "sourceSystem": {
694
+ "sourceSystemName": "RegCenter",
695
+ "legacyGuid": "EA4E860A-9DCD-4DAA-A7CA-4A77AD194F65"
696
+ },
697
+ "assetRootAsset": {
698
+ "assetGuid": "73E17EC9-FE5D-4DF0-964E-7A54EA937F77"
699
+ },
700
+ "assetParentAsset": { },
701
+ "market": {
702
+ "marketId": "8",
703
+ "marketName": "endurance-running"
704
+ },
705
+ "assetGuid": "73E17EC9-FE5D-4DF0-964E-7A54EA937F77",
706
+ "assetName": "Running Event - Wrut Run",
707
+ "assetDsc": "",
708
+ "alternateName": "",
709
+ "timezone": "",
710
+ "timezoneAbb": "",
711
+ "timezoneName": "",
712
+ "currencyCd": "",
713
+ "localeCd": "",
714
+ "salesStartDate": null,
715
+ "salesEndDate": null,
716
+ "urlAdr": "http://www.active.com/running/wausau-wi/wrut-run-2012",
717
+ "detailPageTemplateId": "",
718
+ "preferredUrlAdr": "",
719
+ "logoUrlAdr": "http://www.active.com/images/events/hotrace.gif",
720
+ "activityStartDate": "2012-10-06T00:00:00",
721
+ "activityStartTime": "8:00:00",
722
+ "activityEndDate": "2012-10-06T00:00:00",
723
+ "activityEndTime": "8:00:00",
724
+ "donationUrlAdr": "",
725
+ "teamUrlAdr": "",
726
+ "homePageUrlAdr": "http://www.wausaurotary.org/events.htm",
727
+ "registrationUrlAdr": "",
728
+ "regReqMinAge": "",
729
+ "regReqMaxAge": "",
730
+ "regReqGenderCd": "",
731
+ "resultsUrlAdr": "",
732
+ "isRecurring": "false",
733
+ "contactName": "Rebecca Pilgrim",
734
+ "contactEmailAdr": "rebecca@runkel.com",
735
+ "contactPhone": "715-845-4646",
736
+ "contactTxt": "",
737
+ "showContact": "false",
738
+ "sorId": "",
739
+ "sorCreateDtm": null,
740
+ "sorCreateUserId": "",
741
+ "authorName": "",
742
+ "publishDate": null,
743
+ "createdDate": "2012-03-23T21:15:46",
744
+ "modifiedDate": "2012-07-31T17:18:49",
745
+ "activityRecurrences": [ ],
746
+ "assetQuantity": {
747
+ "capacityNb": "",
748
+ "soldCnt": "",
749
+ "availableCnt": "",
750
+ "waitlistCapacityNb": "",
751
+ "waitlistCnt": "",
752
+ "createdDate": "2012-07-31T17:18:29",
753
+ "modifiedDate": "2012-07-31T17:18:29"
754
+ },
755
+ "assetLegacyData": {
756
+ "assetTypeId": "EA4E860A-9DCD-4DAA-A7CA-4A77AD194F65",
757
+ "typeName": "",
758
+ "uploadSearchUrlAdr": "",
759
+ "authorName": "",
760
+ "onlineRegistration": "true",
761
+ "onlineDonation": "false",
762
+ "onlineMembership": "false",
763
+ "onlineMembershipCostAmt": "",
764
+ "costAmt": "",
765
+ "avgUserRatingTxt": "",
766
+ "estParticipantNb": "100",
767
+ "maxTeamNb": "",
768
+ "minGuaranteedGameNb": "",
769
+ "multipleStartDate": "false",
770
+ "genderRequirementTxt": "",
771
+ "participationCriteriaTxt": "All",
772
+ "userCommentTxt": "",
773
+ "priceExtensionTxt": "",
774
+ "searchWeight": "1.0000",
775
+ "seoUrl": "http://www.active.com/running/wausau-wi/wrut-run-2012",
776
+ "substitutionUrl": "2023363",
777
+ "trackbackUrl": "http://www.active.com/page/Event_Details.htm?event_id=2023363&assetId=73E17EC9-FE5D-4DF0-964E-7A54EA937F77",
778
+ "eventCategories": "",
779
+ "isSearchable": "false",
780
+ "createdDate": "2012-03-23T21:15:46",
781
+ "modifiedDate": "2012-07-31T17:18:29"
782
+ },
783
+ "assetTags": [
784
+ {
785
+ "tag": {
786
+ "tagId": "125937",
787
+ "tagName": "false",
788
+ "tagDescription": "usatsanctioned"
789
+ }
790
+ },
791
+ {
792
+ "tag": {
793
+ "tagId": "89622",
794
+ "tagName": "Wausau - Rhinelander",
795
+ "tagDescription": "market"
796
+ }
797
+ },
798
+ {
799
+ "tag": {
800
+ "tagId": "32308",
801
+ "tagName": "true",
802
+ "tagDescription": "activeadvantage"
803
+ }
804
+ }
805
+ ],
806
+ "assetPrices": [ ],
807
+ "assetDescriptions": [
808
+ {
809
+ "descriptionType": {
810
+ "descriptionTypeId": "6",
811
+ "descriptionTypeName": "Standard"
812
+ },
813
+ "description": "<b>WRUT ~</b><br>Objective: How many Ultra Trek loops can you and/or your team complete in the 4 hour period?<p>Terrain: As the race is steep trail running, it will require sturdy footwear. The vertical rise is 700 feet.<p><b>FUN RUNs ~</b><br>Objective: Have fun - of course! And out race fellow racers and your friends and family!<p>Terrain: The Fun Run loop is more mild; it is located on the bunny hill portion of the ski area.The 2 hour solo run is the same course as the relay run."
814
+ },
815
+ {
816
+ "descriptionType": {
817
+ "descriptionTypeId": "4",
818
+ "descriptionTypeName": "summary"
819
+ },
820
+ "description": "The Wausau Rotary Ultra Trek and Fun Runs is a three-part trail run supporting the Rotary Club of Wausau?s commitment to youth.<p><b>WRUT ~</b><br>Format: The WRUT is a 1 to 4 person team relay race on a 2 mile Ultra Trek loop cut into the Midwest?s highest vertical downhill ski area.<p> <b>FUN RUNs ~</b><br>Format: Join the fun for Central WI's most challenging 5K or a 1/2 Marathon equivalant - a 2 hour solo run.<p>"
821
+ }
822
+ ],
823
+ "assetChannels": [
824
+ {
825
+ "sequence": "1",
826
+ "channel": {
827
+ "channelId": "1020",
828
+ "channelName": "Running",
829
+ "channelDsc": "Running"
830
+ }
831
+ },
832
+ {
833
+ "sequence": "2",
834
+ "channel": {
835
+ "channelId": "1029",
836
+ "channelName": "Walking",
837
+ "channelDsc": "Walking"
838
+ }
839
+ }
840
+ ],
841
+ "assetMediaTypes": [
842
+ {
843
+ "sequence": "4",
844
+ "mediaType": {
845
+ "mediaTypeId": "49",
846
+ "mediaTypeName": "Event\\Relay",
847
+ "mediaTypeDsc": ""
848
+ }
849
+ },
850
+ {
851
+ "sequence": "6",
852
+ "mediaType": {
853
+ "mediaTypeId": "194",
854
+ "mediaTypeName": "Event\\Ultra",
855
+ "mediaTypeDsc": ""
856
+ }
857
+ },
858
+ {
859
+ "sequence": "5",
860
+ "mediaType": {
861
+ "mediaTypeId": "51",
862
+ "mediaTypeName": "Event\\Trail",
863
+ "mediaTypeDsc": ""
864
+ }
865
+ },
866
+ {
867
+ "sequence": "3",
868
+ "mediaType": {
869
+ "mediaTypeId": "281",
870
+ "mediaTypeName": "Event\\Half Marathon",
871
+ "mediaTypeDsc": ""
872
+ }
873
+ },
874
+ {
875
+ "sequence": "2",
876
+ "mediaType": {
877
+ "mediaTypeId": "95",
878
+ "mediaTypeName": "Event\\5K",
879
+ "mediaTypeDsc": ""
880
+ }
881
+ },
882
+ {
883
+ "sequence": "1",
884
+ "mediaType": {
885
+ "mediaTypeId": "2",
886
+ "mediaTypeName": "Event",
887
+ "mediaTypeDsc": ""
888
+ }
889
+ }
890
+ ],
891
+ "assetImages": [
892
+ {
893
+ "imageUrlAdr": "http://www.active.com/images/events/hotrace.gif",
894
+ "imageName": "image1",
895
+ "imageCaptionTxt": ""
896
+ }
897
+ ],
898
+ "assetTopics": [
899
+ {
900
+ "sequence": "2",
901
+ "topic": {
902
+ "topicId": "27",
903
+ "topicName": "Running"
904
+ }
905
+ },
906
+ {
907
+ "sequence": "3",
908
+ "topic": {
909
+ "topicId": "29",
910
+ "topicName": "Walking"
911
+ }
912
+ }
913
+ ],
914
+ "assetCategories": [ ],
915
+ "assetMetaInterests": [ ],
916
+ "assetComponents": [
917
+ {
918
+ "assetGuid": "5ca9bd44-12af-4741-873e-eab77c072d63"
919
+ },
920
+ {
921
+ "assetGuid": "1a3e1b72-0dc0-4152-aa81-24809c4daeae"
922
+ },
923
+ {
924
+ "assetGuid": "affb3b7a-af0f-47f1-93a4-c386333bf1e1"
925
+ },
926
+ {
927
+ "assetGuid": "a9956a2b-b78c-4f9c-8176-6aa7110ba178"
928
+ },
929
+ {
930
+ "assetGuid": "b72b6449-96d8-4a91-84c9-b3309e57f6bb"
931
+ },
932
+ {
933
+ "assetGuid": "f8eef9e8-80f8-462e-aec4-700c275d9a57"
934
+ }
935
+ ],
936
+ "assetServiceHostName": "asset-04"
937
+ },
938
+ {
939
+ "assetStatus": {
940
+ "assetStatusId": "2",
941
+ "assetStatusName": "VISIBLE",
942
+ "isSearchable": "true",
943
+ "isDeleted": "false",
944
+ "createdDate": "2012-05-22T17:57:06",
945
+ "modifiedDate": "2012-05-22T17:57:06"
946
+ },
947
+ "organization": { },
948
+ "place": {
949
+ "placeGuid": "f3c27be2-14aa-4619-9f1e-3319fadcd406",
950
+ "placeName": "Anywhere in the USA or Canada",
951
+ "placeDsc": "",
952
+ "placeUrlAdr": "",
953
+ "addressLine1Txt": " ",
954
+ "addressLine2Txt": "",
955
+ "cityName": "Your favorite route",
956
+ "stateProvinceCode": "NY",
957
+ "localityName": "",
958
+ "postalCode": "10002",
959
+ "countryName": "USA",
960
+ "countryCode": "",
961
+ "latitude": "40.716077",
962
+ "longitude": "-73.987121",
963
+ "directionsTxt": "",
964
+ "geoPoint": {
965
+ "lat": "40.716077",
966
+ "lon": "-73.987121"
967
+ }
968
+ },
969
+ "evergreenAsset": { },
970
+ "dma": { },
971
+ "sourceSystem": {
972
+ "sourceSystemName": "RegCenter",
973
+ "legacyGuid": "EA4E860A-9DCD-4DAA-A7CA-4A77AD194F65"
974
+ },
975
+ "assetRootAsset": { },
976
+ "assetParentAsset": { },
977
+ "market": {
978
+ "marketId": "8",
979
+ "marketName": "endurance-running"
980
+ },
981
+ "assetGuid": "63b37b92-7a5e-4e17-bf0b-d1ba342c2dc6",
982
+ "assetName": "Running Event - 5K",
983
+ "assetDsc": "",
984
+ "alternateName": "",
985
+ "timezone": "",
986
+ "timezoneAbb": "",
987
+ "timezoneName": "",
988
+ "currencyCd": "",
989
+ "localeCd": "",
990
+ "salesStartDate": null,
991
+ "salesEndDate": null,
992
+ "urlAdr": "",
993
+ "detailPageTemplateId": "",
994
+ "preferredUrlAdr": "",
995
+ "logoUrlAdr": "http://www.active.com/images/events/hotrace.gif",
996
+ "activityStartDate": "2012-10-27T00:00:00",
997
+ "activityStartTime": "0:01:00",
998
+ "activityEndDate": "2012-11-04T00:00:00",
999
+ "activityEndTime": "23:59:00",
1000
+ "donationUrlAdr": "",
1001
+ "teamUrlAdr": "",
1002
+ "homePageUrlAdr": "http://www.phantomrunner.com",
1003
+ "registrationUrlAdr": "",
1004
+ "registrantSearchUrlAdr": "",
1005
+ "regReqMinAge": "",
1006
+ "regReqMaxAge": "",
1007
+ "regReqGenderCd": "",
1008
+ "resultsUrlAdr": "",
1009
+ "isRecurring": "false",
1010
+ "contactName": "Race Director",
1011
+ "contactEmailAdr": "director@phantomrunner.com",
1012
+ "contactPhone": "4437913736",
1013
+ "contactTxt": "",
1014
+ "showContact": "false",
1015
+ "sorId": "",
1016
+ "sorCreateDtm": null,
1017
+ "sorCreateUserId": "",
1018
+ "authorName": "",
1019
+ "publishDate": null,
1020
+ "createdDate": "2012-07-31T01:15:25",
1021
+ "modifiedDate": "2012-08-02T18:59:40",
1022
+ "activityRecurrences": [ ],
1023
+ "assetQuantity": {
1024
+ "capacityNb": "",
1025
+ "soldCnt": "0",
1026
+ "availableCnt": "0",
1027
+ "waitlistCapacityNb": "",
1028
+ "waitlistCnt": "",
1029
+ "createdDate": "2012-07-31T01:15:26",
1030
+ "modifiedDate": "2012-07-31T01:15:26"
1031
+ },
1032
+ "assetLegacyData": {
1033
+ "assetTypeId": "",
1034
+ "typeName": "",
1035
+ "uploadSearchUrlAdr": "",
1036
+ "authorName": "",
1037
+ "onlineRegistration": "true",
1038
+ "onlineDonation": "false",
1039
+ "onlineMembership": "false",
1040
+ "onlineMembershipCostAmt": "",
1041
+ "costAmt": "",
1042
+ "avgUserRatingTxt": "",
1043
+ "estParticipantNb": "300",
1044
+ "maxTeamNb": "",
1045
+ "minGuaranteedGameNb": "",
1046
+ "multipleStartDate": "",
1047
+ "genderRequirementTxt": "",
1048
+ "participationCriteriaTxt": "Adult,Family,Kids,Men,Women",
1049
+ "userCommentTxt": "",
1050
+ "priceExtensionTxt": "",
1051
+ "searchWeight": "1.0000",
1052
+ "seoUrl": "",
1053
+ "substitutionUrl": "2049145",
1054
+ "trackbackUrl": "",
1055
+ "eventCategories": "",
1056
+ "isSearchable": "false",
1057
+ "createdDate": "2012-07-31T01:15:26",
1058
+ "modifiedDate": "2012-07-31T01:15:26"
1059
+ },
1060
+ "assetTags": [
1061
+ {
1062
+ "tag": {
1063
+ "tagId": "32308",
1064
+ "tagName": "true",
1065
+ "tagDescription": "activeadvantage"
1066
+ }
1067
+ },
1068
+ {
1069
+ "tag": {
1070
+ "tagId": "125937",
1071
+ "tagName": "false",
1072
+ "tagDescription": "usatsanctioned"
1073
+ }
1074
+ },
1075
+ {
1076
+ "tag": {
1077
+ "tagId": "88732",
1078
+ "tagName": "New York",
1079
+ "tagDescription": "market"
1080
+ }
1081
+ }
1082
+ ],
1083
+ "assetPrices": [
1084
+ {
1085
+ "effectiveDate": "2012-10-26T19:00:00",
1086
+ "priceAmt": "27.99",
1087
+ "maxPriceAmt": "",
1088
+ "minPriceAmt": ""
1089
+ },
1090
+ {
1091
+ "effectiveDate": "2012-08-31T07:00:00",
1092
+ "priceAmt": "24.99",
1093
+ "maxPriceAmt": "",
1094
+ "minPriceAmt": ""
1095
+ }
1096
+ ],
1097
+ "assetDescriptions": [
1098
+ {
1099
+ "descriptionType": {
1100
+ "descriptionTypeId": "6",
1101
+ "descriptionTypeName": "Standard"
1102
+ },
1103
+ "description": "15% of entry fee goes to Homes for Our Troops.Visit us on Facebook: http://www.facebook.com/PRvirtualracing"
1104
+ },
1105
+ {
1106
+ "descriptionType": {
1107
+ "descriptionTypeId": "4",
1108
+ "descriptionTypeName": "summary"
1109
+ },
1110
+ "description": "PhantomRunner is a virtual race, which means you can participate from anywhere in the US or Canada. You simply run your favorite route at any time during Race Week (Oct 27 - Nov 4), and we post the results. Race fee includes: Finisher's Medal, PhantomRunner Wristband, Race Bib, and eligibility for Prize Drawings."
1111
+ }
1112
+ ],
1113
+ "assetChannels": [
1114
+ {
1115
+ "sequence": "1",
1116
+ "channel": {
1117
+ "channelId": "1020",
1118
+ "channelName": "Running",
1119
+ "channelDsc": "Running"
1120
+ }
1121
+ }
1122
+ ],
1123
+ "assetMediaTypes": [
1124
+ {
1125
+ "sequence": "2",
1126
+ "mediaType": {
1127
+ "mediaTypeId": "187",
1128
+ "mediaTypeName": "Event\\1 mile",
1129
+ "mediaTypeDsc": ""
1130
+ }
1131
+ },
1132
+ {
1133
+ "sequence": "8",
1134
+ "mediaType": {
1135
+ "mediaTypeId": "224",
1136
+ "mediaTypeName": "=difficulty:Intermediate",
1137
+ "mediaTypeDsc": ""
1138
+ }
1139
+ },
1140
+ {
1141
+ "sequence": "1",
1142
+ "mediaType": {
1143
+ "mediaTypeId": "2",
1144
+ "mediaTypeName": "Event",
1145
+ "mediaTypeDsc": ""
1146
+ }
1147
+ },
1148
+ {
1149
+ "sequence": "4",
1150
+ "mediaType": {
1151
+ "mediaTypeId": "95",
1152
+ "mediaTypeName": "Event\\5K",
1153
+ "mediaTypeDsc": ""
1154
+ }
1155
+ },
1156
+ {
1157
+ "sequence": "6",
1158
+ "mediaType": {
1159
+ "mediaTypeId": "116",
1160
+ "mediaTypeName": "=difficulty:Advanced",
1161
+ "mediaTypeDsc": ""
1162
+ }
1163
+ },
1164
+ {
1165
+ "sequence": "3",
1166
+ "mediaType": {
1167
+ "mediaTypeId": "126",
1168
+ "mediaTypeName": "Event\\10K",
1169
+ "mediaTypeDsc": ""
1170
+ }
1171
+ },
1172
+ {
1173
+ "sequence": "7",
1174
+ "mediaType": {
1175
+ "mediaTypeId": "48",
1176
+ "mediaTypeName": "=difficulty:Beginner",
1177
+ "mediaTypeDsc": ""
1178
+ }
1179
+ },
1180
+ {
1181
+ "sequence": "5",
1182
+ "mediaType": {
1183
+ "mediaTypeId": "281",
1184
+ "mediaTypeName": "Event\\Half Marathon",
1185
+ "mediaTypeDsc": ""
1186
+ }
1187
+ }
1188
+ ],
1189
+ "assetImages": [
1190
+ {
1191
+ "imageUrlAdr": "http://www.active.com/images/events/hotrace.gif",
1192
+ "imageName": "image1",
1193
+ "imageCaptionTxt": ""
1194
+ }
1195
+ ],
1196
+ "assetTopics": [
1197
+ {
1198
+ "sequence": "2",
1199
+ "topic": {
1200
+ "topicId": "27",
1201
+ "topicName": "Running"
1202
+ }
1203
+ }
1204
+ ],
1205
+ "assetCategories": [
1206
+ {
1207
+ "sequence": "2",
1208
+ "category": {
1209
+ "categoryId": "22",
1210
+ "categoryName": "Races"
1211
+ }
1212
+ }
1213
+ ],
1214
+ "assetMetaInterests": [ ],
1215
+ "assetComponents": [ ],
1216
+ "assetServiceHostName": "asset-02"
1217
+ }
1218
+ ],
1219
+ "facets": [
1220
+ {
1221
+ "name": "topicName",
1222
+ "terms": [
1223
+ {
1224
+ "term": "Running",
1225
+ "count": 188
1226
+ },
1227
+ {
1228
+ "term": "Walking",
1229
+ "count": 51
1230
+ },
1231
+ {
1232
+ "term": "Distance running",
1233
+ "count": 14
1234
+ },
1235
+ {
1236
+ "term": "Triathlon",
1237
+ "count": 10
1238
+ },
1239
+ {
1240
+ "term": "Tai chi",
1241
+ "count": 1
1242
+ },
1243
+ {
1244
+ "term": "Other recreation",
1245
+ "count": 1
1246
+ },
1247
+ {
1248
+ "term": "Martial arts",
1249
+ "count": 1
1250
+ },
1251
+ {
1252
+ "term": "General chemistry",
1253
+ "count": 1
1254
+ },
1255
+ {
1256
+ "term": "Fitness",
1257
+ "count": 1
1258
+ },
1259
+ {
1260
+ "term": "Cycling",
1261
+ "count": 1
1262
+ }
1263
+ ]
1264
+ }
1265
+ ],
1266
+ "facet_values": [
1267
+ {
1268
+ "name": "topicName",
1269
+ "value": "Running",
1270
+ "count": 188
1271
+ },
1272
+ {
1273
+ "name": "topicName",
1274
+ "value": "Fitness",
1275
+ "count": 1
1276
+ }
1277
+ ],
1278
+ "items_per_page": 5,
1279
+ "start_index": 0,
1280
+ "total_results": 211
1281
+
1282
+ }