teamsnap_rb 1.3.3 → 2.0.0.beta

Sign up to get free protection for your applications and to get access to all the features.
Files changed (73) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/README.md +131 -29
  4. data/lib/config/inflecto.rb +13 -0
  5. data/lib/config/oj.rb +5 -0
  6. data/lib/teamsnap.rb +36 -376
  7. data/lib/teamsnap/api.rb +113 -0
  8. data/lib/teamsnap/auth_middleware.rb +62 -0
  9. data/lib/teamsnap/client.rb +51 -0
  10. data/lib/teamsnap/collection.rb +125 -0
  11. data/lib/teamsnap/item.rb +100 -0
  12. data/lib/teamsnap/response.rb +101 -0
  13. data/lib/teamsnap/structure.rb +80 -0
  14. data/lib/teamsnap/version.rb +1 -1
  15. data/spec/cassettes/apiv3-init.yml +756 -124
  16. data/spec/cassettes/client/when_calling_via_s_on_the_client/does_not_raise_an_error_when_the_HTTP_actions_are_called.yml +56 -0
  17. data/spec/cassettes/structure/_create_collection_class/registers_new_classes_via_introspection_of_the_root_collection.yml +110 -0
  18. data/spec/cassettes/structure/_create_collection_class/sets_the_href_attribute_on_the_new_class.yml +57 -0
  19. data/spec/cassettes/structure/_init/has_all_classes_in_schema_loaded_except_for_exceptions_list_endpoints.yml +56 -0
  20. data/spec/cassettes/structure/has_all_classes_in_schema_loaded_except_for_exceptions_list_endpoints.yml +56 -0
  21. data/spec/cassettes/teamsnap__client/when_calling_via_s_on_the_client/does_not_raise_an_error_when_the_HTTP_actions_are_called.yml +69 -0
  22. data/spec/cassettes/teamsnap__client/when_calling_via_s_on_the_client/passes_them_to_the_faraday_client_using_method_missing.yml +69 -0
  23. data/spec/cassettes/teamsnap__collection/adds_find_if_search_is_available.yml +61 -0
  24. data/spec/cassettes/teamsnap__collection/adds_href_to_items.yml +62 -0
  25. data/spec/cassettes/teamsnap__collection/can_follow_plural_links.yml +179 -0
  26. data/spec/cassettes/teamsnap__collection/can_follow_singular_links.yml +120 -0
  27. data/spec/cassettes/teamsnap__collection/can_handle_links_with_no_data.yml +107 -0
  28. data/spec/cassettes/{teamsnap_rb/can_handle_errors_generated_by_command.yml → teamsnap__collection/can_handle_no_argument_errors_generated_by_command.yml} +10 -16
  29. data/spec/cassettes/teamsnap__collection/handles_executing_an_action_via_commands.yml +64 -0
  30. data/spec/cassettes/teamsnap__collection/handles_executing_an_action_via_commands_with_multiple_params.yml +70 -0
  31. data/spec/cassettes/teamsnap__collection/handles_fetching_data_via_queries.yml +61 -0
  32. data/spec/cassettes/teamsnap__collection/handles_queries_with_no_data.yml +57 -0
  33. data/spec/cassettes/teamsnap__collection/raises_an_exception_if_find_returns_nothing.yml +57 -0
  34. data/spec/cassettes/teamsnap__collection/supports_relations_with_expected_behaviors/when_a_plural_relation_is_called/responds_with_an_array_of_objects_when_successful.yml +117 -0
  35. data/spec/cassettes/teamsnap__collection/supports_relations_with_expected_behaviors/when_a_plural_relation_is_called/responds_with_an_empty_array_when_no_objects_exist.yml +111 -0
  36. data/spec/cassettes/teamsnap__collection/supports_relations_with_expected_behaviors/when_a_singular_relation_is_called/responds_with_nil_if_it_does_NOT_exist.yml +111 -0
  37. data/spec/cassettes/teamsnap__collection/supports_relations_with_expected_behaviors/when_a_singular_relation_is_called/responds_with_the_object_if_it_exists.yml +124 -0
  38. data/spec/cassettes/teamsnap__structure/_create_collection_class/registers_new_classes_via_introspection_of_the_root_collection.yml +57 -0
  39. data/spec/cassettes/teamsnap__structure/_create_collection_class/sets_the_href_attribute_on_the_new_class.yml +57 -0
  40. data/spec/cassettes/teamsnap__structure/_init/has_all_classes_in_schema_loaded_except_for_exceptions_list_endpoints.yml +69 -0
  41. data/spec/cassettes/teamsnap_rb/_bulk_load/can_handle_an_empty_bulk_load.yml +55 -0
  42. data/spec/cassettes/teamsnap_rb/{can_handle_an_error_with_bulk_load.yml → _bulk_load/can_handle_an_error_with_bulk_load.yml} +11 -23
  43. data/spec/cassettes/teamsnap_rb/_bulk_load/can_use_bulk_load.yml +121 -0
  44. data/spec/cassettes/teamsnap_rb/_client_send/when_sent_a_known_via_/calls_DELETE_on_the_given_client.yml +2405 -0
  45. data/spec/cassettes/teamsnap_rb/_client_send/when_sent_a_known_via_/calls_GET_on_the_given_client.yml +69 -0
  46. data/spec/cassettes/teamsnap_rb/_client_send/when_sent_a_known_via_/calls_PATCH_on_the_given_client.yml +2404 -0
  47. data/spec/cassettes/teamsnap_rb/_client_send/when_sent_a_known_via_/calls_POST_on_the_given_client.yml +2404 -0
  48. data/spec/cassettes/teamsnap_rb/_run/processes_the_response.yml +267 -0
  49. data/spec/cassettes/teamsnap_rb/adds_find_if_search_is_available.yml +27 -30
  50. data/spec/cassettes/teamsnap_rb/adds_href_to_items.yml +31 -19
  51. data/spec/cassettes/teamsnap_rb/can_follow_plural_links.yml +118 -67
  52. data/spec/cassettes/teamsnap_rb/can_follow_singular_links.yml +59 -56
  53. data/spec/cassettes/teamsnap_rb/can_handle_links_with_no_data.yml +48 -38
  54. data/spec/cassettes/teamsnap_rb/can_handle_no_argument_errors_generated_by_command.yml +42 -0
  55. data/spec/cassettes/teamsnap_rb/handles_executing_an_action_via_commands.yml +32 -20
  56. data/spec/cassettes/teamsnap_rb/handles_executing_an_action_via_commands_with_multiple_params.yml +29 -404
  57. data/spec/cassettes/teamsnap_rb/handles_fetching_data_via_queries.yml +26 -23
  58. data/spec/cassettes/teamsnap_rb/handles_queries_with_no_data.yml +24 -28
  59. data/spec/cassettes/teamsnap_rb/raises_an_exception_if_find_returns_nothing.yml +24 -28
  60. data/spec/cassettes/teamsnap_rb/supports_relations_with_expected_behaviors/when_a_plural_relation_is_called/responds_with_an_array_of_objects_when_successful.yml +53 -45
  61. data/spec/cassettes/teamsnap_rb/supports_relations_with_expected_behaviors/when_a_plural_relation_is_called/responds_with_an_empty_array_when_no_objects_exist.yml +50 -54
  62. data/spec/cassettes/teamsnap_rb/supports_relations_with_expected_behaviors/when_a_singular_relation_is_called/responds_with_nil_if_it_does_NOT_exist.yml +50 -54
  63. data/spec/cassettes/teamsnap_rb/supports_relations_with_expected_behaviors/when_a_singular_relation_is_called/responds_with_the_object_if_it_exists.yml +59 -58
  64. data/spec/spec_helper.rb +2 -0
  65. data/spec/teamsnap/client_spec.rb +75 -0
  66. data/spec/teamsnap/collection_spec.rb +155 -0
  67. data/spec/teamsnap/item_spec.rb +155 -0
  68. data/spec/teamsnap/structure_spec.rb +63 -0
  69. data/spec/teamsnap_spec.rb +169 -157
  70. data/teamsnap_rb.gemspec +1 -1
  71. metadata +92 -15
  72. data/spec/cassettes/teamsnap_rb/can_handle_an_empty_bulk_load.yml +0 -60
  73. data/spec/cassettes/teamsnap_rb/can_use_bulk_load.yml +0 -74
@@ -0,0 +1,101 @@
1
+ module TeamSnap
2
+ class Response
3
+
4
+ class << self
5
+ def load_collection(resp)
6
+ if resp.success?
7
+ return Oj.load(resp.body).fetch(:collection)
8
+ else
9
+ content_type = resp.headers["content-type"]
10
+ if content_type && content_type.match("json")
11
+ if resp.status == 404
12
+ raise TeamSnap::NotFound.new("Object not found.")
13
+ else
14
+ raise TeamSnap::Error.new(
15
+ TeamSnap::Api.parse_error(resp)
16
+ )
17
+ end
18
+ else
19
+ raise TeamSnap::Error.new(
20
+ "`#{resp.env.method}` call was unsuccessful. " +
21
+ "Unexpected response content-type. " +
22
+ "Check TeamSnap APIv3 connection")
23
+ end
24
+ end
25
+ end
26
+
27
+ def process(client, resp, via, href, args)
28
+ response_object = self.new(
29
+ :args => args,
30
+ :client => client,
31
+ :href => href,
32
+ :resp => resp,
33
+ :status => resp.status,
34
+ :via => via
35
+ )
36
+ if resp.success?
37
+ if via == :get
38
+ response_object.process_info
39
+ else
40
+ response_object.process_action
41
+ end
42
+ else
43
+ response_object.process_error
44
+ end
45
+ end
46
+ end
47
+
48
+ attr_accessor :args, :client, :collection, :href, :message,
49
+ :objects, :resp, :status, :via
50
+
51
+ def initialize(opts = {})
52
+ [
53
+ :args, :client, :collection, :href, :message,
54
+ :objects, :resp, :status, :via
55
+ ].each do |attribute_name|
56
+ instance_variable_set("@#{attribute_name}", opts.fetch(attribute_name, nil))
57
+ end
58
+ if resp
59
+ if resp.success?
60
+ if via == :get
61
+ process_info
62
+ else
63
+ process_action
64
+ end
65
+ else
66
+ process_error
67
+ end
68
+ end
69
+ end
70
+
71
+ def process_info
72
+ body = Oj.load(@resp.body)
73
+ @collection = body.fetch(:collection) { {} }
74
+ @message = "Data retrieved successfully"
75
+ @objects = TeamSnap::Item.load_items(@client, @collection)
76
+ end
77
+
78
+ def process_action
79
+ body = Oj.load(@resp.body)
80
+ @collection = body.fetch(:collection) { {} }
81
+ @message = "`#{@via}` call was successful"
82
+ @objects = TeamSnap::Item.load_items(@client, @collection)
83
+ end
84
+
85
+ def process_error
86
+ body = Oj.load(@resp.body)
87
+ @collection = body.fetch(:collection) { {} }
88
+ @message = TeamSnap::Api.parse_error(@resp)
89
+ @objects = TeamSnap::Item.load_items(@client, @collection)
90
+ end
91
+
92
+ def success?
93
+ @status / 100 == 2
94
+ end
95
+
96
+ def errors?
97
+ @status / 100 != 2
98
+ end
99
+
100
+ end
101
+ end
@@ -0,0 +1,80 @@
1
+ module TeamSnap
2
+ class Structure
3
+
4
+ class << self
5
+ def init(client, collection)
6
+ classes = []
7
+
8
+ schema = collection
9
+ .fetch(:links) { [] }
10
+ .find { |link| link[:rel] == "schemas" } || {}
11
+
12
+ if schema[:href]
13
+ resp = client.get(schema[:href])
14
+ classes = setup_model_classes(collection, resp)
15
+ else
16
+ client.in_parallel do
17
+ classes = collection
18
+ .fetch(:links) { [] }
19
+ .map { |link| classify_rel(client, link) }
20
+ end
21
+ end
22
+ classes.compact
23
+ classes.each{ |cls| cls.parse_collection }
24
+ true
25
+ end
26
+
27
+ private
28
+
29
+ def setup_model_classes(collection, response)
30
+ href_to_rel = collection
31
+ .fetch(:links) { [] }
32
+ .reject { |link| EXCLUDED_RELS.include?(link[:rel]) }
33
+ .map { |link| [link[:href], link[:rel]]}
34
+
35
+ href_to_rel = Hash[*href_to_rel.flatten]
36
+
37
+ Oj.load(response.body)
38
+ .map { |collection|
39
+ col = collection.fetch(:collection) { {} }
40
+ if rel = href_to_rel[col[:href]]
41
+ create_collection_class(rel, col[:href], nil, col)
42
+ end
43
+ }
44
+ .compact
45
+ end
46
+
47
+ def classify_rel(client, link)
48
+ return if EXCLUDED_RELS.include?(link.fetch(:rel))
49
+
50
+ rel = link.fetch(:rel)
51
+ href = link.fetch(:href)
52
+ resp = client.get(href)
53
+
54
+ create_collection_class(rel, href, resp, nil)
55
+ end
56
+
57
+ def collection_module(href, resp, parsed_collection)
58
+ Module.new do
59
+ define_singleton_method(:included) do |descendant|
60
+ descendant.send(:include, TeamSnap::Item)
61
+ descendant.extend(TeamSnap::Collection)
62
+ descendant.instance_variable_set(:@href, href)
63
+ descendant.instance_variable_set(:@resp, resp)
64
+ descendant.instance_variable_set(:@parsed_collection, parsed_collection)
65
+ end
66
+ end
67
+ end
68
+
69
+ def create_collection_class(rel, href, resp, collection)
70
+ name = Inflecto.classify(rel)
71
+ rel_module = collection_module(href, resp, collection)
72
+
73
+ TeamSnap.const_set(
74
+ name, Class.new { include rel_module }
75
+ ) unless TeamSnap.const_defined?(name, false)
76
+ end
77
+
78
+ end
79
+ end
80
+ end
@@ -1,3 +1,3 @@
1
1
  module TeamSnap
2
- VERSION = "1.3.3"
2
+ VERSION = "2.0.0.beta"
3
3
  end
@@ -2,15 +2,15 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=d31238ef-c4a2-4122-9677-64027510d3ac&hmac_timestamp=1444788588
5
+ uri: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=b4fece7e-4fb8-4cd9-a1bf-a6fa4efa4a5b&hmac_timestamp=1457993766
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Faraday v0.9.2
11
+ - Faraday v0.9.1
12
12
  X-Teamsnap-Hmac:
13
- - ae77066a1ea42a7ef49abb81e5a656392241b5b70a918112472959f3d30ed15a
13
+ - 8937b9ff6126c5bae281ade1e25d0a044faa4503a1e56da6c60c596ae8aa5029
14
14
  response:
15
15
  status:
16
16
  code: 200
@@ -19,96 +19,626 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/vnd.collection+json
21
21
  Content-Length:
22
- - '6258'
22
+ - '9688'
23
+ X-Content-Type-Options:
24
+ - nosniff
25
+ ETag:
26
+ - '"41393e2f8cd6c40b6152930dcefe4f14"'
27
+ Cache-Control:
28
+ - max-age=0, private, must-revalidate
29
+ X-Request-Id:
30
+ - 0d9f3950-d0b1-4e1b-ac5e-d5e36ea6f598
31
+ X-Runtime:
32
+ - '0.043072'
23
33
  Connection:
24
34
  - keep-alive
25
- Status:
26
- - 200 OK
35
+ Server:
36
+ - thin
37
+ body:
38
+ encoding: UTF-8
39
+ string: '{"collection":{"version":"3.206.1","href":"http://localhost:3000/","rel":"root","links":[{"rel":"apiv2_root","href":"http://localhost:3003"},{"rel":"authorization","href":"http://localhost:3004"},{"rel":"apn_devices","href":"http://localhost:3000/apn_devices"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"countries","href":"http://localhost:3000/countries"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"divisions","href":"http://localhost:3000/divisions"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_events","href":"http://localhost:3000/division_events"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"divisions_preferences","href":"http://localhost:3000/divisions_preferences"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"facebook_pages","href":"http://localhost:3000/facebook_pages"},{"rel":"forecasts","href":"http://localhost:3000/forecasts"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"geocoded_locations","href":"http://localhost:3000/geocoded_locations"},{"rel":"gcm_devices","href":"http://localhost:3000/gcm_devices"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currencies","href":"http://localhost:3000/paypal_currencies"},{"rel":"plans","href":"http://localhost:3000/plans"},{"rel":"plans_all","href":"http://localhost:3000/plans/all"},{"rel":"public_features","href":"http://localhost:3000/public_features"},{"rel":"schemas","href":"http://localhost:3000/schemas"},{"rel":"sms_gateways","href":"http://localhost:3000/sms_gateways"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sports","href":"http://localhost:3000/sports"},{"rel":"statistics","href":"http://localhost:3000/statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_groups","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_public_sites","href":"http://localhost:3000/team_public_sites"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"teams_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"teams_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"teams_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"time_zones","href":"http://localhost:3000/time_zones"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"tsl_metadata","href":"http://localhost:3000/tsl_metadata"},{"rel":"tsl_chats","href":"http://localhost:3000/tsl_chats"},{"rel":"tsl_photos","href":"http://localhost:3000/tsl_photos"},{"rel":"tsl_scores","href":"http://localhost:3000/tsl_scores"},{"rel":"users","href":"http://localhost:3000/users"},{"rel":"dude","href":"http://localhost:3000/dude"},{"rel":"sweet","href":"http://localhost:3000/sweet"},{"rel":"random","href":"http://localhost:3000/random"},{"rel":"xyzzy","href":"http://localhost:3000/xyzzy"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/"}],"queries":[{"rel":"bulk_load","href":"http://localhost:3000/bulk_load","prompt":"Returns
40
+ a heterogeneous collection of the specified types for a specified team or
41
+ teams. Additional filters can be passed into requested types by passing them
42
+ in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
43
+ Any filter can be passed that is available on the search for the specified
44
+ type.","data":[{"name":"team_id","value":null,"prompt":"The team_id(s) to
45
+ return results for, this can be a single id or a comma-separated list of ids."},{"name":"scope_to","value":null,"prompt":"A
46
+ comma separated list of singular types that you would like to scope the rest
47
+ of the related result sets to. For instance, scoping assignments to events
48
+ and providing a filter on events will return only assignments for the events
49
+ returned."},{"name":"types","value":null,"prompt":"A comma separated list
50
+ of singular types that you want returned."}]},{"rel":"query","href":"http://localhost:3000/q","prompt":"Returns
51
+ a heterogeneous collection of the specified types. You must pass at least
52
+ one valid filter in, filters can be passed into requested types by passing
53
+ them in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
54
+ Any filter can be passed that is available on the search for the specified
55
+ type. Types can also be filtered by using the ''scope_to'' parameter. Unfiltered
56
+ searches will return as empty.","data":[{"name":"scope_to","value":null,"prompt":"A
57
+ comma separated list of singular types that you would like to scope the rest
58
+ of the related result sets to. For instance, scoping assignments to events
59
+ and providing a filter on events will return only assignments for the events
60
+ returned."},{"name":"types","value":null,"prompt":"A comma separated list
61
+ of singular types that you want returned."}]},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"feature","href":"http://localhost:3000/feature","data":[{"name":"id","value":null},{"name":"type","value":null},{"name":"feature_name","value":null}]},{"rel":"forecast","href":"http://localhost:3000/forecasts/search","data":[{"name":"team_id","value":null}]},{"rel":"geocode","href":"http://localhost:3000/geocoded_locations/search","data":[{"name":"country","value":null},{"name":"postal_code","value":null}]},{"rel":"generate_firebase_token","href":"http://localhost:3000/generate_firebase_token","data":[{"name":"team_id","value":null},{"name":"version","value":null}]},{"rel":"invitation_finder","href":"http://localhost:3000/invitation_finder","data":[{"name":"email_address","value":null}]}],"commands":[{"rel":"send_invitations","href":"http://localhost:3000/send_invitations","prompt":"Send
62
+ any pending invitations for a specified email address","data":[{"name":"email_address","value":null}]},{"rel":"welcome","href":"http://localhost:3000/welcome","prompt":"Send
63
+ a welcome email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]},{"rel":"initiate_registration","href":"http://localhost:3000/initiate_registration","prompt":"Send
64
+ a signup email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]}]}}'
65
+ http_version: '1.1'
66
+ adapter_metadata:
67
+ effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=b4fece7e-4fb8-4cd9-a1bf-a6fa4efa4a5b&hmac_timestamp=1457993766
68
+ recorded_at: Mon, 14 Mar 2016 22:16:06 GMT
69
+ - request:
70
+ method: get
71
+ uri: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=84170a08-a03f-44ba-94ba-9f07452e4c69&hmac_timestamp=1457993767
72
+ body:
73
+ encoding: US-ASCII
74
+ string: ''
75
+ headers:
76
+ User-Agent:
77
+ - Faraday v0.9.1
78
+ X-Teamsnap-Hmac:
79
+ - 9950e69ef564ff8ce1144089ac088f023fa29b41f0acc8821494efc0d2562166
80
+ response:
81
+ status:
82
+ code: 200
83
+ message: OK
84
+ headers:
85
+ Content-Type:
86
+ - application/vnd.collection+json
87
+ Content-Length:
88
+ - '9688'
27
89
  X-Content-Type-Options:
28
90
  - nosniff
29
91
  ETag:
30
- - '"61716cfe6933ec57dccbd212dba32d2b"'
92
+ - '"41393e2f8cd6c40b6152930dcefe4f14"'
31
93
  Cache-Control:
32
94
  - max-age=0, private, must-revalidate
33
95
  X-Request-Id:
34
- - e9111b49-6b32-448a-9b6a-561b9047a7d2
96
+ - d0940ac1-22fe-4afb-a2aa-289d5df5f603
35
97
  X-Runtime:
36
- - '0.392648'
37
- X-Powered-By:
38
- - Phusion Passenger 4.0.48
39
- Date:
40
- - Wed, 14 Oct 2015 02:09:49 GMT
98
+ - '0.063238'
99
+ Connection:
100
+ - keep-alive
41
101
  Server:
42
- - nginx/1.6.2 + Phusion Passenger 4.0.48
102
+ - thin
43
103
  body:
44
104
  encoding: UTF-8
45
- string: '{"collection":{"version":"3.119.0","href":"http://localhost:3000/","links":[{"rel":"apiv2_root","href":"http://localhost:3003"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_smses","href":"http://localhost:3000/broadcast_smses"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"forecasts","href":"http://localhost:3000/forecasts"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"geocoded_locations","href":"http://localhost:3000/geocoded_locations"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currencies","href":"http://localhost:3000/paypal_currencies"},{"rel":"plans","href":"http://localhost:3000/plans"},{"rel":"plans_all","href":"http://localhost:3000/plans/all"},{"rel":"public_features","href":"http://localhost:3000/public_features"},{"rel":"schemas","href":"http://localhost:3000/schemas"},{"rel":"sms_gateways","href":"http://localhost:3000/sms_gateways"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sports","href":"http://localhost:3000/sports"},{"rel":"statistics","href":"http://localhost:3000/statistics"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_groups","href":"http://localhost:3000/statistic_groups"},{"rel":"referrals","href":"http://localhost:3000/referrals"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_public_sites","href":"http://localhost:3000/team_public_sites"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"teams_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"teams_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"teams_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"time_zones","href":"http://localhost:3000/time_zones"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"tsl_metadata","href":"http://localhost:3000/tsl_metadata"},{"rel":"tsl_photos","href":"http://localhost:3000/tsl_photos"},{"rel":"users","href":"http://localhost:3000/users"},{"rel":"dude","href":"http://localhost:3000/dude"},{"rel":"sweet","href":"http://localhost:3000/sweet"},{"rel":"random","href":"http://localhost:3000/random"},{"rel":"xyzzy","href":"http://localhost:3000/xyzzy"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//"}],"queries":[{"rel":"bulk_load","href":"http://localhost:3000/bulk_load","data":[{"name":"team_id","value":null},{"name":"types","value":null}]},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"feature","href":"http://localhost:3000/feature","data":[{"name":"id","value":null},{"name":"type","value":null},{"name":"feature_name","value":null}]},{"rel":"forecast","href":"http://localhost:3000/forecasts/search","data":[{"name":"team_id","value":null}]},{"rel":"geocode","href":"http://localhost:3000/geocoded_locations/search","data":[{"name":"country","value":null},{"name":"postal_code","value":null}]},{"rel":"generate_firebase_token","href":"http://localhost:3000/generate_firebase_token","data":[{"name":"team_id","value":null},{"name":"version","value":null}]}]}}'
105
+ string: '{"collection":{"version":"3.206.1","href":"http://localhost:3000/","rel":"root","links":[{"rel":"apiv2_root","href":"http://localhost:3003"},{"rel":"authorization","href":"http://localhost:3004"},{"rel":"apn_devices","href":"http://localhost:3000/apn_devices"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"countries","href":"http://localhost:3000/countries"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"divisions","href":"http://localhost:3000/divisions"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_events","href":"http://localhost:3000/division_events"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"divisions_preferences","href":"http://localhost:3000/divisions_preferences"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"facebook_pages","href":"http://localhost:3000/facebook_pages"},{"rel":"forecasts","href":"http://localhost:3000/forecasts"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"geocoded_locations","href":"http://localhost:3000/geocoded_locations"},{"rel":"gcm_devices","href":"http://localhost:3000/gcm_devices"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currencies","href":"http://localhost:3000/paypal_currencies"},{"rel":"plans","href":"http://localhost:3000/plans"},{"rel":"plans_all","href":"http://localhost:3000/plans/all"},{"rel":"public_features","href":"http://localhost:3000/public_features"},{"rel":"schemas","href":"http://localhost:3000/schemas"},{"rel":"sms_gateways","href":"http://localhost:3000/sms_gateways"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sports","href":"http://localhost:3000/sports"},{"rel":"statistics","href":"http://localhost:3000/statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_groups","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_public_sites","href":"http://localhost:3000/team_public_sites"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"teams_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"teams_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"teams_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"time_zones","href":"http://localhost:3000/time_zones"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"tsl_metadata","href":"http://localhost:3000/tsl_metadata"},{"rel":"tsl_chats","href":"http://localhost:3000/tsl_chats"},{"rel":"tsl_photos","href":"http://localhost:3000/tsl_photos"},{"rel":"tsl_scores","href":"http://localhost:3000/tsl_scores"},{"rel":"users","href":"http://localhost:3000/users"},{"rel":"dude","href":"http://localhost:3000/dude"},{"rel":"sweet","href":"http://localhost:3000/sweet"},{"rel":"random","href":"http://localhost:3000/random"},{"rel":"xyzzy","href":"http://localhost:3000/xyzzy"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/"}],"queries":[{"rel":"bulk_load","href":"http://localhost:3000/bulk_load","prompt":"Returns
106
+ a heterogeneous collection of the specified types for a specified team or
107
+ teams. Additional filters can be passed into requested types by passing them
108
+ in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
109
+ Any filter can be passed that is available on the search for the specified
110
+ type.","data":[{"name":"team_id","value":null,"prompt":"The team_id(s) to
111
+ return results for, this can be a single id or a comma-separated list of ids."},{"name":"scope_to","value":null,"prompt":"A
112
+ comma separated list of singular types that you would like to scope the rest
113
+ of the related result sets to. For instance, scoping assignments to events
114
+ and providing a filter on events will return only assignments for the events
115
+ returned."},{"name":"types","value":null,"prompt":"A comma separated list
116
+ of singular types that you want returned."}]},{"rel":"query","href":"http://localhost:3000/q","prompt":"Returns
117
+ a heterogeneous collection of the specified types. You must pass at least
118
+ one valid filter in, filters can be passed into requested types by passing
119
+ them in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
120
+ Any filter can be passed that is available on the search for the specified
121
+ type. Types can also be filtered by using the ''scope_to'' parameter. Unfiltered
122
+ searches will return as empty.","data":[{"name":"scope_to","value":null,"prompt":"A
123
+ comma separated list of singular types that you would like to scope the rest
124
+ of the related result sets to. For instance, scoping assignments to events
125
+ and providing a filter on events will return only assignments for the events
126
+ returned."},{"name":"types","value":null,"prompt":"A comma separated list
127
+ of singular types that you want returned."}]},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"feature","href":"http://localhost:3000/feature","data":[{"name":"id","value":null},{"name":"type","value":null},{"name":"feature_name","value":null}]},{"rel":"forecast","href":"http://localhost:3000/forecasts/search","data":[{"name":"team_id","value":null}]},{"rel":"geocode","href":"http://localhost:3000/geocoded_locations/search","data":[{"name":"country","value":null},{"name":"postal_code","value":null}]},{"rel":"generate_firebase_token","href":"http://localhost:3000/generate_firebase_token","data":[{"name":"team_id","value":null},{"name":"version","value":null}]},{"rel":"invitation_finder","href":"http://localhost:3000/invitation_finder","data":[{"name":"email_address","value":null}]}],"commands":[{"rel":"send_invitations","href":"http://localhost:3000/send_invitations","prompt":"Send
128
+ any pending invitations for a specified email address","data":[{"name":"email_address","value":null}]},{"rel":"welcome","href":"http://localhost:3000/welcome","prompt":"Send
129
+ a welcome email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]},{"rel":"initiate_registration","href":"http://localhost:3000/initiate_registration","prompt":"Send
130
+ a signup email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]}]}}'
46
131
  http_version: '1.1'
47
132
  adapter_metadata:
48
- effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=d31238ef-c4a2-4122-9677-64027510d3ac&hmac_timestamp=1444788588
49
- recorded_at: Wed, 14 Oct 2015 02:09:49 GMT
133
+ effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=84170a08-a03f-44ba-94ba-9f07452e4c69&hmac_timestamp=1457993767
134
+ recorded_at: Mon, 14 Mar 2016 22:16:07 GMT
50
135
  - request:
51
136
  method: get
52
- uri: http://localhost:3000/schemas?hmac_client_id=classic&hmac_nonce=61023c18-4713-443b-ba72-327e12fd7467&hmac_timestamp=1444788589
137
+ uri: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=e041cb2a-03c6-40b4-bc23-156e38976834&hmac_timestamp=1457993767
53
138
  body:
54
139
  encoding: US-ASCII
55
140
  string: ''
56
141
  headers:
57
142
  User-Agent:
58
- - Faraday v0.9.2
143
+ - Faraday v0.9.1
59
144
  X-Teamsnap-Hmac:
60
- - 7e910ce869c2300fcad04b30724247ddc29ca26a3d742c0905b52380f103b591
145
+ - 80283e65f0c017efe62d2db533ad34112f5b2bb0aa3fd3ed3e7f4aa389ebd1fe
61
146
  response:
62
147
  status:
63
148
  code: 200
64
149
  message: OK
65
150
  headers:
66
151
  Content-Type:
67
- - application/json
152
+ - application/vnd.collection+json
153
+ Content-Length:
154
+ - '9688'
155
+ X-Content-Type-Options:
156
+ - nosniff
157
+ ETag:
158
+ - '"41393e2f8cd6c40b6152930dcefe4f14"'
159
+ Cache-Control:
160
+ - max-age=0, private, must-revalidate
161
+ X-Request-Id:
162
+ - d88b1ee2-4bb5-401b-aaf8-3136a68eab6b
163
+ X-Runtime:
164
+ - '0.060198'
165
+ Connection:
166
+ - keep-alive
167
+ Server:
168
+ - thin
169
+ body:
170
+ encoding: UTF-8
171
+ string: '{"collection":{"version":"3.206.1","href":"http://localhost:3000/","rel":"root","links":[{"rel":"apiv2_root","href":"http://localhost:3003"},{"rel":"authorization","href":"http://localhost:3004"},{"rel":"apn_devices","href":"http://localhost:3000/apn_devices"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"countries","href":"http://localhost:3000/countries"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"divisions","href":"http://localhost:3000/divisions"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_events","href":"http://localhost:3000/division_events"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"divisions_preferences","href":"http://localhost:3000/divisions_preferences"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"facebook_pages","href":"http://localhost:3000/facebook_pages"},{"rel":"forecasts","href":"http://localhost:3000/forecasts"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"geocoded_locations","href":"http://localhost:3000/geocoded_locations"},{"rel":"gcm_devices","href":"http://localhost:3000/gcm_devices"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currencies","href":"http://localhost:3000/paypal_currencies"},{"rel":"plans","href":"http://localhost:3000/plans"},{"rel":"plans_all","href":"http://localhost:3000/plans/all"},{"rel":"public_features","href":"http://localhost:3000/public_features"},{"rel":"schemas","href":"http://localhost:3000/schemas"},{"rel":"sms_gateways","href":"http://localhost:3000/sms_gateways"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sports","href":"http://localhost:3000/sports"},{"rel":"statistics","href":"http://localhost:3000/statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_groups","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_public_sites","href":"http://localhost:3000/team_public_sites"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"teams_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"teams_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"teams_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"time_zones","href":"http://localhost:3000/time_zones"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"tsl_metadata","href":"http://localhost:3000/tsl_metadata"},{"rel":"tsl_chats","href":"http://localhost:3000/tsl_chats"},{"rel":"tsl_photos","href":"http://localhost:3000/tsl_photos"},{"rel":"tsl_scores","href":"http://localhost:3000/tsl_scores"},{"rel":"users","href":"http://localhost:3000/users"},{"rel":"dude","href":"http://localhost:3000/dude"},{"rel":"sweet","href":"http://localhost:3000/sweet"},{"rel":"random","href":"http://localhost:3000/random"},{"rel":"xyzzy","href":"http://localhost:3000/xyzzy"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/"}],"queries":[{"rel":"bulk_load","href":"http://localhost:3000/bulk_load","prompt":"Returns
172
+ a heterogeneous collection of the specified types for a specified team or
173
+ teams. Additional filters can be passed into requested types by passing them
174
+ in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
175
+ Any filter can be passed that is available on the search for the specified
176
+ type.","data":[{"name":"team_id","value":null,"prompt":"The team_id(s) to
177
+ return results for, this can be a single id or a comma-separated list of ids."},{"name":"scope_to","value":null,"prompt":"A
178
+ comma separated list of singular types that you would like to scope the rest
179
+ of the related result sets to. For instance, scoping assignments to events
180
+ and providing a filter on events will return only assignments for the events
181
+ returned."},{"name":"types","value":null,"prompt":"A comma separated list
182
+ of singular types that you want returned."}]},{"rel":"query","href":"http://localhost:3000/q","prompt":"Returns
183
+ a heterogeneous collection of the specified types. You must pass at least
184
+ one valid filter in, filters can be passed into requested types by passing
185
+ them in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
186
+ Any filter can be passed that is available on the search for the specified
187
+ type. Types can also be filtered by using the ''scope_to'' parameter. Unfiltered
188
+ searches will return as empty.","data":[{"name":"scope_to","value":null,"prompt":"A
189
+ comma separated list of singular types that you would like to scope the rest
190
+ of the related result sets to. For instance, scoping assignments to events
191
+ and providing a filter on events will return only assignments for the events
192
+ returned."},{"name":"types","value":null,"prompt":"A comma separated list
193
+ of singular types that you want returned."}]},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"feature","href":"http://localhost:3000/feature","data":[{"name":"id","value":null},{"name":"type","value":null},{"name":"feature_name","value":null}]},{"rel":"forecast","href":"http://localhost:3000/forecasts/search","data":[{"name":"team_id","value":null}]},{"rel":"geocode","href":"http://localhost:3000/geocoded_locations/search","data":[{"name":"country","value":null},{"name":"postal_code","value":null}]},{"rel":"generate_firebase_token","href":"http://localhost:3000/generate_firebase_token","data":[{"name":"team_id","value":null},{"name":"version","value":null}]},{"rel":"invitation_finder","href":"http://localhost:3000/invitation_finder","data":[{"name":"email_address","value":null}]}],"commands":[{"rel":"send_invitations","href":"http://localhost:3000/send_invitations","prompt":"Send
194
+ any pending invitations for a specified email address","data":[{"name":"email_address","value":null}]},{"rel":"welcome","href":"http://localhost:3000/welcome","prompt":"Send
195
+ a welcome email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]},{"rel":"initiate_registration","href":"http://localhost:3000/initiate_registration","prompt":"Send
196
+ a signup email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]}]}}'
197
+ http_version: '1.1'
198
+ adapter_metadata:
199
+ effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=e041cb2a-03c6-40b4-bc23-156e38976834&hmac_timestamp=1457993767
200
+ recorded_at: Mon, 14 Mar 2016 22:16:07 GMT
201
+ - request:
202
+ method: get
203
+ uri: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=beaee622-0aed-4152-a3d3-d92154bcb589&hmac_timestamp=1457993769
204
+ body:
205
+ encoding: US-ASCII
206
+ string: ''
207
+ headers:
208
+ User-Agent:
209
+ - Faraday v0.9.1
210
+ X-Teamsnap-Hmac:
211
+ - b47bcd638464c3bf35fa31a29cf76e81528e4eb2fea7470943699818fd8a57a8
212
+ response:
213
+ status:
214
+ code: 200
215
+ message: OK
216
+ headers:
217
+ Content-Type:
218
+ - application/vnd.collection+json
68
219
  Content-Length:
69
- - '227105'
220
+ - '9688'
221
+ X-Content-Type-Options:
222
+ - nosniff
223
+ ETag:
224
+ - '"41393e2f8cd6c40b6152930dcefe4f14"'
225
+ Cache-Control:
226
+ - max-age=0, private, must-revalidate
227
+ X-Request-Id:
228
+ - e70a876a-5df7-401b-9a8e-eaa152502d14
229
+ X-Runtime:
230
+ - '0.062381'
70
231
  Connection:
71
232
  - keep-alive
72
- Status:
73
- - 200 OK
233
+ Server:
234
+ - thin
235
+ body:
236
+ encoding: UTF-8
237
+ string: '{"collection":{"version":"3.206.1","href":"http://localhost:3000/","rel":"root","links":[{"rel":"apiv2_root","href":"http://localhost:3003"},{"rel":"authorization","href":"http://localhost:3004"},{"rel":"apn_devices","href":"http://localhost:3000/apn_devices"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"countries","href":"http://localhost:3000/countries"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"divisions","href":"http://localhost:3000/divisions"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_events","href":"http://localhost:3000/division_events"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"divisions_preferences","href":"http://localhost:3000/divisions_preferences"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"facebook_pages","href":"http://localhost:3000/facebook_pages"},{"rel":"forecasts","href":"http://localhost:3000/forecasts"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"geocoded_locations","href":"http://localhost:3000/geocoded_locations"},{"rel":"gcm_devices","href":"http://localhost:3000/gcm_devices"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currencies","href":"http://localhost:3000/paypal_currencies"},{"rel":"plans","href":"http://localhost:3000/plans"},{"rel":"plans_all","href":"http://localhost:3000/plans/all"},{"rel":"public_features","href":"http://localhost:3000/public_features"},{"rel":"schemas","href":"http://localhost:3000/schemas"},{"rel":"sms_gateways","href":"http://localhost:3000/sms_gateways"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sports","href":"http://localhost:3000/sports"},{"rel":"statistics","href":"http://localhost:3000/statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_groups","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_public_sites","href":"http://localhost:3000/team_public_sites"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"teams_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"teams_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"teams_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"time_zones","href":"http://localhost:3000/time_zones"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"tsl_metadata","href":"http://localhost:3000/tsl_metadata"},{"rel":"tsl_chats","href":"http://localhost:3000/tsl_chats"},{"rel":"tsl_photos","href":"http://localhost:3000/tsl_photos"},{"rel":"tsl_scores","href":"http://localhost:3000/tsl_scores"},{"rel":"users","href":"http://localhost:3000/users"},{"rel":"dude","href":"http://localhost:3000/dude"},{"rel":"sweet","href":"http://localhost:3000/sweet"},{"rel":"random","href":"http://localhost:3000/random"},{"rel":"xyzzy","href":"http://localhost:3000/xyzzy"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/"}],"queries":[{"rel":"bulk_load","href":"http://localhost:3000/bulk_load","prompt":"Returns
238
+ a heterogeneous collection of the specified types for a specified team or
239
+ teams. Additional filters can be passed into requested types by passing them
240
+ in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
241
+ Any filter can be passed that is available on the search for the specified
242
+ type.","data":[{"name":"team_id","value":null,"prompt":"The team_id(s) to
243
+ return results for, this can be a single id or a comma-separated list of ids."},{"name":"scope_to","value":null,"prompt":"A
244
+ comma separated list of singular types that you would like to scope the rest
245
+ of the related result sets to. For instance, scoping assignments to events
246
+ and providing a filter on events will return only assignments for the events
247
+ returned."},{"name":"types","value":null,"prompt":"A comma separated list
248
+ of singular types that you want returned."}]},{"rel":"query","href":"http://localhost:3000/q","prompt":"Returns
249
+ a heterogeneous collection of the specified types. You must pass at least
250
+ one valid filter in, filters can be passed into requested types by passing
251
+ them in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
252
+ Any filter can be passed that is available on the search for the specified
253
+ type. Types can also be filtered by using the ''scope_to'' parameter. Unfiltered
254
+ searches will return as empty.","data":[{"name":"scope_to","value":null,"prompt":"A
255
+ comma separated list of singular types that you would like to scope the rest
256
+ of the related result sets to. For instance, scoping assignments to events
257
+ and providing a filter on events will return only assignments for the events
258
+ returned."},{"name":"types","value":null,"prompt":"A comma separated list
259
+ of singular types that you want returned."}]},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"feature","href":"http://localhost:3000/feature","data":[{"name":"id","value":null},{"name":"type","value":null},{"name":"feature_name","value":null}]},{"rel":"forecast","href":"http://localhost:3000/forecasts/search","data":[{"name":"team_id","value":null}]},{"rel":"geocode","href":"http://localhost:3000/geocoded_locations/search","data":[{"name":"country","value":null},{"name":"postal_code","value":null}]},{"rel":"generate_firebase_token","href":"http://localhost:3000/generate_firebase_token","data":[{"name":"team_id","value":null},{"name":"version","value":null}]},{"rel":"invitation_finder","href":"http://localhost:3000/invitation_finder","data":[{"name":"email_address","value":null}]}],"commands":[{"rel":"send_invitations","href":"http://localhost:3000/send_invitations","prompt":"Send
260
+ any pending invitations for a specified email address","data":[{"name":"email_address","value":null}]},{"rel":"welcome","href":"http://localhost:3000/welcome","prompt":"Send
261
+ a welcome email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]},{"rel":"initiate_registration","href":"http://localhost:3000/initiate_registration","prompt":"Send
262
+ a signup email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]}]}}'
263
+ http_version: '1.1'
264
+ adapter_metadata:
265
+ effective_url: http://localhost:3000/?hmac_client_id=classic&hmac_nonce=beaee622-0aed-4152-a3d3-d92154bcb589&hmac_timestamp=1457993769
266
+ recorded_at: Mon, 14 Mar 2016 22:16:09 GMT
267
+ - request:
268
+ method: get
269
+ uri: http://localhost:3000/schemas?hmac_client_id=classic&hmac_nonce=a0ab3aeb-5e3e-4cbd-a11b-417dae1ed0f3&hmac_timestamp=1457993769
270
+ body:
271
+ encoding: US-ASCII
272
+ string: ''
273
+ headers:
274
+ User-Agent:
275
+ - Faraday v0.9.1
276
+ X-Teamsnap-Hmac:
277
+ - 93d7bc6c623ac019e27512db77cffe33d311a88716af89af22d974767b131b4e
278
+ response:
279
+ status:
280
+ code: 200
281
+ message: OK
282
+ headers:
283
+ Content-Type:
284
+ - application/json
285
+ Content-Length:
286
+ - '343076'
74
287
  X-Content-Type-Options:
75
288
  - nosniff
76
289
  ETag:
77
- - '"3a60e5e4f50988fc13503ece3fcd5416"'
290
+ - '"009616072c0f04098147f588b6bf7324"'
78
291
  Cache-Control:
79
292
  - max-age=0, private, must-revalidate
80
293
  X-Request-Id:
81
- - a02aba14-dde4-4a0c-a997-9f3465b093e3
294
+ - d9d5c505-0548-4eb5-b940-63b3fae21d4f
82
295
  X-Runtime:
83
- - '0.766031'
84
- X-Powered-By:
85
- - Phusion Passenger 4.0.48
86
- Date:
87
- - Wed, 14 Oct 2015 02:09:49 GMT
296
+ - '0.052251'
297
+ Connection:
298
+ - keep-alive
88
299
  Server:
89
- - nginx/1.6.2 + Phusion Passenger 4.0.48
300
+ - thin
90
301
  body:
91
302
  encoding: UTF-8
92
- string: '[{"collection":{"version":"3.119.0","href":"http://localhost:3000/","links":[{"rel":"apiv2_root","href":"http://localhost:3003"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_smses","href":"http://localhost:3000/broadcast_smses"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"forecasts","href":"http://localhost:3000/forecasts"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"geocoded_locations","href":"http://localhost:3000/geocoded_locations"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currencies","href":"http://localhost:3000/paypal_currencies"},{"rel":"plans","href":"http://localhost:3000/plans"},{"rel":"plans_all","href":"http://localhost:3000/plans/all"},{"rel":"public_features","href":"http://localhost:3000/public_features"},{"rel":"schemas","href":"http://localhost:3000/schemas"},{"rel":"sms_gateways","href":"http://localhost:3000/sms_gateways"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sports","href":"http://localhost:3000/sports"},{"rel":"statistics","href":"http://localhost:3000/statistics"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_groups","href":"http://localhost:3000/statistic_groups"},{"rel":"referrals","href":"http://localhost:3000/referrals"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_public_sites","href":"http://localhost:3000/team_public_sites"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"teams_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"teams_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"teams_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"time_zones","href":"http://localhost:3000/time_zones"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"tsl_metadata","href":"http://localhost:3000/tsl_metadata"},{"rel":"tsl_photos","href":"http://localhost:3000/tsl_photos"},{"rel":"users","href":"http://localhost:3000/users"},{"rel":"dude","href":"http://localhost:3000/dude"},{"rel":"sweet","href":"http://localhost:3000/sweet"},{"rel":"random","href":"http://localhost:3000/random"},{"rel":"xyzzy","href":"http://localhost:3000/xyzzy"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//"}],"queries":[{"rel":"bulk_load","href":"http://localhost:3000/bulk_load","data":[{"name":"team_id","value":null},{"name":"types","value":null}]},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"feature","href":"http://localhost:3000/feature","data":[{"name":"id","value":null},{"name":"type","value":null},{"name":"feature_name","value":null}]},{"rel":"forecast","href":"http://localhost:3000/forecasts/search","data":[{"name":"team_id","value":null}]},{"rel":"geocode","href":"http://localhost:3000/geocoded_locations/search","data":[{"name":"country","value":null},{"name":"postal_code","value":null}]},{"rel":"generate_firebase_token","href":"http://localhost:3000/generate_firebase_token","data":[{"name":"team_id","value":null},{"name":"version","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/assignments","template":{"data":[{"name":"description","value":null},{"name":"event_id","value":null},{"name":"member_id","value":null}]},"links":[{"rel":"event","href":"http://localhost:3000/events"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//assignments"}],"queries":[{"rel":"search","href":"http://localhost:3000/assignments/search","data":[{"name":"team_id","value":null},{"name":"event_id","value":null},{"name":"member_id","value":null},{"name":"started_before","value":null},{"name":"started_after","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/availabilities","template":{"data":[{"name":"status_code","value":null},{"name":"notes","value":null},{"name":"event_id","value":null},{"name":"member_id","value":null},{"name":"notes_author_member_id","value":null},{"name":"source","value":null}]},"links":[{"rel":"event","href":"http://localhost:3000/events"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"notes_author_member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//availabilities"}],"queries":[{"rel":"search","href":"http://localhost:3000/availabilities/search","data":[{"name":"team_id","value":null},{"name":"event_id","value":null},{"name":"member_id","value":null},{"name":"started_before","value":null},{"name":"started_after","value":null},{"name":"id","value":null}]}],"commands":[{"rel":"bulk_mark_unset_availabilities","href":"http://localhost:3000/availabilities/bulk_mark_unset_availabilities","prompt":"Mark
303
+ string: '[{"collection":{"version":"3.206.1","href":"http://localhost:3000/","rel":"root","links":[{"rel":"apiv2_root","href":"http://localhost:3003"},{"rel":"authorization","href":"http://localhost:3004"},{"rel":"apn_devices","href":"http://localhost:3000/apn_devices"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"countries","href":"http://localhost:3000/countries"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"divisions","href":"http://localhost:3000/divisions"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_events","href":"http://localhost:3000/division_events"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"divisions_preferences","href":"http://localhost:3000/divisions_preferences"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"facebook_pages","href":"http://localhost:3000/facebook_pages"},{"rel":"forecasts","href":"http://localhost:3000/forecasts"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"geocoded_locations","href":"http://localhost:3000/geocoded_locations"},{"rel":"gcm_devices","href":"http://localhost:3000/gcm_devices"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currencies","href":"http://localhost:3000/paypal_currencies"},{"rel":"plans","href":"http://localhost:3000/plans"},{"rel":"plans_all","href":"http://localhost:3000/plans/all"},{"rel":"public_features","href":"http://localhost:3000/public_features"},{"rel":"schemas","href":"http://localhost:3000/schemas"},{"rel":"sms_gateways","href":"http://localhost:3000/sms_gateways"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sports","href":"http://localhost:3000/sports"},{"rel":"statistics","href":"http://localhost:3000/statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_groups","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_public_sites","href":"http://localhost:3000/team_public_sites"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"teams_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"teams_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"teams_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"time_zones","href":"http://localhost:3000/time_zones"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"tsl_metadata","href":"http://localhost:3000/tsl_metadata"},{"rel":"tsl_chats","href":"http://localhost:3000/tsl_chats"},{"rel":"tsl_photos","href":"http://localhost:3000/tsl_photos"},{"rel":"tsl_scores","href":"http://localhost:3000/tsl_scores"},{"rel":"users","href":"http://localhost:3000/users"},{"rel":"dude","href":"http://localhost:3000/dude"},{"rel":"sweet","href":"http://localhost:3000/sweet"},{"rel":"random","href":"http://localhost:3000/random"},{"rel":"xyzzy","href":"http://localhost:3000/xyzzy"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/"}],"queries":[{"rel":"bulk_load","href":"http://localhost:3000/bulk_load","prompt":"Returns
304
+ a heterogeneous collection of the specified types for a specified team or
305
+ teams. Additional filters can be passed into requested types by passing them
306
+ in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
307
+ Any filter can be passed that is available on the search for the specified
308
+ type.","data":[{"name":"team_id","value":null,"prompt":"The team_id(s) to
309
+ return results for, this can be a single id or a comma-separated list of ids."},{"name":"scope_to","value":null,"prompt":"A
310
+ comma separated list of singular types that you would like to scope the rest
311
+ of the related result sets to. For instance, scoping assignments to events
312
+ and providing a filter on events will return only assignments for the events
313
+ returned."},{"name":"types","value":null,"prompt":"A comma separated list
314
+ of singular types that you want returned."}]},{"rel":"query","href":"http://localhost:3000/q","prompt":"Returns
315
+ a heterogeneous collection of the specified types. You must pass at least
316
+ one valid filter in, filters can be passed into requested types by passing
317
+ them in the url''s querystring as type__filter=value (i.e. ?event__start_date=2015-01-01).
318
+ Any filter can be passed that is available on the search for the specified
319
+ type. Types can also be filtered by using the ''scope_to'' parameter. Unfiltered
320
+ searches will return as empty.","data":[{"name":"scope_to","value":null,"prompt":"A
321
+ comma separated list of singular types that you would like to scope the rest
322
+ of the related result sets to. For instance, scoping assignments to events
323
+ and providing a filter on events will return only assignments for the events
324
+ returned."},{"name":"types","value":null,"prompt":"A comma separated list
325
+ of singular types that you want returned."}]},{"rel":"me","href":"http://localhost:3000/me"},{"rel":"feature","href":"http://localhost:3000/feature","data":[{"name":"id","value":null},{"name":"type","value":null},{"name":"feature_name","value":null}]},{"rel":"forecast","href":"http://localhost:3000/forecasts/search","data":[{"name":"team_id","value":null}]},{"rel":"geocode","href":"http://localhost:3000/geocoded_locations/search","data":[{"name":"country","value":null},{"name":"postal_code","value":null}]},{"rel":"generate_firebase_token","href":"http://localhost:3000/generate_firebase_token","data":[{"name":"team_id","value":null},{"name":"version","value":null}]},{"rel":"invitation_finder","href":"http://localhost:3000/invitation_finder","data":[{"name":"email_address","value":null}]}],"commands":[{"rel":"send_invitations","href":"http://localhost:3000/send_invitations","prompt":"Send
326
+ any pending invitations for a specified email address","data":[{"name":"email_address","value":null}]},{"rel":"welcome","href":"http://localhost:3000/welcome","prompt":"Send
327
+ a welcome email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]},{"rel":"initiate_registration","href":"http://localhost:3000/initiate_registration","prompt":"Send
328
+ a signup email to an unregistered user to start the registration process","data":[{"name":"email_address","value":null},{"name":"client_id","value":null},{"name":"redirect_uri","value":null}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/apn_devices","rel":"apn_devices","template":{"data":[{"name":"token","value":null},{"name":"app_version","value":null}]},"links":[{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/apn_devices"}],"queries":[{"rel":"search","href":"http://localhost:3000/apn_devices/search","data":[{"name":"id","value":null},{"name":"user_id","value":null},{"name":"page_size","value":null,"prompt":"The
329
+ number of items to return for each page. Sending this parameter with the query
330
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
331
+ number of the page to be returned. This requires that paging be turned on
332
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/assignments","rel":"assignments","template":{"data":[{"name":"description","value":null},{"name":"event_id","value":null},{"name":"member_id","value":null},{"name":"type","value":"assignment"}]},"links":[{"rel":"event","href":"http://localhost:3000/events"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/assignments"}],"queries":[{"rel":"search","href":"http://localhost:3000/assignments/search","data":[{"name":"team_id","value":null},{"name":"event_id","value":null},{"name":"member_id","value":null},{"name":"started_before","value":null},{"name":"started_after","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
333
+ number of items to return for each page. Sending this parameter with the query
334
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
335
+ number of the page to be returned. This requires that paging be turned on
336
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/availabilities","rel":"availabilities","template":{"data":[{"name":"status_code","value":null},{"name":"notes","value":null},{"name":"event_id","value":null},{"name":"member_id","value":null},{"name":"notes_author_member_id","value":null},{"name":"source","value":null},{"name":"type","value":"availability"}]},"links":[{"rel":"event","href":"http://localhost:3000/events"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"notes_author_member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/availabilities"}],"queries":[{"rel":"search","href":"http://localhost:3000/availabilities/search","data":[{"name":"team_id","value":null},{"name":"event_id","value":null},{"name":"member_id","value":null},{"name":"started_before","value":null},{"name":"started_after","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
337
+ number of items to return for each page. Sending this parameter with the query
338
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
339
+ number of the page to be returned. This requires that paging be turned on
340
+ by also providing the page_size parameter."}]}],"commands":[{"rel":"bulk_mark_unset_availabilities","href":"http://localhost:3000/availabilities/bulk_mark_unset_availabilities","prompt":"Mark
93
341
  all future unset availabilities to specified status_code for the specified
94
- member_id","data":[{"name":"status_code","value":null},{"name":"member_id","value":null},{"name":"started_after","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/broadcast_email_attachments","template":{"data":[{"name":"broadcast_email_id","value":null},{"name":"member_id","value":null},{"name":"caption","value":null},{"name":"file","value":null}]},"links":[{"rel":"broadcast_email","href":"http://localhost:3000/broadcast_emails"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//broadcast_email_attachments"}],"queries":[{"rel":"search","href":"http://localhost:3000/broadcast_email_attachments/search","data":[{"name":"id","value":null},{"name":"broadcast_email_id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null}]}],"commands":[{"rel":"upload_broadcast_email_attachment","href":"http://localhost:3000/broadcast_email_attachments/upload_broadcast_email_attachment","data":[{"name":"broadcast_email_id","value":null},{"name":"member_id","value":null},{"name":"file","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/broadcast_emails","template":{"data":[{"name":"attachments","value":null},{"name":"body","value":null},{"name":"is_draft","value":null},{"name":"member_id","value":null},{"name":"recipient_ids","value":null},{"name":"subject","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//broadcast_emails"}],"queries":[{"rel":"search","href":"http://localhost:3000/broadcast_emails/search","data":[{"name":"id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/broadcast_smses","template":{"data":[{"name":"body","value":null},{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"recipient_ids","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//broadcast_smses"}],"queries":[{"rel":"search","href":"http://localhost:3000/broadcast_smses/search","data":[{"name":"id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/contact_email_addresses","template":{"data":[{"name":"label","value":null},{"name":"email","value":null},{"name":"receives_team_emails","value":null},{"name":"is_hidden","value":null},{"name":"contact_id","value":null}]},"links":[{"rel":"contact","href":"http://localhost:3000/contacts"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//contact_email_addresses"}],"queries":[{"rel":"search","href":"http://localhost:3000/contact_email_addresses/search","data":[{"name":"contact_id","value":null},{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/contact_phone_numbers","template":{"data":[{"name":"label","value":null},{"name":"phone_number","value":null},{"name":"preferred","value":null},{"name":"contact_id","value":null},{"name":"sms_enabled","value":null},{"name":"sms_gateway_id","value":null},{"name":"is_hidden","value":null}]},"links":[{"rel":"contact","href":"http://localhost:3000/contacts"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"sms_gateway","href":"http://localhost:3000/sms_gateways"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//contact_phone_numbers"}],"queries":[{"rel":"search","href":"http://localhost:3000/contact_phone_numbers/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"contact_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/contacts","template":{"data":[{"name":"label","value":null},{"name":"address_street1","value":null},{"name":"address_street2","value":null},{"name":"address_city","value":null},{"name":"address_state","value":null},{"name":"address_zip","value":null},{"name":"address_country","value":null},{"name":"first_name","value":null},{"name":"last_name","value":null},{"name":"hide_address","value":null},{"name":"allow_shared_access","value":null},{"name":"member_id","value":null}]},"links":[{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//contacts"}],"queries":[{"rel":"search","href":"http://localhost:3000/contacts/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/custom_data","template":{"data":[{"name":"member_id","value":null},{"name":"custom_field_id","value":null},{"name":"value","value":null},{"name":"is_private","value":null}]},"links":[{"rel":"custom_field","href":"http://localhost:3000/custom_fields"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//custom_data"}],"queries":[{"rel":"search","href":"http://localhost:3000/custom_data/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"custom_field_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/custom_fields","template":{"data":[{"name":"team_id","value":null},{"name":"name","value":null},{"name":"kind","value":null},{"name":"options","value":null},{"name":"help_text","value":null}]},"links":[{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//custom_fields"}],"queries":[{"rel":"search","href":"http://localhost:3000/custom_fields/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/league_custom_data","template":{"data":[{"name":"member_id","value":null},{"name":"league_custom_field_id","value":null},{"name":"value","value":null},{"name":"is_private","value":null}]},"links":[{"rel":"league_custom_field","href":"http://localhost:3000/league_custom_fields"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//league_custom_data"}],"queries":[{"rel":"search","href":"http://localhost:3000/league_custom_data/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"division_id","value":null},{"name":"league_custom_field_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/league_custom_fields","links":[{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"self","href":"http://localhost:3000//league_custom_fields"}],"queries":[{"rel":"search","href":"http://localhost:3000/league_custom_fields/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"division_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/division_contact_email_addresses","template":{"data":[{"name":"label","value":null},{"name":"email","value":null},{"name":"receives_team_emails","value":null},{"name":"is_hidden","value":null},{"name":"contact_id","value":null}]},"links":[{"rel":"contact","href":"http://localhost:3000/contacts"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//division_contact_email_addresses"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_contact_email_addresses/search","data":[{"name":"contact_id","value":null},{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/division_contact_phone_numbers","template":{"data":[{"name":"label","value":null},{"name":"phone_number","value":null},{"name":"preferred","value":null},{"name":"contact_id","value":null},{"name":"sms_enabled","value":null},{"name":"sms_gateway_id","value":null},{"name":"is_hidden","value":null}]},"links":[{"rel":"contact","href":"http://localhost:3000/contacts"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"sms_gateway","href":"http://localhost:3000/sms_gateways"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//division_contact_phone_numbers"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_contact_phone_numbers/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"contact_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/division_locations","links":[{"rel":"events","href":"http://localhost:3000/events"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//division_locations"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_locations/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/division_member_email_addresses","template":{"data":[{"name":"member_id","value":null},{"name":"label","value":null},{"name":"email","value":null},{"name":"receives_team_emails","value":null},{"name":"is_hidden","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//division_member_email_addresses"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_member_email_addresses/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/division_member_phone_numbers","template":{"data":[{"name":"label","value":null},{"name":"phone_number","value":null},{"name":"preferred","value":null},{"name":"member_id","value":null},{"name":"sms_enabled","value":null},{"name":"sms_gateway_id","value":null},{"name":"is_hidden","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"sms_gateway","href":"http://localhost:3000/sms_gateways"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//division_member_phone_numbers"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_member_phone_numbers/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"member_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/division_members","queries":[{"rel":"search","href":"http://localhost:3000/division_members/search","data":[{"name":"team_id","value":null,"prompt":"Find
95
- a division member by the id of the team they are a commissioner of"},{"name":"user_id","value":null},{"name":"id","value":null}]}],"links":[{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//division_members"}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/division_members_preferences","template":{"data":[{"name":"assignments_hide_past","value":null},{"name":"schedule_hide_past","value":null},{"name":"availability_show_past","value":null},{"name":"schedule_show_for_code","value":null},{"name":"reminders_send_game","value":null},{"name":"reminders_send_event","value":null},{"name":"reminders_send_days_before_game","value":null},{"name":"reminders_send_days_before_event","value":null},{"name":"reminders_send_manager_game","value":null},{"name":"reminders_send_manager_event","value":null},{"name":"reminders_send_manager_days_before_game","value":null},{"name":"reminders_send_manager_days_before_event","value":null},{"name":"mobile_send_push_messages","value":null},{"name":"public_site_show_thumbnail","value":null},{"name":"public_site_show_last_name","value":null},{"name":"facebook_post_scores","value":null},{"name":"facebook_post_scores_to_page_id","value":null},{"name":"facebook_post_scores_to_page_name","value":null},{"name":"facebook_post_scores_to_wall","value":null},{"name":"facebook_only_post_wins","value":null},{"name":"facebook_polite_scores","value":null},{"name":"facebook_page_access_token","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//division_members_preferences"}],"queries":[{"rel":"search","href":"http://localhost:3000/members_preferences/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/division_team_standings","template":{"data":[{"name":"id","value":null},{"name":"type","value":null},{"name":"team_name","value":null},{"name":"team_url","value":null},{"name":"division_name","value":null},{"name":"wins","value":null},{"name":"losses","value":null},{"name":"ties","value":null},{"name":"overtime_losses","value":null},{"name":"standings_points","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//division_team_standings"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_team_standings/search","data":[{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/events","template":{"data":[{"name":"repeating_type_code","value":null},{"name":"is_game","value":null},{"name":"start_date","value":null},{"name":"is_tbd","value":null},{"name":"name","value":null},{"name":"label","value":null},{"name":"game_type_code","value":null},{"name":"icon_color","value":null},{"name":"minutes_to_arrive_early","value":null},{"name":"duration_in_minutes","value":null},{"name":"notes","value":null},{"name":"points_for_team","value":null},{"name":"points_for_opponent","value":null},{"name":"shootout_points_for_team","value":null},{"name":"shootout_points_for_opponent","value":null},{"name":"is_overtime","value":null},{"name":"is_shootout","value":null},{"name":"doesnt_count_towards_record","value":null},{"name":"results","value":null},{"name":"results_url","value":null},{"name":"tracks_availability","value":null},{"name":"uniform","value":null},{"name":"is_canceled","value":null},{"name":"notify_team","value":null},{"name":"notify_team_as_member_id","value":null},{"name":"notify_opponent","value":null},{"name":"notify_opponent_contacts_name","value":null},{"name":"notify_opponent_contacts_email","value":null},{"name":"notify_opponent_notes","value":null},{"name":"team_id","value":null},{"name":"division_location_id","value":null},{"name":"location_id","value":null},{"name":"opponent_id","value":null},{"name":"repeating_until","value":null},{"name":"repeating_include","value":null},{"name":"time_zone","value":null},{"name":"browser_time_zone","value":null},{"name":"additional_location_details","value":null}]},"links":[{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"division_location","href":"http://localhost:3000/division_locations"},{"rel":"location","href":"http://localhost:3000/locations"},{"rel":"opponent","href":"http://localhost:3000/opponents"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//events"}],"queries":[{"rel":"search","href":"http://localhost:3000/events/search","data":[{"name":"team_id","value":null},{"name":"location_id","value":null},{"name":"opponent_id","value":null},{"name":"started_after","value":null},{"name":"started_before","value":null},{"name":"id","value":null}]},{"rel":"search_games","href":"http://localhost:3000/events/search_games","data":[{"name":"team_id","value":null}]}],"commands":[{"rel":"send_availability_reminders","href":"http://localhost:3000/events/send_availability_reminders","prompt":"members_to_notify
342
+ member_id","data":[{"name":"status_code","value":null},{"name":"member_id","value":null},{"name":"started_after","value":null}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/broadcast_email_attachments","rel":"broadcast_email_attachments","template":{"data":[{"name":"broadcast_email_id","value":null},{"name":"member_id","value":null},{"name":"caption","value":null},{"name":"file","value":null},{"name":"type","value":"broadcast_email_attachment"}]},"links":[{"rel":"broadcast_email","href":"http://localhost:3000/broadcast_emails"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/broadcast_email_attachments"}],"queries":[{"rel":"search","href":"http://localhost:3000/broadcast_email_attachments/search","data":[{"name":"id","value":null},{"name":"broadcast_email_id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
343
+ number of items to return for each page. Sending this parameter with the query
344
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
345
+ number of the page to be returned. This requires that paging be turned on
346
+ by also providing the page_size parameter."}]}],"commands":[{"rel":"upload_broadcast_email_attachment","href":"http://localhost:3000/broadcast_email_attachments/upload_broadcast_email_attachment","data":[{"name":"broadcast_email_id","value":null},{"name":"member_id","value":null},{"name":"file","value":null}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/broadcast_emails","rel":"broadcast_emails","template":{"data":[{"name":"attachments","value":null},{"name":"body","value":null},{"name":"from_email_address","value":null},{"name":"is_draft","value":null},{"name":"member_id","value":null},{"name":"recipient_ids","value":null},{"name":"subject","value":null},{"name":"team_id","value":null},{"name":"type","value":"broadcast_email"}]},"links":[{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/broadcast_emails"}],"queries":[{"rel":"search","href":"http://localhost:3000/broadcast_emails/search","data":[{"name":"id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
347
+ number of items to return for each page. Sending this parameter with the query
348
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
349
+ number of the page to be returned. This requires that paging be turned on
350
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/broadcast_alerts","rel":"broadcast_alerts","template":{"data":[{"name":"body","value":null},{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"recipient_ids","value":null},{"name":"type","value":"broadcast_alert"}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/broadcast_alerts"}],"queries":[{"rel":"search","href":"http://localhost:3000/broadcast_alerts/search","data":[{"name":"id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
351
+ number of items to return for each page. Sending this parameter with the query
352
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
353
+ number of the page to be returned. This requires that paging be turned on
354
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/contact_email_addresses","rel":"contact_email_addresses","template":{"data":[{"name":"label","value":null},{"name":"email","value":null},{"name":"receives_team_emails","value":null},{"name":"is_hidden","value":null},{"name":"contact_id","value":null},{"name":"type","value":"contact_email_address"}]},"links":[{"rel":"contact","href":"http://localhost:3000/contacts"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/contact_email_addresses"}],"queries":[{"rel":"search","href":"http://localhost:3000/contact_email_addresses/search","data":[{"name":"contact_id","value":null},{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
355
+ number of items to return for each page. Sending this parameter with the query
356
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
357
+ number of the page to be returned. This requires that paging be turned on
358
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/contact_phone_numbers","rel":"contact_phone_numbers","template":{"data":[{"name":"label","value":null},{"name":"phone_number","value":null},{"name":"preferred","value":null,"deprecated":true,"prompt":"preferred
359
+ is deprecated and will be removed in a future version, use is_preferred instead."},{"name":"is_preferred","value":null},{"name":"contact_id","value":null},{"name":"sms_enabled","value":null},{"name":"sms_gateway_id","value":null},{"name":"is_hidden","value":null},{"name":"type","value":"contact_phone_number"}]},"links":[{"rel":"contact","href":"http://localhost:3000/contacts"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"sms_gateway","href":"http://localhost:3000/sms_gateways"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/contact_phone_numbers"}],"queries":[{"rel":"search","href":"http://localhost:3000/contact_phone_numbers/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"contact_id","value":null},{"name":"page_size","value":null,"prompt":"The
360
+ number of items to return for each page. Sending this parameter with the query
361
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
362
+ number of the page to be returned. This requires that paging be turned on
363
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/contacts","rel":"contacts","template":{"data":[{"name":"label","value":null},{"name":"address_street1","value":null},{"name":"address_street2","value":null},{"name":"address_city","value":null},{"name":"address_state","value":null},{"name":"address_zip","value":null},{"name":"address_country","value":null},{"name":"first_name","value":null},{"name":"last_name","value":null},{"name":"hide_address","value":null,"deprecated":true,"prompt":"hide_address
364
+ is deprecated and will be removed in a future version, use is_address_hidden
365
+ instead."},{"name":"is_address_hidden","value":null},{"name":"allow_shared_access","value":null},{"name":"member_id","value":null},{"name":"type","value":"contact"}]},"links":[{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/contacts"}],"queries":[{"rel":"search","href":"http://localhost:3000/contacts/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
366
+ number of items to return for each page. Sending this parameter with the query
367
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
368
+ number of the page to be returned. This requires that paging be turned on
369
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/countries","rel":"countries","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/countries"}],"queries":[{"rel":"search","href":"http://localhost:3000/countries/search","data":[{"name":"id","value":null},{"name":"name","value":null}]}],"items":[{"href":"http://localhost:3000/countries/020","data":[{"name":"id","value":"020"},{"name":"type","value":"country"},{"name":"name","value":"Andorra"},{"name":"iso_alpha2_code","value":"AD"}],"rel":"country-020"},{"href":"http://localhost:3000/countries/784","data":[{"name":"id","value":"784"},{"name":"type","value":"country"},{"name":"name","value":"United
370
+ Arab Emirates"},{"name":"iso_alpha2_code","value":"AE"}],"rel":"country-784"},{"href":"http://localhost:3000/countries/004","data":[{"name":"id","value":"004"},{"name":"type","value":"country"},{"name":"name","value":"Afghanistan"},{"name":"iso_alpha2_code","value":"AF"}],"rel":"country-004"},{"href":"http://localhost:3000/countries/028","data":[{"name":"id","value":"028"},{"name":"type","value":"country"},{"name":"name","value":"Antigua
371
+ and Barbuda"},{"name":"iso_alpha2_code","value":"AG"}],"rel":"country-028"},{"href":"http://localhost:3000/countries/660","data":[{"name":"id","value":"660"},{"name":"type","value":"country"},{"name":"name","value":"Anguilla"},{"name":"iso_alpha2_code","value":"AI"}],"rel":"country-660"},{"href":"http://localhost:3000/countries/008","data":[{"name":"id","value":"008"},{"name":"type","value":"country"},{"name":"name","value":"Albania"},{"name":"iso_alpha2_code","value":"AL"}],"rel":"country-008"},{"href":"http://localhost:3000/countries/051","data":[{"name":"id","value":"051"},{"name":"type","value":"country"},{"name":"name","value":"Armenia"},{"name":"iso_alpha2_code","value":"AM"}],"rel":"country-051"},{"href":"http://localhost:3000/countries/530","data":[{"name":"id","value":"530"},{"name":"type","value":"country"},{"name":"name","value":"Netherlands
372
+ Antilles"},{"name":"iso_alpha2_code","value":"AN"}],"rel":"country-530"},{"href":"http://localhost:3000/countries/024","data":[{"name":"id","value":"024"},{"name":"type","value":"country"},{"name":"name","value":"Angola"},{"name":"iso_alpha2_code","value":"AO"}],"rel":"country-024"},{"href":"http://localhost:3000/countries/010","data":[{"name":"id","value":"010"},{"name":"type","value":"country"},{"name":"name","value":"Antarctica"},{"name":"iso_alpha2_code","value":"AQ"}],"rel":"country-010"},{"href":"http://localhost:3000/countries/032","data":[{"name":"id","value":"032"},{"name":"type","value":"country"},{"name":"name","value":"Argentina"},{"name":"iso_alpha2_code","value":"AR"}],"rel":"country-032"},{"href":"http://localhost:3000/countries/016","data":[{"name":"id","value":"016"},{"name":"type","value":"country"},{"name":"name","value":"American
373
+ Samoa"},{"name":"iso_alpha2_code","value":"AS"}],"rel":"country-016"},{"href":"http://localhost:3000/countries/040","data":[{"name":"id","value":"040"},{"name":"type","value":"country"},{"name":"name","value":"Austria"},{"name":"iso_alpha2_code","value":"AT"}],"rel":"country-040"},{"href":"http://localhost:3000/countries/036","data":[{"name":"id","value":"036"},{"name":"type","value":"country"},{"name":"name","value":"Australia"},{"name":"iso_alpha2_code","value":"AU"}],"rel":"country-036"},{"href":"http://localhost:3000/countries/533","data":[{"name":"id","value":"533"},{"name":"type","value":"country"},{"name":"name","value":"Aruba"},{"name":"iso_alpha2_code","value":"AW"}],"rel":"country-533"},{"href":"http://localhost:3000/countries/248","data":[{"name":"id","value":"248"},{"name":"type","value":"country"},{"name":"name","value":"Åland
374
+ Islands"},{"name":"iso_alpha2_code","value":"AX"}],"rel":"country-248"},{"href":"http://localhost:3000/countries/031","data":[{"name":"id","value":"031"},{"name":"type","value":"country"},{"name":"name","value":"Azerbaijan"},{"name":"iso_alpha2_code","value":"AZ"}],"rel":"country-031"},{"href":"http://localhost:3000/countries/070","data":[{"name":"id","value":"070"},{"name":"type","value":"country"},{"name":"name","value":"Bosnia
375
+ and Herzegovina"},{"name":"iso_alpha2_code","value":"BA"}],"rel":"country-070"},{"href":"http://localhost:3000/countries/052","data":[{"name":"id","value":"052"},{"name":"type","value":"country"},{"name":"name","value":"Barbados"},{"name":"iso_alpha2_code","value":"BB"}],"rel":"country-052"},{"href":"http://localhost:3000/countries/050","data":[{"name":"id","value":"050"},{"name":"type","value":"country"},{"name":"name","value":"Bangladesh"},{"name":"iso_alpha2_code","value":"BD"}],"rel":"country-050"},{"href":"http://localhost:3000/countries/056","data":[{"name":"id","value":"056"},{"name":"type","value":"country"},{"name":"name","value":"Belgium"},{"name":"iso_alpha2_code","value":"BE"}],"rel":"country-056"},{"href":"http://localhost:3000/countries/854","data":[{"name":"id","value":"854"},{"name":"type","value":"country"},{"name":"name","value":"Burkina
376
+ Faso"},{"name":"iso_alpha2_code","value":"BF"}],"rel":"country-854"},{"href":"http://localhost:3000/countries/100","data":[{"name":"id","value":"100"},{"name":"type","value":"country"},{"name":"name","value":"Bulgaria"},{"name":"iso_alpha2_code","value":"BG"}],"rel":"country-100"},{"href":"http://localhost:3000/countries/048","data":[{"name":"id","value":"048"},{"name":"type","value":"country"},{"name":"name","value":"Bahrain"},{"name":"iso_alpha2_code","value":"BH"}],"rel":"country-048"},{"href":"http://localhost:3000/countries/108","data":[{"name":"id","value":"108"},{"name":"type","value":"country"},{"name":"name","value":"Burundi"},{"name":"iso_alpha2_code","value":"BI"}],"rel":"country-108"},{"href":"http://localhost:3000/countries/204","data":[{"name":"id","value":"204"},{"name":"type","value":"country"},{"name":"name","value":"Benin"},{"name":"iso_alpha2_code","value":"BJ"}],"rel":"country-204"},{"href":"http://localhost:3000/countries/652","data":[{"name":"id","value":"652"},{"name":"type","value":"country"},{"name":"name","value":"Saint
377
+ Barthélemy"},{"name":"iso_alpha2_code","value":"BL"}],"rel":"country-652"},{"href":"http://localhost:3000/countries/060","data":[{"name":"id","value":"060"},{"name":"type","value":"country"},{"name":"name","value":"Bermuda"},{"name":"iso_alpha2_code","value":"BM"}],"rel":"country-060"},{"href":"http://localhost:3000/countries/096","data":[{"name":"id","value":"096"},{"name":"type","value":"country"},{"name":"name","value":"Brunei
378
+ Darussalam"},{"name":"iso_alpha2_code","value":"BN"}],"rel":"country-096"},{"href":"http://localhost:3000/countries/068","data":[{"name":"id","value":"068"},{"name":"type","value":"country"},{"name":"name","value":"Bolivia"},{"name":"iso_alpha2_code","value":"BO"}],"rel":"country-068"},{"href":"http://localhost:3000/countries/535","data":[{"name":"id","value":"535"},{"name":"type","value":"country"},{"name":"name","value":"Bonaire,
379
+ Sint Eustatius and Saba"},{"name":"iso_alpha2_code","value":"BQ"}],"rel":"country-535"},{"href":"http://localhost:3000/countries/076","data":[{"name":"id","value":"076"},{"name":"type","value":"country"},{"name":"name","value":"Brazil"},{"name":"iso_alpha2_code","value":"BR"}],"rel":"country-076"},{"href":"http://localhost:3000/countries/044","data":[{"name":"id","value":"044"},{"name":"type","value":"country"},{"name":"name","value":"Bahamas"},{"name":"iso_alpha2_code","value":"BS"}],"rel":"country-044"},{"href":"http://localhost:3000/countries/064","data":[{"name":"id","value":"064"},{"name":"type","value":"country"},{"name":"name","value":"Bhutan"},{"name":"iso_alpha2_code","value":"BT"}],"rel":"country-064"},{"href":"http://localhost:3000/countries/074","data":[{"name":"id","value":"074"},{"name":"type","value":"country"},{"name":"name","value":"Bouvet
380
+ Island"},{"name":"iso_alpha2_code","value":"BV"}],"rel":"country-074"},{"href":"http://localhost:3000/countries/072","data":[{"name":"id","value":"072"},{"name":"type","value":"country"},{"name":"name","value":"Botswana"},{"name":"iso_alpha2_code","value":"BW"}],"rel":"country-072"},{"href":"http://localhost:3000/countries/112","data":[{"name":"id","value":"112"},{"name":"type","value":"country"},{"name":"name","value":"Belarus"},{"name":"iso_alpha2_code","value":"BY"}],"rel":"country-112"},{"href":"http://localhost:3000/countries/084","data":[{"name":"id","value":"084"},{"name":"type","value":"country"},{"name":"name","value":"Belize"},{"name":"iso_alpha2_code","value":"BZ"}],"rel":"country-084"},{"href":"http://localhost:3000/countries/124","data":[{"name":"id","value":"124"},{"name":"type","value":"country"},{"name":"name","value":"Canada"},{"name":"iso_alpha2_code","value":"CA"}],"rel":"country-124"},{"href":"http://localhost:3000/countries/166","data":[{"name":"id","value":"166"},{"name":"type","value":"country"},{"name":"name","value":"Cocos
381
+ (Keeling) Islands"},{"name":"iso_alpha2_code","value":"CC"}],"rel":"country-166"},{"href":"http://localhost:3000/countries/180","data":[{"name":"id","value":"180"},{"name":"type","value":"country"},{"name":"name","value":"Congo,
382
+ The Democratic Republic Of The"},{"name":"iso_alpha2_code","value":"CD"}],"rel":"country-180"},{"href":"http://localhost:3000/countries/140","data":[{"name":"id","value":"140"},{"name":"type","value":"country"},{"name":"name","value":"Central
383
+ African Republic"},{"name":"iso_alpha2_code","value":"CF"}],"rel":"country-140"},{"href":"http://localhost:3000/countries/178","data":[{"name":"id","value":"178"},{"name":"type","value":"country"},{"name":"name","value":"Congo"},{"name":"iso_alpha2_code","value":"CG"}],"rel":"country-178"},{"href":"http://localhost:3000/countries/756","data":[{"name":"id","value":"756"},{"name":"type","value":"country"},{"name":"name","value":"Switzerland"},{"name":"iso_alpha2_code","value":"CH"}],"rel":"country-756"},{"href":"http://localhost:3000/countries/384","data":[{"name":"id","value":"384"},{"name":"type","value":"country"},{"name":"name","value":"Côte
384
+ D''Ivoire"},{"name":"iso_alpha2_code","value":"CI"}],"rel":"country-384"},{"href":"http://localhost:3000/countries/184","data":[{"name":"id","value":"184"},{"name":"type","value":"country"},{"name":"name","value":"Cook
385
+ Islands"},{"name":"iso_alpha2_code","value":"CK"}],"rel":"country-184"},{"href":"http://localhost:3000/countries/152","data":[{"name":"id","value":"152"},{"name":"type","value":"country"},{"name":"name","value":"Chile"},{"name":"iso_alpha2_code","value":"CL"}],"rel":"country-152"},{"href":"http://localhost:3000/countries/120","data":[{"name":"id","value":"120"},{"name":"type","value":"country"},{"name":"name","value":"Cameroon"},{"name":"iso_alpha2_code","value":"CM"}],"rel":"country-120"},{"href":"http://localhost:3000/countries/156","data":[{"name":"id","value":"156"},{"name":"type","value":"country"},{"name":"name","value":"China"},{"name":"iso_alpha2_code","value":"CN"}],"rel":"country-156"},{"href":"http://localhost:3000/countries/170","data":[{"name":"id","value":"170"},{"name":"type","value":"country"},{"name":"name","value":"Colombia"},{"name":"iso_alpha2_code","value":"CO"}],"rel":"country-170"},{"href":"http://localhost:3000/countries/188","data":[{"name":"id","value":"188"},{"name":"type","value":"country"},{"name":"name","value":"Costa
386
+ Rica"},{"name":"iso_alpha2_code","value":"CR"}],"rel":"country-188"},{"href":"http://localhost:3000/countries/192","data":[{"name":"id","value":"192"},{"name":"type","value":"country"},{"name":"name","value":"Cuba"},{"name":"iso_alpha2_code","value":"CU"}],"rel":"country-192"},{"href":"http://localhost:3000/countries/132","data":[{"name":"id","value":"132"},{"name":"type","value":"country"},{"name":"name","value":"Cape
387
+ Verde"},{"name":"iso_alpha2_code","value":"CV"}],"rel":"country-132"},{"href":"http://localhost:3000/countries/531","data":[{"name":"id","value":"531"},{"name":"type","value":"country"},{"name":"name","value":"Curaçao"},{"name":"iso_alpha2_code","value":"CW"}],"rel":"country-531"},{"href":"http://localhost:3000/countries/162","data":[{"name":"id","value":"162"},{"name":"type","value":"country"},{"name":"name","value":"Christmas
388
+ Island"},{"name":"iso_alpha2_code","value":"CX"}],"rel":"country-162"},{"href":"http://localhost:3000/countries/196","data":[{"name":"id","value":"196"},{"name":"type","value":"country"},{"name":"name","value":"Cyprus"},{"name":"iso_alpha2_code","value":"CY"}],"rel":"country-196"},{"href":"http://localhost:3000/countries/203","data":[{"name":"id","value":"203"},{"name":"type","value":"country"},{"name":"name","value":"Czech
389
+ Republic"},{"name":"iso_alpha2_code","value":"CZ"}],"rel":"country-203"},{"href":"http://localhost:3000/countries/276","data":[{"name":"id","value":"276"},{"name":"type","value":"country"},{"name":"name","value":"Germany"},{"name":"iso_alpha2_code","value":"DE"}],"rel":"country-276"},{"href":"http://localhost:3000/countries/262","data":[{"name":"id","value":"262"},{"name":"type","value":"country"},{"name":"name","value":"Djibouti"},{"name":"iso_alpha2_code","value":"DJ"}],"rel":"country-262"},{"href":"http://localhost:3000/countries/208","data":[{"name":"id","value":"208"},{"name":"type","value":"country"},{"name":"name","value":"Denmark"},{"name":"iso_alpha2_code","value":"DK"}],"rel":"country-208"},{"href":"http://localhost:3000/countries/212","data":[{"name":"id","value":"212"},{"name":"type","value":"country"},{"name":"name","value":"Dominica"},{"name":"iso_alpha2_code","value":"DM"}],"rel":"country-212"},{"href":"http://localhost:3000/countries/214","data":[{"name":"id","value":"214"},{"name":"type","value":"country"},{"name":"name","value":"Dominican
390
+ Republic"},{"name":"iso_alpha2_code","value":"DO"}],"rel":"country-214"},{"href":"http://localhost:3000/countries/012","data":[{"name":"id","value":"012"},{"name":"type","value":"country"},{"name":"name","value":"Algeria"},{"name":"iso_alpha2_code","value":"DZ"}],"rel":"country-012"},{"href":"http://localhost:3000/countries/218","data":[{"name":"id","value":"218"},{"name":"type","value":"country"},{"name":"name","value":"Ecuador"},{"name":"iso_alpha2_code","value":"EC"}],"rel":"country-218"},{"href":"http://localhost:3000/countries/233","data":[{"name":"id","value":"233"},{"name":"type","value":"country"},{"name":"name","value":"Estonia"},{"name":"iso_alpha2_code","value":"EE"}],"rel":"country-233"},{"href":"http://localhost:3000/countries/818","data":[{"name":"id","value":"818"},{"name":"type","value":"country"},{"name":"name","value":"Egypt"},{"name":"iso_alpha2_code","value":"EG"}],"rel":"country-818"},{"href":"http://localhost:3000/countries/732","data":[{"name":"id","value":"732"},{"name":"type","value":"country"},{"name":"name","value":"Western
391
+ Sahara"},{"name":"iso_alpha2_code","value":"EH"}],"rel":"country-732"},{"href":"http://localhost:3000/countries/232","data":[{"name":"id","value":"232"},{"name":"type","value":"country"},{"name":"name","value":"Eritrea"},{"name":"iso_alpha2_code","value":"ER"}],"rel":"country-232"},{"href":"http://localhost:3000/countries/724","data":[{"name":"id","value":"724"},{"name":"type","value":"country"},{"name":"name","value":"Spain"},{"name":"iso_alpha2_code","value":"ES"}],"rel":"country-724"},{"href":"http://localhost:3000/countries/231","data":[{"name":"id","value":"231"},{"name":"type","value":"country"},{"name":"name","value":"Ethiopia"},{"name":"iso_alpha2_code","value":"ET"}],"rel":"country-231"},{"href":"http://localhost:3000/countries/246","data":[{"name":"id","value":"246"},{"name":"type","value":"country"},{"name":"name","value":"Finland"},{"name":"iso_alpha2_code","value":"FI"}],"rel":"country-246"},{"href":"http://localhost:3000/countries/242","data":[{"name":"id","value":"242"},{"name":"type","value":"country"},{"name":"name","value":"Fiji"},{"name":"iso_alpha2_code","value":"FJ"}],"rel":"country-242"},{"href":"http://localhost:3000/countries/238","data":[{"name":"id","value":"238"},{"name":"type","value":"country"},{"name":"name","value":"Falkland
392
+ Islands (Malvinas)"},{"name":"iso_alpha2_code","value":"FK"}],"rel":"country-238"},{"href":"http://localhost:3000/countries/583","data":[{"name":"id","value":"583"},{"name":"type","value":"country"},{"name":"name","value":"Micronesia,
393
+ Federated States Of"},{"name":"iso_alpha2_code","value":"FM"}],"rel":"country-583"},{"href":"http://localhost:3000/countries/234","data":[{"name":"id","value":"234"},{"name":"type","value":"country"},{"name":"name","value":"Faroe
394
+ Islands"},{"name":"iso_alpha2_code","value":"FO"}],"rel":"country-234"},{"href":"http://localhost:3000/countries/250","data":[{"name":"id","value":"250"},{"name":"type","value":"country"},{"name":"name","value":"France"},{"name":"iso_alpha2_code","value":"FR"}],"rel":"country-250"},{"href":"http://localhost:3000/countries/266","data":[{"name":"id","value":"266"},{"name":"type","value":"country"},{"name":"name","value":"Gabon"},{"name":"iso_alpha2_code","value":"GA"}],"rel":"country-266"},{"href":"http://localhost:3000/countries/826","data":[{"name":"id","value":"826"},{"name":"type","value":"country"},{"name":"name","value":"United
395
+ Kingdom"},{"name":"iso_alpha2_code","value":"GB"}],"rel":"country-826"},{"href":"http://localhost:3000/countries/308","data":[{"name":"id","value":"308"},{"name":"type","value":"country"},{"name":"name","value":"Grenada"},{"name":"iso_alpha2_code","value":"GD"}],"rel":"country-308"},{"href":"http://localhost:3000/countries/268","data":[{"name":"id","value":"268"},{"name":"type","value":"country"},{"name":"name","value":"Georgia"},{"name":"iso_alpha2_code","value":"GE"}],"rel":"country-268"},{"href":"http://localhost:3000/countries/254","data":[{"name":"id","value":"254"},{"name":"type","value":"country"},{"name":"name","value":"French
396
+ Guiana"},{"name":"iso_alpha2_code","value":"GF"}],"rel":"country-254"},{"href":"http://localhost:3000/countries/831","data":[{"name":"id","value":"831"},{"name":"type","value":"country"},{"name":"name","value":"Guernsey"},{"name":"iso_alpha2_code","value":"GG"}],"rel":"country-831"},{"href":"http://localhost:3000/countries/288","data":[{"name":"id","value":"288"},{"name":"type","value":"country"},{"name":"name","value":"Ghana"},{"name":"iso_alpha2_code","value":"GH"}],"rel":"country-288"},{"href":"http://localhost:3000/countries/292","data":[{"name":"id","value":"292"},{"name":"type","value":"country"},{"name":"name","value":"Gibraltar"},{"name":"iso_alpha2_code","value":"GI"}],"rel":"country-292"},{"href":"http://localhost:3000/countries/304","data":[{"name":"id","value":"304"},{"name":"type","value":"country"},{"name":"name","value":"Greenland"},{"name":"iso_alpha2_code","value":"GL"}],"rel":"country-304"},{"href":"http://localhost:3000/countries/270","data":[{"name":"id","value":"270"},{"name":"type","value":"country"},{"name":"name","value":"Gambia"},{"name":"iso_alpha2_code","value":"GM"}],"rel":"country-270"},{"href":"http://localhost:3000/countries/324","data":[{"name":"id","value":"324"},{"name":"type","value":"country"},{"name":"name","value":"Guinea"},{"name":"iso_alpha2_code","value":"GN"}],"rel":"country-324"},{"href":"http://localhost:3000/countries/312","data":[{"name":"id","value":"312"},{"name":"type","value":"country"},{"name":"name","value":"Guadeloupe"},{"name":"iso_alpha2_code","value":"GP"}],"rel":"country-312"},{"href":"http://localhost:3000/countries/226","data":[{"name":"id","value":"226"},{"name":"type","value":"country"},{"name":"name","value":"Equatorial
397
+ Guinea"},{"name":"iso_alpha2_code","value":"GQ"}],"rel":"country-226"},{"href":"http://localhost:3000/countries/300","data":[{"name":"id","value":"300"},{"name":"type","value":"country"},{"name":"name","value":"Greece"},{"name":"iso_alpha2_code","value":"GR"}],"rel":"country-300"},{"href":"http://localhost:3000/countries/239","data":[{"name":"id","value":"239"},{"name":"type","value":"country"},{"name":"name","value":"South
398
+ Georgia and the South Sandwich Islands"},{"name":"iso_alpha2_code","value":"GS"}],"rel":"country-239"},{"href":"http://localhost:3000/countries/320","data":[{"name":"id","value":"320"},{"name":"type","value":"country"},{"name":"name","value":"Guatemala"},{"name":"iso_alpha2_code","value":"GT"}],"rel":"country-320"},{"href":"http://localhost:3000/countries/316","data":[{"name":"id","value":"316"},{"name":"type","value":"country"},{"name":"name","value":"Guam"},{"name":"iso_alpha2_code","value":"GU"}],"rel":"country-316"},{"href":"http://localhost:3000/countries/624","data":[{"name":"id","value":"624"},{"name":"type","value":"country"},{"name":"name","value":"Guinea-Bissau"},{"name":"iso_alpha2_code","value":"GW"}],"rel":"country-624"},{"href":"http://localhost:3000/countries/328","data":[{"name":"id","value":"328"},{"name":"type","value":"country"},{"name":"name","value":"Guyana"},{"name":"iso_alpha2_code","value":"GY"}],"rel":"country-328"},{"href":"http://localhost:3000/countries/344","data":[{"name":"id","value":"344"},{"name":"type","value":"country"},{"name":"name","value":"Hong
399
+ Kong"},{"name":"iso_alpha2_code","value":"HK"}],"rel":"country-344"},{"href":"http://localhost:3000/countries/334","data":[{"name":"id","value":"334"},{"name":"type","value":"country"},{"name":"name","value":"Heard
400
+ and McDonald Islands"},{"name":"iso_alpha2_code","value":"HM"}],"rel":"country-334"},{"href":"http://localhost:3000/countries/340","data":[{"name":"id","value":"340"},{"name":"type","value":"country"},{"name":"name","value":"Honduras"},{"name":"iso_alpha2_code","value":"HN"}],"rel":"country-340"},{"href":"http://localhost:3000/countries/191","data":[{"name":"id","value":"191"},{"name":"type","value":"country"},{"name":"name","value":"Croatia"},{"name":"iso_alpha2_code","value":"HR"}],"rel":"country-191"},{"href":"http://localhost:3000/countries/332","data":[{"name":"id","value":"332"},{"name":"type","value":"country"},{"name":"name","value":"Haiti"},{"name":"iso_alpha2_code","value":"HT"}],"rel":"country-332"},{"href":"http://localhost:3000/countries/348","data":[{"name":"id","value":"348"},{"name":"type","value":"country"},{"name":"name","value":"Hungary"},{"name":"iso_alpha2_code","value":"HU"}],"rel":"country-348"},{"href":"http://localhost:3000/countries/360","data":[{"name":"id","value":"360"},{"name":"type","value":"country"},{"name":"name","value":"Indonesia"},{"name":"iso_alpha2_code","value":"ID"}],"rel":"country-360"},{"href":"http://localhost:3000/countries/372","data":[{"name":"id","value":"372"},{"name":"type","value":"country"},{"name":"name","value":"Ireland"},{"name":"iso_alpha2_code","value":"IE"}],"rel":"country-372"},{"href":"http://localhost:3000/countries/376","data":[{"name":"id","value":"376"},{"name":"type","value":"country"},{"name":"name","value":"Israel"},{"name":"iso_alpha2_code","value":"IL"}],"rel":"country-376"},{"href":"http://localhost:3000/countries/833","data":[{"name":"id","value":"833"},{"name":"type","value":"country"},{"name":"name","value":"Isle
401
+ of Man"},{"name":"iso_alpha2_code","value":"IM"}],"rel":"country-833"},{"href":"http://localhost:3000/countries/356","data":[{"name":"id","value":"356"},{"name":"type","value":"country"},{"name":"name","value":"India"},{"name":"iso_alpha2_code","value":"IN"}],"rel":"country-356"},{"href":"http://localhost:3000/countries/086","data":[{"name":"id","value":"086"},{"name":"type","value":"country"},{"name":"name","value":"British
402
+ Indian Ocean Territory"},{"name":"iso_alpha2_code","value":"IO"}],"rel":"country-086"},{"href":"http://localhost:3000/countries/368","data":[{"name":"id","value":"368"},{"name":"type","value":"country"},{"name":"name","value":"Iraq"},{"name":"iso_alpha2_code","value":"IQ"}],"rel":"country-368"},{"href":"http://localhost:3000/countries/364","data":[{"name":"id","value":"364"},{"name":"type","value":"country"},{"name":"name","value":"Iran,
403
+ Islamic Republic Of"},{"name":"iso_alpha2_code","value":"IR"}],"rel":"country-364"},{"href":"http://localhost:3000/countries/352","data":[{"name":"id","value":"352"},{"name":"type","value":"country"},{"name":"name","value":"Iceland"},{"name":"iso_alpha2_code","value":"IS"}],"rel":"country-352"},{"href":"http://localhost:3000/countries/380","data":[{"name":"id","value":"380"},{"name":"type","value":"country"},{"name":"name","value":"Italy"},{"name":"iso_alpha2_code","value":"IT"}],"rel":"country-380"},{"href":"http://localhost:3000/countries/832","data":[{"name":"id","value":"832"},{"name":"type","value":"country"},{"name":"name","value":"Jersey"},{"name":"iso_alpha2_code","value":"JE"}],"rel":"country-832"},{"href":"http://localhost:3000/countries/388","data":[{"name":"id","value":"388"},{"name":"type","value":"country"},{"name":"name","value":"Jamaica"},{"name":"iso_alpha2_code","value":"JM"}],"rel":"country-388"},{"href":"http://localhost:3000/countries/400","data":[{"name":"id","value":"400"},{"name":"type","value":"country"},{"name":"name","value":"Jordan"},{"name":"iso_alpha2_code","value":"JO"}],"rel":"country-400"},{"href":"http://localhost:3000/countries/392","data":[{"name":"id","value":"392"},{"name":"type","value":"country"},{"name":"name","value":"Japan"},{"name":"iso_alpha2_code","value":"JP"}],"rel":"country-392"},{"href":"http://localhost:3000/countries/404","data":[{"name":"id","value":"404"},{"name":"type","value":"country"},{"name":"name","value":"Kenya"},{"name":"iso_alpha2_code","value":"KE"}],"rel":"country-404"},{"href":"http://localhost:3000/countries/417","data":[{"name":"id","value":"417"},{"name":"type","value":"country"},{"name":"name","value":"Kyrgyzstan"},{"name":"iso_alpha2_code","value":"KG"}],"rel":"country-417"},{"href":"http://localhost:3000/countries/116","data":[{"name":"id","value":"116"},{"name":"type","value":"country"},{"name":"name","value":"Cambodia"},{"name":"iso_alpha2_code","value":"KH"}],"rel":"country-116"},{"href":"http://localhost:3000/countries/296","data":[{"name":"id","value":"296"},{"name":"type","value":"country"},{"name":"name","value":"Kiribati"},{"name":"iso_alpha2_code","value":"KI"}],"rel":"country-296"},{"href":"http://localhost:3000/countries/174","data":[{"name":"id","value":"174"},{"name":"type","value":"country"},{"name":"name","value":"Comoros"},{"name":"iso_alpha2_code","value":"KM"}],"rel":"country-174"},{"href":"http://localhost:3000/countries/659","data":[{"name":"id","value":"659"},{"name":"type","value":"country"},{"name":"name","value":"Saint
404
+ Kitts And Nevis"},{"name":"iso_alpha2_code","value":"KN"}],"rel":"country-659"},{"href":"http://localhost:3000/countries/408","data":[{"name":"id","value":"408"},{"name":"type","value":"country"},{"name":"name","value":"Korea,
405
+ Democratic People''s Republic Of"},{"name":"iso_alpha2_code","value":"KP"}],"rel":"country-408"},{"href":"http://localhost:3000/countries/410","data":[{"name":"id","value":"410"},{"name":"type","value":"country"},{"name":"name","value":"Korea,
406
+ Republic of"},{"name":"iso_alpha2_code","value":"KR"}],"rel":"country-410"},{"href":"http://localhost:3000/countries/414","data":[{"name":"id","value":"414"},{"name":"type","value":"country"},{"name":"name","value":"Kuwait"},{"name":"iso_alpha2_code","value":"KW"}],"rel":"country-414"},{"href":"http://localhost:3000/countries/136","data":[{"name":"id","value":"136"},{"name":"type","value":"country"},{"name":"name","value":"Cayman
407
+ Islands"},{"name":"iso_alpha2_code","value":"KY"}],"rel":"country-136"},{"href":"http://localhost:3000/countries/398","data":[{"name":"id","value":"398"},{"name":"type","value":"country"},{"name":"name","value":"Kazakhstan"},{"name":"iso_alpha2_code","value":"KZ"}],"rel":"country-398"},{"href":"http://localhost:3000/countries/418","data":[{"name":"id","value":"418"},{"name":"type","value":"country"},{"name":"name","value":"Lao
408
+ People''s Democratic Republic"},{"name":"iso_alpha2_code","value":"LA"}],"rel":"country-418"},{"href":"http://localhost:3000/countries/422","data":[{"name":"id","value":"422"},{"name":"type","value":"country"},{"name":"name","value":"Lebanon"},{"name":"iso_alpha2_code","value":"LB"}],"rel":"country-422"},{"href":"http://localhost:3000/countries/662","data":[{"name":"id","value":"662"},{"name":"type","value":"country"},{"name":"name","value":"Saint
409
+ Lucia"},{"name":"iso_alpha2_code","value":"LC"}],"rel":"country-662"},{"href":"http://localhost:3000/countries/438","data":[{"name":"id","value":"438"},{"name":"type","value":"country"},{"name":"name","value":"Liechtenstein"},{"name":"iso_alpha2_code","value":"LI"}],"rel":"country-438"},{"href":"http://localhost:3000/countries/144","data":[{"name":"id","value":"144"},{"name":"type","value":"country"},{"name":"name","value":"Sri
410
+ Lanka"},{"name":"iso_alpha2_code","value":"LK"}],"rel":"country-144"},{"href":"http://localhost:3000/countries/430","data":[{"name":"id","value":"430"},{"name":"type","value":"country"},{"name":"name","value":"Liberia"},{"name":"iso_alpha2_code","value":"LR"}],"rel":"country-430"},{"href":"http://localhost:3000/countries/426","data":[{"name":"id","value":"426"},{"name":"type","value":"country"},{"name":"name","value":"Lesotho"},{"name":"iso_alpha2_code","value":"LS"}],"rel":"country-426"},{"href":"http://localhost:3000/countries/440","data":[{"name":"id","value":"440"},{"name":"type","value":"country"},{"name":"name","value":"Lithuania"},{"name":"iso_alpha2_code","value":"LT"}],"rel":"country-440"},{"href":"http://localhost:3000/countries/442","data":[{"name":"id","value":"442"},{"name":"type","value":"country"},{"name":"name","value":"Luxembourg"},{"name":"iso_alpha2_code","value":"LU"}],"rel":"country-442"},{"href":"http://localhost:3000/countries/428","data":[{"name":"id","value":"428"},{"name":"type","value":"country"},{"name":"name","value":"Latvia"},{"name":"iso_alpha2_code","value":"LV"}],"rel":"country-428"},{"href":"http://localhost:3000/countries/434","data":[{"name":"id","value":"434"},{"name":"type","value":"country"},{"name":"name","value":"Libya"},{"name":"iso_alpha2_code","value":"LY"}],"rel":"country-434"},{"href":"http://localhost:3000/countries/504","data":[{"name":"id","value":"504"},{"name":"type","value":"country"},{"name":"name","value":"Morocco"},{"name":"iso_alpha2_code","value":"MA"}],"rel":"country-504"},{"href":"http://localhost:3000/countries/492","data":[{"name":"id","value":"492"},{"name":"type","value":"country"},{"name":"name","value":"Monaco"},{"name":"iso_alpha2_code","value":"MC"}],"rel":"country-492"},{"href":"http://localhost:3000/countries/498","data":[{"name":"id","value":"498"},{"name":"type","value":"country"},{"name":"name","value":"Moldova,
411
+ Republic of"},{"name":"iso_alpha2_code","value":"MD"}],"rel":"country-498"},{"href":"http://localhost:3000/countries/499","data":[{"name":"id","value":"499"},{"name":"type","value":"country"},{"name":"name","value":"Montenegro"},{"name":"iso_alpha2_code","value":"ME"}],"rel":"country-499"},{"href":"http://localhost:3000/countries/663","data":[{"name":"id","value":"663"},{"name":"type","value":"country"},{"name":"name","value":"Saint
412
+ Martin"},{"name":"iso_alpha2_code","value":"MF"}],"rel":"country-663"},{"href":"http://localhost:3000/countries/450","data":[{"name":"id","value":"450"},{"name":"type","value":"country"},{"name":"name","value":"Madagascar"},{"name":"iso_alpha2_code","value":"MG"}],"rel":"country-450"},{"href":"http://localhost:3000/countries/584","data":[{"name":"id","value":"584"},{"name":"type","value":"country"},{"name":"name","value":"Marshall
413
+ Islands"},{"name":"iso_alpha2_code","value":"MH"}],"rel":"country-584"},{"href":"http://localhost:3000/countries/807","data":[{"name":"id","value":"807"},{"name":"type","value":"country"},{"name":"name","value":"Macedonia,
414
+ the Former Yugoslav Republic Of"},{"name":"iso_alpha2_code","value":"MK"}],"rel":"country-807"},{"href":"http://localhost:3000/countries/466","data":[{"name":"id","value":"466"},{"name":"type","value":"country"},{"name":"name","value":"Mali"},{"name":"iso_alpha2_code","value":"ML"}],"rel":"country-466"},{"href":"http://localhost:3000/countries/104","data":[{"name":"id","value":"104"},{"name":"type","value":"country"},{"name":"name","value":"Myanmar"},{"name":"iso_alpha2_code","value":"MM"}],"rel":"country-104"},{"href":"http://localhost:3000/countries/496","data":[{"name":"id","value":"496"},{"name":"type","value":"country"},{"name":"name","value":"Mongolia"},{"name":"iso_alpha2_code","value":"MN"}],"rel":"country-496"},{"href":"http://localhost:3000/countries/446","data":[{"name":"id","value":"446"},{"name":"type","value":"country"},{"name":"name","value":"Macao"},{"name":"iso_alpha2_code","value":"MO"}],"rel":"country-446"},{"href":"http://localhost:3000/countries/580","data":[{"name":"id","value":"580"},{"name":"type","value":"country"},{"name":"name","value":"Northern
415
+ Mariana Islands"},{"name":"iso_alpha2_code","value":"MP"}],"rel":"country-580"},{"href":"http://localhost:3000/countries/474","data":[{"name":"id","value":"474"},{"name":"type","value":"country"},{"name":"name","value":"Martinique"},{"name":"iso_alpha2_code","value":"MQ"}],"rel":"country-474"},{"href":"http://localhost:3000/countries/478","data":[{"name":"id","value":"478"},{"name":"type","value":"country"},{"name":"name","value":"Mauritania"},{"name":"iso_alpha2_code","value":"MR"}],"rel":"country-478"},{"href":"http://localhost:3000/countries/500","data":[{"name":"id","value":"500"},{"name":"type","value":"country"},{"name":"name","value":"Montserrat"},{"name":"iso_alpha2_code","value":"MS"}],"rel":"country-500"},{"href":"http://localhost:3000/countries/470","data":[{"name":"id","value":"470"},{"name":"type","value":"country"},{"name":"name","value":"Malta"},{"name":"iso_alpha2_code","value":"MT"}],"rel":"country-470"},{"href":"http://localhost:3000/countries/480","data":[{"name":"id","value":"480"},{"name":"type","value":"country"},{"name":"name","value":"Mauritius"},{"name":"iso_alpha2_code","value":"MU"}],"rel":"country-480"},{"href":"http://localhost:3000/countries/462","data":[{"name":"id","value":"462"},{"name":"type","value":"country"},{"name":"name","value":"Maldives"},{"name":"iso_alpha2_code","value":"MV"}],"rel":"country-462"},{"href":"http://localhost:3000/countries/454","data":[{"name":"id","value":"454"},{"name":"type","value":"country"},{"name":"name","value":"Malawi"},{"name":"iso_alpha2_code","value":"MW"}],"rel":"country-454"},{"href":"http://localhost:3000/countries/484","data":[{"name":"id","value":"484"},{"name":"type","value":"country"},{"name":"name","value":"Mexico"},{"name":"iso_alpha2_code","value":"MX"}],"rel":"country-484"},{"href":"http://localhost:3000/countries/458","data":[{"name":"id","value":"458"},{"name":"type","value":"country"},{"name":"name","value":"Malaysia"},{"name":"iso_alpha2_code","value":"MY"}],"rel":"country-458"},{"href":"http://localhost:3000/countries/508","data":[{"name":"id","value":"508"},{"name":"type","value":"country"},{"name":"name","value":"Mozambique"},{"name":"iso_alpha2_code","value":"MZ"}],"rel":"country-508"},{"href":"http://localhost:3000/countries/516","data":[{"name":"id","value":"516"},{"name":"type","value":"country"},{"name":"name","value":"Namibia"},{"name":"iso_alpha2_code","value":"NA"}],"rel":"country-516"},{"href":"http://localhost:3000/countries/540","data":[{"name":"id","value":"540"},{"name":"type","value":"country"},{"name":"name","value":"New
416
+ Caledonia"},{"name":"iso_alpha2_code","value":"NC"}],"rel":"country-540"},{"href":"http://localhost:3000/countries/562","data":[{"name":"id","value":"562"},{"name":"type","value":"country"},{"name":"name","value":"Niger"},{"name":"iso_alpha2_code","value":"NE"}],"rel":"country-562"},{"href":"http://localhost:3000/countries/574","data":[{"name":"id","value":"574"},{"name":"type","value":"country"},{"name":"name","value":"Norfolk
417
+ Island"},{"name":"iso_alpha2_code","value":"NF"}],"rel":"country-574"},{"href":"http://localhost:3000/countries/566","data":[{"name":"id","value":"566"},{"name":"type","value":"country"},{"name":"name","value":"Nigeria"},{"name":"iso_alpha2_code","value":"NG"}],"rel":"country-566"},{"href":"http://localhost:3000/countries/558","data":[{"name":"id","value":"558"},{"name":"type","value":"country"},{"name":"name","value":"Nicaragua"},{"name":"iso_alpha2_code","value":"NI"}],"rel":"country-558"},{"href":"http://localhost:3000/countries/528","data":[{"name":"id","value":"528"},{"name":"type","value":"country"},{"name":"name","value":"Netherlands"},{"name":"iso_alpha2_code","value":"NL"}],"rel":"country-528"},{"href":"http://localhost:3000/countries/578","data":[{"name":"id","value":"578"},{"name":"type","value":"country"},{"name":"name","value":"Norway"},{"name":"iso_alpha2_code","value":"NO"}],"rel":"country-578"},{"href":"http://localhost:3000/countries/524","data":[{"name":"id","value":"524"},{"name":"type","value":"country"},{"name":"name","value":"Nepal"},{"name":"iso_alpha2_code","value":"NP"}],"rel":"country-524"},{"href":"http://localhost:3000/countries/520","data":[{"name":"id","value":"520"},{"name":"type","value":"country"},{"name":"name","value":"Nauru"},{"name":"iso_alpha2_code","value":"NR"}],"rel":"country-520"},{"href":"http://localhost:3000/countries/570","data":[{"name":"id","value":"570"},{"name":"type","value":"country"},{"name":"name","value":"Niue"},{"name":"iso_alpha2_code","value":"NU"}],"rel":"country-570"},{"href":"http://localhost:3000/countries/554","data":[{"name":"id","value":"554"},{"name":"type","value":"country"},{"name":"name","value":"New
418
+ Zealand"},{"name":"iso_alpha2_code","value":"NZ"}],"rel":"country-554"},{"href":"http://localhost:3000/countries/512","data":[{"name":"id","value":"512"},{"name":"type","value":"country"},{"name":"name","value":"Oman"},{"name":"iso_alpha2_code","value":"OM"}],"rel":"country-512"},{"href":"http://localhost:3000/countries/591","data":[{"name":"id","value":"591"},{"name":"type","value":"country"},{"name":"name","value":"Panama"},{"name":"iso_alpha2_code","value":"PA"}],"rel":"country-591"},{"href":"http://localhost:3000/countries/604","data":[{"name":"id","value":"604"},{"name":"type","value":"country"},{"name":"name","value":"Peru"},{"name":"iso_alpha2_code","value":"PE"}],"rel":"country-604"},{"href":"http://localhost:3000/countries/258","data":[{"name":"id","value":"258"},{"name":"type","value":"country"},{"name":"name","value":"French
419
+ Polynesia"},{"name":"iso_alpha2_code","value":"PF"}],"rel":"country-258"},{"href":"http://localhost:3000/countries/598","data":[{"name":"id","value":"598"},{"name":"type","value":"country"},{"name":"name","value":"Papua
420
+ New Guinea"},{"name":"iso_alpha2_code","value":"PG"}],"rel":"country-598"},{"href":"http://localhost:3000/countries/608","data":[{"name":"id","value":"608"},{"name":"type","value":"country"},{"name":"name","value":"Philippines"},{"name":"iso_alpha2_code","value":"PH"}],"rel":"country-608"},{"href":"http://localhost:3000/countries/586","data":[{"name":"id","value":"586"},{"name":"type","value":"country"},{"name":"name","value":"Pakistan"},{"name":"iso_alpha2_code","value":"PK"}],"rel":"country-586"},{"href":"http://localhost:3000/countries/616","data":[{"name":"id","value":"616"},{"name":"type","value":"country"},{"name":"name","value":"Poland"},{"name":"iso_alpha2_code","value":"PL"}],"rel":"country-616"},{"href":"http://localhost:3000/countries/666","data":[{"name":"id","value":"666"},{"name":"type","value":"country"},{"name":"name","value":"Saint
421
+ Pierre And Miquelon"},{"name":"iso_alpha2_code","value":"PM"}],"rel":"country-666"},{"href":"http://localhost:3000/countries/612","data":[{"name":"id","value":"612"},{"name":"type","value":"country"},{"name":"name","value":"Pitcairn"},{"name":"iso_alpha2_code","value":"PN"}],"rel":"country-612"},{"href":"http://localhost:3000/countries/630","data":[{"name":"id","value":"630"},{"name":"type","value":"country"},{"name":"name","value":"Puerto
422
+ Rico"},{"name":"iso_alpha2_code","value":"PR"}],"rel":"country-630"},{"href":"http://localhost:3000/countries/275","data":[{"name":"id","value":"275"},{"name":"type","value":"country"},{"name":"name","value":"Palestine,
423
+ State of"},{"name":"iso_alpha2_code","value":"PS"}],"rel":"country-275"},{"href":"http://localhost:3000/countries/620","data":[{"name":"id","value":"620"},{"name":"type","value":"country"},{"name":"name","value":"Portugal"},{"name":"iso_alpha2_code","value":"PT"}],"rel":"country-620"},{"href":"http://localhost:3000/countries/585","data":[{"name":"id","value":"585"},{"name":"type","value":"country"},{"name":"name","value":"Palau"},{"name":"iso_alpha2_code","value":"PW"}],"rel":"country-585"},{"href":"http://localhost:3000/countries/600","data":[{"name":"id","value":"600"},{"name":"type","value":"country"},{"name":"name","value":"Paraguay"},{"name":"iso_alpha2_code","value":"PY"}],"rel":"country-600"},{"href":"http://localhost:3000/countries/634","data":[{"name":"id","value":"634"},{"name":"type","value":"country"},{"name":"name","value":"Qatar"},{"name":"iso_alpha2_code","value":"QA"}],"rel":"country-634"},{"href":"http://localhost:3000/countries/638","data":[{"name":"id","value":"638"},{"name":"type","value":"country"},{"name":"name","value":"Réunion"},{"name":"iso_alpha2_code","value":"RE"}],"rel":"country-638"},{"href":"http://localhost:3000/countries/642","data":[{"name":"id","value":"642"},{"name":"type","value":"country"},{"name":"name","value":"Romania"},{"name":"iso_alpha2_code","value":"RO"}],"rel":"country-642"},{"href":"http://localhost:3000/countries/688","data":[{"name":"id","value":"688"},{"name":"type","value":"country"},{"name":"name","value":"Serbia"},{"name":"iso_alpha2_code","value":"RS"}],"rel":"country-688"},{"href":"http://localhost:3000/countries/643","data":[{"name":"id","value":"643"},{"name":"type","value":"country"},{"name":"name","value":"Russian
424
+ Federation"},{"name":"iso_alpha2_code","value":"RU"}],"rel":"country-643"},{"href":"http://localhost:3000/countries/646","data":[{"name":"id","value":"646"},{"name":"type","value":"country"},{"name":"name","value":"Rwanda"},{"name":"iso_alpha2_code","value":"RW"}],"rel":"country-646"},{"href":"http://localhost:3000/countries/682","data":[{"name":"id","value":"682"},{"name":"type","value":"country"},{"name":"name","value":"Saudi
425
+ Arabia"},{"name":"iso_alpha2_code","value":"SA"}],"rel":"country-682"},{"href":"http://localhost:3000/countries/090","data":[{"name":"id","value":"090"},{"name":"type","value":"country"},{"name":"name","value":"Solomon
426
+ Islands"},{"name":"iso_alpha2_code","value":"SB"}],"rel":"country-090"},{"href":"http://localhost:3000/countries/690","data":[{"name":"id","value":"690"},{"name":"type","value":"country"},{"name":"name","value":"Seychelles"},{"name":"iso_alpha2_code","value":"SC"}],"rel":"country-690"},{"href":"http://localhost:3000/countries/729","data":[{"name":"id","value":"729"},{"name":"type","value":"country"},{"name":"name","value":"Sudan"},{"name":"iso_alpha2_code","value":"SD"}],"rel":"country-729"},{"href":"http://localhost:3000/countries/752","data":[{"name":"id","value":"752"},{"name":"type","value":"country"},{"name":"name","value":"Sweden"},{"name":"iso_alpha2_code","value":"SE"}],"rel":"country-752"},{"href":"http://localhost:3000/countries/702","data":[{"name":"id","value":"702"},{"name":"type","value":"country"},{"name":"name","value":"Singapore"},{"name":"iso_alpha2_code","value":"SG"}],"rel":"country-702"},{"href":"http://localhost:3000/countries/654","data":[{"name":"id","value":"654"},{"name":"type","value":"country"},{"name":"name","value":"Saint
427
+ Helena"},{"name":"iso_alpha2_code","value":"SH"}],"rel":"country-654"},{"href":"http://localhost:3000/countries/705","data":[{"name":"id","value":"705"},{"name":"type","value":"country"},{"name":"name","value":"Slovenia"},{"name":"iso_alpha2_code","value":"SI"}],"rel":"country-705"},{"href":"http://localhost:3000/countries/744","data":[{"name":"id","value":"744"},{"name":"type","value":"country"},{"name":"name","value":"Svalbard
428
+ And Jan Mayen"},{"name":"iso_alpha2_code","value":"SJ"}],"rel":"country-744"},{"href":"http://localhost:3000/countries/703","data":[{"name":"id","value":"703"},{"name":"type","value":"country"},{"name":"name","value":"Slovakia"},{"name":"iso_alpha2_code","value":"SK"}],"rel":"country-703"},{"href":"http://localhost:3000/countries/694","data":[{"name":"id","value":"694"},{"name":"type","value":"country"},{"name":"name","value":"Sierra
429
+ Leone"},{"name":"iso_alpha2_code","value":"SL"}],"rel":"country-694"},{"href":"http://localhost:3000/countries/674","data":[{"name":"id","value":"674"},{"name":"type","value":"country"},{"name":"name","value":"San
430
+ Marino"},{"name":"iso_alpha2_code","value":"SM"}],"rel":"country-674"},{"href":"http://localhost:3000/countries/686","data":[{"name":"id","value":"686"},{"name":"type","value":"country"},{"name":"name","value":"Senegal"},{"name":"iso_alpha2_code","value":"SN"}],"rel":"country-686"},{"href":"http://localhost:3000/countries/706","data":[{"name":"id","value":"706"},{"name":"type","value":"country"},{"name":"name","value":"Somalia"},{"name":"iso_alpha2_code","value":"SO"}],"rel":"country-706"},{"href":"http://localhost:3000/countries/740","data":[{"name":"id","value":"740"},{"name":"type","value":"country"},{"name":"name","value":"Suriname"},{"name":"iso_alpha2_code","value":"SR"}],"rel":"country-740"},{"href":"http://localhost:3000/countries/728","data":[{"name":"id","value":"728"},{"name":"type","value":"country"},{"name":"name","value":"South
431
+ Sudan"},{"name":"iso_alpha2_code","value":"SS"}],"rel":"country-728"},{"href":"http://localhost:3000/countries/678","data":[{"name":"id","value":"678"},{"name":"type","value":"country"},{"name":"name","value":"Sao
432
+ Tome and Principe"},{"name":"iso_alpha2_code","value":"ST"}],"rel":"country-678"},{"href":"http://localhost:3000/countries/222","data":[{"name":"id","value":"222"},{"name":"type","value":"country"},{"name":"name","value":"El
433
+ Salvador"},{"name":"iso_alpha2_code","value":"SV"}],"rel":"country-222"},{"href":"http://localhost:3000/countries/534","data":[{"name":"id","value":"534"},{"name":"type","value":"country"},{"name":"name","value":"Sint
434
+ Maarten"},{"name":"iso_alpha2_code","value":"SX"}],"rel":"country-534"},{"href":"http://localhost:3000/countries/760","data":[{"name":"id","value":"760"},{"name":"type","value":"country"},{"name":"name","value":"Syrian
435
+ Arab Republic"},{"name":"iso_alpha2_code","value":"SY"}],"rel":"country-760"},{"href":"http://localhost:3000/countries/748","data":[{"name":"id","value":"748"},{"name":"type","value":"country"},{"name":"name","value":"Swaziland"},{"name":"iso_alpha2_code","value":"SZ"}],"rel":"country-748"},{"href":"http://localhost:3000/countries/796","data":[{"name":"id","value":"796"},{"name":"type","value":"country"},{"name":"name","value":"Turks
436
+ and Caicos Islands"},{"name":"iso_alpha2_code","value":"TC"}],"rel":"country-796"},{"href":"http://localhost:3000/countries/148","data":[{"name":"id","value":"148"},{"name":"type","value":"country"},{"name":"name","value":"Chad"},{"name":"iso_alpha2_code","value":"TD"}],"rel":"country-148"},{"href":"http://localhost:3000/countries/260","data":[{"name":"id","value":"260"},{"name":"type","value":"country"},{"name":"name","value":"French
437
+ Southern Territories"},{"name":"iso_alpha2_code","value":"TF"}],"rel":"country-260"},{"href":"http://localhost:3000/countries/768","data":[{"name":"id","value":"768"},{"name":"type","value":"country"},{"name":"name","value":"Togo"},{"name":"iso_alpha2_code","value":"TG"}],"rel":"country-768"},{"href":"http://localhost:3000/countries/764","data":[{"name":"id","value":"764"},{"name":"type","value":"country"},{"name":"name","value":"Thailand"},{"name":"iso_alpha2_code","value":"TH"}],"rel":"country-764"},{"href":"http://localhost:3000/countries/762","data":[{"name":"id","value":"762"},{"name":"type","value":"country"},{"name":"name","value":"Tajikistan"},{"name":"iso_alpha2_code","value":"TJ"}],"rel":"country-762"},{"href":"http://localhost:3000/countries/772","data":[{"name":"id","value":"772"},{"name":"type","value":"country"},{"name":"name","value":"Tokelau"},{"name":"iso_alpha2_code","value":"TK"}],"rel":"country-772"},{"href":"http://localhost:3000/countries/626","data":[{"name":"id","value":"626"},{"name":"type","value":"country"},{"name":"name","value":"Timor-Leste"},{"name":"iso_alpha2_code","value":"TL"}],"rel":"country-626"},{"href":"http://localhost:3000/countries/795","data":[{"name":"id","value":"795"},{"name":"type","value":"country"},{"name":"name","value":"Turkmenistan"},{"name":"iso_alpha2_code","value":"TM"}],"rel":"country-795"},{"href":"http://localhost:3000/countries/788","data":[{"name":"id","value":"788"},{"name":"type","value":"country"},{"name":"name","value":"Tunisia"},{"name":"iso_alpha2_code","value":"TN"}],"rel":"country-788"},{"href":"http://localhost:3000/countries/776","data":[{"name":"id","value":"776"},{"name":"type","value":"country"},{"name":"name","value":"Tonga"},{"name":"iso_alpha2_code","value":"TO"}],"rel":"country-776"},{"href":"http://localhost:3000/countries/792","data":[{"name":"id","value":"792"},{"name":"type","value":"country"},{"name":"name","value":"Turkey"},{"name":"iso_alpha2_code","value":"TR"}],"rel":"country-792"},{"href":"http://localhost:3000/countries/780","data":[{"name":"id","value":"780"},{"name":"type","value":"country"},{"name":"name","value":"Trinidad
438
+ and Tobago"},{"name":"iso_alpha2_code","value":"TT"}],"rel":"country-780"},{"href":"http://localhost:3000/countries/798","data":[{"name":"id","value":"798"},{"name":"type","value":"country"},{"name":"name","value":"Tuvalu"},{"name":"iso_alpha2_code","value":"TV"}],"rel":"country-798"},{"href":"http://localhost:3000/countries/158","data":[{"name":"id","value":"158"},{"name":"type","value":"country"},{"name":"name","value":"Taiwan,
439
+ Republic Of China"},{"name":"iso_alpha2_code","value":"TW"}],"rel":"country-158"},{"href":"http://localhost:3000/countries/834","data":[{"name":"id","value":"834"},{"name":"type","value":"country"},{"name":"name","value":"Tanzania,
440
+ United Republic of"},{"name":"iso_alpha2_code","value":"TZ"}],"rel":"country-834"},{"href":"http://localhost:3000/countries/804","data":[{"name":"id","value":"804"},{"name":"type","value":"country"},{"name":"name","value":"Ukraine"},{"name":"iso_alpha2_code","value":"UA"}],"rel":"country-804"},{"href":"http://localhost:3000/countries/800","data":[{"name":"id","value":"800"},{"name":"type","value":"country"},{"name":"name","value":"Uganda"},{"name":"iso_alpha2_code","value":"UG"}],"rel":"country-800"},{"href":"http://localhost:3000/countries/581","data":[{"name":"id","value":"581"},{"name":"type","value":"country"},{"name":"name","value":"United
441
+ States Minor Outlying Islands"},{"name":"iso_alpha2_code","value":"UM"}],"rel":"country-581"},{"href":"http://localhost:3000/countries/840","data":[{"name":"id","value":"840"},{"name":"type","value":"country"},{"name":"name","value":"United
442
+ States"},{"name":"iso_alpha2_code","value":"US"}],"rel":"country-840"},{"href":"http://localhost:3000/countries/858","data":[{"name":"id","value":"858"},{"name":"type","value":"country"},{"name":"name","value":"Uruguay"},{"name":"iso_alpha2_code","value":"UY"}],"rel":"country-858"},{"href":"http://localhost:3000/countries/860","data":[{"name":"id","value":"860"},{"name":"type","value":"country"},{"name":"name","value":"Uzbekistan"},{"name":"iso_alpha2_code","value":"UZ"}],"rel":"country-860"},{"href":"http://localhost:3000/countries/336","data":[{"name":"id","value":"336"},{"name":"type","value":"country"},{"name":"name","value":"Holy
443
+ See (Vatican City State)"},{"name":"iso_alpha2_code","value":"VA"}],"rel":"country-336"},{"href":"http://localhost:3000/countries/670","data":[{"name":"id","value":"670"},{"name":"type","value":"country"},{"name":"name","value":"Saint
444
+ Vincent And The Grenedines"},{"name":"iso_alpha2_code","value":"VC"}],"rel":"country-670"},{"href":"http://localhost:3000/countries/862","data":[{"name":"id","value":"862"},{"name":"type","value":"country"},{"name":"name","value":"Venezuela,
445
+ Bolivarian Republic of"},{"name":"iso_alpha2_code","value":"VE"}],"rel":"country-862"},{"href":"http://localhost:3000/countries/092","data":[{"name":"id","value":"092"},{"name":"type","value":"country"},{"name":"name","value":"Virgin
446
+ Islands, British"},{"name":"iso_alpha2_code","value":"VG"}],"rel":"country-092"},{"href":"http://localhost:3000/countries/850","data":[{"name":"id","value":"850"},{"name":"type","value":"country"},{"name":"name","value":"Virgin
447
+ Islands, U.S."},{"name":"iso_alpha2_code","value":"VI"}],"rel":"country-850"},{"href":"http://localhost:3000/countries/704","data":[{"name":"id","value":"704"},{"name":"type","value":"country"},{"name":"name","value":"Vietnam"},{"name":"iso_alpha2_code","value":"VN"}],"rel":"country-704"},{"href":"http://localhost:3000/countries/548","data":[{"name":"id","value":"548"},{"name":"type","value":"country"},{"name":"name","value":"Vanuatu"},{"name":"iso_alpha2_code","value":"VU"}],"rel":"country-548"},{"href":"http://localhost:3000/countries/876","data":[{"name":"id","value":"876"},{"name":"type","value":"country"},{"name":"name","value":"Wallis
448
+ and Futuna"},{"name":"iso_alpha2_code","value":"WF"}],"rel":"country-876"},{"href":"http://localhost:3000/countries/882","data":[{"name":"id","value":"882"},{"name":"type","value":"country"},{"name":"name","value":"Samoa"},{"name":"iso_alpha2_code","value":"WS"}],"rel":"country-882"},{"href":"http://localhost:3000/countries/887","data":[{"name":"id","value":"887"},{"name":"type","value":"country"},{"name":"name","value":"Yemen"},{"name":"iso_alpha2_code","value":"YE"}],"rel":"country-887"},{"href":"http://localhost:3000/countries/175","data":[{"name":"id","value":"175"},{"name":"type","value":"country"},{"name":"name","value":"Mayotte"},{"name":"iso_alpha2_code","value":"YT"}],"rel":"country-175"},{"href":"http://localhost:3000/countries/710","data":[{"name":"id","value":"710"},{"name":"type","value":"country"},{"name":"name","value":"South
449
+ Africa"},{"name":"iso_alpha2_code","value":"ZA"}],"rel":"country-710"},{"href":"http://localhost:3000/countries/894","data":[{"name":"id","value":"894"},{"name":"type","value":"country"},{"name":"name","value":"Zambia"},{"name":"iso_alpha2_code","value":"ZM"}],"rel":"country-894"},{"href":"http://localhost:3000/countries/716","data":[{"name":"id","value":"716"},{"name":"type","value":"country"},{"name":"name","value":"Zimbabwe"},{"name":"iso_alpha2_code","value":"ZW"}],"rel":"country-716"}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/custom_data","rel":"custom_data","template":{"data":[{"name":"member_id","value":null},{"name":"custom_field_id","value":null},{"name":"value","value":null},{"name":"is_private","value":null},{"name":"type","value":"custom_datum"}]},"links":[{"rel":"custom_field","href":"http://localhost:3000/custom_fields"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/custom_data"}],"queries":[{"rel":"search","href":"http://localhost:3000/custom_data/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"custom_field_id","value":null},{"name":"page_size","value":null,"prompt":"The
450
+ number of items to return for each page. Sending this parameter with the query
451
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
452
+ number of the page to be returned. This requires that paging be turned on
453
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/custom_fields","rel":"custom_fields","template":{"data":[{"name":"team_id","value":null},{"name":"name","value":null},{"name":"kind","value":null},{"name":"options","value":null},{"name":"help_text","value":null},{"name":"type","value":"custom_field"}]},"links":[{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/custom_fields"}],"queries":[{"rel":"search","href":"http://localhost:3000/custom_fields/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
454
+ number of items to return for each page. Sending this parameter with the query
455
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
456
+ number of the page to be returned. This requires that paging be turned on
457
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/league_custom_data","rel":"league_custom_data","template":{"data":[{"name":"member_id","value":null},{"name":"league_custom_field_id","value":null},{"name":"value","value":null},{"name":"is_private","value":null},{"name":"type","value":"league_custom_datum"}]},"links":[{"rel":"league_custom_field","href":"http://localhost:3000/league_custom_fields"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/league_custom_data"}],"queries":[{"rel":"search","href":"http://localhost:3000/league_custom_data/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"division_id","value":null},{"name":"league_custom_field_id","value":null},{"name":"page_size","value":null,"prompt":"The
458
+ number of items to return for each page. Sending this parameter with the query
459
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
460
+ number of the page to be returned. This requires that paging be turned on
461
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/league_custom_fields","rel":"league_custom_fields","links":[{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"self","href":"http://localhost:3000/league_custom_fields"}],"queries":[{"rel":"search","href":"http://localhost:3000/league_custom_fields/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"division_id","value":null},{"name":"page_size","value":null,"prompt":"The
462
+ number of items to return for each page. Sending this parameter with the query
463
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
464
+ number of the page to be returned. This requires that paging be turned on
465
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/divisions","rel":"divisions","template":{"data":[{"name":"type","value":"division"},{"name":"parent_id","value":null},{"name":"name","value":null},{"name":"country","value":null},{"name":"postal_code","value":null},{"name":"time_zone","value":null},{"name":"sport_id","value":null},{"name":"season_name","value":null},{"name":"league_name","value":null},{"name":"league_url","value":null}]},"links":[{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"division_events","href":"http://localhost:3000/division_events"}],"queries":[{"rel":"search","href":"http://localhost:3000/divisions/search","data":[{"name":"id","value":null},{"name":"user_id","value":null},{"name":"page_size","value":null,"prompt":"The
466
+ number of items to return for each page. Sending this parameter with the query
467
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
468
+ number of the page to be returned. This requires that paging be turned on
469
+ by also providing the page_size parameter."}]},{"rel":"ancestors","href":"http://localhost:3000/divisions/ancestors","prompt":"Beta:
470
+ (This endpoint subject to change) Returns all the nested set ancestors of
471
+ the given division.","data":[{"name":"id","value":null}]},{"rel":"descendants","href":"http://localhost:3000/divisions/descendants","prompt":"Beta:
472
+ (This endpoint subject to change) Returns all the nested set descendants of
473
+ the given division.","data":[{"name":"id","value":null}]},{"rel":"children","href":"http://localhost:3000/divisions/children","prompt":"Beta:
474
+ (This endpoint subject to change) Returns all the nested set children of the
475
+ given division.","data":[{"name":"id","value":null}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/division_contact_email_addresses","rel":"division_contact_email_addresses","template":{"data":[{"name":"label","value":null},{"name":"email","value":null},{"name":"receives_team_emails","value":null},{"name":"is_hidden","value":null},{"name":"contact_id","value":null},{"name":"type","value":"division_contact_email_address"}]},"links":[{"rel":"contact","href":"http://localhost:3000/contacts"},{"rel":"division_contact","href":"http://localhost:3000/division_contacts"},{"rel":"division_member","href":"http://localhost:3000/division_members"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_contact_email_addresses"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_contact_email_addresses/search","data":[{"name":"contact_id","value":null},{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
476
+ number of items to return for each page. Sending this parameter with the query
477
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
478
+ number of the page to be returned. This requires that paging be turned on
479
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/division_contact_phone_numbers","rel":"division_contact_phone_numbers","template":{"data":[{"name":"label","value":null},{"name":"phone_number","value":null},{"name":"preferred","value":null,"deprecated":true,"prompt":"preferred
480
+ is deprecated and will be removed in a future version, use is_preferred instead."},{"name":"is_preferred","value":null},{"name":"contact_id","value":null},{"name":"sms_enabled","value":null},{"name":"sms_gateway_id","value":null},{"name":"is_hidden","value":null},{"name":"type","value":"division_contact_phone_number"}]},"links":[{"rel":"contact","href":"http://localhost:3000/contacts"},{"rel":"division_contact","href":"http://localhost:3000/division_contacts"},{"rel":"division_member","href":"http://localhost:3000/division_members"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"sms_gateway","href":"http://localhost:3000/sms_gateways"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_contact_phone_numbers"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_contact_phone_numbers/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"contact_id","value":null},{"name":"page_size","value":null,"prompt":"The
481
+ number of items to return for each page. Sending this parameter with the query
482
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
483
+ number of the page to be returned. This requires that paging be turned on
484
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/division_contacts","rel":"division_contacts","template":{"data":[{"name":"label","value":null},{"name":"address_street1","value":null},{"name":"address_street2","value":null},{"name":"address_city","value":null},{"name":"address_state","value":null},{"name":"address_zip","value":null},{"name":"address_country","value":null},{"name":"first_name","value":null},{"name":"last_name","value":null},{"name":"hide_address","value":null,"deprecated":true,"prompt":"hide_address
485
+ is deprecated and will be removed in a future version, use is_address_hidden
486
+ instead."},{"name":"is_address_hidden","value":null},{"name":"allow_shared_access","value":null},{"name":"member_id","value":null},{"name":"type","value":"division_contact"}]},"links":[{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_member","href":"http://localhost:3000/division_members"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_contacts"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_contacts/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
487
+ number of items to return for each page. Sending this parameter with the query
488
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
489
+ number of the page to be returned. This requires that paging be turned on
490
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/division_events","rel":"division_events","prompt":"BETA:
491
+ (This endpoint subject to change) Returns a collection associated with a division''s
492
+ events","links":[{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"division_location","href":"http://localhost:3000/division_locations"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"location","href":"http://localhost:3000/locations"},{"rel":"opponent","href":"http://localhost:3000/opponents"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_events"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_events/search","data":[{"name":"division_id","value":null},{"name":"id","value":null},{"name":"division_location_id","value":null},{"name":"page_size","value":null,"prompt":"The
493
+ number of items to return for each page. Sending this parameter with the query
494
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
495
+ number of the page to be returned. This requires that paging be turned on
496
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/division_locations","rel":"division_locations","links":[{"rel":"events","href":"http://localhost:3000/events"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_locations"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_locations/search","data":[{"name":"division_id","value":null},{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
497
+ number of items to return for each page. Sending this parameter with the query
498
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
499
+ number of the page to be returned. This requires that paging be turned on
500
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/division_member_email_addresses","rel":"division_member_email_addresses","template":{"data":[{"name":"member_id","value":null},{"name":"label","value":null},{"name":"email","value":null},{"name":"receives_team_emails","value":null},{"name":"is_hidden","value":null},{"name":"type","value":"division_member_email_address"}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_member_email_addresses"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_member_email_addresses/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
501
+ number of items to return for each page. Sending this parameter with the query
502
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
503
+ number of the page to be returned. This requires that paging be turned on
504
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/division_member_phone_numbers","rel":"division_member_phone_numbers","template":{"data":[{"name":"label","value":null},{"name":"phone_number","value":null},{"name":"preferred","value":null,"deprecated":true,"prompt":"preferred
505
+ is deprecated and will be removed in a future version, use is_preferred instead."},{"name":"is_preferred","value":null},{"name":"member_id","value":null},{"name":"sms_enabled","value":null},{"name":"sms_gateway_id","value":null},{"name":"is_hidden","value":null},{"name":"type","value":"division_member_phone_number"}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"sms_gateway","href":"http://localhost:3000/sms_gateways"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_member_phone_numbers"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_member_phone_numbers/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"member_id","value":null},{"name":"page_size","value":null,"prompt":"The
506
+ number of items to return for each page. Sending this parameter with the query
507
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
508
+ number of the page to be returned. This requires that paging be turned on
509
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/division_members","rel":"division_members","queries":[{"rel":"search","href":"http://localhost:3000/division_members/search","data":[{"name":"team_id","value":null,"prompt":"Find
510
+ a division member by the id of the team they are a commissioner of."},{"name":"division_id","value":null},{"name":"user_id","value":null},{"name":"id","value":null},{"name":"birthday_month","value":null,"prompt":"Find
511
+ a division member by the month of their birthday."},{"name":"page_size","value":null,"prompt":"The
512
+ number of items to return for each page. Sending this parameter with the query
513
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
514
+ number of the page to be returned. This requires that paging be turned on
515
+ by also providing the page_size parameter."}]}],"links":[{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_member_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_members"}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/division_members_preferences","rel":"members_preferences","template":{"data":[{"name":"assignments_hide_past","value":null},{"name":"schedule_hide_past","value":null},{"name":"availability_show_past","value":null},{"name":"schedule_show_for_code","value":null},{"name":"reminders_send_game","value":null},{"name":"reminders_send_event","value":null},{"name":"reminders_send_days_before_game","value":null},{"name":"reminders_send_days_before_event","value":null},{"name":"reminders_send_manager_game","value":null},{"name":"reminders_send_manager_event","value":null},{"name":"reminders_send_manager_days_before_game","value":null},{"name":"reminders_send_manager_days_before_event","value":null},{"name":"mobile_send_push_messages","value":null},{"name":"public_site_show_thumbnail","value":null},{"name":"public_site_show_last_name","value":null},{"name":"facebook_post_scores","value":null},{"name":"facebook_post_scores_to_page_id","value":null},{"name":"facebook_post_scores_to_page_name","value":null},{"name":"facebook_post_scores_to_wall","value":null},{"name":"facebook_only_post_wins","value":null},{"name":"facebook_polite_scores","value":null},{"name":"facebook_page_access_token","value":null},{"name":"type","value":"member_preferences"}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_members_preferences"}],"queries":[{"rel":"search","href":"http://localhost:3000/members_preferences/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
516
+ number of items to return for each page. Sending this parameter with the query
517
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
518
+ number of the page to be returned. This requires that paging be turned on
519
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/division_team_standings","rel":"division_team_standings","template":{"data":[{"name":"id","value":null},{"name":"type","value":null},{"name":"team_name","value":null},{"name":"team_url","value":null},{"name":"division_name","value":null},{"name":"wins","value":null},{"name":"losses","value":null},{"name":"ties","value":null},{"name":"overtime_losses","value":null},{"name":"standings_points","value":null},{"name":"type","value":"division_team_standing"}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/division_team_standings"}],"queries":[{"rel":"search","href":"http://localhost:3000/division_team_standings/search","data":[{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
520
+ number of items to return for each page. Sending this parameter with the query
521
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
522
+ number of the page to be returned. This requires that paging be turned on
523
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/divisions_preferences","rel":"divisions_preferences","prompt":"BETA:
524
+ (This endpoint subject to change) Returns a collection associated with a division''s
525
+ preferences","template":{"data":[{"name":"alternate_sport_name","value":null},{"name":"assignments_enable_for_code","value":null},{"name":"availabilities_sort_order","value":null},{"name":"availability_event_cutoff","value":null},{"name":"availability_game_cutoff","value":null},{"name":"can_have_subdivisions","value":null},{"name":"color_scheme_cd","value":null},{"name":"currency_symbol","value":null},{"name":"has_tracked_items_for_non_players","value":null},{"name":"has_payments_for_non_players","value":null},{"name":"has_international_date","value":null},{"name":"has_international_time","value":null},{"name":"is_announcement_above_home_photo","value":null},{"name":"is_assignments_enabled","value":null},{"name":"is_availabilities_enabled","value":null},{"name":"is_coed","value":null},{"name":"is_event_reminders_enabled","value":null},{"name":"is_game_reminders_enabled","value":null},{"name":"is_header_hidden","value":null},{"name":"is_league_controlling_settings","value":null},{"name":"is_marketplace_enabled","value":null},{"name":"is_multi_sport","value":null},{"name":"is_payments_private","value":null},{"name":"is_registration_enabled","value":null},{"name":"is_roster_importable","value":null},{"name":"is_payments_enabled","value":null},{"name":"is_schedule_enabled","value":null},{"name":"is_sponsor_editable_for_non_commissioners","value":null},{"name":"is_standings_enabled","value":null},{"name":"is_statistics_enabled","value":null},{"name":"is_team_media_enabled","value":null},{"name":"is_tracked_items_enabled","value":null},{"name":"is_tracked_items_private","value":null},{"name":"is_tracking_points","value":null},{"name":"is_youth","value":null},{"name":"member_sort_order","value":null},{"name":"type","value":"team_preferences"}]},"links":[{"rel":"division","href":"http://localhost:3000/divisions"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/divisions_preferences"}],"queries":[{"rel":"search","href":"http://localhost:3000/divisions_preferences/search","data":[{"name":"id","value":null},{"name":"division_id","value":null},{"name":"user_id","value":null},{"name":"page_size","value":null,"prompt":"The
526
+ number of items to return for each page. Sending this parameter with the query
527
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
528
+ number of the page to be returned. This requires that paging be turned on
529
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/event_statistics","rel":"event_statistics","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/event_statistics"},{"rel":"event","href":"http://localhost:3000/events"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"team","href":"http://localhost:3000/teams"}],"queries":[{"rel":"search","href":"http://localhost:3000/event_statistics/search","data":[{"name":"id","value":null},{"name":"statistic_id","value":null},{"name":"event_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/events","rel":"events","template":{"data":[{"name":"type","value":"event"},{"name":"additional_location_details","value":null},{"name":"browser_time_zone","value":null},{"name":"division_location_id","value":null},{"name":"doesnt_count_towards_record","value":null},{"name":"duration_in_minutes","value":null},{"name":"game_type_code","value":null},{"name":"icon_color","value":null},{"name":"is_canceled","value":null},{"name":"is_game","value":null},{"name":"is_overtime","value":null},{"name":"is_shootout","value":null},{"name":"is_tbd","value":null},{"name":"label","value":null},{"name":"location_id","value":null},{"name":"minutes_to_arrive_early","value":null},{"name":"name","value":null},{"name":"notes","value":null},{"name":"notify_opponent","value":null},{"name":"notify_opponent_contacts_email","value":null},{"name":"notify_opponent_contacts_name","value":null},{"name":"notify_opponent_notes","value":null},{"name":"notify_team","value":null},{"name":"notify_team_as_member_id","value":null},{"name":"opponent_id","value":null},{"name":"points_for_opponent","value":null},{"name":"points_for_team","value":null},{"name":"repeating_include","value":null,"prompt":"When
530
+ updating a repeating event, this is a required field. Values are: \"all\"
531
+ - updates all events in this series, \"future\" - updates this event and all
532
+ that occur after, \"none\" - only updates a single event."},{"name":"repeating_type_code","value":null,"prompt":"A
533
+ code for the frequency of the repeated event, this is required with the \"repeating_include\"
534
+ attribute when creating a repeating event. Valid values are: \"1\" - repeat
535
+ an event daily, \"2\" - repeat an event weekly."},{"name":"repeating_until","value":null,"prompt":"A
536
+ date when the repeating event should end, this is inclusive so an event will
537
+ be created on this day if it falls before the next event specified by \"repeating_type_code\".
538
+ This attribute is required with \"repeating_type_code\" when creating a repeating
539
+ event."},{"name":"results","value":null},{"name":"results_url","value":null},{"name":"shootout_points_for_opponent","value":null},{"name":"shootout_points_for_team","value":null},{"name":"start_date","value":null},{"name":"team_id","value":null},{"name":"time_zone","value":null},{"name":"tracks_availability","value":null},{"name":"uniform","value":null}]},"links":[{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"division_location","href":"http://localhost:3000/division_locations"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"location","href":"http://localhost:3000/locations"},{"rel":"opponent","href":"http://localhost:3000/opponents"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/events"}],"queries":[{"rel":"search","href":"http://localhost:3000/events/search","data":[{"name":"team_id","value":null},{"name":"location_id","value":null},{"name":"opponent_id","value":null},{"name":"started_after","value":null},{"name":"started_before","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
540
+ number of items to return for each page. Sending this parameter with the query
541
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
542
+ number of the page to be returned. This requires that paging be turned on
543
+ by also providing the page_size parameter."}]},{"rel":"search_games","href":"http://localhost:3000/events/search_games","data":[{"name":"team_id","value":null}]},{"rel":"overview","href":"http://localhost:3000/events/overview","data":[{"name":"team_id","value":null}]}],"commands":[{"rel":"send_availability_reminders","href":"http://localhost:3000/events/send_availability_reminders","prompt":"members_to_notify
96
544
  = [member_id, member_id]","data":[{"name":"id","value":null},{"name":"members_to_notify","value":null},{"name":"notify_team_as_member_id","value":null}]},{"rel":"update_final_score","href":"http://localhost:3000/events/update_final_score","prompt":"Update
97
- the final score for an event","data":[{"name":"id","value":null},{"name":"points_for_team","value":null},{"name":"points_for_opponent","value":null},{"name":"shootout_points_for_team","value":null},{"name":"shootout_points_for_opponent","value":null},{"name":"is_overtime","value":null},{"name":"is_shootout","value":null},{"name":"results","value":null},{"name":"results_url","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/forecasts","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//forecasts"}],"queries":[{"rel":"search","href":"http://localhost:3000/forecasts/search","data":[{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/forum_posts","template":{"data":[{"name":"forum_topic_id","value":null},{"name":"division_member_id","value":null},{"name":"member_id","value":null},{"name":"message","value":null},{"name":"broadcast_to_team","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"forum_topic","href":"http://localhost:3000/forum_topics"},{"rel":"division_member","href":"http://localhost:3000/division_members"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//forum_posts"}],"queries":[{"rel":"search","href":"http://localhost:3000/forum_posts/search","data":[{"name":"forum_topic_id","value":null},{"name":"id","value":null},{"name":"division_member_id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/forum_subscriptions","template":{"data":[{"name":"forum_topic_id","value":null},{"name":"member_id","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"forum_topic","href":"http://localhost:3000/forum_topics"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//forum_subscriptions"}],"queries":[{"rel":"search","href":"http://localhost:3000/forum_subscriptions/search","data":[{"name":"forum_topic_id","value":null},{"name":"id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/forum_topics","template":{"data":[{"name":"title","value":null},{"name":"is_announcement","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//forum_topics"}],"queries":[{"rel":"search","href":"http://localhost:3000/forum_topics/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/geocoded_locations","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//geocoded_locations"}],"queries":[{"rel":"search","href":"http://localhost:3000/geocoded_locations/search","data":[{"name":"country","value":null},{"name":"postal_code","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/league_registrant_documents","links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//league_registrant_documents"}],"queries":[{"rel":"search","href":"http://localhost:3000/league_registrant_documents/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/locations","template":{"data":[{"name":"name","value":null},{"name":"url","value":null},{"name":"phone","value":null},{"name":"notes","value":null},{"name":"address","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"events","href":"http://localhost:3000/events"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//locations"}],"queries":[{"rel":"search","href":"http://localhost:3000/locations/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/member_email_addresses","template":{"data":[{"name":"member_id","value":null},{"name":"label","value":null},{"name":"email","value":null},{"name":"receives_team_emails","value":null},{"name":"is_hidden","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//member_email_addresses"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_email_addresses/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/member_balances","links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//member_balances"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_balances/search","data":[{"name":"member_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/member_files","template":{"data":[{"name":"member_id","value":null},{"name":"is_private","value":null},{"name":"description","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//member_files"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_files/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null}]}],"commands":[{"rel":"upload_member_file","href":"http://localhost:3000/member_files/upload_member_file","prompt":"Upload
98
- a member file.","data":[{"name":"member_file_id","value":null},{"name":"file","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/member_links","template":{"data":[{"name":"member_id","value":null},{"name":"url","value":null},{"name":"is_private","value":null},{"name":"description","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//member_links"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_links/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/member_payments","template":{"data":[{"name":"amount_paid","value":null},{"name":"amount_due","value":null},{"name":"is_applicable","value":null},{"name":"member_id","value":null},{"name":"note","value":null},{"name":"team_fee_id","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_fee","href":"http://localhost:3000/team_fees"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//member_payments"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_payments/search","data":[{"name":"id","value":null},{"name":"member_id","value":null},{"name":"team_fee_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/member_phone_numbers","template":{"data":[{"name":"label","value":null},{"name":"phone_number","value":null},{"name":"preferred","value":null},{"name":"member_id","value":null},{"name":"sms_enabled","value":null},{"name":"sms_gateway_id","value":null},{"name":"is_hidden","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"sms_gateway","href":"http://localhost:3000/sms_gateways"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//member_phone_numbers"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_phone_numbers/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"member_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/member_statistics","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//member_statistics"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"team","href":"http://localhost:3000/teams"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_statistics/search","data":[{"name":"id","value":null},{"name":"statistic_id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/members","template":{"data":[{"name":"first_name","value":null},{"name":"last_name","value":null},{"name":"gender","value":null},{"name":"position","value":null},{"name":"is_manager","value":null},{"name":"birthday","value":null},{"name":"hide_age","value":null},{"name":"hide_address","value":null},{"name":"is_non_player","value":null},{"name":"address_street1","value":null},{"name":"address_street2","value":null},{"name":"address_city","value":null},{"name":"address_state","value":null},{"name":"address_zip","value":null},{"name":"jersey_number","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_smses","href":"http://localhost:3000/broadcast_smses"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//members"}],"queries":[{"rel":"search","href":"http://localhost:3000/members/search","data":[{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"id","value":null}]},{"rel":"managers","href":"http://localhost:3000/members/managers","data":[{"name":"team_id","value":null}]},{"rel":"owner","href":"http://localhost:3000/members/owner","data":[{"name":"team_id","value":null}]}],"commands":[{"rel":"disable_member","href":"http://localhost:3000/members/disable_member","data":[{"name":"member_id","value":null}]},{"rel":"upload_member_photo","href":"http://localhost:3000/members/upload_member_photo","data":[{"name":"member_id","value":null},{"name":"file","value":null},{"name":"x","value":null},{"name":"y","value":null},{"name":"width","value":null},{"name":"height","value":null}]},{"rel":"remove_member_photo","href":"http://localhost:3000/members/remove_member_photo","data":[{"name":"member_id","value":null}]},{"rel":"generate_member_thumbnail","href":"http://localhost:3000/members/generate_member_thumbnail","data":[{"name":"member_id","value":null},{"name":"x","value":null},{"name":"y","value":null},{"name":"width","value":null},{"name":"height","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/members_preferences","template":{"data":[{"name":"assignments_hide_past","value":null},{"name":"schedule_hide_past","value":null},{"name":"availability_show_past","value":null},{"name":"schedule_show_for_code","value":null},{"name":"reminders_send_game","value":null},{"name":"reminders_send_event","value":null},{"name":"reminders_send_days_before_game","value":null},{"name":"reminders_send_days_before_event","value":null},{"name":"reminders_send_manager_game","value":null},{"name":"reminders_send_manager_event","value":null},{"name":"reminders_send_manager_days_before_game","value":null},{"name":"reminders_send_manager_days_before_event","value":null},{"name":"mobile_send_push_messages","value":null},{"name":"public_site_show_thumbnail","value":null},{"name":"public_site_show_last_name","value":null},{"name":"facebook_post_scores","value":null},{"name":"facebook_post_scores_to_page_id","value":null},{"name":"facebook_post_scores_to_page_name","value":null},{"name":"facebook_post_scores_to_wall","value":null},{"name":"facebook_only_post_wins","value":null},{"name":"facebook_polite_scores","value":null},{"name":"facebook_page_access_token","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//members_preferences"}],"queries":[{"rel":"search","href":"http://localhost:3000/members_preferences/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/opponents","template":{"data":[{"name":"name","value":null},{"name":"contacts_name","value":null},{"name":"contacts_phone","value":null},{"name":"contacts_email","value":null},{"name":"notes","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"events","href":"http://localhost:3000/events"},{"rel":"opponent_results","href":"http://localhost:3000/opponents_results"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//opponents"}],"queries":[{"rel":"search","href":"http://localhost:3000/opponents/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/opponents_results","links":[{"rel":"opponent","href":"http://localhost:3000/opponents"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//opponents_results"}],"queries":[{"rel":"search","href":"http://localhost:3000/opponents_results/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/payment_notes","template":{"data":[{"name":"member_payment_id","value":null},{"name":"note","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"member_payment","href":"http://localhost:3000/member_payments"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//payment_notes"}],"queries":[{"rel":"search","href":"http://localhost:3000/payment_notes/search","data":[{"name":"id","value":null},{"name":"member_payment_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/paypal_currencies","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//paypal_currencies"}],"queries":[{"rel":"search","href":"http://localhost:3000/paypal_currencies/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]}],"items":[{"href":"http://localhost:3000/paypal_currencies/1","data":[{"name":"id","value":1},{"name":"name","value":"U.S.
99
- Dollar"},{"name":"code","value":"USD"},{"name":"symbol","value":"$"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/2","data":[{"name":"id","value":2},{"name":"name","value":"Canadian
100
- Dollar"},{"name":"code","value":"CAD"},{"name":"symbol","value":"C$"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/3","data":[{"name":"id","value":3},{"name":"name","value":"Australian
101
- Dollar"},{"name":"code","value":"AUD"},{"name":"symbol","value":"A$"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/4","data":[{"name":"id","value":4},{"name":"name","value":"Czech
102
- Koruna"},{"name":"code","value":"CZK"},{"name":"symbol","value":""},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/5","data":[{"name":"id","value":5},{"name":"name","value":"Danish
103
- Krone"},{"name":"code","value":"DKK"},{"name":"symbol","value":"kr"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/6","data":[{"name":"id","value":6},{"name":"name","value":"Euro"},{"name":"code","value":"EUR"},{"name":"symbol","value":"€"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/7","data":[{"name":"id","value":7},{"name":"name","value":"Hong
104
- Kong Dollar"},{"name":"code","value":"HKD"},{"name":"symbol","value":"HK$"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/8","data":[{"name":"id","value":8},{"name":"name","value":"Norwegian
105
- Krone"},{"name":"code","value":"NOK"},{"name":"symbol","value":"kr"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/9","data":[{"name":"id","value":9},{"name":"name","value":"New
106
- Zealand Dollar"},{"name":"code","value":"NZD"},{"name":"symbol","value":"NZ$"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/10","data":[{"name":"id","value":10},{"name":"name","value":"Polish
107
- Zloty"},{"name":"code","value":"PLN"},{"name":"symbol","value":"zł"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/11","data":[{"name":"id","value":11},{"name":"name","value":"Pound
108
- Sterling"},{"name":"code","value":"GBP"},{"name":"symbol","value":"£"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/12","data":[{"name":"id","value":12},{"name":"name","value":"Singapore
109
- Dollar"},{"name":"code","value":"SGD"},{"name":"symbol","value":"S$"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/13","data":[{"name":"id","value":13},{"name":"name","value":"Swedish
110
- Krona"},{"name":"code","value":"SEK"},{"name":"symbol","value":"kr"},{"name":"country","value":null}]},{"href":"http://localhost:3000/paypal_currencies/14","data":[{"name":"id","value":14},{"name":"name","value":"Swiss
111
- Franc"},{"name":"code","value":"CHF"},{"name":"symbol","value":"Fr"},{"name":"country","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/plans","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//plans"}],"queries":[{"rel":"search","href":"http://localhost:3000/plans/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]},{"rel":"all","href":"http://localhost:3000/plans/all","prompt":"Returns
545
+ the final score for an event","data":[{"name":"id","value":null},{"name":"points_for_team","value":null},{"name":"points_for_opponent","value":null},{"name":"shootout_points_for_team","value":null},{"name":"shootout_points_for_opponent","value":null},{"name":"is_overtime","value":null},{"name":"is_shootout","value":null},{"name":"results","value":null},{"name":"results_url","value":null}]},{"rel":"bulk_create","href":"http://localhost:3000/events/bulk_create","prompt":"event_ids
546
+ = [event_id, event_id]","data":[{"name":"templates","value":null},{"name":"team_id","value":null},{"name":"notify_team_as_member_id","value":null},{"name":"notify_team","value":null}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/facebook_pages","rel":"facebook_pages","links":[{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/facebook_pages"}],"queries":[{"rel":"search","href":"http://localhost:3000/facebook_pages/search","data":[{"name":"page_size","value":null,"prompt":"The
547
+ number of items to return for each page. Sending this parameter with the query
548
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
549
+ number of the page to be returned. This requires that paging be turned on
550
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/forecasts","rel":"forecasts","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/forecasts"}],"queries":[{"rel":"search","href":"http://localhost:3000/forecasts/search","data":[{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
551
+ number of items to return for each page. Sending this parameter with the query
552
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
553
+ number of the page to be returned. This requires that paging be turned on
554
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/forum_posts","rel":"forum_posts","template":{"data":[{"name":"forum_topic_id","value":null},{"name":"division_member_id","value":null},{"name":"member_id","value":null},{"name":"message","value":null},{"name":"broadcast_to_team","value":null},{"name":"type","value":"forum_post"}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"forum_topic","href":"http://localhost:3000/forum_topics"},{"rel":"division_member","href":"http://localhost:3000/division_members"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/forum_posts"}],"queries":[{"rel":"search","href":"http://localhost:3000/forum_posts/search","data":[{"name":"forum_topic_id","value":null},{"name":"id","value":null},{"name":"division_member_id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
555
+ number of items to return for each page. Sending this parameter with the query
556
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
557
+ number of the page to be returned. This requires that paging be turned on
558
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/forum_subscriptions","rel":"forum_subscriptions","template":{"data":[{"name":"forum_topic_id","value":null},{"name":"member_id","value":null},{"name":"type","value":"forum_subscription"}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"forum_topic","href":"http://localhost:3000/forum_topics"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/forum_subscriptions"}],"queries":[{"rel":"search","href":"http://localhost:3000/forum_subscriptions/search","data":[{"name":"forum_topic_id","value":null},{"name":"id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
559
+ number of items to return for each page. Sending this parameter with the query
560
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
561
+ number of the page to be returned. This requires that paging be turned on
562
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/forum_topics","rel":"forum_topics","template":{"data":[{"name":"title","value":null},{"name":"is_announcement","value":null},{"name":"team_id","value":null},{"name":"type","value":"forum_topic"}]},"links":[{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/forum_topics"}],"queries":[{"rel":"search","href":"http://localhost:3000/forum_topics/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
563
+ number of items to return for each page. Sending this parameter with the query
564
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
565
+ number of the page to be returned. This requires that paging be turned on
566
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/geocoded_locations","rel":"geocoded_locations","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/geocoded_locations"}],"queries":[{"rel":"search","href":"http://localhost:3000/geocoded_locations/search","data":[{"name":"country","value":null},{"name":"postal_code","value":null},{"name":"page_size","value":null,"prompt":"The
567
+ number of items to return for each page. Sending this parameter with the query
568
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
569
+ number of the page to be returned. This requires that paging be turned on
570
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/gcm_devices","rel":"gcm_devices","template":{"data":[{"name":"registration_id","value":null},{"name":"app_version","value":null}]},"links":[{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/gcm_devices"}],"queries":[{"rel":"search","href":"http://localhost:3000/gcm_devices/search","data":[{"name":"id","value":null},{"name":"user_id","value":null},{"name":"page_size","value":null,"prompt":"The
571
+ number of items to return for each page. Sending this parameter with the query
572
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
573
+ number of the page to be returned. This requires that paging be turned on
574
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/league_registrant_documents","rel":"league_registrant_documents","links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/league_registrant_documents"}],"queries":[{"rel":"search","href":"http://localhost:3000/league_registrant_documents/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
575
+ number of items to return for each page. Sending this parameter with the query
576
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
577
+ number of the page to be returned. This requires that paging be turned on
578
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/locations","rel":"locations","template":{"data":[{"name":"name","value":null},{"name":"url","value":null},{"name":"phone","value":null},{"name":"notes","value":null},{"name":"address","value":null},{"name":"team_id","value":null},{"name":"type","value":"location"}]},"links":[{"rel":"events","href":"http://localhost:3000/events"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/locations"}],"queries":[{"rel":"search","href":"http://localhost:3000/locations/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
579
+ number of items to return for each page. Sending this parameter with the query
580
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
581
+ number of the page to be returned. This requires that paging be turned on
582
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/member_email_addresses","rel":"member_email_addresses","template":{"data":[{"name":"member_id","value":null},{"name":"label","value":null},{"name":"email","value":null},{"name":"receives_team_emails","value":null},{"name":"is_hidden","value":null},{"name":"type","value":"member_email_address"}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/member_email_addresses"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_email_addresses/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
583
+ number of items to return for each page. Sending this parameter with the query
584
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
585
+ number of the page to be returned. This requires that paging be turned on
586
+ by also providing the page_size parameter."}]}],"commands":[{"rel":"invite","href":"http://localhost:3000/member_email_addresses/invite","prompt":"BETA:
587
+ Invite member email addresses to join TeamSnap.","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"member_email_address_ids","value":null},{"name":"introduction","value":null},{"name":"notify_as_member_id","value":null}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/member_balances","rel":"member_balances","links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/member_balances"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_balances/search","data":[{"name":"member_id","value":null},{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
588
+ number of items to return for each page. Sending this parameter with the query
589
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
590
+ number of the page to be returned. This requires that paging be turned on
591
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/member_files","rel":"member_files","template":{"data":[{"name":"member_id","value":null},{"name":"is_private","value":null},{"name":"description","value":null},{"name":"type","value":"member_file"}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/member_files"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_files/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
592
+ number of items to return for each page. Sending this parameter with the query
593
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
594
+ number of the page to be returned. This requires that paging be turned on
595
+ by also providing the page_size parameter."}]}],"commands":[{"rel":"upload_member_file","href":"http://localhost:3000/member_files/upload_member_file","prompt":"Upload
596
+ a member file. This must be a multi-part POST.","data":[{"name":"member_file_id","value":null},{"name":"file","value":null}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/member_links","rel":"member_links","template":{"data":[{"name":"member_id","value":null},{"name":"url","value":null},{"name":"is_private","value":null},{"name":"description","value":null},{"name":"type","value":"member_link"}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/member_links"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_links/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
597
+ number of items to return for each page. Sending this parameter with the query
598
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
599
+ number of the page to be returned. This requires that paging be turned on
600
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/member_payments","rel":"member_payments","template":{"data":[{"name":"amount_paid","value":null},{"name":"amount_due","value":null},{"name":"is_applicable","value":null},{"name":"member_id","value":null},{"name":"note","value":null},{"name":"team_fee_id","value":null},{"name":"type","value":"member_payment"}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_fee","href":"http://localhost:3000/team_fees"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/member_payments"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_payments/search","data":[{"name":"id","value":null},{"name":"member_id","value":null},{"name":"team_fee_id","value":null},{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
601
+ number of items to return for each page. Sending this parameter with the query
602
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
603
+ number of the page to be returned. This requires that paging be turned on
604
+ by also providing the page_size parameter."}]}],"commands":[{"rel":"transaction","href":"http://localhost:3000/member_payments/transaction","prompt":"Add
605
+ or subtract money from the amount paid on a Member Payment.","data":[{"name":"member_payment_id","value":null},{"name":"amount","value":null},{"name":"note","value":null}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/member_phone_numbers","rel":"member_phone_numbers","template":{"data":[{"name":"label","value":null},{"name":"phone_number","value":null},{"name":"preferred","value":null,"deprecated":true,"prompt":"preferred
606
+ is deprecated and will be removed in a future version, use is_preferred instead."},{"name":"is_preferred","value":null},{"name":"member_id","value":null},{"name":"sms_enabled","value":null},{"name":"sms_gateway_id","value":null},{"name":"is_hidden","value":null},{"name":"type","value":"member_phone_number"}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"sms_gateway","href":"http://localhost:3000/sms_gateways"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/member_phone_numbers"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_phone_numbers/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"member_id","value":null},{"name":"page_size","value":null,"prompt":"The
607
+ number of items to return for each page. Sending this parameter with the query
608
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
609
+ number of the page to be returned. This requires that paging be turned on
610
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/member_statistics","rel":"member_statistics","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/member_statistics"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"team","href":"http://localhost:3000/teams"}],"queries":[{"rel":"search","href":"http://localhost:3000/member_statistics/search","data":[{"name":"id","value":null},{"name":"statistic_id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/members","rel":"members","template":{"data":[{"name":"first_name","value":null},{"name":"last_name","value":null},{"name":"gender","value":null},{"name":"position","value":null},{"name":"is_manager","value":null},{"name":"birthday","value":null},{"name":"hide_age","value":null,"deprecated":true,"prompt":"hide_age
611
+ is deprecated and will be removed in a future version, use is_age_hidden instead."},{"name":"is_age_hidden","value":null},{"name":"hide_address","value":null,"deprecated":true,"prompt":"hide_address
612
+ is deprecated and will be removed in a future version, use is_address_hidden
613
+ instead."},{"name":"is_address_hidden","value":null},{"name":"is_non_player","value":null},{"name":"address_street1","value":null},{"name":"address_street2","value":null},{"name":"address_city","value":null},{"name":"address_state","value":null},{"name":"address_zip","value":null},{"name":"jersey_number","value":null},{"name":"team_id","value":null},{"name":"type","value":"member"}]},"links":[{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/members"}],"queries":[{"rel":"search","href":"http://localhost:3000/members/search","data":[{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
614
+ number of items to return for each page. Sending this parameter with the query
615
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
616
+ number of the page to be returned. This requires that paging be turned on
617
+ by also providing the page_size parameter."}]},{"rel":"managers","href":"http://localhost:3000/members/managers","data":[{"name":"team_id","value":null}]},{"rel":"personas","href":"http://localhost:3000/members/personas","prompt":"Given
618
+ a user ID, returns members directly associated with the user as well as members
619
+ associated with the user via a shared access contact.","data":[{"name":"user_id","value":null}]},{"rel":"owner","href":"http://localhost:3000/members/owner","data":[{"name":"team_id","value":null}]},{"rel":"importable_members","href":"http://localhost:3000/members/importable_members","prompt":"Given
620
+ a user ID, returns all members associated with user''s active season teams. If
621
+ include_archived_teams (boolean) parameter is supplied, members associated
622
+ with archived teams will be returned as well.","data":[{"name":"user_id","value":null},{"name":"include_archived_teams","value":null}]}],"commands":[{"rel":"disable_member","href":"http://localhost:3000/members/disable_member","data":[{"name":"member_id","value":null}]},{"rel":"upload_member_photo","href":"http://localhost:3000/members/upload_member_photo","data":[{"name":"member_id","value":null},{"name":"file","value":null},{"name":"x","value":null},{"name":"y","value":null},{"name":"width","value":null},{"name":"height","value":null}]},{"rel":"remove_member_photo","href":"http://localhost:3000/members/remove_member_photo","data":[{"name":"member_id","value":null}]},{"rel":"generate_member_thumbnail","href":"http://localhost:3000/members/generate_member_thumbnail","data":[{"name":"member_id","value":null},{"name":"x","value":null},{"name":"y","value":null},{"name":"width","value":null},{"name":"height","value":null}]},{"rel":"import_from_team","href":"http://localhost:3000/members/import_from_team","prompt":"Given
623
+ source_member_ids (array) and a destination_team_id, source members and related
624
+ member data will be imported to the destination team. Newly created members
625
+ will be returned.","data":[{"name":"source_member_ids","value":null},{"name":"destination_team_id","value":null}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/members_preferences","rel":"members_preferences","template":{"data":[{"name":"assignments_hide_past","value":null},{"name":"schedule_hide_past","value":null},{"name":"availability_show_past","value":null},{"name":"schedule_show_for_code","value":null},{"name":"reminders_send_game","value":null},{"name":"reminders_send_event","value":null},{"name":"reminders_send_days_before_game","value":null},{"name":"reminders_send_days_before_event","value":null},{"name":"reminders_send_manager_game","value":null},{"name":"reminders_send_manager_event","value":null},{"name":"reminders_send_manager_days_before_game","value":null},{"name":"reminders_send_manager_days_before_event","value":null},{"name":"mobile_send_push_messages","value":null},{"name":"public_site_show_thumbnail","value":null},{"name":"public_site_show_last_name","value":null},{"name":"facebook_post_scores","value":null},{"name":"facebook_post_scores_to_page_id","value":null},{"name":"facebook_post_scores_to_page_name","value":null},{"name":"facebook_post_scores_to_wall","value":null},{"name":"facebook_only_post_wins","value":null},{"name":"facebook_polite_scores","value":null},{"name":"facebook_page_access_token","value":null},{"name":"type","value":"member_preferences"}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/members_preferences"}],"queries":[{"rel":"search","href":"http://localhost:3000/members_preferences/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
626
+ number of items to return for each page. Sending this parameter with the query
627
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
628
+ number of the page to be returned. This requires that paging be turned on
629
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/opponents","rel":"opponents","template":{"data":[{"name":"name","value":null},{"name":"contacts_name","value":null},{"name":"contacts_phone","value":null},{"name":"contacts_email","value":null},{"name":"notes","value":null},{"name":"team_id","value":null},{"name":"type","value":"opponent"}]},"links":[{"rel":"events","href":"http://localhost:3000/events"},{"rel":"opponent_results","href":"http://localhost:3000/opponents_results"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/opponents"}],"queries":[{"rel":"search","href":"http://localhost:3000/opponents/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
630
+ number of items to return for each page. Sending this parameter with the query
631
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
632
+ number of the page to be returned. This requires that paging be turned on
633
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/opponents_results","rel":"opponents_results","links":[{"rel":"opponent","href":"http://localhost:3000/opponents"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/opponents_results"}],"queries":[{"rel":"search","href":"http://localhost:3000/opponents_results/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
634
+ number of items to return for each page. Sending this parameter with the query
635
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
636
+ number of the page to be returned. This requires that paging be turned on
637
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/payment_notes","rel":"payment_notes","template":{"data":[{"name":"member_payment_id","value":null},{"name":"note","value":null},{"name":"type","value":"payment_note"}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"member_payment","href":"http://localhost:3000/member_payments"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/payment_notes"}],"queries":[{"rel":"search","href":"http://localhost:3000/payment_notes/search","data":[{"name":"id","value":null},{"name":"member_payment_id","value":null},{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
638
+ number of items to return for each page. Sending this parameter with the query
639
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
640
+ number of the page to be returned. This requires that paging be turned on
641
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/paypal_currencies","rel":"paypal_currencies","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/paypal_currencies"}],"queries":[{"rel":"search","href":"http://localhost:3000/paypal_currencies/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.206.1","rel":"plans","href":"http://localhost:3000/plans","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/plans"}],"queries":[{"rel":"search","href":"http://localhost:3000/plans/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]},{"rel":"all","href":"http://localhost:3000/plans/all","prompt":"Returns
112
642
  all active and inactive plans"}],"items":[{"href":"http://localhost:3000/plans/14","data":[{"name":"id","value":14},{"name":"type","value":"plan"},{"name":"annual_price","value":null},{"name":"has_ad_free","value":false},{"name":"has_assignments","value":false},{"name":"has_availabilities","value":false},{"name":"has_clubs","value":false},{"name":"has_custom_domain","value":false},{"name":"has_custom_fields","value":false},{"name":"has_external_email","value":false},{"name":"has_hide_marketplace_tab","value":false},{"name":"has_off_season","value":false},{"name":"has_payments","value":false},{"name":"has_paypal","value":false},{"name":"has_team_media","value":false},{"name":"has_photos","value":false,"deprecated":true,"prompt":"has_photos
113
643
  is deprecated and will be removed in a future version, use has_team_media
114
644
  instead."},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":false},{"name":"has_seasons","value":false},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":false},{"name":"has_statistics","value":false},{"name":"has_team_colors","value":false},{"name":"has_team_logo","value":false},{"name":"has_text_messaging","value":false},{"name":"has_tracking","value":false},{"name":"has_weather","value":false},{"name":"is_active","value":true},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"Free!"},{"name":"name","value":"Free
@@ -123,7 +653,7 @@ http_interactions:
123
653
  instead."},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":false},{"name":"has_seasons","value":true},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":false},{"name":"has_statistics","value":false},{"name":"has_team_colors","value":false},{"name":"has_team_logo","value":false},{"name":"has_text_messaging","value":true},{"name":"has_tracking","value":true},{"name":"has_weather","value":false},{"name":"is_active","value":true},{"name":"monthly_price","value":7.99},{"name":"monthly_price_description","value":"$7.99/month"},{"name":"name","value":"Basic
124
654
  Plan"},{"name":"plan_type","value":"basic"},{"name":"platform","value":"web"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":500}],"rel":"plan-24"},{"href":"http://localhost:3000/plans/25","data":[{"name":"id","value":25},{"name":"type","value":"plan"},{"name":"annual_price","value":84.99},{"name":"has_ad_free","value":true},{"name":"has_assignments","value":true},{"name":"has_availabilities","value":true},{"name":"has_clubs","value":true},{"name":"has_custom_domain","value":true},{"name":"has_custom_fields","value":true},{"name":"has_external_email","value":true},{"name":"has_hide_marketplace_tab","value":true},{"name":"has_off_season","value":true},{"name":"has_payments","value":true},{"name":"has_paypal","value":true},{"name":"has_team_media","value":true},{"name":"has_photos","value":true,"deprecated":true,"prompt":"has_photos
125
655
  is deprecated and will be removed in a future version, use has_team_media
126
- instead."},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":true},{"name":"has_seasons","value":true},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":true},{"name":"has_statistics","value":true},{"name":"has_team_colors","value":true},{"name":"has_team_logo","value":true},{"name":"has_text_messaging","value":true},{"name":"has_tracking","value":true},{"name":"has_weather","value":true},{"name":"is_active","value":true},{"name":"monthly_price","value":10.99},{"name":"monthly_price_description","value":"$10.99/month"},{"name":"name","value":"Premium
656
+ instead."},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":true},{"name":"has_seasons","value":true},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":true},{"name":"has_statistics","value":true},{"name":"has_team_colors","value":true},{"name":"has_team_logo","value":true},{"name":"has_text_messaging","value":true},{"name":"has_tracking","value":true},{"name":"has_weather","value":true},{"name":"is_active","value":true},{"name":"monthly_price","value":12.49},{"name":"monthly_price_description","value":"$12.49/month"},{"name":"name","value":"Premium
127
657
  Plan"},{"name":"plan_type","value":"premium"},{"name":"platform","value":"web"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":99000}],"rel":"plan-25"},{"href":"http://localhost:3000/plans/26","data":[{"name":"id","value":26},{"name":"type","value":"plan"},{"name":"annual_price","value":129.99},{"name":"has_ad_free","value":true},{"name":"has_assignments","value":true},{"name":"has_availabilities","value":true},{"name":"has_clubs","value":true},{"name":"has_custom_domain","value":true},{"name":"has_custom_fields","value":true},{"name":"has_external_email","value":true},{"name":"has_hide_marketplace_tab","value":true},{"name":"has_off_season","value":true},{"name":"has_payments","value":true},{"name":"has_paypal","value":true},{"name":"has_team_media","value":true},{"name":"has_photos","value":true,"deprecated":true,"prompt":"has_photos
128
658
  is deprecated and will be removed in a future version, use has_team_media
129
659
  instead."},{"name":"has_roster_photos","value":true},{"name":"has_rss","value":true},{"name":"has_seasons","value":true},{"name":"has_sponsorships","value":true},{"name":"has_ssl_security","value":true},{"name":"has_statistics","value":true},{"name":"has_team_colors","value":true},{"name":"has_team_logo","value":true},{"name":"has_text_messaging","value":true},{"name":"has_tracking","value":true},{"name":"has_weather","value":true},{"name":"is_active","value":true},{"name":"monthly_price","value":15.99},{"name":"monthly_price_description","value":"$15.99/month"},{"name":"name","value":"Ultra
@@ -151,10 +681,15 @@ http_interactions:
151
681
  Plan"},{"name":"plan_type","value":"premium"},{"name":"platform","value":"partner"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":99000}],"rel":"plan-36"},{"href":"http://localhost:3000/plans/37","data":[{"name":"id","value":37},{"name":"type","value":"plan"},{"name":"annual_price","value":0.0},{"name":"has_ad_free","value":false},{"name":"has_assignments","value":false},{"name":"has_availabilities","value":false},{"name":"has_clubs","value":false},{"name":"has_custom_domain","value":false},{"name":"has_custom_fields","value":false},{"name":"has_external_email","value":false},{"name":"has_hide_marketplace_tab","value":false},{"name":"has_off_season","value":false},{"name":"has_payments","value":false},{"name":"has_paypal","value":false},{"name":"has_team_media","value":false},{"name":"has_photos","value":false,"deprecated":true,"prompt":"has_photos
152
682
  is deprecated and will be removed in a future version, use has_team_media
153
683
  instead."},{"name":"has_roster_photos","value":false},{"name":"has_rss","value":false},{"name":"has_seasons","value":false},{"name":"has_sponsorships","value":false},{"name":"has_ssl_security","value":false},{"name":"has_statistics","value":false},{"name":"has_team_colors","value":false},{"name":"has_team_logo","value":false},{"name":"has_text_messaging","value":false},{"name":"has_tracking","value":false},{"name":"has_weather","value":false},{"name":"is_active","value":true},{"name":"monthly_price","value":0.0},{"name":"monthly_price_description","value":"$15.99/month"},{"name":"name","value":"Ultra
154
- Plan"},{"name":"plan_type","value":"ultra"},{"name":"platform","value":"partner"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":99000}],"rel":"plan-37"}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/public_features","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//public_features"}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/sms_gateways","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//sms_gateways"}],"queries":[{"rel":"search","href":"http://localhost:3000/sms_gateways/search","data":[{"name":"id","value":null}]}],"items":[{"href":"http://localhost:3000/sms_gateways/acsalaska","data":[{"name":"id","value":"acsalaska"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@msg.acsalaska.com"},{"name":"name","value":"ACS
684
+ Plan"},{"name":"plan_type","value":"ultra"},{"name":"platform","value":"partner"},{"name":"platform_version","value":"0.0.0"},{"name":"upload_quota_in_mb","value":99000}],"rel":"plan-37"}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/public_features","rel":"public_features","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/public_features"}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/sms_gateways","rel":"sms_gateways","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/sms_gateways"}],"queries":[{"rel":"search","href":"http://localhost:3000/sms_gateways/search","data":[{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
685
+ number of items to return for each page. Sending this parameter with the query
686
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
687
+ number of the page to be returned. This requires that paging be turned on
688
+ by also providing the page_size parameter."}]}],"items":[{"href":"http://localhost:3000/sms_gateways/acsalaska","data":[{"name":"id","value":"acsalaska"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@msg.acsalaska.com"},{"name":"name","value":"ACS
155
689
  Alaska"}],"rel":"SmsGateway-acsalaska"},{"href":"http://localhost:3000/sms_gateways/aiowireless","data":[{"name":"id","value":"aiowireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mms.aiowireless.net"},{"name":"name","value":"AIO"}],"rel":"SmsGateway-aiowireless"},{"href":"http://localhost:3000/sms_gateways/alaska-digitel","data":[{"name":"id","value":"alaska-digitel"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mms.alaskadigitel.com"},{"name":"name","value":"Alaska
156
690
  Digitel"}],"rel":"SmsGateway-alaska-digitel"},{"href":"http://localhost:3000/sms_gateways/alltel","data":[{"name":"id","value":"alltel"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.alltelwireless.com"},{"name":"name","value":"Alltel"}],"rel":"SmsGateway-alltel"},{"href":"http://localhost:3000/sms_gateways/ameritech","data":[{"name":"id","value":"ameritech"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@paging.acswireless.com"},{"name":"name","value":"Ameritech"}],"rel":"SmsGateway-ameritech"},{"href":"http://localhost:3000/sms_gateways/appalachian-wireless","data":[{"name":"id","value":"appalachian-wireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@awsms.com"},{"name":"name","value":"Appalachian
157
- Wireless"}],"rel":"SmsGateway-appalachian-wireless"},{"href":"http://localhost:3000/sms_gateways/at&t","data":[{"name":"id","value":"at&t"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.att.net"},{"name":"name","value":"AT&T"}],"rel":"SmsGateway-at&t"},{"href":"http://localhost:3000/sms_gateways/bell-atlantic","data":[{"name":"id","value":"bell-atlantic"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@message.bam.com"},{"name":"name","value":"Bell
691
+ Wireless"}],"rel":"SmsGateway-appalachian-wireless"},{"href":"http://localhost:3000/sms_gateways/assurance-wireless","data":[{"name":"id","value":"assurance-wireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vmobl.com"},{"name":"name","value":"Assurance
692
+ Wireless"}],"rel":"SmsGateway-assurance-wireless"},{"href":"http://localhost:3000/sms_gateways/at&t","data":[{"name":"id","value":"at&t"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.att.net"},{"name":"name","value":"AT&T"}],"rel":"SmsGateway-at&t"},{"href":"http://localhost:3000/sms_gateways/bell-atlantic","data":[{"name":"id","value":"bell-atlantic"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@message.bam.com"},{"name":"name","value":"Bell
158
693
  Atlantic"}],"rel":"SmsGateway-bell-atlantic"},{"href":"http://localhost:3000/sms_gateways/bellsouthmobility","data":[{"name":"id","value":"bellsouthmobility"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@blsdcs.net"},{"name":"name","value":"Bellsouth
159
694
  Mobility"}],"rel":"SmsGateway-bellsouthmobility"},{"href":"http://localhost:3000/sms_gateways/bluegrass-cellular","data":[{"name":"id","value":"bluegrass-cellular"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.bluecell.com"},{"name":"name","value":"Bluegrass
160
695
  Cellular"}],"rel":"SmsGateway-bluegrass-cellular"},{"href":"http://localhost:3000/sms_gateways/blueskyfrog","data":[{"name":"id","value":"blueskyfrog"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@blueskyfrog.com"},{"name":"name","value":"BlueSkyFrog"}],"rel":"SmsGateway-blueskyfrog"},{"href":"http://localhost:3000/sms_gateways/boost","data":[{"name":"id","value":"boost"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@myboostmobile.com"},{"name":"name","value":"Boost
@@ -168,7 +703,8 @@ http_interactions:
168
703
  Bell"}],"rel":"SmsGateway-cincinnati-bell"},{"href":"http://localhost:3000/sms_gateways/cleartalk","data":[{"name":"id","value":"cleartalk"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.cleartalk.us"},{"name":"name","value":"ClearTalk"}],"rel":"SmsGateway-cleartalk"},{"href":"http://localhost:3000/sms_gateways/comcast","data":[{"name":"id","value":"comcast"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@comcastpcs.textmsg.com"},{"name":"name","value":"Comcast
169
704
  PCS"}],"rel":"SmsGateway-comcast"},{"href":"http://localhost:3000/sms_gateways/consumer_cellular","data":[{"name":"id","value":"consumer_cellular"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.att.net"},{"name":"name","value":"Consumer
170
705
  Cellular"}],"rel":"SmsGateway-consumer_cellular"},{"href":"http://localhost:3000/sms_gateways/credo","data":[{"name":"id","value":"credo"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@messaging.sprintpcs.com"},{"name":"name","value":"Credo
171
- Mobile"}],"rel":"SmsGateway-credo"},{"href":"http://localhost:3000/sms_gateways/flash_wireless","data":[{"name":"id","value":"flash_wireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@plspictures.com"},{"name":"name","value":"Flash
706
+ Mobile"}],"rel":"SmsGateway-credo"},{"href":"http://localhost:3000/sms_gateways/cricket-wireless","data":[{"name":"id","value":"cricket-wireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.mycricket.com"},{"name":"name","value":"Cricket
707
+ Wireless"}],"rel":"SmsGateway-cricket-wireless"},{"href":"http://localhost:3000/sms_gateways/flash_wireless","data":[{"name":"id","value":"flash_wireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@plspictures.com"},{"name":"name","value":"Flash
172
708
  Wireless"}],"rel":"SmsGateway-flash_wireless"},{"href":"http://localhost:3000/sms_gateways/gci","data":[{"name":"id","value":"gci"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobile.gci.net"},{"name":"name","value":"GCI
173
709
  (Alaska)"}],"rel":"SmsGateway-gci"},{"href":"http://localhost:3000/sms_gateways/h2o","data":[{"name":"id","value":"h2o"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.att.net"},{"name":"name","value":"h2o
174
710
  Wireless"}],"rel":"SmsGateway-h2o"},{"href":"http://localhost:3000/sms_gateways/illinoisvalleycellular","data":[{"name":"id","value":"illinoisvalleycellular"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@ivctext.com"},{"name":"name","value":"Illinois
@@ -176,10 +712,11 @@ http_interactions:
176
712
  Cellular"}],"rel":"SmsGateway-inlandcellular"},{"href":"http://localhost:3000/sms_gateways/iwireless","data":[{"name":"id","value":"iwireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@iwirelesshometext.com"},{"name":"name","value":"I-Wireless"}],"rel":"SmsGateway-iwireless"},{"href":"http://localhost:3000/sms_gateways/kajeet","data":[{"name":"id","value":"kajeet"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobile.kajeet.net"},{"name":"name","value":"kajeet"}],"rel":"SmsGateway-kajeet"},{"href":"http://localhost:3000/sms_gateways/metropcs","data":[{"name":"id","value":"metropcs"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mymetropcs.com"},{"name":"name","value":"Metro
177
713
  PCS"}],"rel":"SmsGateway-metropcs"},{"href":"http://localhost:3000/sms_gateways/mta","data":[{"name":"id","value":"mta"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.mtawireless.com"},{"name":"name","value":"mta"}],"rel":"SmsGateway-mta"},{"href":"http://localhost:3000/sms_gateways/mmode","data":[{"name":"id","value":"mmode"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mmode.com"},{"name":"name","value":"MMode"}],"rel":"SmsGateway-mmode"},{"href":"http://localhost:3000/sms_gateways/mobipcs","data":[{"name":"id","value":"mobipcs"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobipcs.net"},{"name":"name","value":"MobiPCS"}],"rel":"SmsGateway-mobipcs"},{"href":"http://localhost:3000/sms_gateways/net10","data":[{"name":"id","value":"net10"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.att.net"},{"name":"name","value":"NET10
178
714
  Wireless"}],"rel":"SmsGateway-net10"},{"href":"http://localhost:3000/sms_gateways/nex-tech","data":[{"name":"id","value":"nex-tech"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.ntwls.net"},{"name":"name","value":"Nex-Tech"}],"rel":"SmsGateway-nex-tech"},{"href":"http://localhost:3000/sms_gateways/nextel","data":[{"name":"id","value":"nextel"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@messaging.nextel.com"},{"name":"name","value":"Nextel"}],"rel":"SmsGateway-nextel"},{"href":"http://localhost:3000/sms_gateways/northwestcell","data":[{"name":"id","value":"northwestcell"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"mynwmcell.com"},{"name":"name","value":"Northwest
179
- Cell"}],"rel":"SmsGateway-northwestcell"},{"href":"http://localhost:3000/sms_gateways/ntelos","data":[{"name":"id","value":"ntelos"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@pcs.ntelos.com"},{"name":"name","value":"NTelos"}],"rel":"SmsGateway-ntelos"},{"href":"http://localhost:3000/sms_gateways/pageplus","data":[{"name":"id","value":"pageplus"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vtext.com"},{"name":"name","value":"PagePlus"}],"rel":"SmsGateway-pageplus"},{"href":"http://localhost:3000/sms_gateways/palmerwireless","data":[{"name":"id","value":"palmerwireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mymobiletxt.com"},{"name":"name","value":"Palmer
715
+ Cell"}],"rel":"SmsGateway-northwestcell"},{"href":"http://localhost:3000/sms_gateways/ntelos","data":[{"name":"id","value":"ntelos"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@pcs.ntelos.com"},{"name":"name","value":"NTelos"}],"rel":"SmsGateway-ntelos"},{"href":"http://localhost:3000/sms_gateways/other-na","data":[{"name":"id","value":"other-na"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@example.com"},{"name":"name","value":"Other
716
+ US/CA Carrier"}],"rel":"SmsGateway-other-na"},{"href":"http://localhost:3000/sms_gateways/pageplus","data":[{"name":"id","value":"pageplus"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vtext.com"},{"name":"name","value":"PagePlus"}],"rel":"SmsGateway-pageplus"},{"href":"http://localhost:3000/sms_gateways/palmerwireless","data":[{"name":"id","value":"palmerwireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mymobiletxt.com"},{"name":"name","value":"Palmer
180
717
  Wireless"}],"rel":"SmsGateway-palmerwireless"},{"href":"http://localhost:3000/sms_gateways/pioneerwireless","data":[{"name":"id","value":"pioneerwireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@zsend.com"},{"name":"name","value":"Pioneer
181
- Wireless"}],"rel":"SmsGateway-pioneerwireless"},{"href":"http://localhost:3000/sms_gateways/powertel","data":[{"name":"id","value":"powertel"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@ptel.net"},{"name":"name","value":"Powertel"}],"rel":"SmsGateway-powertel"},{"href":"http://localhost:3000/sms_gateways/presidentschoice","data":[{"name":"id","value":"presidentschoice"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobiletxt.ca"},{"name":"name","value":"President''s
182
- Choice"}],"rel":"SmsGateway-presidentschoice"},{"href":"http://localhost:3000/sms_gateways/pscwireless","data":[{"name":"id","value":"pscwireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.pscel.com"},{"name":"name","value":"PSC
718
+ Wireless"}],"rel":"SmsGateway-pioneerwireless"},{"href":"http://localhost:3000/sms_gateways/powertel","data":[{"name":"id","value":"powertel"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@ptel.net"},{"name":"name","value":"Powertel"}],"rel":"SmsGateway-powertel"},{"href":"http://localhost:3000/sms_gateways/presidents-choice","data":[{"name":"id","value":"presidents-choice"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobiletxt.ca"},{"name":"name","value":"President''s
719
+ Choice"}],"rel":"SmsGateway-presidents-choice"},{"href":"http://localhost:3000/sms_gateways/pscwireless","data":[{"name":"id","value":"pscwireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.pscel.com"},{"name":"name","value":"PSC
183
720
  Wireless"}],"rel":"SmsGateway-pscwireless"},{"href":"http://localhost:3000/sms_gateways/qwest","data":[{"name":"id","value":"qwest"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@qwestmp.com"},{"name":"name","value":"Qwest"}],"rel":"SmsGateway-qwest"},{"href":"http://localhost:3000/sms_gateways/redpocketmobile","data":[{"name":"id","value":"redpocketmobile"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.att.net"},{"name":"name","value":"Red
184
721
  Pocket Mobile"}],"rel":"SmsGateway-redpocketmobile"},{"href":"http://localhost:3000/sms_gateways/republicwireless","data":[{"name":"id","value":"republicwireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@messaging.sprintpcs.com"},{"name":"name","value":"Republic
185
722
  Wireless"}],"rel":"SmsGateway-republicwireless"},{"href":"http://localhost:3000/sms_gateways/solavei","data":[{"name":"id","value":"solavei"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@tmomail.net"},{"name":"name","value":"Solavei"}],"rel":"SmsGateway-solavei"},{"href":"http://localhost:3000/sms_gateways/southernlink","data":[{"name":"id","value":"southernlink"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@page.southernlinc.com"},{"name":"name","value":"Southern
@@ -191,8 +728,10 @@ http_interactions:
191
728
  Networks"}],"rel":"SmsGateway-stratanetworks"},{"href":"http://localhost:3000/sms_gateways/suncom","data":[{"name":"id","value":"suncom"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@tms.suncom.com"},{"name":"name","value":"Suncom"}],"rel":"SmsGateway-suncom"},{"href":"http://localhost:3000/sms_gateways/syringawireless","data":[{"name":"id","value":"syringawireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@rinasms.com"},{"name":"name","value":"Syringa
192
729
  Wireless"}],"rel":"SmsGateway-syringawireless"},{"href":"http://localhost:3000/sms_gateways/t-mobile","data":[{"name":"id","value":"t-mobile"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@tmomail.net"},{"name":"name","value":"T-Mobile"}],"rel":"SmsGateway-t-mobile"},{"href":"http://localhost:3000/sms_gateways/telus-mobility","data":[{"name":"id","value":"telus-mobility"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@msg.telus.com"},{"name":"name","value":"Telus
193
730
  Mobility"}],"rel":"SmsGateway-telus-mobility"},{"href":"http://localhost:3000/sms_gateways/textfree","data":[{"name":"id","value":"textfree"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@textfree.us"},{"name":"name","value":"TextFree"}],"rel":"SmsGateway-textfree"},{"href":"http://localhost:3000/sms_gateways/textlocal","data":[{"name":"id","value":"textlocal"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txtlocal.com"},{"name":"name","value":"TextLocal"}],"rel":"SmsGateway-textlocal"},{"href":"http://localhost:3000/sms_gateways/thumbcellular","data":[{"name":"id","value":"thumbcellular"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.thumbcellular.com"},{"name":"name","value":"Thumb
194
- Cellular"}],"rel":"SmsGateway-thumbcellular"},{"href":"http://localhost:3000/sms_gateways/ting","data":[{"name":"id","value":"ting"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@message.ting.com"},{"name":"name","value":"Ting"}],"rel":"SmsGateway-ting"},{"href":"http://localhost:3000/sms_gateways/tracfone","data":[{"name":"id","value":"tracfone"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mmst5.tracfone.com"},{"name":"name","value":"Tracfone"}],"rel":"SmsGateway-tracfone"},{"href":"http://localhost:3000/sms_gateways/union-wireless","data":[{"name":"id","value":"union-wireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@union-tel.com"},{"name":"name","value":"Union
195
- Wireless"}],"rel":"SmsGateway-union-wireless"},{"href":"http://localhost:3000/sms_gateways/us-cellular","data":[{"name":"id","value":"us-cellular"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@email.uscc.net"},{"name":"name","value":"US
731
+ Cellular"}],"rel":"SmsGateway-thumbcellular"},{"href":"http://localhost:3000/sms_gateways/ting","data":[{"name":"id","value":"ting"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@message.ting.com"},{"name":"name","value":"Ting"}],"rel":"SmsGateway-ting"},{"href":"http://localhost:3000/sms_gateways/tracfone","data":[{"name":"id","value":"tracfone"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mmst5.tracfone.com"},{"name":"name","value":"Tracfone"}],"rel":"SmsGateway-tracfone"},{"href":"http://localhost:3000/sms_gateways/ultra-mobile","data":[{"name":"id","value":"ultra-mobile"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mailmymobile.net"},{"name":"name","value":"Ultra
732
+ Mobile"}],"rel":"SmsGateway-ultra-mobile"},{"href":"http://localhost:3000/sms_gateways/union-wireless","data":[{"name":"id","value":"union-wireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@union-tel.com"},{"name":"name","value":"Union
733
+ Wireless"}],"rel":"SmsGateway-union-wireless"},{"href":"http://localhost:3000/sms_gateways/united-wireless","data":[{"name":"id","value":"united-wireless"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.unitedwireless.com"},{"name":"name","value":"United
734
+ Wireless"}],"rel":"SmsGateway-united-wireless"},{"href":"http://localhost:3000/sms_gateways/us-cellular","data":[{"name":"id","value":"us-cellular"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@email.uscc.net"},{"name":"name","value":"US
196
735
  Cellular"}],"rel":"SmsGateway-us-cellular"},{"href":"http://localhost:3000/sms_gateways/viaero","data":[{"name":"id","value":"viaero"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@viaerosms.com"},{"name":"name","value":"Viaero"}],"rel":"SmsGateway-viaero"},{"href":"http://localhost:3000/sms_gateways/virgin","data":[{"name":"id","value":"virgin"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vmobl.com"},{"name":"name","value":"Virgin
197
736
  Mobile"}],"rel":"SmsGateway-virgin"},{"href":"http://localhost:3000/sms_gateways/verizon","data":[{"name":"id","value":"verizon"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vtext.com"},{"name":"name","value":"Verizon
198
737
  Wireless"}],"rel":"SmsGateway-verizon"},{"href":"http://localhost:3000/sms_gateways/verizon-blackberry","data":[{"name":"id","value":"verizon-blackberry"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vzwpix.com"},{"name":"name","value":"Verizon
@@ -211,7 +750,8 @@ http_interactions:
211
750
  Mobile"}],"rel":"SmsGateway-koodo"},{"href":"http://localhost:3000/sms_gateways/manitoba-mts","data":[{"name":"id","value":"manitoba-mts"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@text.mts.net"},{"name":"name","value":"MTS
212
751
  (Manitoba Telecom Systems)"}],"rel":"SmsGateway-manitoba-mts"},{"href":"http://localhost:3000/sms_gateways/mobinil-egypt","data":[{"name":"id","value":"mobinil-egypt"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobinil.net"},{"name":"name","value":"Mobinil"}],"rel":"SmsGateway-mobinil-egypt"},{"href":"http://localhost:3000/sms_gateways/mobistar-belgium","data":[{"name":"id","value":"mobistar-belgium"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobistar.be"},{"name":"name","value":"Mobistar
213
752
  (Belgium)"}],"rel":"SmsGateway-mobistar-belgium"},{"href":"http://localhost:3000/sms_gateways/mobitel","data":[{"name":"id","value":"mobitel"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.mobitel.lk"},{"name":"name","value":"Mobitel"}],"rel":"SmsGateway-mobitel"},{"href":"http://localhost:3000/sms_gateways/movistar-spain","data":[{"name":"id","value":"movistar-spain"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@correo.movistar.net"},{"name":"name","value":"Movistar
214
- (Spain)"}],"rel":"SmsGateway-movistar-spain"},{"href":"http://localhost:3000/sms_gateways/mtn-south-africa","data":[{"name":"id","value":"mtn-south-africa"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@number.sms.co.za"},{"name":"name","value":"MTN
753
+ (Spain)"}],"rel":"SmsGateway-movistar-spain"},{"href":"http://localhost:3000/sms_gateways/mtel-bulgaria","data":[{"name":"id","value":"mtel-bulgaria"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.mtel.net"},{"name":"name","value":"Mtel
754
+ (Bulgaria)"}],"rel":"SmsGateway-mtel-bulgaria"},{"href":"http://localhost:3000/sms_gateways/mtn-south-africa","data":[{"name":"id","value":"mtn-south-africa"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@number.sms.co.za"},{"name":"name","value":"MTN
215
755
  (South Africa)"}],"rel":"SmsGateway-mtn-south-africa"},{"href":"http://localhost:3000/sms_gateways/netcom-norway","data":[{"name":"id","value":"netcom-norway"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.netcom.no"},{"name":"name","value":"Netcom
216
756
  (Norway)"}],"rel":"SmsGateway-netcom-norway"},{"href":"http://localhost:3000/sms_gateways/northerntel-canada","data":[{"name":"id","value":"northerntel-canada"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.northerntelmobility.com"},{"name":"name","value":"NorthernTel
217
757
  (Canada)"}],"rel":"SmsGateway-northerntel-canada"},{"href":"http://localhost:3000/sms_gateways/o2-germany","data":[{"name":"id","value":"o2-germany"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@o2online.de"},{"name":"name","value":"o2
@@ -227,7 +767,8 @@ http_interactions:
227
767
  (canada)"}],"rel":"SmsGateway-sasktel-canada"},{"href":"http://localhost:3000/sms_gateways/sfr-france","data":[{"name":"id","value":"sfr-france"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sfr.fr"},{"name":"name","value":"SFR
228
768
  (France)"}],"rel":"SmsGateway-sfr-france"},{"href":"http://localhost:3000/sms_gateways/simply-mobile","data":[{"name":"id","value":"simply-mobile"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@smtext.com"},{"name":"name","value":"Simply
229
769
  Mobile"}],"rel":"SmsGateway-simply-mobile"},{"href":"http://localhost:3000/sms_gateways/tele2","data":[{"name":"id","value":"tele2"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.tele2.se"},{"name":"name","value":"Tele2"}],"rel":"SmsGateway-tele2"},{"href":"http://localhost:3000/sms_gateways/telecom-mobile","data":[{"name":"id","value":"telecom-mobile"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@etxt.co.nz"},{"name":"name","value":"Telecom
230
- Mobile"}],"rel":"SmsGateway-telecom-mobile"},{"href":"http://localhost:3000/sms_gateways/telia","data":[{"name":"id","value":"telia"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@gsm1800.telia.dk"},{"name":"name","value":"Telia
770
+ Mobile"}],"rel":"SmsGateway-telecom-mobile"},{"href":"http://localhost:3000/sms_gateways/telenor-bulgaria","data":[{"name":"id","value":"telenor-bulgaria"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.telenor.bg"},{"name":"name","value":"Telenor
771
+ (Bulgaria)"}],"rel":"SmsGateway-telenor-bulgaria"},{"href":"http://localhost:3000/sms_gateways/telia","data":[{"name":"id","value":"telia"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@gsm1800.telia.dk"},{"name":"name","value":"Telia
231
772
  (Denmark)"}],"rel":"SmsGateway-telia"},{"href":"http://localhost:3000/sms_gateways/telia_se","data":[{"name":"id","value":"telia_se"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.comviq.se"},{"name":"name","value":"Telia
232
773
  (Sweden)"}],"rel":"SmsGateway-telia_se"},{"href":"http://localhost:3000/sms_gateways/tbay","data":[{"name":"id","value":"tbay"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@tbayteltxt.net"},{"name":"name","value":"TBayTel
233
774
  Mobility (Canada)"}],"rel":"SmsGateway-tbay"},{"href":"http://localhost:3000/sms_gateways/t-mobile-austria","data":[{"name":"id","value":"t-mobile-austria"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@sms.t-mobile.at"},{"name":"name","value":"T-Mobile
@@ -240,8 +781,7 @@ http_interactions:
240
781
  (Czech Republic)"}],"rel":"SmsGateway-telefonica-czechrepublic"},{"href":"http://localhost:3000/sms_gateways/telenor","data":[{"name":"id","value":"telenor"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@mobilpost.com"},{"name":"name","value":"Telenor"}],"rel":"SmsGateway-telenor"},{"href":"http://localhost:3000/sms_gateways/telus-canada","data":[{"name":"id","value":"telus-canada"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@msg.telus.com"},{"name":"name","value":"Telus
241
782
  (Canada)"}],"rel":"SmsGateway-telus-canada"},{"href":"http://localhost:3000/sms_gateways/tim","data":[{"name":"id","value":"tim"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@timnet.com"},{"name":"name","value":"TIM
242
783
  (Italy)"}],"rel":"SmsGateway-tim"},{"href":"http://localhost:3000/sms_gateways/three-italia","data":[{"name":"id","value":"three-italia"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@tre.it"},{"name":"name","value":"3
243
- Italia"}],"rel":"SmsGateway-three-italia"},{"href":"http://localhost:3000/sms_gateways/videotron","data":[{"name":"id","value":"videotron"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@videotron.ca"},{"name":"name","value":"Videotron
244
- (Canada)"}],"rel":"SmsGateway-videotron"},{"href":"http://localhost:3000/sms_gateways/virgin-canada","data":[{"name":"id","value":"virgin-canada"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vmobile.ca"},{"name":"name","value":"Virgin
784
+ Italia"}],"rel":"SmsGateway-three-italia"},{"href":"http://localhost:3000/sms_gateways/virgin-canada","data":[{"name":"id","value":"virgin-canada"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vmobile.ca"},{"name":"name","value":"Virgin
245
785
  (Canada)"}],"rel":"SmsGateway-virgin-canada"},{"href":"http://localhost:3000/sms_gateways/vodacom-south-africa","data":[{"name":"id","value":"vodacom-south-africa"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@voda.co.za"},{"name":"name","value":"Vodacom
246
786
  (South Africa)"}],"rel":"SmsGateway-vodacom-south-africa"},{"href":"http://localhost:3000/sms_gateways/vodafone-germany","data":[{"name":"id","value":"vodafone-germany"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vodafone-sms.de"},{"name":"name","value":"Vodafone
247
787
  (Germany)"}],"rel":"SmsGateway-vodafone-germany"},{"href":"http://localhost:3000/sms_gateways/vodafone-egypt","data":[{"name":"id","value":"vodafone-egypt"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vodafone.com.eg"},{"name":"name","value":"Vodafone
@@ -263,58 +803,88 @@ http_interactions:
263
803
  (New Zealand)"}],"rel":"SmsGateway-vodafone-nz"},{"href":"http://localhost:3000/sms_gateways/vodafone-spain","data":[{"name":"id","value":"vodafone-spain"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@vodafone.es"},{"name":"name","value":"Vodafone
264
804
  (Japan - Spain)"}],"rel":"SmsGateway-vodafone-spain"},{"href":"http://localhost:3000/sms_gateways/wind","data":[{"name":"id","value":"wind"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@wind.it"},{"name":"name","value":"Wind
265
805
  (Italy)"}],"rel":"SmsGateway-wind"},{"href":"http://localhost:3000/sms_gateways/windmobile","data":[{"name":"id","value":"windmobile"},{"name":"type","value":"SmsGateway"},{"name":"domain","value":"@txt.windmobile.ca"},{"name":"name","value":"Wind
266
- Mobile (Canada)"}],"rel":"SmsGateway-windmobile"}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/sponsors","template":{"data":[{"name":"team_id","value":null},{"name":"name","value":null},{"name":"url","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//sponsors"}],"queries":[{"rel":"search","href":"http://localhost:3000/sponsors/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}],"commands":[{"rel":"upload_sponsor_logo","href":"http://localhost:3000/sponsors/upload_sponsor_logo","prompt":"Upload
267
- a sponsor logo.","data":[{"name":"sponsor_id","value":null},{"name":"file","value":null}]},{"rel":"remove_sponsor_logo","href":"http://localhost:3000/sponsors/remove_sponsor_logo","prompt":"translation
268
- missing: en.prompts.sponsors.commands.remove_sponsor_logo","data":[{"name":"sponsor_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/sports","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//sports"}],"queries":[{"rel":"search","href":"http://localhost:3000/sports/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]}],"items":[{"href":"http://localhost:3000/sports/1","data":[{"name":"id","value":1},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Basketball"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-1"},{"href":"http://localhost:3000/sports/2","data":[{"name":"id","value":2},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Soccer"},{"name":"overtime_abbrev","value":"AET"},{"name":"overtime_label","value":"Extra
806
+ Mobile (Canada)"}],"rel":"SmsGateway-windmobile"}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/sponsors","rel":"sponsers","template":{"data":[{"name":"team_id","value":null},{"name":"name","value":null},{"name":"url","value":null},{"name":"type","value":"sponsor"}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/sponsors"}],"queries":[{"rel":"search","href":"http://localhost:3000/sponsors/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
807
+ number of items to return for each page. Sending this parameter with the query
808
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
809
+ number of the page to be returned. This requires that paging be turned on
810
+ by also providing the page_size parameter."}]}],"commands":[{"rel":"upload_sponsor_logo","href":"http://localhost:3000/sponsors/upload_sponsor_logo","prompt":"Upload
811
+ a sponsor logo. This must be a multi-part POST.","data":[{"name":"sponsor_id","value":null},{"name":"file","value":null}]},{"rel":"remove_sponsor_logo","href":"http://localhost:3000/sponsors/remove_sponsor_logo","prompt":"translation
812
+ missing: en.prompts.sponsors.commands.remove_sponsor_logo","data":[{"name":"sponsor_id","value":null}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/sports","rel":"sports","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/sports"}],"queries":[{"rel":"search","href":"http://localhost:3000/sports/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]}],"items":[{"href":"http://localhost:3000/sports/1","data":[{"name":"id","value":1},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Basketball"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-basketball.png"}],"rel":"sport-1"},{"href":"http://localhost:3000/sports/2","data":[{"name":"id","value":2},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Soccer"},{"name":"overtime_abbrev","value":"AET"},{"name":"overtime_label","value":"Extra
269
813
  Time"},{"name":"shootout_abbrev","value":"PK"},{"name":"shootout_label","value":"Penalty
270
- Kicks"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-2"},{"href":"http://localhost:3000/sports/4","data":[{"name":"id","value":4},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Softball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-4"},{"href":"http://localhost:3000/sports/5","data":[{"name":"id","value":5},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Baseball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-5"},{"href":"http://localhost:3000/sports/6","data":[{"name":"id","value":6},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Volleyball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-6"},{"href":"http://localhost:3000/sports/7","data":[{"name":"id","value":7},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Football"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-7"},{"href":"http://localhost:3000/sports/8","data":[{"name":"id","value":8},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cricket"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-8"},{"href":"http://localhost:3000/sports/9","data":[{"name":"id","value":9},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Rugby"},{"name":"overtime_abbrev","value":"ET"},{"name":"overtime_label","value":"Extra
814
+ Kicks"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-soccer.png"}],"rel":"sport-2"},{"href":"http://localhost:3000/sports/4","data":[{"name":"id","value":4},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Softball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-softball.png"}],"rel":"sport-4"},{"href":"http://localhost:3000/sports/5","data":[{"name":"id","value":5},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Baseball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-baseball.png"}],"rel":"sport-5"},{"href":"http://localhost:3000/sports/6","data":[{"name":"id","value":6},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Volleyball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-volleyball.png"}],"rel":"sport-6"},{"href":"http://localhost:3000/sports/7","data":[{"name":"id","value":7},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Football"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-football.png"}],"rel":"sport-7"},{"href":"http://localhost:3000/sports/8","data":[{"name":"id","value":8},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cricket"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-cricket.png"}],"rel":"sport-8"},{"href":"http://localhost:3000/sports/9","data":[{"name":"id","value":9},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Rugby"},{"name":"overtime_abbrev","value":"ET"},{"name":"overtime_label","value":"Extra
271
815
  Time"},{"name":"shootout_abbrev","value":"KC"},{"name":"shootout_label","value":"Kicking
272
- Competition"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-9"},{"href":"http://localhost:3000/sports/10","data":[{"name":"id","value":10},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Lacrosse"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-10"},{"href":"http://localhost:3000/sports/11","data":[{"name":"id","value":11},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wiffleball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-11"},{"href":"http://localhost:3000/sports/13","data":[{"name":"id","value":13},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Bowling"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-13"},{"href":"http://localhost:3000/sports/14","data":[{"name":"id","value":14},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Dodgeball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-14"},{"href":"http://localhost:3000/sports/15","data":[{"name":"id","value":15},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Field
273
- Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-15"},{"href":"http://localhost:3000/sports/16","data":[{"name":"id","value":16},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Ice
274
- Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-16"},{"href":"http://localhost:3000/sports/17","data":[{"name":"id","value":17},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Inline
275
- Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-17"},{"href":"http://localhost:3000/sports/18","data":[{"name":"id","value":18},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Kickball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-18"},{"href":"http://localhost:3000/sports/19","data":[{"name":"id","value":19},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Paintball"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-19"},{"href":"http://localhost:3000/sports/20","data":[{"name":"id","value":20},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Polo"},{"name":"overtime_abbrev","value":"SD"},{"name":"overtime_label","value":"Sudden
276
- Death"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-20"},{"href":"http://localhost:3000/sports/21","data":[{"name":"id","value":21},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Rowing"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-21"},{"href":"http://localhost:3000/sports/22","data":[{"name":"id","value":22},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Ultimate"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-22"},{"href":"http://localhost:3000/sports/23","data":[{"name":"id","value":23},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Water
277
- Polo"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-23"},{"href":"http://localhost:3000/sports/24","data":[{"name":"id","value":24},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Other
278
- Sport"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-24"},{"href":"http://localhost:3000/sports/25","data":[{"name":"id","value":25},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Dragon
279
- Boat"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-25"},{"href":"http://localhost:3000/sports/26","data":[{"name":"id","value":26},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Australian
816
+ Competition"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-rugby.png"}],"rel":"sport-9"},{"href":"http://localhost:3000/sports/10","data":[{"name":"id","value":10},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Lacrosse"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-lacrosse.png"}],"rel":"sport-10"},{"href":"http://localhost:3000/sports/11","data":[{"name":"id","value":11},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wiffleball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-wiffleball.png"}],"rel":"sport-11"},{"href":"http://localhost:3000/sports/13","data":[{"name":"id","value":13},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Bowling"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-bowling.png"}],"rel":"sport-13"},{"href":"http://localhost:3000/sports/14","data":[{"name":"id","value":14},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Dodgeball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-dodgeball.png"}],"rel":"sport-14"},{"href":"http://localhost:3000/sports/15","data":[{"name":"id","value":15},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Field
817
+ Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-field_hockey.png"}],"rel":"sport-15"},{"href":"http://localhost:3000/sports/16","data":[{"name":"id","value":16},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Ice
818
+ Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-ice_hockey.png"}],"rel":"sport-16"},{"href":"http://localhost:3000/sports/17","data":[{"name":"id","value":17},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Inline
819
+ Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-inline_hockey.png"}],"rel":"sport-17"},{"href":"http://localhost:3000/sports/18","data":[{"name":"id","value":18},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Kickball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-kickball.png"}],"rel":"sport-18"},{"href":"http://localhost:3000/sports/19","data":[{"name":"id","value":19},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Paintball"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-paintball.png"}],"rel":"sport-19"},{"href":"http://localhost:3000/sports/20","data":[{"name":"id","value":20},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Polo"},{"name":"overtime_abbrev","value":"SD"},{"name":"overtime_label","value":"Sudden
820
+ Death"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-polo.png"}],"rel":"sport-20"},{"href":"http://localhost:3000/sports/21","data":[{"name":"id","value":21},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Rowing"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-rowing.png"}],"rel":"sport-21"},{"href":"http://localhost:3000/sports/22","data":[{"name":"id","value":22},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Ultimate"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-ultimate.png"}],"rel":"sport-22"},{"href":"http://localhost:3000/sports/23","data":[{"name":"id","value":23},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Water
821
+ Polo"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-water_polo.png"}],"rel":"sport-23"},{"href":"http://localhost:3000/sports/24","data":[{"name":"id","value":24},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Other
822
+ Sport"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-other_sport.png"}],"rel":"sport-24"},{"href":"http://localhost:3000/sports/25","data":[{"name":"id","value":25},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Dragon
823
+ Boat"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-dragon_boat.png"}],"rel":"sport-25"},{"href":"http://localhost:3000/sports/26","data":[{"name":"id","value":26},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Australian
280
824
  Football"},{"name":"overtime_abbrev","value":"ET"},{"name":"overtime_label","value":"Extra
281
- time"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-26"},{"href":"http://localhost:3000/sports/27","data":[{"name":"id","value":27},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Badminton"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-27"},{"href":"http://localhost:3000/sports/28","data":[{"name":"id","value":28},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Bandy"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-28"},{"href":"http://localhost:3000/sports/29","data":[{"name":"id","value":29},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Bocce"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-29"},{"href":"http://localhost:3000/sports/30","data":[{"name":"id","value":30},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Broomball"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-30"},{"href":"http://localhost:3000/sports/31","data":[{"name":"id","value":31},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cheerleading"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-31"},{"href":"http://localhost:3000/sports/32","data":[{"name":"id","value":32},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":true},{"name":"low_score_wins","value":false},{"name":"name","value":"Chess"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-32"},{"href":"http://localhost:3000/sports/33","data":[{"name":"id","value":33},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Croquet"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-33"},{"href":"http://localhost:3000/sports/34","data":[{"name":"id","value":34},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Curling"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-34"},{"href":"http://localhost:3000/sports/35","data":[{"name":"id","value":35},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cycling"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-35"},{"href":"http://localhost:3000/sports/36","data":[{"name":"id","value":36},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Fencing"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-36"},{"href":"http://localhost:3000/sports/37","data":[{"name":"id","value":37},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Foosball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-37"},{"href":"http://localhost:3000/sports/38","data":[{"name":"id","value":38},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Hurling"},{"name":"overtime_abbrev","value":"ET"},{"name":"overtime_label","value":"Extra
282
- Time"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-38"},{"href":"http://localhost:3000/sports/39","data":[{"name":"id","value":39},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Indoor
283
- Soccer"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-39"},{"href":"http://localhost:3000/sports/40","data":[{"name":"id","value":40},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Netball"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-40"},{"href":"http://localhost:3000/sports/41","data":[{"name":"id","value":41},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Running"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-41"},{"href":"http://localhost:3000/sports/42","data":[{"name":"id","value":42},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Swimming"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-42"},{"href":"http://localhost:3000/sports/43","data":[{"name":"id","value":43},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Tennis"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-Break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-43"},{"href":"http://localhost:3000/sports/44","data":[{"name":"id","value":44},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Floorball"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Extra
284
- Time"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-44"},{"href":"http://localhost:3000/sports/45","data":[{"name":"id","value":45},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Petanque"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-45"},{"href":"http://localhost:3000/sports/46","data":[{"name":"id","value":46},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":true},{"name":"name","value":"Golf"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Playoff"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-46"},{"href":"http://localhost:3000/sports/47","data":[{"name":"id","value":47},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Sailing"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-47"},{"href":"http://localhost:3000/sports/48","data":[{"name":"id","value":48},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Roller
285
- Derby"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-48"},{"href":"http://localhost:3000/sports/49","data":[{"name":"id","value":49},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wrestling"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-49"},{"href":"http://localhost:3000/sports/50","data":[{"name":"id","value":50},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Ki-O-Rahi"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-50"},{"href":"http://localhost:3000/sports/51","data":[{"name":"id","value":51},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Ringette"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-51"},{"href":"http://localhost:3000/sports/52","data":[{"name":"id","value":52},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":true},{"name":"low_score_wins","value":false},{"name":"name","value":"Non-Sport
286
- Group"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-52"},{"href":"http://localhost:3000/sports/53","data":[{"name":"id","value":53},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Outrigger"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-53"},{"href":"http://localhost:3000/sports/54","data":[{"name":"id","value":54},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cow
825
+ time"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-australian_football.png"}],"rel":"sport-26"},{"href":"http://localhost:3000/sports/27","data":[{"name":"id","value":27},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Badminton"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-badminton.png"}],"rel":"sport-27"},{"href":"http://localhost:3000/sports/28","data":[{"name":"id","value":28},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Bandy"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-bandy.png"}],"rel":"sport-28"},{"href":"http://localhost:3000/sports/29","data":[{"name":"id","value":29},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Bocce"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-bocce.png"}],"rel":"sport-29"},{"href":"http://localhost:3000/sports/30","data":[{"name":"id","value":30},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Broomball"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-broomball.png"}],"rel":"sport-30"},{"href":"http://localhost:3000/sports/31","data":[{"name":"id","value":31},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cheerleading"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-cheerleading.png"}],"rel":"sport-31"},{"href":"http://localhost:3000/sports/32","data":[{"name":"id","value":32},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Chess"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-chess.png"}],"rel":"sport-32"},{"href":"http://localhost:3000/sports/33","data":[{"name":"id","value":33},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Croquet"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-croquet.png"}],"rel":"sport-33"},{"href":"http://localhost:3000/sports/34","data":[{"name":"id","value":34},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Curling"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-curling.png"}],"rel":"sport-34"},{"href":"http://localhost:3000/sports/35","data":[{"name":"id","value":35},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cycling"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-cycling.png"}],"rel":"sport-35"},{"href":"http://localhost:3000/sports/36","data":[{"name":"id","value":36},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Fencing"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-fencing.png"}],"rel":"sport-36"},{"href":"http://localhost:3000/sports/37","data":[{"name":"id","value":37},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Foosball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-foosball.png"}],"rel":"sport-37"},{"href":"http://localhost:3000/sports/38","data":[{"name":"id","value":38},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Hurling"},{"name":"overtime_abbrev","value":"ET"},{"name":"overtime_label","value":"Extra
826
+ Time"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-hurling.png"}],"rel":"sport-38"},{"href":"http://localhost:3000/sports/39","data":[{"name":"id","value":39},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Indoor
827
+ Soccer"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-indoor_soccer.png"}],"rel":"sport-39"},{"href":"http://localhost:3000/sports/40","data":[{"name":"id","value":40},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Netball"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-netball.png"}],"rel":"sport-40"},{"href":"http://localhost:3000/sports/41","data":[{"name":"id","value":41},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Running"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-running.png"}],"rel":"sport-41"},{"href":"http://localhost:3000/sports/42","data":[{"name":"id","value":42},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Swimming"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-swimming.png"}],"rel":"sport-42"},{"href":"http://localhost:3000/sports/43","data":[{"name":"id","value":43},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Tennis"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-Break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-tennis.png"}],"rel":"sport-43"},{"href":"http://localhost:3000/sports/44","data":[{"name":"id","value":44},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Floorball"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Extra
828
+ Time"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-floorball.png"}],"rel":"sport-44"},{"href":"http://localhost:3000/sports/45","data":[{"name":"id","value":45},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Petanque"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-petanque.png"}],"rel":"sport-45"},{"href":"http://localhost:3000/sports/46","data":[{"name":"id","value":46},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":true},{"name":"name","value":"Golf"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Playoff"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-golf.png"}],"rel":"sport-46"},{"href":"http://localhost:3000/sports/47","data":[{"name":"id","value":47},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Sailing"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-sailing.png"}],"rel":"sport-47"},{"href":"http://localhost:3000/sports/48","data":[{"name":"id","value":48},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Roller
829
+ Derby"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-roller_derby.png"}],"rel":"sport-48"},{"href":"http://localhost:3000/sports/49","data":[{"name":"id","value":49},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wrestling"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-wrestling.png"}],"rel":"sport-49"},{"href":"http://localhost:3000/sports/50","data":[{"name":"id","value":50},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Ki-O-Rahi"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-ki-o-rahi.png"}],"rel":"sport-50"},{"href":"http://localhost:3000/sports/51","data":[{"name":"id","value":51},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Ringette"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-ringette.png"}],"rel":"sport-51"},{"href":"http://localhost:3000/sports/52","data":[{"name":"id","value":52},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":true},{"name":"low_score_wins","value":false},{"name":"name","value":"Non-Sport
830
+ Group"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-non-sport_group.png"}],"rel":"sport-52"},{"href":"http://localhost:3000/sports/53","data":[{"name":"id","value":53},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Outrigger"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-outrigger.png"}],"rel":"sport-53"},{"href":"http://localhost:3000/sports/54","data":[{"name":"id","value":54},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cow
287
831
  Tipping"},{"name":"overtime_abbrev","value":"ET"},{"name":"overtime_label","value":"Extra
288
- Tips"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":true}],"rel":"sport-54"},{"href":"http://localhost:3000/sports/55","data":[{"name":"id","value":55},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Racquetball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-55"},{"href":"http://localhost:3000/sports/56","data":[{"name":"id","value":56},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Gymnastics-Men"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-Break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-56"},{"href":"http://localhost:3000/sports/57","data":[{"name":"id","value":57},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Gymnastics-Women"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-Break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-57"},{"href":"http://localhost:3000/sports/58","data":[{"name":"id","value":58},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Track
289
- And Field"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-58"},{"href":"http://localhost:3000/sports/59","data":[{"name":"id","value":59},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Archery"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-Break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-59"},{"href":"http://localhost:3000/sports/60","data":[{"name":"id","value":60},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Floor
290
- Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-60"},{"href":"http://localhost:3000/sports/61","data":[{"name":"id","value":61},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Slo-pitch"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-61"},{"href":"http://localhost:3000/sports/62","data":[{"name":"id","value":62},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Street
291
- Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-62"},{"href":"http://localhost:3000/sports/63","data":[{"name":"id","value":63},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Pickleball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-63"},{"href":"http://localhost:3000/sports/64","data":[{"name":"id","value":64},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wheelchair
292
- Basketball"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-64"},{"href":"http://localhost:3000/sports/65","data":[{"name":"id","value":65},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Sled
293
- Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-65"},{"href":"http://localhost:3000/sports/66","data":[{"name":"id","value":66},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wheelchair
294
- Softball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-66"},{"href":"http://localhost:3000/sports/67","data":[{"name":"id","value":67},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Quad
832
+ Tips"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-cow_tipping.png"}],"rel":"sport-54"},{"href":"http://localhost:3000/sports/55","data":[{"name":"id","value":55},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Racquetball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-racquetball.png"}],"rel":"sport-55"},{"href":"http://localhost:3000/sports/56","data":[{"name":"id","value":56},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Gymnastics-Men"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-Break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-gymnastics-men.png"}],"rel":"sport-56"},{"href":"http://localhost:3000/sports/57","data":[{"name":"id","value":57},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Gymnastics-Women"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-Break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-gymnastics-women.png"}],"rel":"sport-57"},{"href":"http://localhost:3000/sports/58","data":[{"name":"id","value":58},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Track
833
+ And Field"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-track_and_field.png"}],"rel":"sport-58"},{"href":"http://localhost:3000/sports/59","data":[{"name":"id","value":59},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Archery"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-Break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-archery.png"}],"rel":"sport-59"},{"href":"http://localhost:3000/sports/60","data":[{"name":"id","value":60},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Floor
834
+ Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-floor_hockey.png"}],"rel":"sport-60"},{"href":"http://localhost:3000/sports/61","data":[{"name":"id","value":61},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Slo-pitch"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-slo-pitch.png"}],"rel":"sport-61"},{"href":"http://localhost:3000/sports/62","data":[{"name":"id","value":62},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Street
835
+ Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-street_hockey.png"}],"rel":"sport-62"},{"href":"http://localhost:3000/sports/63","data":[{"name":"id","value":63},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Pickleball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-pickleball.png"}],"rel":"sport-63"},{"href":"http://localhost:3000/sports/64","data":[{"name":"id","value":64},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wheelchair
836
+ Basketball"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-wheelchair_basketball.png"}],"rel":"sport-64"},{"href":"http://localhost:3000/sports/65","data":[{"name":"id","value":65},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Sled
837
+ Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-sled_hockey.png"}],"rel":"sport-65"},{"href":"http://localhost:3000/sports/66","data":[{"name":"id","value":66},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wheelchair
838
+ Softball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-wheelchair_softball.png"}],"rel":"sport-66"},{"href":"http://localhost:3000/sports/67","data":[{"name":"id","value":67},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Quad
295
839
  Rugby"},{"name":"overtime_abbrev","value":"ET"},{"name":"overtime_label","value":"Extra
296
840
  Time"},{"name":"shootout_abbrev","value":"KC"},{"name":"shootout_label","value":"Kicking
297
- Competition"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-67"},{"href":"http://localhost:3000/sports/68","data":[{"name":"id","value":68},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Handcycling"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-68"},{"href":"http://localhost:3000/sports/69","data":[{"name":"id","value":69},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Adaptive
298
- Sports"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-69"},{"href":"http://localhost:3000/sports/70","data":[{"name":"id","value":70},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cross
299
- Country"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-70"},{"href":"http://localhost:3000/sports/71","data":[{"name":"id","value":71},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cross
300
- Country Skiing"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-71"},{"href":"http://localhost:3000/sports/72","data":[{"name":"id","value":72},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Alpine
301
- Skiing"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"rel":"sport-72"},{"href":"http://localhost:3000/sports/73","data":[{"name":"id","value":73},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wheelchair
302
- Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-73"},{"href":"http://localhost:3000/sports/74","data":[{"name":"id","value":74},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wheelchair
303
- Volleyball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-74"},{"href":"http://localhost:3000/sports/75","data":[{"name":"id","value":75},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wheelchair
304
- Lacrosse"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-75"},{"href":"http://localhost:3000/sports/76","data":[{"name":"id","value":76},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Horseback
305
- Riding"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-76"},{"href":"http://localhost:3000/sports/77","data":[{"name":"id","value":77},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Diving"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"rel":"sport-77"}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/statistics","template":{"data":[{"name":"acronym","value":null},{"name":"always_display_decimals","value":null},{"name":"formula","value":null},{"name":"is_in_descending_order","value":null},{"name":"display_zero_totals","value":null},{"name":"is_percentage","value":null},{"name":"is_private","value":null},{"name":"is_team_statistic","value":null},{"name":"is_top_statistic","value":null},{"name":"name","value":null},{"name":"precision","value":null},{"name":"statistic_group_id","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_group","href":"http://localhost:3000/statistic_groups"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//statistics"}],"queries":[{"rel":"search","href":"http://localhost:3000/statistics/search","data":[{"name":"statistic_group_id","value":null},{"name":"team_id","value":null},{"name":"id","value":null}]}],"commands":[{"rel":"reorder_statistics","href":"http://localhost:3000/statistics/reorder","prompt":"reorder
306
- the statistics based on the sorted_ids provided","data":[{"name":"team_id","value":null},{"name":"sorted_ids","value":null,"prompt":"translation
307
- missing: en.prompts.statistics.commands.parameters.reorder.sorted_ids"}]},{"rel":"import_from_template","href":"http://localhost:3000/statistics/import_from_template","prompt":"import
841
+ Competition"},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-quad_rugby.png"}],"rel":"sport-67"},{"href":"http://localhost:3000/sports/68","data":[{"name":"id","value":68},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Handcycling"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-handcycling.png"}],"rel":"sport-68"},{"href":"http://localhost:3000/sports/69","data":[{"name":"id","value":69},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Adaptive
842
+ Sports"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-adaptive_sports.png"}],"rel":"sport-69"},{"href":"http://localhost:3000/sports/70","data":[{"name":"id","value":70},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cross
843
+ Country"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-cross_country.png"}],"rel":"sport-70"},{"href":"http://localhost:3000/sports/71","data":[{"name":"id","value":71},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Cross
844
+ Country Skiing"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-cross_country_skiing.png"}],"rel":"sport-71"},{"href":"http://localhost:3000/sports/72","data":[{"name":"id","value":72},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Alpine
845
+ Skiing"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-alpine_skiing.png"}],"rel":"sport-72"},{"href":"http://localhost:3000/sports/73","data":[{"name":"id","value":73},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":true},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wheelchair
846
+ Hockey"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":"SO"},{"name":"shootout_label","value":"Shootout"},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-wheelchair_hockey.png"}],"rel":"sport-73"},{"href":"http://localhost:3000/sports/74","data":[{"name":"id","value":74},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wheelchair
847
+ Volleyball"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-wheelchair_volleyball.png"}],"rel":"sport-74"},{"href":"http://localhost:3000/sports/75","data":[{"name":"id","value":75},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Wheelchair
848
+ Lacrosse"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-wheelchair_lacrosse.png"}],"rel":"sport-75"},{"href":"http://localhost:3000/sports/76","data":[{"name":"id","value":76},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Horseback
849
+ Riding"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-horseback_riding.png"}],"rel":"sport-76"},{"href":"http://localhost:3000/sports/77","data":[{"name":"id","value":77},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Diving"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":true},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-diving.png"}],"rel":"sport-77"},{"href":"http://localhost:3000/sports/78","data":[{"name":"id","value":78},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Quidditch"},{"name":"overtime_abbrev","value":"OT"},{"name":"overtime_label","value":"Overtime"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":true},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-quidditch.png"}],"rel":"sport-78"},{"href":"http://localhost:3000/sports/79","data":[{"name":"id","value":79},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":false},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":true},{"name":"low_score_wins","value":false},{"name":"name","value":"Musical
850
+ Group"},{"name":"overtime_abbrev","value":null},{"name":"overtime_label","value":null},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-musical_group.png"}],"rel":"sport-79"},{"href":"http://localhost:3000/sports/80","data":[{"name":"id","value":80},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Dance"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-Break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-dance.png"}],"rel":"sport-80"},{"href":"http://localhost:3000/sports/81","data":[{"name":"id","value":81},{"name":"type","value":"sport"},{"name":"has_customized_language","value":false},{"name":"has_overtime","value":true},{"name":"has_shootouts","value":false},{"name":"is_non_sport","value":false},{"name":"low_score_wins","value":false},{"name":"name","value":"Gymnastics-Coed"},{"name":"overtime_abbrev","value":"TB"},{"name":"overtime_label","value":"Tie-Break"},{"name":"shootout_abbrev","value":null},{"name":"shootout_label","value":null},{"name":"tracks_overtime_losses","value":false},{"name":"tracks_points","value":false},{"name":"has_statistic_template","value":false}],"links":[{"rel":"sport_logo","href":"http://9720728c11b014fc3f7c-401599d8c2efd31ed32bcf970d759503.r67.cf1.rackcdn.com/sport_logos/logo-gymnastics-coed.png"}],"rel":"sport-81"}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/statistics","rel":"statistics","template":{"data":[{"name":"acronym","value":null},{"name":"always_display_decimals","value":null},{"name":"formula","value":null},{"name":"is_in_descending_order","value":null},{"name":"display_zero_totals","value":null},{"name":"is_percentage","value":null},{"name":"is_private","value":null},{"name":"is_team_statistic","value":null},{"name":"is_top_statistic","value":null},{"name":"name","value":null},{"name":"precision","value":null},{"name":"statistic_group_id","value":null},{"name":"team_id","value":null},{"name":"type","value":"statistic"}]},"links":[{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_group","href":"http://localhost:3000/statistic_groups"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/statistics"}],"queries":[{"rel":"search","href":"http://localhost:3000/statistics/search","data":[{"name":"statistic_group_id","value":null},{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
851
+ number of items to return for each page. Sending this parameter with the query
852
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
853
+ number of the page to be returned. This requires that paging be turned on
854
+ by also providing the page_size parameter."}]}],"commands":[{"rel":"reorder_statistics","href":"http://localhost:3000/statistics/reorder","prompt":"reorder
855
+ the statistics based on the sorted_ids provided","data":[{"name":"team_id","value":null},{"name":"sorted_ids","value":null,"prompt":"An
856
+ array of the ids in the order that they are to be moved to"}]},{"rel":"import_from_template","href":"http://localhost:3000/statistics/import_from_template","prompt":"import
308
857
  all statistics and statistic groups from a template of a sport_id to a specified
309
858
  destination_team_id","data":[{"name":"destination_team_id","value":null},{"name":"sport_id","value":null}]},{"rel":"import_from_team","href":"http://localhost:3000/statistics/import_from_team","prompt":"import
310
- all statistics and statistic groups from a source_team_id to a destination_team_id","data":[{"name":"source_team_id","value":null},{"name":"destination_team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/statistic_data","template":{"data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"event_id","value":null},{"name":"statistic_id","value":null},{"name":"value","value":null}]},"links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//statistic_data"},{"rel":"event","href":"http://localhost:3000/events"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"team","href":"http://localhost:3000/teams"}],"queries":[{"rel":"search","href":"http://localhost:3000/statistic_data/search","data":[{"name":"id","value":null},{"name":"event_id","value":null},{"name":"statistic_id","value":null},{"name":"team_id","value":null}]}],"commands":[{"rel":"bulk_update_statistic_data","href":"http://localhost:3000/statistic_data/bulk_update","prompt":"translation
859
+ all statistics and statistic groups from a source_team_id to a destination_team_id","data":[{"name":"source_team_id","value":null},{"name":"destination_team_id","value":null}]}]}},{"collection":{"version":"3.206.1","prompt":"Aggregate
860
+ data for a team''s statistics, including team_statistics and member_statistics","href":"http://localhost:3000/statistic_aggregates","rel":"statistic_aggregates","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"team","href":"http://localhost:3000/teams"}],"queries":[{"rel":"search","href":"http://localhost:3000/statistic_aggregates/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"statistic_id","value":null},{"name":"page_size","value":null,"prompt":"The
861
+ number of items to return for each page. Sending this parameter with the query
862
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
863
+ number of the page to be returned. This requires that paging be turned on
864
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/statistic_data","rel":"statistic_data","template":{"data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"event_id","value":null},{"name":"statistic_id","value":null},{"name":"value","value":null},{"name":"type","value":"statistic_datum"}]},"links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/statistic_data"},{"rel":"event","href":"http://localhost:3000/events"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"team","href":"http://localhost:3000/teams"}],"queries":[{"rel":"search","href":"http://localhost:3000/statistic_data/search","data":[{"name":"id","value":null},{"name":"event_id","value":null},{"name":"statistic_id","value":null},{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"page_size","value":null,"prompt":"The
865
+ number of items to return for each page. Sending this parameter with the query
866
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
867
+ number of the page to be returned. This requires that paging be turned on
868
+ by also providing the page_size parameter."}]}],"commands":[{"rel":"bulk_update_statistic_data","href":"http://localhost:3000/statistic_data/bulk_update","prompt":"translation
311
869
  missing: en.prompts.statistic_data.commands.bulk_update","data":[{"name":"templates","value":null,"prompt":"translation
312
870
  missing: en.prompts.statistic_data.commands.parameters.bulk_update.templates"}]},{"rel":"bulk_delete_statistic_data","href":"http://localhost:3000/statistic_data/bulk_delete","prompt":"translation
313
- missing: en.prompts.statistic_data.commands.bulk_delete","data":[{"name":"member_id","value":null},{"name":"event_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/statistic_groups","template":{"data":[{"name":"team_id","value":null},{"name":"name","value":null}]},"links":[{"rel":"statistics","href":"http://localhost:3000/teams"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//statistic_groups"}],"queries":[{"rel":"search","href":"http://localhost:3000/statistic_groups/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}],"commands":[{"rel":"reorder_statistic_groups","href":"http://localhost:3000/statistic_groups/reorder","prompt":"reorder
314
- the statistic groups based on the sorted_ids provided","data":[{"name":"team_id","value":null},{"name":"sorted_ids","value":null,"prompt":"translation
315
- missing: en.prompts.statistic_groups.commands.parameters.reorder.sorted_ids"}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/referrals","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//referrals"}],"template":{"data":[{"name":"to_address","value":null},{"name":"name","value":null},{"name":"friends_name","value":null},{"name":"friends_email","value":null},{"name":"subject","value":null},{"name":"body","value":null},{"name":"page","value":null},{"name":"referral_form_version","value":null},{"name":"referral_email_variant","value":null}]},"commands":[{"rel":"referral","href":"http://localhost:3000/referrals","prompt":"Referral","data":[{"name":"to_address","value":null},{"name":"name","value":null},{"name":"friends_name","value":null},{"name":"friends_email","value":null},{"name":"subject","value":null},{"name":"body","value":null},{"name":"page","value":null},{"name":"referral_form_version","value":null},{"name":"referral_email_variant","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/team_fees","template":{"data":[{"name":"description","value":null},{"name":"amount","value":null},{"name":"notes","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//team_fees"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_fees/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/team_media","template":{"data":[{"name":"description","value":null},{"name":"team_media_group_id","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_media_group","href":"http://localhost:3000/team_media_groups"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//team_media"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_media/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null}]}],"commands":[{"rel":"upload_team_medium","href":"http://localhost:3000/team_media/upload_team_medium","prompt":"Upload
316
- a team media file","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"media_format","value":null,"prompt":"The
317
- format of the media, either \"image\" or \"file\""},{"name":"team_media_group_id","value":null},{"name":"description","value":null},{"name":"file","value":null}]},{"rel":"assign_media_to_group","href":"http://localhost:3000/team_media/assign_media_to_group","prompt":"Assign
871
+ missing: en.prompts.statistic_data.commands.bulk_delete","data":[{"name":"member_id","value":null},{"name":"event_id","value":null}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/statistic_groups","rel":"statistic_groups","template":{"data":[{"name":"team_id","value":null},{"name":"name","value":null},{"name":"type","value":"statistic_group"}]},"links":[{"rel":"statistics","href":"http://localhost:3000/teams"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/statistic_groups"}],"queries":[{"rel":"search","href":"http://localhost:3000/statistic_groups/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
872
+ number of items to return for each page. Sending this parameter with the query
873
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
874
+ number of the page to be returned. This requires that paging be turned on
875
+ by also providing the page_size parameter."}]}],"commands":[{"rel":"reorder_statistic_groups","href":"http://localhost:3000/statistic_groups/reorder","prompt":"reorder
876
+ the statistic groups based on the sorted_ids provided","data":[{"name":"team_id","value":null},{"name":"sorted_ids","value":null,"prompt":"An
877
+ array of the ids in the order that they are to be moved to"}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/team_fees","rel":"team_fees","template":{"data":[{"name":"description","value":null},{"name":"amount","value":null},{"name":"notes","value":null},{"name":"team_id","value":null},{"name":"type","value":"team_fee"}]},"links":[{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/team_fees"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_fees/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
878
+ number of items to return for each page. Sending this parameter with the query
879
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
880
+ number of the page to be returned. This requires that paging be turned on
881
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/team_media","rel":"team_media","template":{"data":[{"name":"description","value":null},{"name":"team_media_group_id","value":null},{"name":"type","value":"team_medium"}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_media_group","href":"http://localhost:3000/team_media_groups"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/team_media"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_media/search","data":[{"name":"team_id","value":null},{"name":"team_media_group_id","value":null},{"name":"member_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
882
+ number of items to return for each page. Sending this parameter with the query
883
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
884
+ number of the page to be returned. This requires that paging be turned on
885
+ by also providing the page_size parameter."}]}],"commands":[{"rel":"upload_team_medium","href":"http://localhost:3000/team_media/upload_team_medium","prompt":"Upload
886
+ a team media file. This must be a multi-part POST.","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"media_format","value":null,"prompt":"The
887
+ format of the media, either \"image\" or \"file\""},{"name":"team_media_group_id","value":null},{"name":"description","value":null},{"name":"position","value":null},{"name":"file","value":null}]},{"rel":"assign_media_to_group","href":"http://localhost:3000/team_media/assign_media_to_group","prompt":"Assign
318
888
  the specified team_medium_ids to the team_media_group_id","data":[{"name":"team_medium_ids","value":null,"prompt":"A
319
889
  comma delimited list of team medium ids"},{"name":"team_media_group_id","value":null}]},{"rel":"rotate_team_medium_image","href":"http://localhost:3000/team_media/rotate_image","prompt":"Rotate
320
890
  an image with specified team_medium_id in the specified rotate_direction","data":[{"name":"team_medium_id","value":null},{"name":"rotate_direction","value":null,"prompt":"The
@@ -323,23 +893,69 @@ http_interactions:
323
893
  the specified team medium image as the specified member_id''s photo","data":[{"name":"team_medium_id","value":null},{"name":"member_id","value":null}]},{"rel":"bulk_delete_team_media","href":"http://localhost:3000/team_media/bulk_delete","prompt":"Deletes
324
894
  the specified team_medium_ids","data":[{"name":"team_medium_ids","value":null,"prompt":"A
325
895
  comma delimited list of team medium ids"}]},{"rel":"create_team_video_link","href":"http://localhost:3000/team_media/create_video_link","prompt":"Add
326
- a link to a YouTube or Vimeo video.","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"team_media_group_id","value":null},{"name":"description","value":null},{"name":"video_url","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/team_medium_comments","template":{"data":[{"name":"comment","value":null},{"name":"member_id","value":null},{"name":"team_medium_id","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team_medium","href":"http://localhost:3000/team_media"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//team_medium_comments"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_medium_comments/search","data":[{"name":"team_media_group_id","value":null},{"name":"team_medium_id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/team_media_groups","template":{"data":[{"name":"is_private","value":null},{"name":"name","value":null},{"name":"media_format","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"self","href":"http://localhost:3000//team_media_groups"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_media_groups/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/team_public_sites","template":{"data":[{"name":"custom_domain","value":null},{"name":"enable_assignments","value":null},{"name":"enable_availabilities","value":null},{"name":"enable_events","value":null},{"name":"enable_files","value":null},{"name":"enable_games","value":null},{"name":"enable_marketplace","value":null},{"name":"enable_members","value":null},{"name":"enable_messages","value":null},{"name":"enable_payments","value":null},{"name":"enable_photos","value":null},{"name":"enable_public_contact","value":null},{"name":"enable_public_email","value":null},{"name":"enable_schedule","value":null},{"name":"enable_statistics","value":null},{"name":"enabled","value":null},{"name":"hide_old_events","value":null},{"name":"hide_win_loss_record","value":null},{"name":"public_email_manager_only","value":null},{"name":"public_email_reply_to_list","value":null},{"name":"subdomain","value":null},{"name":"team_headline","value":null},{"name":"team_message","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//team_public_sites"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_public_sites/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]}],"commands":[{"rel":"upload_team_public_photo","href":"http://localhost:3000/team_public_sites/upload_team_public_photo","prompt":"Upload
327
- a team public photo.","data":[{"name":"team_public_site_id","value":null},{"name":"file","value":null}]},{"rel":"remove_team_public_photo","href":"http://localhost:3000/team_public_sites/remove_team_public_photo","prompt":"Remove
896
+ a link to a YouTube or Vimeo video.","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"team_media_group_id","value":null},{"name":"description","value":null},{"name":"position","value":null},{"name":"video_url","value":null}]},{"rel":"facebook_share_team_medium","href":"http://localhost:3000/team_media/facebook_share","prompt":"Share
897
+ a specified image or video type medium on facebook.","data":[{"name":"team_medium_id","value":null},{"name":"is_suppressed_from_feed","value":null,"prompt":"translation
898
+ missing: en.prompts.team_media.commands.parameters.is_suppressed_from_feed"},{"name":"caption","value":null,"prompt":"translation
899
+ missing: en.prompts.team_media.commands.parameters.caption"},{"name":"facebook_page_id","value":null,"prompt":"translation
900
+ missing: en.prompts.team_media.commands.parameters.facebook_page_id"}]},{"rel":"reorder_team_media","href":"http://localhost:3000/team_media/reorder","prompt":"Reorder
901
+ the team media based on the sorted_ids provided.","data":[{"name":"team_id","value":null},{"name":"sorted_ids","value":null,"prompt":"An
902
+ array of the ids in the order that they are to be moved to."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/team_medium_comments","rel":"team_medium_comments","template":{"data":[{"name":"comment","value":null},{"name":"member_id","value":null},{"name":"team_medium_id","value":null},{"name":"type","value":"team_medium_comment"}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team_medium","href":"http://localhost:3000/team_media"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/team_medium_comments"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_medium_comments/search","data":[{"name":"team_media_group_id","value":null},{"name":"team_medium_id","value":null},{"name":"member_id","value":null},{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
903
+ number of items to return for each page. Sending this parameter with the query
904
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
905
+ number of the page to be returned. This requires that paging be turned on
906
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/team_media_groups","rel":"team_media_groups","template":{"data":[{"name":"is_private","value":null},{"name":"name","value":null},{"name":"media_format","value":null},{"name":"team_id","value":null},{"name":"type","value":"team_media_group"}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"self","href":"http://localhost:3000/team_media_groups"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_media_groups/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
907
+ number of items to return for each page. Sending this parameter with the query
908
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
909
+ number of the page to be returned. This requires that paging be turned on
910
+ by also providing the page_size parameter."}]}],"commands":[{"rel":"reorder_team_media_groups","href":"http://localhost:3000/team_media_groups/reorder","prompt":"translation
911
+ missing: en.prompts.team_media_groups.commands.reorder","data":[{"name":"team_id","value":null},{"name":"sorted_ids","value":null,"prompt":"translation
912
+ missing: en.prompts.team_media_groups.commands.parameters.reorder.sorted_ids"}]},{"rel":"facebook_share_team_media_group","href":"http://localhost:3000/team_media_groups/facebook_share","prompt":"translation
913
+ missing: en.prompts.team_media_group.commands.facebook_share_team_media_group","data":[{"name":"team_media_group_id","value":null},{"name":"is_suppressed_from_feed","value":null,"prompt":"translation
914
+ missing: en.prompts.team_media_group.commands.parameters.is_suppressed_from_feed"},{"name":"album_name","value":null,"prompt":"translation
915
+ missing: en.prompts.team_media_group.commands.parameters.caption"},{"name":"facebook_page_id","value":null,"prompt":"translation
916
+ missing: en.prompts.team_media_group.commands.parameters.facebook_page_id"}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/team_public_sites","rel":"team_public_sites","template":{"data":[{"name":"custom_domain","value":null},{"name":"enable_assignments","value":null},{"name":"enable_availabilities","value":null},{"name":"enable_events","value":null},{"name":"enable_files","value":null},{"name":"enable_games","value":null},{"name":"enable_marketplace","value":null},{"name":"enable_members","value":null},{"name":"enable_messages","value":null},{"name":"enable_payments","value":null},{"name":"enable_photos","value":null},{"name":"enable_public_contact","value":null},{"name":"enable_public_email","value":null},{"name":"enable_schedule","value":null},{"name":"enable_statistics","value":null},{"name":"enabled","value":null},{"name":"hide_old_events","value":null},{"name":"hide_win_loss_record","value":null},{"name":"public_email_manager_only","value":null},{"name":"public_email_reply_to_list","value":null},{"name":"subdomain","value":null},{"name":"team_headline","value":null},{"name":"team_message","value":null},{"name":"type","value":"team_public_site"}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/team_public_sites"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_public_sites/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"page_size","value":null,"prompt":"The
917
+ number of items to return for each page. Sending this parameter with the query
918
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
919
+ number of the page to be returned. This requires that paging be turned on
920
+ by also providing the page_size parameter."}]}],"commands":[{"rel":"upload_team_public_photo","href":"http://localhost:3000/team_public_sites/upload_team_public_photo","prompt":"Upload
921
+ a team public photo. This must be a multi-part POST.","data":[{"name":"team_public_site_id","value":null},{"name":"file","value":null}]},{"rel":"remove_team_public_photo","href":"http://localhost:3000/team_public_sites/remove_team_public_photo","prompt":"Remove
328
922
  a team public photo.","data":[{"name":"team_public_site_id","value":null}]},{"rel":"validate_subdomain","href":"http://localhost:3000/team_public_sites/validate_subdomain","prompt":"Check
329
- to see if a subdomain is available and valid.","data":[{"name":"subdomain","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/teams","template":{"data":[{"name":"name","value":null},{"name":"location_country","value":null},{"name":"location_postal_code","value":null},{"name":"time_zone","value":null},{"name":"sport_id","value":null},{"name":"division_name","value":null},{"name":"season_name","value":null},{"name":"league_name","value":null},{"name":"league_url","value":null}]},"links":[{"rel":"active_season_team","href":"http://localhost:3000/teams"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_smses","href":"http://localhost:3000/broadcast_smses"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"managers","href":"http://localhost:3000/members"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"owner","href":"http://localhost:3000/members"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currency","href":"http://localhost:3000/paypal_currencies"},{"rel":"plan","href":"http://localhost:3000/plans"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sport","href":"http://localhost:3000/sports"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_group","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"team_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"team_public_site","href":"http://localhost:3000/team_public_sites"},{"rel":"team_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//teams"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"division_id","value":null}]},{"rel":"available_for_statistic_import","href":"http://localhost:3000/teams/available_for_statistic_import","prompt":"Finds
923
+ to see if a subdomain is available and valid.","data":[{"name":"subdomain","value":null}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/teams","rel":"teams","template":{"data":[{"name":"name","value":null},{"name":"location_country","value":null},{"name":"location_postal_code","value":null},{"name":"time_zone","value":null,"prompt":"The
924
+ time_zone parameter is required when creating a team, but for changing a team''s
925
+ time_zone, use the update_time_zone command"},{"name":"sport_id","value":null},{"name":"division_name","value":null},{"name":"season_name","value":null},{"name":"league_name","value":null},{"name":"league_url","value":null},{"name":"type","value":"team"}]},"links":[{"rel":"active_season_team","href":"http://localhost:3000/teams"},{"rel":"assignments","href":"http://localhost:3000/assignments"},{"rel":"availabilities","href":"http://localhost:3000/availabilities"},{"rel":"broadcast_email_attachments","href":"http://localhost:3000/broadcast_email_attachments"},{"rel":"broadcast_emails","href":"http://localhost:3000/broadcast_emails"},{"rel":"broadcast_alerts","href":"http://localhost:3000/broadcast_alerts"},{"rel":"contact_email_addresses","href":"http://localhost:3000/contact_email_addresses"},{"rel":"contact_phone_numbers","href":"http://localhost:3000/contact_phone_numbers"},{"rel":"contacts","href":"http://localhost:3000/contacts"},{"rel":"custom_data","href":"http://localhost:3000/custom_data"},{"rel":"custom_fields","href":"http://localhost:3000/custom_fields"},{"rel":"division_contact_email_addresses","href":"http://localhost:3000/division_contact_email_addresses"},{"rel":"division_contact_phone_numbers","href":"http://localhost:3000/division_contact_phone_numbers"},{"rel":"division_contacts","href":"http://localhost:3000/division_contacts"},{"rel":"division_locations","href":"http://localhost:3000/division_locations"},{"rel":"division_member_email_addresses","href":"http://localhost:3000/division_member_email_addresses"},{"rel":"division_member_phone_numbers","href":"http://localhost:3000/division_member_phone_numbers"},{"rel":"division_members","href":"http://localhost:3000/division_members"},{"rel":"division_members_preferences","href":"http://localhost:3000/division_members_preferences"},{"rel":"division_team_standings","href":"http://localhost:3000/division_team_standings"},{"rel":"event_statistics","href":"http://localhost:3000/event_statistics"},{"rel":"events","href":"http://localhost:3000/events"},{"rel":"events_overview","href":"http://localhost:3000/events/overview"},{"rel":"forum_posts","href":"http://localhost:3000/forum_posts"},{"rel":"forum_subscriptions","href":"http://localhost:3000/forum_subscriptions"},{"rel":"forum_topics","href":"http://localhost:3000/forum_topics"},{"rel":"league_custom_data","href":"http://localhost:3000/league_custom_data"},{"rel":"league_custom_fields","href":"http://localhost:3000/league_custom_fields"},{"rel":"league_registrant_documents","href":"http://localhost:3000/league_registrant_documents"},{"rel":"locations","href":"http://localhost:3000/locations"},{"rel":"managers","href":"http://localhost:3000/members"},{"rel":"member_balances","href":"http://localhost:3000/member_balances"},{"rel":"member_email_addresses","href":"http://localhost:3000/member_email_addresses"},{"rel":"member_files","href":"http://localhost:3000/member_files"},{"rel":"member_links","href":"http://localhost:3000/member_links"},{"rel":"member_payments","href":"http://localhost:3000/member_payments"},{"rel":"member_phone_numbers","href":"http://localhost:3000/member_phone_numbers"},{"rel":"member_statistics","href":"http://localhost:3000/member_statistics"},{"rel":"members","href":"http://localhost:3000/members"},{"rel":"members_preferences","href":"http://localhost:3000/members_preferences"},{"rel":"opponents","href":"http://localhost:3000/opponents"},{"rel":"opponents_results","href":"http://localhost:3000/opponents_results"},{"rel":"owner","href":"http://localhost:3000/members"},{"rel":"payment_notes","href":"http://localhost:3000/payment_notes"},{"rel":"paypal_currency","href":"http://localhost:3000/paypal_currencies"},{"rel":"plan","href":"http://localhost:3000/plans"},{"rel":"sponsors","href":"http://localhost:3000/sponsors"},{"rel":"sport","href":"http://localhost:3000/sports"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"statistic_aggregates","href":"http://localhost:3000/statistic_aggregates"},{"rel":"statistic_data","href":"http://localhost:3000/statistic_data"},{"rel":"statistic_group","href":"http://localhost:3000/statistic_groups"},{"rel":"team_fees","href":"http://localhost:3000/team_fees"},{"rel":"team_media","href":"http://localhost:3000/team_media"},{"rel":"team_medium_comments","href":"http://localhost:3000/team_medium_comments"},{"rel":"team_media_groups","href":"http://localhost:3000/team_media_groups"},{"rel":"team_paypal_preferences","href":"http://localhost:3000/teams_paypal_preferences"},{"rel":"team_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"team_public_site","href":"http://localhost:3000/team_public_sites"},{"rel":"team_results","href":"http://localhost:3000/teams_results"},{"rel":"team_statistics","href":"http://localhost:3000/team_statistics"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"tracked_items","href":"http://localhost:3000/tracked_items"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/teams"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"division_id","value":null},{"name":"page_size","value":null,"prompt":"The
926
+ number of items to return for each page. Sending this parameter with the query
927
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
928
+ number of the page to be returned. This requires that paging be turned on
929
+ by also providing the page_size parameter."}]},{"rel":"available_for_statistic_import","href":"http://localhost:3000/teams/available_for_statistic_import","prompt":"Finds
330
930
  all teams accessible to current user that have the provided sport_id and have
331
- at least one statistic to import","data":[{"name":"sport_id","value":null}]}],"commands":[{"rel":"invite","href":"http://localhost:3000/teams/invite","prompt":"invite
931
+ at least one statistic to import","data":[{"name":"sport_id","value":null}]},{"rel":"active_teams","href":"http://localhost:3000/teams/active","prompt":"Finds
932
+ all active teams for a given user. Excludes archived seasons and retired teams.","data":[{"name":"user_id","value":null}]}],"commands":[{"rel":"invite","href":"http://localhost:3000/teams/invite","prompt":"invite
332
933
  team members or contacts to join TeamSnap.","data":[{"name":"team_id","value":null},{"name":"contact_id","value":null},{"name":"member_id","value":null},{"name":"introduction","value":null},{"name":"notify_as_member_id","value":null}]},{"rel":"update_time_zone","href":"http://localhost:3000/teams/update_time_zone","prompt":"Update
333
- team''s time zone.","data":[{"name":"team_id","value":null},{"name":"time_zone","value":null},{"name":"offset_team_times","value":null}]},{"rel":"reset_statistics","href":"http://localhost:3000/teams/reset_statistics","prompt":"Deletes
334
- all data, categories and groups for a given team_id","data":[{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/teams_paypal_preferences","template":{"data":[{"name":"is_paypal_active","value":null},{"name":"is_paypal_allowed","value":null},{"name":"paypal_currency_id","value":null},{"name":"paypal_email","value":null},{"name":"paypal_first_name","value":null},{"name":"paypal_last_name","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//teams_paypal_preferences"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams_paypal_preferences/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/teams_preferences","template":{"data":[{"name":"age_group","value":null},{"name":"alternate_sport_name","value":null},{"name":"announcement_above_home_photo","value":null},{"name":"assignments_enable_for_code","value":null},{"name":"assignments_show_tab","value":null},{"name":"availabilities_show_tab","value":null},{"name":"availabilities_sort_order","value":null},{"name":"availability_event_cutoff","value":null},{"name":"availability_game_cutoff","value":null},{"name":"color_scheme_cd","value":null},{"name":"currency_symbol","value":null},{"name":"files_show_tab","value":null,"deprecated":true,"prompt":"files_show_tab
934
+ team''s time zone. This is currently the only method of updating a team''s
935
+ time zone.","data":[{"name":"team_id","value":null},{"name":"time_zone","value":null},{"name":"offset_team_times","value":null}]},{"rel":"reset_statistics","href":"http://localhost:3000/teams/reset_statistics","prompt":"Deletes
936
+ all data, categories and groups for a given team_id","data":[{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/teams_paypal_preferences","rel":"teams_paypal_preferences","template":{"data":[{"name":"is_paypal_active","value":null},{"name":"is_paypal_allowed","value":null},{"name":"paypal_currency_id","value":null},{"name":"paypal_email","value":null},{"name":"paypal_first_name","value":null},{"name":"paypal_last_name","value":null},{"name":"type","value":"team_paypal_preferences"}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/teams_paypal_preferences"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams_paypal_preferences/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
937
+ number of items to return for each page. Sending this parameter with the query
938
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
939
+ number of the page to be returned. This requires that paging be turned on
940
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/teams_preferences","rel":"teams_preferences","template":{"data":[{"name":"age_group","value":null},{"name":"alternate_sport_name","value":null},{"name":"announcement_above_home_photo","value":null},{"name":"assignments_enable_for_code","value":null},{"name":"assignments_show_tab","value":null},{"name":"availabilities_show_tab","value":null},{"name":"availabilities_sort_order","value":null},{"name":"availability_event_cutoff","value":null},{"name":"availability_game_cutoff","value":null},{"name":"color_scheme_cd","value":null},{"name":"currency_symbol","value":null},{"name":"files_show_tab","value":null,"deprecated":true,"prompt":"files_show_tab
335
941
  is deprecated and will be removed in a future version, use team_media_show_tab
336
- instead."},{"name":"gender","value":null},{"name":"global_uniform_away","value":null},{"name":"global_uniform_home","value":null},{"name":"global_use_international_date","value":null},{"name":"global_use_international_time","value":null},{"name":"hide_header","value":null},{"name":"introduction_text","value":null},{"name":"is_coed","value":null},{"name":"is_payments_private","value":null},{"name":"is_tracked_items_private","value":null},{"name":"is_youth","value":null},{"name":"manager_default_availability","value":null},{"name":"marketplace_show_tab","value":null},{"name":"member_sort_order","value":null},{"name":"payments_ignore_non_players","value":null},{"name":"payments_show_tab","value":null},{"name":"reminders_send_event","value":null},{"name":"reminders_send_game","value":null},{"name":"skill_level","value":null},{"name":"share_availability_notes","value":null},{"name":"show_division_standings","value":null},{"name":"statistics_show_tab","value":null},{"name":"team_headline","value":null},{"name":"team_message","value":null},{"name":"tracked_items_ignore_non_players","value":null},{"name":"tracked_items_is_private","value":null,"deprecated":true,"prompt":"tracked_items_is_private
942
+ instead."},{"name":"team_media_show_tab","value":null},{"name":"gender","value":null},{"name":"global_uniform_away","value":null},{"name":"global_uniform_home","value":null},{"name":"global_use_international_date","value":null},{"name":"global_use_international_time","value":null},{"name":"hide_header","value":null},{"name":"introduction_text","value":null,"deprecated":true,"prompt":"introduction_text
943
+ is deprecated and has been removed. Continued use of introduction_text is
944
+ not recommended it will no longer be stored."},{"name":"is_coed","value":null},{"name":"is_payments_private","value":null},{"name":"is_tracked_items_private","value":null},{"name":"is_youth","value":null},{"name":"manager_default_availability","value":null},{"name":"marketplace_show_tab","value":null},{"name":"member_sort_order","value":null},{"name":"payments_ignore_non_players","value":null},{"name":"payments_show_tab","value":null},{"name":"reminders_send_event","value":null},{"name":"reminders_send_game","value":null},{"name":"skill_level","value":null},{"name":"share_availability_notes","value":null},{"name":"show_division_standings","value":null},{"name":"statistics_show_tab","value":null},{"name":"team_headline","value":null},{"name":"team_message","value":null},{"name":"tracked_items_ignore_non_players","value":null},{"name":"tracked_items_is_private","value":null,"deprecated":true,"prompt":"tracked_items_is_private
337
945
  is deprecated and will be removed in a future version, use is_tracked_items_private
338
- instead."},{"name":"tracked_items_show_tab","value":null},{"name":"tracks_points","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//teams_preferences"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams_preferences/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"user_id","value":null}]}],"commands":[{"rel":"upload_team_logo","href":"http://localhost:3000/teams_preferences/upload_team_logo","prompt":"Upload
339
- a team logo.","data":[{"name":"team_preferences_id","value":null},{"name":"file","value":null}]},{"rel":"remove_team_logo","href":"http://localhost:3000/teams_preferences/remove_team_logo","prompt":"Remove
946
+ instead."},{"name":"tracked_items_show_tab","value":null},{"name":"tracks_points","value":null},{"name":"type","value":"team_preferences"}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/teams_preferences"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams_preferences/search","data":[{"name":"id","value":null},{"name":"team_id","value":null},{"name":"user_id","value":null},{"name":"page_size","value":null,"prompt":"The
947
+ number of items to return for each page. Sending this parameter with the query
948
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
949
+ number of the page to be returned. This requires that paging be turned on
950
+ by also providing the page_size parameter."}]}],"commands":[{"rel":"upload_team_logo","href":"http://localhost:3000/teams_preferences/upload_team_logo","prompt":"Upload
951
+ a team logo. This must be a multi-part POST.","data":[{"name":"team_preferences_id","value":null},{"name":"file","value":null}]},{"rel":"remove_team_logo","href":"http://localhost:3000/teams_preferences/remove_team_logo","prompt":"Remove
340
952
  a team logo.","data":[{"name":"team_preferences_id","value":null}]},{"rel":"upload_team_photo","href":"http://localhost:3000/teams_preferences/upload_team_photo","prompt":"Upload
341
- a team photo.","data":[{"name":"team_preferences_id","value":null},{"name":"file","value":null}]},{"rel":"remove_team_photo","href":"http://localhost:3000/teams_preferences/remove_team_photo","prompt":"Remove
342
- a team photo.","data":[{"name":"team_preferences_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/teams_results","links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//teams_results"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams_results/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/team_statistics","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//team_statistics"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"team","href":"http://localhost:3000/teams"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_statistics/search","data":[{"name":"id","value":null},{"name":"statistic_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/time_zones","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//time_zones"}],"queries":[{"rel":"search","href":"http://localhost:3000/time_zones/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]}],"items":[{"href":"http://localhost:3000/time_zones/american-samoa","data":[{"name":"id","value":"american-samoa"},{"name":"type","value":"TimeZone"},{"name":"description","value":"American
953
+ a team photo. This must be a multi-part POST.","data":[{"name":"team_preferences_id","value":null},{"name":"file","value":null}]},{"rel":"remove_team_photo","href":"http://localhost:3000/teams_preferences/remove_team_photo","prompt":"Remove
954
+ a team photo.","data":[{"name":"team_preferences_id","value":null}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/teams_results","rel":"teams_results","links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/teams_results"}],"queries":[{"rel":"search","href":"http://localhost:3000/teams_results/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
955
+ number of items to return for each page. Sending this parameter with the query
956
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
957
+ number of the page to be returned. This requires that paging be turned on
958
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/team_statistics","rel":"team_statistics","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/team_statistics"},{"rel":"statistic","href":"http://localhost:3000/statistics"},{"rel":"team","href":"http://localhost:3000/teams"}],"queries":[{"rel":"search","href":"http://localhost:3000/team_statistics/search","data":[{"name":"id","value":null},{"name":"statistic_id","value":null},{"name":"team_id","value":null}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/time_zones","rel":"time_zones","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/time_zones"}],"queries":[{"rel":"search","href":"http://localhost:3000/time_zones/search","data":[{"name":"id","value":null},{"name":"team_id","value":null}]}],"items":[{"href":"http://localhost:3000/time_zones/american-samoa","data":[{"name":"id","value":"american-samoa"},{"name":"type","value":"TimeZone"},{"name":"description","value":"American
343
959
  Samoa"},{"name":"iana_name","value":"Pacific/Pago_Pago"},{"name":"offset","value":"-11:00"}],"rel":"TimeZone-american-samoa"},{"href":"http://localhost:3000/time_zones/international-date-line-west","data":[{"name":"id","value":"international-date-line-west"},{"name":"type","value":"TimeZone"},{"name":"description","value":"International
344
960
  Date Line West"},{"name":"iana_name","value":"Pacific/Midway"},{"name":"offset","value":"-11:00"}],"rel":"TimeZone-international-date-line-west"},{"href":"http://localhost:3000/time_zones/midway-island","data":[{"name":"id","value":"midway-island"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Midway
345
961
  Island"},{"name":"iana_name","value":"Pacific/Midway"},{"name":"offset","value":"-11:00"}],"rel":"TimeZone-midway-island"},{"href":"http://localhost:3000/time_zones/samoa","data":[{"name":"id","value":"samoa"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Samoa"},{"name":"iana_name","value":"Pacific/Apia"},{"name":"offset","value":"-11:00"}],"rel":"TimeZone-samoa"},{"href":"http://localhost:3000/time_zones/hawaii","data":[{"name":"id","value":"hawaii"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Hawaii"},{"name":"iana_name","value":"Pacific/Honolulu"},{"name":"offset","value":"-10:00"}],"rel":"TimeZone-hawaii"},{"href":"http://localhost:3000/time_zones/alaska","data":[{"name":"id","value":"alaska"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Alaska"},{"name":"iana_name","value":"America/Juneau"},{"name":"offset","value":"-09:00"}],"rel":"TimeZone-alaska"},{"href":"http://localhost:3000/time_zones/pacific-time-us-canada","data":[{"name":"id","value":"pacific-time-us-canada"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Pacific
@@ -353,22 +969,38 @@ http_interactions:
353
969
  Time (Canada)"},{"name":"iana_name","value":"America/Halifax"},{"name":"offset","value":"-04:00"}],"rel":"TimeZone-atlantic-time-canada"},{"href":"http://localhost:3000/time_zones/georgetown","data":[{"name":"id","value":"georgetown"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Georgetown"},{"name":"iana_name","value":"America/Guyana"},{"name":"offset","value":"-04:00"}],"rel":"TimeZone-georgetown"},{"href":"http://localhost:3000/time_zones/la-paz","data":[{"name":"id","value":"la-paz"},{"name":"type","value":"TimeZone"},{"name":"description","value":"La
354
970
  Paz"},{"name":"iana_name","value":"America/La_Paz"},{"name":"offset","value":"-04:00"}],"rel":"TimeZone-la-paz"},{"href":"http://localhost:3000/time_zones/newfoundland","data":[{"name":"id","value":"newfoundland"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Newfoundland"},{"name":"iana_name","value":"America/St_Johns"},{"name":"offset","value":"-03:30"}],"rel":"TimeZone-newfoundland"},{"href":"http://localhost:3000/time_zones/brasilia","data":[{"name":"id","value":"brasilia"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Brasilia"},{"name":"iana_name","value":"America/Sao_Paulo"},{"name":"offset","value":"-03:00"}],"rel":"TimeZone-brasilia"},{"href":"http://localhost:3000/time_zones/buenos-aires","data":[{"name":"id","value":"buenos-aires"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Buenos
355
971
  Aires"},{"name":"iana_name","value":"America/Argentina/Buenos_Aires"},{"name":"offset","value":"-03:00"}],"rel":"TimeZone-buenos-aires"},{"href":"http://localhost:3000/time_zones/greenland","data":[{"name":"id","value":"greenland"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Greenland"},{"name":"iana_name","value":"America/Godthab"},{"name":"offset","value":"-03:00"}],"rel":"TimeZone-greenland"},{"href":"http://localhost:3000/time_zones/montevideo","data":[{"name":"id","value":"montevideo"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Montevideo"},{"name":"iana_name","value":"America/Montevideo"},{"name":"offset","value":"-03:00"}],"rel":"TimeZone-montevideo"},{"href":"http://localhost:3000/time_zones/santiago","data":[{"name":"id","value":"santiago"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Santiago"},{"name":"iana_name","value":"America/Santiago"},{"name":"offset","value":"-03:00"}],"rel":"TimeZone-santiago"},{"href":"http://localhost:3000/time_zones/mid-atlantic","data":[{"name":"id","value":"mid-atlantic"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Mid-Atlantic"},{"name":"iana_name","value":"Atlantic/South_Georgia"},{"name":"offset","value":"-02:00"}],"rel":"TimeZone-mid-atlantic"},{"href":"http://localhost:3000/time_zones/azores","data":[{"name":"id","value":"azores"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Azores"},{"name":"iana_name","value":"Atlantic/Azores"},{"name":"offset","value":"-01:00"}],"rel":"TimeZone-azores"},{"href":"http://localhost:3000/time_zones/cape-verde-is","data":[{"name":"id","value":"cape-verde-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Cape
356
- Verde Is."},{"name":"iana_name","value":"Atlantic/Cape_Verde"},{"name":"offset","value":"-01:00"}],"rel":"TimeZone-cape-verde-is"},{"href":"http://localhost:3000/time_zones/casablanca","data":[{"name":"id","value":"casablanca"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Casablanca"},{"name":"iana_name","value":"Africa/Casablanca"},{"name":"offset","value":"+00:00"}],"rel":"TimeZone-casablanca"},{"href":"http://localhost:3000/time_zones/dublin","data":[{"name":"id","value":"dublin"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Dublin"},{"name":"iana_name","value":"Europe/Dublin"},{"name":"offset","value":"+00:00"}],"rel":"TimeZone-dublin"},{"href":"http://localhost:3000/time_zones/edinburgh","data":[{"name":"id","value":"edinburgh"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Edinburgh"},{"name":"iana_name","value":"Europe/London"},{"name":"offset","value":"+00:00"}],"rel":"TimeZone-edinburgh"},{"href":"http://localhost:3000/time_zones/lisbon","data":[{"name":"id","value":"lisbon"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Lisbon"},{"name":"iana_name","value":"Europe/Lisbon"},{"name":"offset","value":"+00:00"}],"rel":"TimeZone-lisbon"},{"href":"http://localhost:3000/time_zones/london","data":[{"name":"id","value":"london"},{"name":"type","value":"TimeZone"},{"name":"description","value":"London"},{"name":"iana_name","value":"Europe/London"},{"name":"offset","value":"+00:00"}],"rel":"TimeZone-london"},{"href":"http://localhost:3000/time_zones/monrovia","data":[{"name":"id","value":"monrovia"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Monrovia"},{"name":"iana_name","value":"Africa/Monrovia"},{"name":"offset","value":"+00:00"}],"rel":"TimeZone-monrovia"},{"href":"http://localhost:3000/time_zones/utc","data":[{"name":"id","value":"utc"},{"name":"type","value":"TimeZone"},{"name":"description","value":"UTC"},{"name":"iana_name","value":"Etc/UTC"},{"name":"offset","value":"+00:00"}],"rel":"TimeZone-utc"},{"href":"http://localhost:3000/time_zones/amsterdam","data":[{"name":"id","value":"amsterdam"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Amsterdam"},{"name":"iana_name","value":"Europe/Amsterdam"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-amsterdam"},{"href":"http://localhost:3000/time_zones/belgrade","data":[{"name":"id","value":"belgrade"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Belgrade"},{"name":"iana_name","value":"Europe/Belgrade"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-belgrade"},{"href":"http://localhost:3000/time_zones/berlin","data":[{"name":"id","value":"berlin"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Berlin"},{"name":"iana_name","value":"Europe/Berlin"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-berlin"},{"href":"http://localhost:3000/time_zones/bern","data":[{"name":"id","value":"bern"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Bern"},{"name":"iana_name","value":"Europe/Berlin"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-bern"},{"href":"http://localhost:3000/time_zones/bratislava","data":[{"name":"id","value":"bratislava"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Bratislava"},{"name":"iana_name","value":"Europe/Bratislava"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-bratislava"},{"href":"http://localhost:3000/time_zones/brussels","data":[{"name":"id","value":"brussels"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Brussels"},{"name":"iana_name","value":"Europe/Brussels"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-brussels"},{"href":"http://localhost:3000/time_zones/budapest","data":[{"name":"id","value":"budapest"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Budapest"},{"name":"iana_name","value":"Europe/Budapest"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-budapest"},{"href":"http://localhost:3000/time_zones/copenhagen","data":[{"name":"id","value":"copenhagen"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Copenhagen"},{"name":"iana_name","value":"Europe/Copenhagen"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-copenhagen"},{"href":"http://localhost:3000/time_zones/ljubljana","data":[{"name":"id","value":"ljubljana"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Ljubljana"},{"name":"iana_name","value":"Europe/Ljubljana"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-ljubljana"},{"href":"http://localhost:3000/time_zones/madrid","data":[{"name":"id","value":"madrid"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Madrid"},{"name":"iana_name","value":"Europe/Madrid"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-madrid"},{"href":"http://localhost:3000/time_zones/paris","data":[{"name":"id","value":"paris"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Paris"},{"name":"iana_name","value":"Europe/Paris"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-paris"},{"href":"http://localhost:3000/time_zones/prague","data":[{"name":"id","value":"prague"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Prague"},{"name":"iana_name","value":"Europe/Prague"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-prague"},{"href":"http://localhost:3000/time_zones/rome","data":[{"name":"id","value":"rome"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Rome"},{"name":"iana_name","value":"Europe/Rome"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-rome"},{"href":"http://localhost:3000/time_zones/sarajevo","data":[{"name":"id","value":"sarajevo"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Sarajevo"},{"name":"iana_name","value":"Europe/Sarajevo"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-sarajevo"},{"href":"http://localhost:3000/time_zones/skopje","data":[{"name":"id","value":"skopje"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Skopje"},{"name":"iana_name","value":"Europe/Skopje"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-skopje"},{"href":"http://localhost:3000/time_zones/stockholm","data":[{"name":"id","value":"stockholm"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Stockholm"},{"name":"iana_name","value":"Europe/Stockholm"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-stockholm"},{"href":"http://localhost:3000/time_zones/vienna","data":[{"name":"id","value":"vienna"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Vienna"},{"name":"iana_name","value":"Europe/Vienna"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-vienna"},{"href":"http://localhost:3000/time_zones/warsaw","data":[{"name":"id","value":"warsaw"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Warsaw"},{"name":"iana_name","value":"Europe/Warsaw"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-warsaw"},{"href":"http://localhost:3000/time_zones/west-central-africa","data":[{"name":"id","value":"west-central-africa"},{"name":"type","value":"TimeZone"},{"name":"description","value":"West
357
- Central Africa"},{"name":"iana_name","value":"Africa/Algiers"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-west-central-africa"},{"href":"http://localhost:3000/time_zones/zagreb","data":[{"name":"id","value":"zagreb"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Zagreb"},{"name":"iana_name","value":"Europe/Zagreb"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-zagreb"},{"href":"http://localhost:3000/time_zones/amman","data":[{"name":"id","value":"amman"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Amman"},{"name":"iana_name","value":"Asia/Amman"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-amman"},{"href":"http://localhost:3000/time_zones/athens","data":[{"name":"id","value":"athens"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Athens"},{"name":"iana_name","value":"Europe/Athens"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-athens"},{"href":"http://localhost:3000/time_zones/bucharest","data":[{"name":"id","value":"bucharest"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Bucharest"},{"name":"iana_name","value":"Europe/Bucharest"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-bucharest"},{"href":"http://localhost:3000/time_zones/cairo","data":[{"name":"id","value":"cairo"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Cairo"},{"name":"iana_name","value":"Africa/Cairo"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-cairo"},{"href":"http://localhost:3000/time_zones/harare","data":[{"name":"id","value":"harare"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Harare"},{"name":"iana_name","value":"Africa/Harare"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-harare"},{"href":"http://localhost:3000/time_zones/helsinki","data":[{"name":"id","value":"helsinki"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Helsinki"},{"name":"iana_name","value":"Europe/Helsinki"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-helsinki"},{"href":"http://localhost:3000/time_zones/istanbul","data":[{"name":"id","value":"istanbul"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Istanbul"},{"name":"iana_name","value":"Europe/Istanbul"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-istanbul"},{"href":"http://localhost:3000/time_zones/jerusalem","data":[{"name":"id","value":"jerusalem"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Jerusalem"},{"name":"iana_name","value":"Asia/Jerusalem"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-jerusalem"},{"href":"http://localhost:3000/time_zones/kyiv","data":[{"name":"id","value":"kyiv"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kyiv"},{"name":"iana_name","value":"Europe/Kiev"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-kyiv"},{"href":"http://localhost:3000/time_zones/pretoria","data":[{"name":"id","value":"pretoria"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Pretoria"},{"name":"iana_name","value":"Africa/Johannesburg"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-pretoria"},{"href":"http://localhost:3000/time_zones/riga","data":[{"name":"id","value":"riga"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Riga"},{"name":"iana_name","value":"Europe/Riga"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-riga"},{"href":"http://localhost:3000/time_zones/sofia","data":[{"name":"id","value":"sofia"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Sofia"},{"name":"iana_name","value":"Europe/Sofia"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-sofia"},{"href":"http://localhost:3000/time_zones/tallinn","data":[{"name":"id","value":"tallinn"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tallinn"},{"name":"iana_name","value":"Europe/Tallinn"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-tallinn"},{"href":"http://localhost:3000/time_zones/vilnius","data":[{"name":"id","value":"vilnius"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Vilnius"},{"name":"iana_name","value":"Europe/Vilnius"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-vilnius"},{"href":"http://localhost:3000/time_zones/baghdad","data":[{"name":"id","value":"baghdad"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Baghdad"},{"name":"iana_name","value":"Asia/Baghdad"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-baghdad"},{"href":"http://localhost:3000/time_zones/kuwait","data":[{"name":"id","value":"kuwait"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kuwait"},{"name":"iana_name","value":"Asia/Kuwait"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-kuwait"},{"href":"http://localhost:3000/time_zones/minsk","data":[{"name":"id","value":"minsk"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Minsk"},{"name":"iana_name","value":"Europe/Minsk"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-minsk"},{"href":"http://localhost:3000/time_zones/moscow","data":[{"name":"id","value":"moscow"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Moscow"},{"name":"iana_name","value":"Europe/Moscow"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-moscow"},{"href":"http://localhost:3000/time_zones/nairobi","data":[{"name":"id","value":"nairobi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Nairobi"},{"name":"iana_name","value":"Africa/Nairobi"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-nairobi"},{"href":"http://localhost:3000/time_zones/riyadh","data":[{"name":"id","value":"riyadh"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Riyadh"},{"name":"iana_name","value":"Asia/Riyadh"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-riyadh"},{"href":"http://localhost:3000/time_zones/st-petersburg","data":[{"name":"id","value":"st-petersburg"},{"name":"type","value":"TimeZone"},{"name":"description","value":"St.
358
- Petersburg"},{"name":"iana_name","value":"Europe/Moscow"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-st-petersburg"},{"href":"http://localhost:3000/time_zones/volgograd","data":[{"name":"id","value":"volgograd"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Volgograd"},{"name":"iana_name","value":"Europe/Moscow"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-volgograd"},{"href":"http://localhost:3000/time_zones/tehran","data":[{"name":"id","value":"tehran"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tehran"},{"name":"iana_name","value":"Asia/Tehran"},{"name":"offset","value":"+03:30"}],"rel":"TimeZone-tehran"},{"href":"http://localhost:3000/time_zones/abu-dhabi","data":[{"name":"id","value":"abu-dhabi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Abu
359
- Dhabi"},{"name":"iana_name","value":"Asia/Muscat"},{"name":"offset","value":"+04:00"}],"rel":"TimeZone-abu-dhabi"},{"href":"http://localhost:3000/time_zones/baku","data":[{"name":"id","value":"baku"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Baku"},{"name":"iana_name","value":"Asia/Baku"},{"name":"offset","value":"+04:00"}],"rel":"TimeZone-baku"},{"href":"http://localhost:3000/time_zones/muscat","data":[{"name":"id","value":"muscat"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Muscat"},{"name":"iana_name","value":"Asia/Muscat"},{"name":"offset","value":"+04:00"}],"rel":"TimeZone-muscat"},{"href":"http://localhost:3000/time_zones/tbilisi","data":[{"name":"id","value":"tbilisi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tbilisi"},{"name":"iana_name","value":"Asia/Tbilisi"},{"name":"offset","value":"+04:00"}],"rel":"TimeZone-tbilisi"},{"href":"http://localhost:3000/time_zones/yerevan","data":[{"name":"id","value":"yerevan"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Yerevan"},{"name":"iana_name","value":"Asia/Yerevan"},{"name":"offset","value":"+04:00"}],"rel":"TimeZone-yerevan"},{"href":"http://localhost:3000/time_zones/kabul","data":[{"name":"id","value":"kabul"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kabul"},{"name":"iana_name","value":"Asia/Kabul"},{"name":"offset","value":"+04:30"}],"rel":"TimeZone-kabul"},{"href":"http://localhost:3000/time_zones/ekaterinburg","data":[{"name":"id","value":"ekaterinburg"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Ekaterinburg"},{"name":"iana_name","value":"Asia/Yekaterinburg"},{"name":"offset","value":"+05:00"}],"rel":"TimeZone-ekaterinburg"},{"href":"http://localhost:3000/time_zones/islamabad","data":[{"name":"id","value":"islamabad"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Islamabad"},{"name":"iana_name","value":"Asia/Karachi"},{"name":"offset","value":"+05:00"}],"rel":"TimeZone-islamabad"},{"href":"http://localhost:3000/time_zones/karachi","data":[{"name":"id","value":"karachi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Karachi"},{"name":"iana_name","value":"Asia/Karachi"},{"name":"offset","value":"+05:00"}],"rel":"TimeZone-karachi"},{"href":"http://localhost:3000/time_zones/tashkent","data":[{"name":"id","value":"tashkent"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tashkent"},{"name":"iana_name","value":"Asia/Tashkent"},{"name":"offset","value":"+05:00"}],"rel":"TimeZone-tashkent"},{"href":"http://localhost:3000/time_zones/chennai","data":[{"name":"id","value":"chennai"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Chennai"},{"name":"iana_name","value":"Asia/Kolkata"},{"name":"offset","value":"+05:30"}],"rel":"TimeZone-chennai"},{"href":"http://localhost:3000/time_zones/kolkata","data":[{"name":"id","value":"kolkata"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kolkata"},{"name":"iana_name","value":"Asia/Kolkata"},{"name":"offset","value":"+05:30"}],"rel":"TimeZone-kolkata"},{"href":"http://localhost:3000/time_zones/mumbai","data":[{"name":"id","value":"mumbai"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Mumbai"},{"name":"iana_name","value":"Asia/Kolkata"},{"name":"offset","value":"+05:30"}],"rel":"TimeZone-mumbai"},{"href":"http://localhost:3000/time_zones/new-delhi","data":[{"name":"id","value":"new-delhi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"New
972
+ Verde Is."},{"name":"iana_name","value":"Atlantic/Cape_Verde"},{"name":"offset","value":"-01:00"}],"rel":"TimeZone-cape-verde-is"},{"href":"http://localhost:3000/time_zones/casablanca","data":[{"name":"id","value":"casablanca"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Casablanca"},{"name":"iana_name","value":"Africa/Casablanca"},{"name":"offset","value":"+00:00"}],"rel":"TimeZone-casablanca"},{"href":"http://localhost:3000/time_zones/dublin","data":[{"name":"id","value":"dublin"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Dublin"},{"name":"iana_name","value":"Europe/Dublin"},{"name":"offset","value":"+00:00"}],"rel":"TimeZone-dublin"},{"href":"http://localhost:3000/time_zones/lisbon","data":[{"name":"id","value":"lisbon"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Lisbon"},{"name":"iana_name","value":"Europe/Lisbon"},{"name":"offset","value":"+00:00"}],"rel":"TimeZone-lisbon"},{"href":"http://localhost:3000/time_zones/london","data":[{"name":"id","value":"london"},{"name":"type","value":"TimeZone"},{"name":"description","value":"London"},{"name":"iana_name","value":"Europe/London"},{"name":"offset","value":"+00:00"}],"rel":"TimeZone-london"},{"href":"http://localhost:3000/time_zones/monrovia","data":[{"name":"id","value":"monrovia"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Monrovia"},{"name":"iana_name","value":"Africa/Monrovia"},{"name":"offset","value":"+00:00"}],"rel":"TimeZone-monrovia"},{"href":"http://localhost:3000/time_zones/utc","data":[{"name":"id","value":"utc"},{"name":"type","value":"TimeZone"},{"name":"description","value":"UTC"},{"name":"iana_name","value":"Etc/UTC"},{"name":"offset","value":"+00:00"}],"rel":"TimeZone-utc"},{"href":"http://localhost:3000/time_zones/amsterdam","data":[{"name":"id","value":"amsterdam"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Amsterdam"},{"name":"iana_name","value":"Europe/Amsterdam"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-amsterdam"},{"href":"http://localhost:3000/time_zones/belgrade","data":[{"name":"id","value":"belgrade"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Belgrade"},{"name":"iana_name","value":"Europe/Belgrade"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-belgrade"},{"href":"http://localhost:3000/time_zones/berlin","data":[{"name":"id","value":"berlin"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Berlin"},{"name":"iana_name","value":"Europe/Berlin"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-berlin"},{"href":"http://localhost:3000/time_zones/bern","data":[{"name":"id","value":"bern"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Bern"},{"name":"iana_name","value":"Europe/Berlin"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-bern"},{"href":"http://localhost:3000/time_zones/bratislava","data":[{"name":"id","value":"bratislava"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Bratislava"},{"name":"iana_name","value":"Europe/Bratislava"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-bratislava"},{"href":"http://localhost:3000/time_zones/brussels","data":[{"name":"id","value":"brussels"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Brussels"},{"name":"iana_name","value":"Europe/Brussels"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-brussels"},{"href":"http://localhost:3000/time_zones/budapest","data":[{"name":"id","value":"budapest"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Budapest"},{"name":"iana_name","value":"Europe/Budapest"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-budapest"},{"href":"http://localhost:3000/time_zones/copenhagen","data":[{"name":"id","value":"copenhagen"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Copenhagen"},{"name":"iana_name","value":"Europe/Copenhagen"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-copenhagen"},{"href":"http://localhost:3000/time_zones/ljubljana","data":[{"name":"id","value":"ljubljana"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Ljubljana"},{"name":"iana_name","value":"Europe/Ljubljana"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-ljubljana"},{"href":"http://localhost:3000/time_zones/madrid","data":[{"name":"id","value":"madrid"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Madrid"},{"name":"iana_name","value":"Europe/Madrid"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-madrid"},{"href":"http://localhost:3000/time_zones/paris","data":[{"name":"id","value":"paris"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Paris"},{"name":"iana_name","value":"Europe/Paris"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-paris"},{"href":"http://localhost:3000/time_zones/prague","data":[{"name":"id","value":"prague"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Prague"},{"name":"iana_name","value":"Europe/Prague"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-prague"},{"href":"http://localhost:3000/time_zones/rome","data":[{"name":"id","value":"rome"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Rome"},{"name":"iana_name","value":"Europe/Rome"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-rome"},{"href":"http://localhost:3000/time_zones/sarajevo","data":[{"name":"id","value":"sarajevo"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Sarajevo"},{"name":"iana_name","value":"Europe/Sarajevo"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-sarajevo"},{"href":"http://localhost:3000/time_zones/skopje","data":[{"name":"id","value":"skopje"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Skopje"},{"name":"iana_name","value":"Europe/Skopje"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-skopje"},{"href":"http://localhost:3000/time_zones/stockholm","data":[{"name":"id","value":"stockholm"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Stockholm"},{"name":"iana_name","value":"Europe/Stockholm"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-stockholm"},{"href":"http://localhost:3000/time_zones/vienna","data":[{"name":"id","value":"vienna"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Vienna"},{"name":"iana_name","value":"Europe/Vienna"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-vienna"},{"href":"http://localhost:3000/time_zones/warsaw","data":[{"name":"id","value":"warsaw"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Warsaw"},{"name":"iana_name","value":"Europe/Warsaw"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-warsaw"},{"href":"http://localhost:3000/time_zones/west-central-africa","data":[{"name":"id","value":"west-central-africa"},{"name":"type","value":"TimeZone"},{"name":"description","value":"West
973
+ Central Africa"},{"name":"iana_name","value":"Africa/Algiers"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-west-central-africa"},{"href":"http://localhost:3000/time_zones/zagreb","data":[{"name":"id","value":"zagreb"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Zagreb"},{"name":"iana_name","value":"Europe/Zagreb"},{"name":"offset","value":"+01:00"}],"rel":"TimeZone-zagreb"},{"href":"http://localhost:3000/time_zones/amman","data":[{"name":"id","value":"amman"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Amman"},{"name":"iana_name","value":"Asia/Amman"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-amman"},{"href":"http://localhost:3000/time_zones/athens","data":[{"name":"id","value":"athens"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Athens"},{"name":"iana_name","value":"Europe/Athens"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-athens"},{"href":"http://localhost:3000/time_zones/bucharest","data":[{"name":"id","value":"bucharest"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Bucharest"},{"name":"iana_name","value":"Europe/Bucharest"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-bucharest"},{"href":"http://localhost:3000/time_zones/cairo","data":[{"name":"id","value":"cairo"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Cairo"},{"name":"iana_name","value":"Africa/Cairo"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-cairo"},{"href":"http://localhost:3000/time_zones/harare","data":[{"name":"id","value":"harare"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Harare"},{"name":"iana_name","value":"Africa/Harare"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-harare"},{"href":"http://localhost:3000/time_zones/helsinki","data":[{"name":"id","value":"helsinki"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Helsinki"},{"name":"iana_name","value":"Europe/Helsinki"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-helsinki"},{"href":"http://localhost:3000/time_zones/istanbul","data":[{"name":"id","value":"istanbul"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Istanbul"},{"name":"iana_name","value":"Europe/Istanbul"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-istanbul"},{"href":"http://localhost:3000/time_zones/jerusalem","data":[{"name":"id","value":"jerusalem"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Jerusalem"},{"name":"iana_name","value":"Asia/Jerusalem"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-jerusalem"},{"href":"http://localhost:3000/time_zones/kaliningrad","data":[{"name":"id","value":"kaliningrad"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kaliningrad"},{"name":"iana_name","value":"Europe/Kaliningrad"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-kaliningrad"},{"href":"http://localhost:3000/time_zones/kyiv","data":[{"name":"id","value":"kyiv"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kyiv"},{"name":"iana_name","value":"Europe/Kiev"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-kyiv"},{"href":"http://localhost:3000/time_zones/pretoria","data":[{"name":"id","value":"pretoria"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Pretoria"},{"name":"iana_name","value":"Africa/Johannesburg"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-pretoria"},{"href":"http://localhost:3000/time_zones/riga","data":[{"name":"id","value":"riga"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Riga"},{"name":"iana_name","value":"Europe/Riga"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-riga"},{"href":"http://localhost:3000/time_zones/sofia","data":[{"name":"id","value":"sofia"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Sofia"},{"name":"iana_name","value":"Europe/Sofia"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-sofia"},{"href":"http://localhost:3000/time_zones/tallinn","data":[{"name":"id","value":"tallinn"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tallinn"},{"name":"iana_name","value":"Europe/Tallinn"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-tallinn"},{"href":"http://localhost:3000/time_zones/vilnius","data":[{"name":"id","value":"vilnius"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Vilnius"},{"name":"iana_name","value":"Europe/Vilnius"},{"name":"offset","value":"+02:00"}],"rel":"TimeZone-vilnius"},{"href":"http://localhost:3000/time_zones/baghdad","data":[{"name":"id","value":"baghdad"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Baghdad"},{"name":"iana_name","value":"Asia/Baghdad"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-baghdad"},{"href":"http://localhost:3000/time_zones/kuwait","data":[{"name":"id","value":"kuwait"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kuwait"},{"name":"iana_name","value":"Asia/Kuwait"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-kuwait"},{"href":"http://localhost:3000/time_zones/minsk","data":[{"name":"id","value":"minsk"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Minsk"},{"name":"iana_name","value":"Europe/Minsk"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-minsk"},{"href":"http://localhost:3000/time_zones/moscow","data":[{"name":"id","value":"moscow"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Moscow"},{"name":"iana_name","value":"Europe/Moscow"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-moscow"},{"href":"http://localhost:3000/time_zones/nairobi","data":[{"name":"id","value":"nairobi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Nairobi"},{"name":"iana_name","value":"Africa/Nairobi"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-nairobi"},{"href":"http://localhost:3000/time_zones/riyadh","data":[{"name":"id","value":"riyadh"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Riyadh"},{"name":"iana_name","value":"Asia/Riyadh"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-riyadh"},{"href":"http://localhost:3000/time_zones/st-petersburg","data":[{"name":"id","value":"st-petersburg"},{"name":"type","value":"TimeZone"},{"name":"description","value":"St.
974
+ Petersburg"},{"name":"iana_name","value":"Europe/Moscow"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-st-petersburg"},{"href":"http://localhost:3000/time_zones/volgograd","data":[{"name":"id","value":"volgograd"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Volgograd"},{"name":"iana_name","value":"Europe/Volgograd"},{"name":"offset","value":"+03:00"}],"rel":"TimeZone-volgograd"},{"href":"http://localhost:3000/time_zones/tehran","data":[{"name":"id","value":"tehran"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tehran"},{"name":"iana_name","value":"Asia/Tehran"},{"name":"offset","value":"+03:30"}],"rel":"TimeZone-tehran"},{"href":"http://localhost:3000/time_zones/abu-dhabi","data":[{"name":"id","value":"abu-dhabi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Abu
975
+ Dhabi"},{"name":"iana_name","value":"Asia/Muscat"},{"name":"offset","value":"+04:00"}],"rel":"TimeZone-abu-dhabi"},{"href":"http://localhost:3000/time_zones/baku","data":[{"name":"id","value":"baku"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Baku"},{"name":"iana_name","value":"Asia/Baku"},{"name":"offset","value":"+04:00"}],"rel":"TimeZone-baku"},{"href":"http://localhost:3000/time_zones/muscat","data":[{"name":"id","value":"muscat"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Muscat"},{"name":"iana_name","value":"Asia/Muscat"},{"name":"offset","value":"+04:00"}],"rel":"TimeZone-muscat"},{"href":"http://localhost:3000/time_zones/samara","data":[{"name":"id","value":"samara"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Samara"},{"name":"iana_name","value":"Europe/Samara"},{"name":"offset","value":"+04:00"}],"rel":"TimeZone-samara"},{"href":"http://localhost:3000/time_zones/tbilisi","data":[{"name":"id","value":"tbilisi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tbilisi"},{"name":"iana_name","value":"Asia/Tbilisi"},{"name":"offset","value":"+04:00"}],"rel":"TimeZone-tbilisi"},{"href":"http://localhost:3000/time_zones/yerevan","data":[{"name":"id","value":"yerevan"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Yerevan"},{"name":"iana_name","value":"Asia/Yerevan"},{"name":"offset","value":"+04:00"}],"rel":"TimeZone-yerevan"},{"href":"http://localhost:3000/time_zones/kabul","data":[{"name":"id","value":"kabul"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kabul"},{"name":"iana_name","value":"Asia/Kabul"},{"name":"offset","value":"+04:30"}],"rel":"TimeZone-kabul"},{"href":"http://localhost:3000/time_zones/ekaterinburg","data":[{"name":"id","value":"ekaterinburg"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Ekaterinburg"},{"name":"iana_name","value":"Asia/Yekaterinburg"},{"name":"offset","value":"+05:00"}],"rel":"TimeZone-ekaterinburg"},{"href":"http://localhost:3000/time_zones/islamabad","data":[{"name":"id","value":"islamabad"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Islamabad"},{"name":"iana_name","value":"Asia/Karachi"},{"name":"offset","value":"+05:00"}],"rel":"TimeZone-islamabad"},{"href":"http://localhost:3000/time_zones/karachi","data":[{"name":"id","value":"karachi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Karachi"},{"name":"iana_name","value":"Asia/Karachi"},{"name":"offset","value":"+05:00"}],"rel":"TimeZone-karachi"},{"href":"http://localhost:3000/time_zones/tashkent","data":[{"name":"id","value":"tashkent"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tashkent"},{"name":"iana_name","value":"Asia/Tashkent"},{"name":"offset","value":"+05:00"}],"rel":"TimeZone-tashkent"},{"href":"http://localhost:3000/time_zones/chennai","data":[{"name":"id","value":"chennai"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Chennai"},{"name":"iana_name","value":"Asia/Kolkata"},{"name":"offset","value":"+05:30"}],"rel":"TimeZone-chennai"},{"href":"http://localhost:3000/time_zones/kolkata","data":[{"name":"id","value":"kolkata"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kolkata"},{"name":"iana_name","value":"Asia/Kolkata"},{"name":"offset","value":"+05:30"}],"rel":"TimeZone-kolkata"},{"href":"http://localhost:3000/time_zones/mumbai","data":[{"name":"id","value":"mumbai"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Mumbai"},{"name":"iana_name","value":"Asia/Kolkata"},{"name":"offset","value":"+05:30"}],"rel":"TimeZone-mumbai"},{"href":"http://localhost:3000/time_zones/new-delhi","data":[{"name":"id","value":"new-delhi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"New
360
976
  Delhi"},{"name":"iana_name","value":"Asia/Kolkata"},{"name":"offset","value":"+05:30"}],"rel":"TimeZone-new-delhi"},{"href":"http://localhost:3000/time_zones/sri-jayawardenepura","data":[{"name":"id","value":"sri-jayawardenepura"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Sri
361
977
  Jayawardenepura"},{"name":"iana_name","value":"Asia/Colombo"},{"name":"offset","value":"+05:30"}],"rel":"TimeZone-sri-jayawardenepura"},{"href":"http://localhost:3000/time_zones/kathmandu","data":[{"name":"id","value":"kathmandu"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kathmandu"},{"name":"iana_name","value":"Asia/Kathmandu"},{"name":"offset","value":"+05:45"}],"rel":"TimeZone-kathmandu"},{"href":"http://localhost:3000/time_zones/almaty","data":[{"name":"id","value":"almaty"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Almaty"},{"name":"iana_name","value":"Asia/Almaty"},{"name":"offset","value":"+06:00"}],"rel":"TimeZone-almaty"},{"href":"http://localhost:3000/time_zones/astana","data":[{"name":"id","value":"astana"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Astana"},{"name":"iana_name","value":"Asia/Dhaka"},{"name":"offset","value":"+06:00"}],"rel":"TimeZone-astana"},{"href":"http://localhost:3000/time_zones/dhaka","data":[{"name":"id","value":"dhaka"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Dhaka"},{"name":"iana_name","value":"Asia/Dhaka"},{"name":"offset","value":"+06:00"}],"rel":"TimeZone-dhaka"},{"href":"http://localhost:3000/time_zones/novosibirsk","data":[{"name":"id","value":"novosibirsk"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Novosibirsk"},{"name":"iana_name","value":"Asia/Novosibirsk"},{"name":"offset","value":"+06:00"}],"rel":"TimeZone-novosibirsk"},{"href":"http://localhost:3000/time_zones/urumqi","data":[{"name":"id","value":"urumqi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Urumqi"},{"name":"iana_name","value":"Asia/Urumqi"},{"name":"offset","value":"+06:00"}],"rel":"TimeZone-urumqi"},{"href":"http://localhost:3000/time_zones/rangoon","data":[{"name":"id","value":"rangoon"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Rangoon"},{"name":"iana_name","value":"Asia/Rangoon"},{"name":"offset","value":"+06:30"}],"rel":"TimeZone-rangoon"},{"href":"http://localhost:3000/time_zones/bangkok","data":[{"name":"id","value":"bangkok"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Bangkok"},{"name":"iana_name","value":"Asia/Bangkok"},{"name":"offset","value":"+07:00"}],"rel":"TimeZone-bangkok"},{"href":"http://localhost:3000/time_zones/hanoi","data":[{"name":"id","value":"hanoi"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Hanoi"},{"name":"iana_name","value":"Asia/Bangkok"},{"name":"offset","value":"+07:00"}],"rel":"TimeZone-hanoi"},{"href":"http://localhost:3000/time_zones/jakarta","data":[{"name":"id","value":"jakarta"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Jakarta"},{"name":"iana_name","value":"Asia/Jakarta"},{"name":"offset","value":"+07:00"}],"rel":"TimeZone-jakarta"},{"href":"http://localhost:3000/time_zones/krasnoyarsk","data":[{"name":"id","value":"krasnoyarsk"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Krasnoyarsk"},{"name":"iana_name","value":"Asia/Krasnoyarsk"},{"name":"offset","value":"+07:00"}],"rel":"TimeZone-krasnoyarsk"},{"href":"http://localhost:3000/time_zones/beijing","data":[{"name":"id","value":"beijing"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Beijing"},{"name":"iana_name","value":"Asia/Shanghai"},{"name":"offset","value":"+08:00"}],"rel":"TimeZone-beijing"},{"href":"http://localhost:3000/time_zones/chongqing","data":[{"name":"id","value":"chongqing"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Chongqing"},{"name":"iana_name","value":"Asia/Chongqing"},{"name":"offset","value":"+08:00"}],"rel":"TimeZone-chongqing"},{"href":"http://localhost:3000/time_zones/hong-kong","data":[{"name":"id","value":"hong-kong"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Hong
362
978
  Kong"},{"name":"iana_name","value":"Asia/Hong_Kong"},{"name":"offset","value":"+08:00"}],"rel":"TimeZone-hong-kong"},{"href":"http://localhost:3000/time_zones/irkutsk","data":[{"name":"id","value":"irkutsk"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Irkutsk"},{"name":"iana_name","value":"Asia/Irkutsk"},{"name":"offset","value":"+08:00"}],"rel":"TimeZone-irkutsk"},{"href":"http://localhost:3000/time_zones/kuala-lumpur","data":[{"name":"id","value":"kuala-lumpur"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kuala
363
979
  Lumpur"},{"name":"iana_name","value":"Asia/Kuala_Lumpur"},{"name":"offset","value":"+08:00"}],"rel":"TimeZone-kuala-lumpur"},{"href":"http://localhost:3000/time_zones/perth","data":[{"name":"id","value":"perth"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Perth"},{"name":"iana_name","value":"Australia/Perth"},{"name":"offset","value":"+08:00"}],"rel":"TimeZone-perth"},{"href":"http://localhost:3000/time_zones/singapore","data":[{"name":"id","value":"singapore"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Singapore"},{"name":"iana_name","value":"Asia/Singapore"},{"name":"offset","value":"+08:00"}],"rel":"TimeZone-singapore"},{"href":"http://localhost:3000/time_zones/taipei","data":[{"name":"id","value":"taipei"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Taipei"},{"name":"iana_name","value":"Asia/Taipei"},{"name":"offset","value":"+08:00"}],"rel":"TimeZone-taipei"},{"href":"http://localhost:3000/time_zones/ulaanbaatar","data":[{"name":"id","value":"ulaanbaatar"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Ulaanbaatar"},{"name":"iana_name","value":"Asia/Ulaanbaatar"},{"name":"offset","value":"+08:00"}],"rel":"TimeZone-ulaanbaatar"},{"href":"http://localhost:3000/time_zones/osaka","data":[{"name":"id","value":"osaka"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Osaka"},{"name":"iana_name","value":"Asia/Tokyo"},{"name":"offset","value":"+09:00"}],"rel":"TimeZone-osaka"},{"href":"http://localhost:3000/time_zones/sapporo","data":[{"name":"id","value":"sapporo"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Sapporo"},{"name":"iana_name","value":"Asia/Tokyo"},{"name":"offset","value":"+09:00"}],"rel":"TimeZone-sapporo"},{"href":"http://localhost:3000/time_zones/seoul","data":[{"name":"id","value":"seoul"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Seoul"},{"name":"iana_name","value":"Asia/Seoul"},{"name":"offset","value":"+09:00"}],"rel":"TimeZone-seoul"},{"href":"http://localhost:3000/time_zones/tokyo","data":[{"name":"id","value":"tokyo"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tokyo"},{"name":"iana_name","value":"Asia/Tokyo"},{"name":"offset","value":"+09:00"}],"rel":"TimeZone-tokyo"},{"href":"http://localhost:3000/time_zones/yakutsk","data":[{"name":"id","value":"yakutsk"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Yakutsk"},{"name":"iana_name","value":"Asia/Yakutsk"},{"name":"offset","value":"+09:00"}],"rel":"TimeZone-yakutsk"},{"href":"http://localhost:3000/time_zones/adelaide","data":[{"name":"id","value":"adelaide"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Adelaide"},{"name":"iana_name","value":"Australia/Adelaide"},{"name":"offset","value":"+09:30"}],"rel":"TimeZone-adelaide"},{"href":"http://localhost:3000/time_zones/darwin","data":[{"name":"id","value":"darwin"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Darwin"},{"name":"iana_name","value":"Australia/Darwin"},{"name":"offset","value":"+09:30"}],"rel":"TimeZone-darwin"},{"href":"http://localhost:3000/time_zones/brisbane","data":[{"name":"id","value":"brisbane"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Brisbane"},{"name":"iana_name","value":"Australia/Brisbane"},{"name":"offset","value":"+10:00"}],"rel":"TimeZone-brisbane"},{"href":"http://localhost:3000/time_zones/canberra","data":[{"name":"id","value":"canberra"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Canberra"},{"name":"iana_name","value":"Australia/Melbourne"},{"name":"offset","value":"+10:00"}],"rel":"TimeZone-canberra"},{"href":"http://localhost:3000/time_zones/guam","data":[{"name":"id","value":"guam"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Guam"},{"name":"iana_name","value":"Pacific/Guam"},{"name":"offset","value":"+10:00"}],"rel":"TimeZone-guam"},{"href":"http://localhost:3000/time_zones/hobart","data":[{"name":"id","value":"hobart"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Hobart"},{"name":"iana_name","value":"Australia/Hobart"},{"name":"offset","value":"+10:00"}],"rel":"TimeZone-hobart"},{"href":"http://localhost:3000/time_zones/magadan","data":[{"name":"id","value":"magadan"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Magadan"},{"name":"iana_name","value":"Asia/Magadan"},{"name":"offset","value":"+10:00"}],"rel":"TimeZone-magadan"},{"href":"http://localhost:3000/time_zones/melbourne","data":[{"name":"id","value":"melbourne"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Melbourne"},{"name":"iana_name","value":"Australia/Melbourne"},{"name":"offset","value":"+10:00"}],"rel":"TimeZone-melbourne"},{"href":"http://localhost:3000/time_zones/port-moresby","data":[{"name":"id","value":"port-moresby"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Port
364
980
  Moresby"},{"name":"iana_name","value":"Pacific/Port_Moresby"},{"name":"offset","value":"+10:00"}],"rel":"TimeZone-port-moresby"},{"href":"http://localhost:3000/time_zones/sydney","data":[{"name":"id","value":"sydney"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Sydney"},{"name":"iana_name","value":"Australia/Sydney"},{"name":"offset","value":"+10:00"}],"rel":"TimeZone-sydney"},{"href":"http://localhost:3000/time_zones/vladivostok","data":[{"name":"id","value":"vladivostok"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Vladivostok"},{"name":"iana_name","value":"Asia/Vladivostok"},{"name":"offset","value":"+10:00"}],"rel":"TimeZone-vladivostok"},{"href":"http://localhost:3000/time_zones/new-caledonia","data":[{"name":"id","value":"new-caledonia"},{"name":"type","value":"TimeZone"},{"name":"description","value":"New
365
981
  Caledonia"},{"name":"iana_name","value":"Pacific/Noumea"},{"name":"offset","value":"+11:00"}],"rel":"TimeZone-new-caledonia"},{"href":"http://localhost:3000/time_zones/solomon-is","data":[{"name":"id","value":"solomon-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Solomon
366
- Is."},{"name":"iana_name","value":"Pacific/Guadalcanal"},{"name":"offset","value":"+11:00"}],"rel":"TimeZone-solomon-is"},{"href":"http://localhost:3000/time_zones/auckland","data":[{"name":"id","value":"auckland"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Auckland"},{"name":"iana_name","value":"Pacific/Auckland"},{"name":"offset","value":"+12:00"}],"rel":"TimeZone-auckland"},{"href":"http://localhost:3000/time_zones/fiji","data":[{"name":"id","value":"fiji"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Fiji"},{"name":"iana_name","value":"Pacific/Fiji"},{"name":"offset","value":"+12:00"}],"rel":"TimeZone-fiji"},{"href":"http://localhost:3000/time_zones/kamchatka","data":[{"name":"id","value":"kamchatka"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kamchatka"},{"name":"iana_name","value":"Asia/Kamchatka"},{"name":"offset","value":"+12:00"}],"rel":"TimeZone-kamchatka"},{"href":"http://localhost:3000/time_zones/marshall-is","data":[{"name":"id","value":"marshall-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Marshall
982
+ Is."},{"name":"iana_name","value":"Pacific/Guadalcanal"},{"name":"offset","value":"+11:00"}],"rel":"TimeZone-solomon-is"},{"href":"http://localhost:3000/time_zones/srednekolymsk","data":[{"name":"id","value":"srednekolymsk"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Srednekolymsk"},{"name":"iana_name","value":"Asia/Srednekolymsk"},{"name":"offset","value":"+11:00"}],"rel":"TimeZone-srednekolymsk"},{"href":"http://localhost:3000/time_zones/auckland","data":[{"name":"id","value":"auckland"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Auckland"},{"name":"iana_name","value":"Pacific/Auckland"},{"name":"offset","value":"+12:00"}],"rel":"TimeZone-auckland"},{"href":"http://localhost:3000/time_zones/fiji","data":[{"name":"id","value":"fiji"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Fiji"},{"name":"iana_name","value":"Pacific/Fiji"},{"name":"offset","value":"+12:00"}],"rel":"TimeZone-fiji"},{"href":"http://localhost:3000/time_zones/kamchatka","data":[{"name":"id","value":"kamchatka"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Kamchatka"},{"name":"iana_name","value":"Asia/Kamchatka"},{"name":"offset","value":"+12:00"}],"rel":"TimeZone-kamchatka"},{"href":"http://localhost:3000/time_zones/marshall-is","data":[{"name":"id","value":"marshall-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Marshall
367
983
  Is."},{"name":"iana_name","value":"Pacific/Majuro"},{"name":"offset","value":"+12:00"}],"rel":"TimeZone-marshall-is"},{"href":"http://localhost:3000/time_zones/wellington","data":[{"name":"id","value":"wellington"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Wellington"},{"name":"iana_name","value":"Pacific/Auckland"},{"name":"offset","value":"+12:00"}],"rel":"TimeZone-wellington"},{"href":"http://localhost:3000/time_zones/chatham-is","data":[{"name":"id","value":"chatham-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Chatham
368
984
  Is."},{"name":"iana_name","value":"Pacific/Chatham"},{"name":"offset","value":"+12:45"}],"rel":"TimeZone-chatham-is"},{"href":"http://localhost:3000/time_zones/nuku-alofa","data":[{"name":"id","value":"nuku-alofa"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Nuku''alofa"},{"name":"iana_name","value":"Pacific/Tongatapu"},{"name":"offset","value":"+13:00"}],"rel":"TimeZone-nuku-alofa"},{"href":"http://localhost:3000/time_zones/tokelau-is","data":[{"name":"id","value":"tokelau-is"},{"name":"type","value":"TimeZone"},{"name":"description","value":"Tokelau
369
- Is."},{"name":"iana_name","value":"Pacific/Fakaofo"},{"name":"offset","value":"+13:00"}],"rel":"TimeZone-tokelau-is"}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/tracked_item_statuses","template":{"data":[{"name":"status_code","value":null},{"name":"tracked_item_id","value":null},{"name":"member_id","value":null}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"tracked_item","href":"http://localhost:3000/tracked_items"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//tracked_item_statuses"}],"queries":[{"rel":"search","href":"http://localhost:3000/tracked_item_statuses/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"tracked_item_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/tracked_items","template":{"data":[{"name":"name","value":null},{"name":"team_id","value":null}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//tracked_items"}],"queries":[{"rel":"search","href":"http://localhost:3000/tracked_items/search","data":[{"name":"team_id","value":null},{"name":"id","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/tsl_metadata","template":{"data":[{"name":"user_id","value":null}]},"links":[{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//tsl_metadata"}],"queries":[{"rel":"search","href":"http://localhost:3000/tsl_metadata/search","data":[{"name":"user_id","value":null},{"name":"id","value":null},{"name":"version","value":null}]}]}},{"collection":{"version":"3.119.0","href":"http://localhost:3000/users","template":{"data":[{"name":"first_name","value":null},{"name":"last_name","value":null},{"name":"password","value":null},{"name":"birthday","value":null},{"name":"email","value":null},{"name":"facebook_id","value":null},{"name":"facebook_access_token","value":null}]},"links":[{"rel":"members","href":"http://localhost:3000/members"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"teams_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000//users"}],"queries":[{"rel":"search","href":"http://localhost:3000/users/search","data":[{"name":"id","value":null}]}]}}]'
985
+ Is."},{"name":"iana_name","value":"Pacific/Fakaofo"},{"name":"offset","value":"+13:00"}],"rel":"TimeZone-tokelau-is"}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/tracked_item_statuses","rel":"tracked_item_statuses","template":{"data":[{"name":"status_code","value":null},{"name":"tracked_item_id","value":null},{"name":"member_id","value":null},{"name":"type","value":"tracked_item_status"}]},"links":[{"rel":"member","href":"http://localhost:3000/members"},{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"tracked_item","href":"http://localhost:3000/tracked_items"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/tracked_item_statuses"}],"queries":[{"rel":"search","href":"http://localhost:3000/tracked_item_statuses/search","data":[{"name":"team_id","value":null},{"name":"member_id","value":null},{"name":"tracked_item_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
986
+ number of items to return for each page. Sending this parameter with the query
987
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
988
+ number of the page to be returned. This requires that paging be turned on
989
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/tracked_items","rel":"tracked_items","template":{"data":[{"name":"name","value":null},{"name":"team_id","value":null},{"name":"type","value":"tracked_item"}]},"links":[{"rel":"team","href":"http://localhost:3000/teams"},{"rel":"tracked_item_statuses","href":"http://localhost:3000/tracked_item_statuses"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/tracked_items"}],"queries":[{"rel":"search","href":"http://localhost:3000/tracked_items/search","data":[{"name":"team_id","value":null},{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
990
+ number of items to return for each page. Sending this parameter with the query
991
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
992
+ number of the page to be returned. This requires that paging be turned on
993
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/tsl_metadata","rel":"tsl_metadata","template":{"data":[{"name":"user_id","value":null},{"name":"type","value":"tsl_metadatum"}]},"links":[{"rel":"user","href":"http://localhost:3000/users"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/tsl_metadata"}],"queries":[{"rel":"search","href":"http://localhost:3000/tsl_metadata/search","data":[{"name":"user_id","value":null},{"name":"id","value":null},{"name":"version","value":null},{"name":"page_size","value":null,"prompt":"The
994
+ number of items to return for each page. Sending this parameter with the query
995
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
996
+ number of the page to be returned. This requires that paging be turned on
997
+ by also providing the page_size parameter."}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/tsl_chats","rel":"tsl_chats","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/tsl_chats"}],"commands":[{"rel":"send_push","href":"http://localhost:3000/tsl_chats/send_push","data":[{"name":"device_token","value":null},{"name":"event_id","value":null},{"name":"firebase_id","value":null},{"name":"member_id","value":null},{"name":"message","value":null},{"name":"team_id","value":null},{"name":"timestamp","value":null},{"name":"type","value":null},{"name":"url","value":null}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/tsl_scores","rel":"tsl_scores","links":[{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/tsl_scores"}],"commands":[{"rel":"send_push","href":"http://localhost:3000/tsl_scores/send_push","data":[{"name":"device_token","value":null},{"name":"event_id","value":null},{"name":"firebase_id","value":null},{"name":"game_state","value":null},{"name":"member_id","value":null},{"name":"opponent_name","value":null},{"name":"score_for","value":null},{"name":"score_against","value":null},{"name":"sport_score_style","value":null},{"name":"team_id","value":null},{"name":"team_name","value":null},{"name":"timestamp","value":null}]}]}},{"collection":{"version":"3.206.1","href":"http://localhost:3000/users","rel":"users","template":{"data":[{"name":"first_name","value":null},{"name":"last_name","value":null},{"name":"password","value":null},{"name":"birthday","value":null},{"name":"email","value":null},{"name":"facebook_id","value":null},{"name":"facebook_access_token","value":null},{"name":"type","value":"user"}]},"links":[{"rel":"members","href":"http://localhost:3000/members"},{"rel":"teams","href":"http://localhost:3000/teams"},{"rel":"teams_preferences","href":"http://localhost:3000/teams_preferences"},{"rel":"root","href":"http://localhost:3000/"},{"rel":"self","href":"http://localhost:3000/users"}],"queries":[{"rel":"search","href":"http://localhost:3000/users/search","data":[{"name":"id","value":null},{"name":"page_size","value":null,"prompt":"The
998
+ number of items to return for each page. Sending this parameter with the query
999
+ will enable paging for the returned collection."},{"name":"page_number","value":null,"prompt":"The
1000
+ number of the page to be returned. This requires that paging be turned on
1001
+ by also providing the page_size parameter."}]}]}}]'
370
1002
  http_version: '1.1'
371
1003
  adapter_metadata:
372
- effective_url: http://localhost:3000/schemas?hmac_client_id=classic&hmac_nonce=61023c18-4713-443b-ba72-327e12fd7467&hmac_timestamp=1444788589
373
- recorded_at: Wed, 14 Oct 2015 02:09:49 GMT
1004
+ effective_url: http://localhost:3000/schemas?hmac_client_id=classic&hmac_nonce=a0ab3aeb-5e3e-4cbd-a11b-417dae1ed0f3&hmac_timestamp=1457993769
1005
+ recorded_at: Mon, 14 Mar 2016 22:16:09 GMT
374
1006
  recorded_with: VCR 2.9.3