From 28cf52fed2f1682b92342af4797c1bd6a9bbec5a Mon Sep 17 00:00:00 2001 From: peggles2 Date: Thu, 15 Nov 2018 17:23:04 -0500 Subject: [PATCH] Feature/transition to usajobs api (#159) * update search-gov to point to usajobs * remove highlighting for jobs * exception error refactor * highlighting_disabled not being used * update connection to usajobs * post-process jobs results * update helper specs * squashme: use single quotes * refacter location name * cleanup * fix indents, update key, remove debug * place adapter back in * remove headers[:accept] not being used anywhere * fix test cases * remove debug statement * typo and debug statement * use geoip_info * changes made to get rspec working * changes made to job_openings to use the fixture json hash * cleanup code * changes made to rspec to add correct mapping for test * add keyword instead of query * update test to use job instead of foo * reset cossettes * update vcr cassettes * fix specs * remove put * remove logger debug * pass Keyword instead of query in jobs spec * hide secrets from vcr cassettes * require results keyword arg in post processor * pass correct rate interval codes to jobs helper * remove TODO * add location_name method to GeoIP::City objects * add location_name method to GeoIP::City * misc vcr cassettes * fix intermittent test failure * add basic jobs search spec * remove "is usajob?" view & helper conditionals * update readme to have new phantomjs instructions * - fix nil rate interval code - add cucumber test for salary format * fix missing application deadline * remove neogov specs - remove unused neogov case in jobs helper * remove extra line break * get host from config file --- README.markdown | 4 +- app/helpers/jobs_helper.rb | 36 +- app/models/govbox_set.rb | 31 +- app/models/job_results_post_processor.rb | 18 + app/views/searches/_job.mobile.haml | 2 +- app/views/searches/_jobs.mobile.haml | 5 +- app/views/shared/_jobs_gov_box.html.haml | 2 +- config/initializers/extensions/geoip.rb | 1 + config/secrets.yml.dev | 9 +- features/mobile_searches.feature | 2 + features/step_definitions/job_steps.rb | 14 +- .../Job_search.yml | 581 +++ .../active_record_extension.rb | 0 lib/extensions/geoip_extensions.rb | 11 + lib/jobs.rb | 32 +- spec/fixtures/json/usajobs_response.json | 913 +++++ spec/helpers/jobs_helper_spec.rb | 49 +- spec/lib/extensions/geoip_extensions_spec.rb | 25 + spec/lib/jobs_spec.rb | 18 +- spec/models/govbox_set_spec.rb | 96 +- .../models/job_results_post_processor_spec.rb | 25 + ..._affiliate_has_the_jobs_govbox_enabled.yml | 3432 +++++++++++++++++ spec/vcr_cassettes/jobs/search_options_.yml | 562 +++ .../when_there_is_some_problem.yml | 607 +++ .../search/gov/tasks_searchgov_bulk_index.yml | 94 +- ...ex_when_a_url_has_already_been_indexed.yml | 94 +- .../search/gov/tasks_searchgov_promote.yml | 98 +- .../when_the_url_points_to_a_pdf.yml | 56 + spec/views/searches/index.html.haml_spec.rb | 46 +- 29 files changed, 6616 insertions(+), 247 deletions(-) create mode 100644 app/models/job_results_post_processor.rb create mode 100644 config/initializers/extensions/geoip.rb rename lib/{ => extensions}/active_record_extension.rb (100%) create mode 100644 lib/extensions/geoip_extensions.rb create mode 100644 spec/fixtures/json/usajobs_response.json create mode 100644 spec/lib/extensions/geoip_extensions_spec.rb create mode 100644 spec/models/job_results_post_processor_spec.rb create mode 100644 spec/vcr_cassettes/govbox_set/new_query_/affiliate_geoip_info_when_the_affiliate_has_the_jobs_govbox_enabled.yml create mode 100644 spec/vcr_cassettes/jobs/search_options_.yml create mode 100644 spec/vcr_cassettes/jobs/search_options_/when_there_is_some_problem.yml diff --git a/README.markdown b/README.markdown index fe7a0c142d..cf2758f67c 100644 --- a/README.markdown +++ b/README.markdown @@ -238,7 +238,9 @@ Download and install PhantomJS: It can also be installed with Homebrew on a Mac. - $ brew install homebrew/versions/phantomjs198 + $ brew tap homebrew/cask + + $ brew cask install phantomjs If you see ```Error: The `brew link` step did not complete successfully``` when installing phantomjs, diff --git a/app/helpers/jobs_helper.rb b/app/helpers/jobs_helper.rb index 563f031f48..9415f29726 100644 --- a/app/helpers/jobs_helper.rb +++ b/app/helpers/jobs_helper.rb @@ -29,15 +29,15 @@ def format_salary(job) min_str = number_to_currency(job.minimum) max_str = number_to_currency(job.maximum) case job.rate_interval_code - when 'PA', 'PH' - period = job.rate_interval_code == 'PA' ? 'yr' : 'hr' + when 'Per Year', 'Per Hour' + period = job.rate_interval_code == 'Per Year' ? 'yr' : 'hr' plus = max > job.minimum ? '+' : '' "#{min_str}#{plus}/#{period}" - when 'WC' + when 'Without Compensation' nil else with_max = max > job.minimum ? "-#{max_str} " : ' ' - "#{min_str}#{with_max}#{Jobs::RATE_INTERVALS[job.rate_interval_code.to_sym]}" + "#{min_str}#{with_max}#{job.rate_interval_code}" end end @@ -51,9 +51,9 @@ def usajobs_logo end end - def jobs_content_heading_css_classes(is_usajobs_listing) + def jobs_content_heading_css_classes css_classes = 'content-heading' - css_classes << ' usajobs' if is_usajobs_listing + css_classes << ' usajobs' css_classes end @@ -74,39 +74,29 @@ def legacy_link_to_more_jobs(search) def more_jobs_title_and_url(search) if search.affiliate.has_organization_codes? - more_agency_jobs_title_and_url search.affiliate.agency, search.jobs.first.id + more_agency_jobs_title_and_url search.affiliate.agency else more_federal_jobs_title_and_url end end - def more_agency_jobs_title_and_url(agency, job_id) + def more_agency_jobs_title_and_url(agency) title = "#{t :'searches.more_agency_job_openings', agency: agency.abbreviation || agency.name}" - title << " #{t :'searches.on_usajobs'}" if job_listed_on_usajobs?(job_id) + title << " #{t :'searches.on_usajobs'}" - url = url_for_more_agency_jobs agency, job_id + url = url_for_more_agency_jobs agency [title, url] end - def job_listed_on_usajobs?(job_id) - job_id =~ /^usajobs/ - end - def more_federal_jobs_title_and_url title = t :'searches.more_federal_job_openings' url = 'https://www.usajobs.gov/Search/Results?hp=public' [title, url] end - def url_for_more_agency_jobs(agency, job_id) - case job_id - when /^usajobs/ - organization_codes = agency.joined_organization_codes('&a=') - "https://www.usajobs.gov/Search/Results?a=#{organization_codes}&hp=public" - when /^ng:/ - ng_agency = job_id.split(':')[1] - "http://agency.governmentjobs.com/#{ng_agency}/default.cfm" - end + def url_for_more_agency_jobs(agency) + organization_codes = agency.joined_organization_codes('&a=') + "https://www.usajobs.gov/Search/Results?a=#{organization_codes}&hp=public" end def job_openings_header(agency) diff --git a/app/models/govbox_set.rb b/app/models/govbox_set.rb index ad075f671c..aa739c79b1 100644 --- a/app/models/govbox_set.rb +++ b/app/models/govbox_set.rb @@ -18,7 +18,6 @@ class GovboxSet def initialize(query, affiliate, geoip_info, options = {}) @query, @affiliate, @geoip_info = query, affiliate, geoip_info @highlighting_options = options.slice(:highlighting, :pre_tags, :post_tags) - @base_search_options = @highlighting_options.merge( language: @affiliate.indexing_locale, q: @query) @@ -105,31 +104,20 @@ def init_news_items def init_jobs if @affiliate.jobs_enabled? - @jobs = Jobs.search build_jobs_search_options - if @jobs.present? - translate_jobs_highlights unless highlighting_disabled? + job_results = Jobs.search(build_jobs_search_options)&.search_result&.search_result_items + if job_results.present? + @jobs = JobResultsPostProcessor.new(results: job_results)&.post_processed_results @modules << 'JOBS' end end end def build_jobs_search_options - jobs_options = { query: @query, size: 10 } - jobs_options[:hl] = 1 unless highlighting_disabled? - org_tags_hash = @affiliate.has_organization_codes? ? { organization_ids: @affiliate.agency.joined_organization_codes(',') } : { tags: 'federal' } - jobs_options.merge!(org_tags_hash) - jobs_options.merge!(lat_lon: [@geoip_info.latitude, @geoip_info.longitude].join(',')) if @geoip_info.present? - jobs_options - end - - def translate_jobs_highlights - pre_tag = (@highlighting_options[:pre_tags] || DEFAULT_JOB_HIGHLIGHTING_OPTIONS[:pre_tags]).first - post_tag = (@highlighting_options[:post_tags] || DEFAULT_JOB_HIGHLIGHTING_OPTIONS[:post_tags]).first - @jobs.each do |job_opening| - job_opening.position_title = job_opening.position_title. - gsub(//, pre_tag). - gsub(/<\/em>/, post_tag) - end + jobs_options = { Keyword: @query, ResultsPerPage: 10 } + org_hash = { Organization: @affiliate.agency&.joined_organization_codes } + jobs_options.merge!(org_hash) + jobs_options.merge!(LocationName: @geoip_info&.location_name) + jobs_options.compact end def init_federal_register_documents @@ -170,7 +158,4 @@ def elastic_results_exist?(elastic_results) elastic_results.present? && elastic_results.total > 0 end - def highlighting_disabled? - @highlighting_options[:highlighting] === false - end end diff --git a/app/models/job_results_post_processor.rb b/app/models/job_results_post_processor.rb new file mode 100644 index 0000000000..ffb3981375 --- /dev/null +++ b/app/models/job_results_post_processor.rb @@ -0,0 +1,18 @@ +class JobResultsPostProcessor + attr_reader :results + + def initialize(results:) + @results = results.map(&:matched_object_descriptor) + end + + def post_processed_results + results.each do |result| + result.id = result.position_id + result.url = result.position_uri + result.locations = result.position_location.map(&:location_name) + result.minimum = result.position_remuneration.first.minimum_range.to_f + result.maximum = result.position_remuneration.first.maximum_range.to_f + result.rate_interval_code = result.position_remuneration.first.rate_interval_code + end + end +end diff --git a/app/views/searches/_job.mobile.haml b/app/views/searches/_job.mobile.haml index aa7c7df88d..696f2f5d8f 100644 --- a/app/views/searches/_job.mobile.haml +++ b/app/views/searches/_job.mobile.haml @@ -4,4 +4,4 @@ .job-organization= job.organization_name .job-locations-money = locations_and_salary(job) - .job-dates= job_application_deadline(job.end_date) + .job-dates= job_application_deadline(job.application_close_date) diff --git a/app/views/searches/_jobs.mobile.haml b/app/views/searches/_jobs.mobile.haml index 474df42003..0105abc4dd 100644 --- a/app/views/searches/_jobs.mobile.haml +++ b/app/views/searches/_jobs.mobile.haml @@ -1,9 +1,8 @@ #jobs.search.collapsible.collapsed.focus-on-next-sibling{ tabindex: -1 } .content-block-item.content-block-item-header - - is_usajobs_listing = job_listed_on_usajobs? search.jobs.first.id - = usajobs_logo if is_usajobs_listing - %h3{ class: jobs_content_heading_css_classes(is_usajobs_listing) } + = usajobs_logo + %h3{ class: jobs_content_heading_css_classes } = job_openings_header(search.affiliate.agency) - search.jobs.each_with_index do |job, index| diff --git a/app/views/shared/_jobs_gov_box.html.haml b/app/views/shared/_jobs_gov_box.html.haml index 884222e79e..23f96a812a 100644 --- a/app/views/shared/_jobs_gov_box.html.haml +++ b/app/views/shared/_jobs_gov_box.html.haml @@ -8,6 +8,6 @@ - if search.affiliate.should_show_job_organization_name? .job-organization= job.organization_name .job-locations-money= locations_and_salary(job) - .job-dates= job_application_deadline(job.end_date) + .job-dates= job_application_deadline(job.application_close_date) .more-jobs= legacy_link_to_more_jobs(search) diff --git a/config/initializers/extensions/geoip.rb b/config/initializers/extensions/geoip.rb new file mode 100644 index 0000000000..1ca91f0eeb --- /dev/null +++ b/config/initializers/extensions/geoip.rb @@ -0,0 +1 @@ +require 'geoip_extensions' diff --git a/config/secrets.yml.dev b/config/secrets.yml.dev index ce5a005f2b..de2ea85f63 100644 --- a/config/secrets.yml.dev +++ b/config/secrets.yml.dev @@ -2,6 +2,10 @@ airbrake_secrets: &AIRBRAKE_SECRETS project_id: 12345 project_key: PUT_YOUR_PROJECT_KEY_HERE +jobs_secrets: &JOBS_SECRETS + user_agent: your_email + authorization_key: your_usajobs_api_key + newrelic_secrets: &NEWRELIC_SECRETS license_key: newreliclicensekeygoeshere @@ -65,8 +69,9 @@ dev_settings: &DEV_SETTINGS writers: - localhost jobs: - host: 'https://jobs.search.gov' - endpoint: '/jobs/search.json' + <<: *JOBS_SECRETS + host: 'https://data.usajobs.gov' + endpoint: '/api/search' adapter: :net_http_persistent newrelic: <<: *NEWRELIC_SECRETS diff --git a/features/mobile_searches.feature b/features/mobile_searches.feature index a1096cd3b7..6164e3bfab 100644 --- a/features/mobile_searches.feature +++ b/features/mobile_searches.feature @@ -455,6 +455,8 @@ Feature: Searches using mobile device And I press "Search" Then I should see "Federal Job Openings" And I should see 10 job postings + And I should see an annual salary + And I should see an application deadline And I should see an image link to "USAJobs.gov" with url for "https://www.usajobs.gov/" And I should see a link to "More federal job openings on USAJobs.gov" with url for "https://www.usajobs.gov/Search/Results?hp=public" diff --git a/features/step_definitions/job_steps.rb b/features/step_definitions/job_steps.rb index d9bd942cdb..95ac4d12b1 100644 --- a/features/step_definitions/job_steps.rb +++ b/features/step_definitions/job_steps.rb @@ -1,5 +1,13 @@ Then /^I should see (\d+) job postings?$/ do |num_results| - html = Nokogiri::HTML(page.body) - job_postings = html.search('.content-block-item.job.result') - job_postings.size == num_results.to_i + page.should have_selector('.content-block-item.job.result') +end + +Then /I should see an annual salary/ do + annual_salary_regex = /\$\d{2,3},\d{3}\.\d{2}\+\/yr/ + page.should have_selector('.job-locations-money', text: annual_salary_regex) +end + +Then /I should see an application deadline/ do + deadline_regex = /Apply by [[:alpha:]]+ \d{1,2}, \d{4}/ + page.should have_selector('.job-dates', text: deadline_regex) end diff --git a/features/vcr_cassettes/Searches_using_mobile_device/Job_search.yml b/features/vcr_cassettes/Searches_using_mobile_device/Job_search.yml index e74c0ce29d..36d7be3f16 100644 --- a/features/vcr_cassettes/Searches_using_mobile_device/Job_search.yml +++ b/features/vcr_cassettes/Searches_using_mobile_device/Job_search.yml @@ -289,4 +289,585 @@ http_interactions: VA"],"url":"https://www.usajobs.gov/GetJob/ViewDetails/491975600"}]' http_version: recorded_at: Thu, 22 Feb 2018 07:18:04 GMT +- request: + method: get + uri: https://data.usajobs.gov/api/search?Keyword=jobs&ResultsPerPage=10 + body: + encoding: US-ASCII + string: '' + headers: + Authorization-Key: + - "" + User-Agent: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Connection: + - keep-alive + Keep-Alive: + - '30' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/hr+json + Expires: + - "-1" + Server: + - Microsoft-IIS/10.0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Vary: + - Accept-Encoding + Date: + - Wed, 31 Oct 2018 16:21:43 GMT + Transfer-Encoding: + - chunked + Connection: + - Transfer-Encoding + - keep-alive + Set-Cookie: + - akavpau_DATA_USAJ=1541003203~id=8352aad20c7b197e302d69fbbb4754fa; Domain=data.usajobs.gov; + Path=/; Secure + body: + encoding: UTF-8 + string: '{"LanguageCode":"EN","SearchParameters":{},"SearchResult":{"SearchResultCount":10,"SearchResultCountAll":779,"SearchResultItems":[{"MatchedObjectId":"510075500","MatchedObjectDescriptor":{"PositionID":"VA-18-15717","PositionTitle":"Banquet + Wait Staff","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/510075500","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/510075500?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Naval + Shipyard, Portsmouth, Virginia","PositionLocation":[{"LocationName":"Naval + Shipyard, Portsmouth, Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Naval + Shipyard, Portsmouth, Virginia","Longitude":-76.29812,"Latitude":36.8030968}],"OrganizationName":"Commander, + Navy Installations","DepartmentName":"Department of the Navy","JobCategory":[{"Name":"Waiter","Code":"7420"}],"JobGrade":[{"Code":"NA"}],"PositionSchedule":[{"Name":"Flexible","Code":"4"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"Specialized + experience must demonstrate the following: Must possess working knowledge + of sanitation practices and procedures. Knowledge of proper food handling + techniques such as the correct sides to serve and remove from. A minimum of + six months experience is strongly preferred. You will receive credit for all + qualifying experience, including volunteer and part time experience. You must + clearly identify the duties and responsibilities in each position held and + the total number of hours per week. Experience refers to paid and unpaid experience, + including volunteer work done through National Service programs (e.g., professional, + philanthropic, religious, spiritual, community, student, social). Volunteer + work helps build critical competencies, knowledge, and skills and can provide + valuable training and experience that translates directly to paid employment. + As part of the application process, you must complete and submit an occupational + questionnaire. Please follow all instructions carefully. Errors or omissions + may affect your rating and/or appointment eligibility. Work is primarily performed + indoors in a club/bar setting with adequate air conditioning, heating, and + lighting. Occasionally, work may be performed outdoors with exposure to a + variety of weather conditions. This positon is subject to prolonged standing, + walking, talking, bending, reaching, stooping and lifting of heavy trays or + objects weighing less than 45 pounds without assistance. May be exposed to + loud music, cigarette smoke, “rough” language, wet, slippery floors, + cuts, burns and bruises. As a condition of employment, the employee must be + able to obtain a Health Card prior to first day of work. Afterwards, must + be able to successfully pass a Food Handlers Sanitation course, thereafter + to be updated and maintained annually. Additionally, the employee must successfully + complete an annual CARE/TIPS training course. A valid driver’s license + is strongly preferred, as travel to and from club facilities may be required + in the performance of duties. This position is subject to an irregular tour, + which includes nights, weekends and/or holiday work to cover all operational + hours and special events.","PositionRemuneration":[{"MinimumRange":"8.13","MaximumRange":"8.13","RateIntervalCode":"Per + Hour"}],"PositionStartDate":"2018-09-06","PositionEndDate":"2018-11-06","PublicationStartDate":"2018-09-06","ApplicationCloseDate":"2018-11-06","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"1","HighGrade":"1","PromotionPotential":"01","HiringPath":["public"],"AgencyMarketingStatement":"Advertisement: + Discover MWR, USA JOBS, CNIC HQ","TravelCode":"0","ApplyOnlineUrl":"https://fhrnavigator.com/usajobs/apply"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"510077700","MatchedObjectDescriptor":{"PositionID":"CBCW-10302940-FY18-SB","PositionTitle":"Psychologist","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/510077700","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/510077700?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Multiple + Locations","PositionLocation":[{"LocationName":"Danville, Illinois","CountryCode":"United + States","CountrySubDivisionCode":"Illinois","CityName":"Danville, Illinois","Longitude":-87.63043,"Latitude":40.1594658},{"LocationName":"Springfield, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Springfield, + Illinois","Longitude":-89.64361,"Latitude":39.8010559}],"OrganizationName":"Veterans + Affairs, Veterans Health Administration","DepartmentName":"Department of Veterans + Affairs","JobCategory":[{"Name":"Psychology","Code":"0180"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"Basic + Requirements:\nUnited States Citizenship - Non-citizens may only be appointed + when it is not possible to recruit qualified citizens in accordance with VA + Policy.\nEnglish Language Proficiency Requirement - Per VA Handbook 5005, + Part II, Chapter 3, Section A, Paragraph 3j: No person will be appointed under + authority of 38 U.S.C., chapter 73 or 74, to serve in a direct patient-care + capacity in VHA who is not proficient in written and spoken English.\nEducation + Requirement - You must have a doctoral degree in psychology from a graduate + program in psychology accredited by the American Psychological Association + (APA), the Psychological Clinical Science Accreditation System (PCSAS), or + the Canadian Psychological Association (CPA) at the time the program was completed. + The specialty area of the degree must be consistent with the assignment for + which the applicant is to be employed. OR, have a doctoral degree in any area + of psychology and, in addition, successfully completed a respecialization + program meeting both of the following conditions: a) the respecialization + program must be completed in an APA or a CPA accredited doctoral program; + and b) the specialty in which you were retrained is consistent with the assignment + you are am applying for; OR, have a doctoral degree awarded between 1951 and + 1978 from a regionally-accredited institution, with a dissertation primarily + psychological in nature.\nInternship Requirement - You must have successfully + completed a professional psychology internship training program that was accredited + by APA or CPA at the time the program was completed and that is consistent + with the assignment for which the applicant is to be employed; OR, New VHA + psychology internship programs that are in the process of applying for APA + accreditation are acceptable in fulfillment of the internship requirement, + provided that such programs were sanctioned by the VHA Central Office Program + Director for Psychology and the VHA Office of Academic Affiliations at the + time that the individual was an intern; OR, VHA facilities that offered full-time, + one-year pre-doctoral internships prior to PL 96-151 (pre-1979) are considered + to be acceptable in fulfillment of the internship requirement; OR, Applicants + who completed an internship that was not accredited by APA or CPA at the time + the program was completed may be considered eligible for hire only if they + are currently board certified by the American Board of Professional Psychology + in a specialty area that is consistent with the assignment for which the applicant + is to be employed. (NOTE: Once board certified, the employee is required to + maintain board certification). NOTE: Applicants who have a doctoral degree + awarded between 1951 and 1978 from a regionally-accredited institution with + a dissertation primarily psychological in nature may fulfill this internship + requirement by having the equivalent of a one-year supervised internship experience + in a site specifically acceptable to the candidate''s doctoral program. If + the internship experience is not noted on the applicant''s official transcript, + the applicant must provide a statement from the doctoral program verifying + that the equivalent of a one-year supervised internship experience was completed + in a site acceptable to the doctoral program.\nLicensure: Candidates must + hold a full, current, and unrestricted license to practice psychology at the + doctoral level in a State, Territory or Commonwealth of the United States, + or the District of Columbia. Exception: Non-licensed applicants who otherwise + meet the eligibility requirements may be given a temporary appointment as + a \"graduate psychologist\" at the GS-11 or GS-12 grade under the authority + of 38 U.S.C. 7405 (c)(2)(B) for a period not to exceed two years from the + date of employment on the condition that such a psychologist provide care + only under the supervision of a psychologist who is licensed. Failure to obtain + licensure during that period is justification for termination of the temporary + appointment.\nExperience: In additional to meeting the basic requirements + as stated above, you must have the following: GS-11 Level: no additional experience + beyond the basic requirement\nGS-12 Level: at least 1 full year of experience + as a professional psychologist equivalent to the GS-11 level, and are able + to demonstrate the following knowledge, skills and abilities: Knowledge of + and ability to apply a wide range of professional psychological treatments + or assessment methods to a variety of patient populations. Ability to design + and implement effective treatment strategies. Ability to incorporate new clinical + procedures. Ability to conduct research activities, such as designing and + implementing clinical research projects (staff psychologists with specified + research job duties). Ability to perform basic research tasks of scholarship + and research execution within the context of an established research team, + including research participant relations, research documentation, data acquisition, + maintenance, and collaboration. GS-13 Level: at least 2 addition years of + experience, with at least one year equivalent to the GS-12 level, as a professional + psychologist that was obtained through employment as a psychologist or through + participating in a supervised post-doctoral psychology training program that + demonstrates 1) active professional practice that was paid/non-paid employment + and/or 2) a full, current and unrestricted license. To be creditable, the + experience must have required the use of knowledge, skills, abilities and + other characteristics associated with current psychology practice: Knowledge + of, and ability to apply, professional psychological treatments to a full + range of patient populations. Ability to provide professional advice and consultation + in areas related to professional psychology and behavioral health. Knowledge + of clinical research literature.*Experience is only creditable if it is post-doctoral + degree experience as a professional psychologist directly related to the duties + performed. Preferred Experience: Experience as a Psychologist in a clinical + setting. Reference: VA Regulations, specifically VA Handbook 5005, Part II, + Appendix G18 Psychologist Qualification Standard. This can be found in the + local Human Resources Office. Physical Requirements: This position requires + minimal physical exertion, light lifting (under 15 lbs), light carrying (under + 15 lbs.), working closely with others and working alone. The employee works + mostly from a seated position, conducting psychological assessments and providing + psychotherapeutic services for patients. The employee will use a computer + to access the medical record for entry and retrieval of information. The employee + will need to be able to hear conversational speech. hearing aid permitted. + The employee will be expected to move around the patient care environment.","PositionRemuneration":[{"MinimumRange":"61218.00","MaximumRange":"113428.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-09-06","PositionEndDate":"2018-10-31","PublicationStartDate":"2018-09-06","ApplicationCloseDate":"2018-10-31","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"11","HighGrade":"13","PromotionPotential":"13","HiringPath":["public"],"TotalOpenings":"5","AgencyMarketingStatement":"Learn + more about what it''s like to work at Veterans Affairs, Veterans Health Administration, + what the agency does, and about the types of careers this agency offers.https://www.va.gov/jobs//","TravelCode":"0","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"512261500","MatchedObjectDescriptor":{"PositionID":"Legal + Intern-18-SMF","PositionTitle":"Legal Affairs Internship","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/512261500","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/512261500?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Washington + DC, District of Columbia","PositionLocation":[{"LocationName":"Washington + DC, District of Columbia","CountryCode":"United States","CountrySubDivisionCode":"District + of Columbia","CityName":"Washington DC, District of Columbia","Longitude":-77.0213852,"Latitude":38.95269}],"OrganizationName":"Overseas + Private Investment Corporation","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"Legal Occupations Student Trainee","Code":"0999"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Multiple + Schedules","Code":"6"}],"PositionOfferingType":[{"Name":"Internships","Code":"15328"}],"QualificationSummary":"Applicants + must be U.S. citizens enrolled in an accredited law school with a cumulative + GPA of 3.0 or higher, and remain enrolled during the term of the internship. + Successful completion of a background investigation is also required.","PositionRemuneration":[{"MinimumRange":"0.00","MaximumRange":"0.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-03","PositionEndDate":"2019-04-26","PublicationStartDate":"2018-10-03","ApplicationCloseDate":"2019-04-26","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"00","HighGrade":"00","PromotionPotential":"None","HiringPath":["student"],"TotalOpenings":"Many","AgencyMarketingStatement":"Become + part of the Overseas Private Investment Corporation (OPIC), ranked fifth among + small agencies in the Best Places to Work in the Federal Government! OPIC + mobilizes foreign capital to help solve critical development challenges and + in doing so, advances U.S. foreign policy and national security priorities. + Because OPIC works with the U.S. private sector, it helps U.S. businesses + gain footholds in emerging markets, catalyzing revenues, jobs and growth opportunities + both at home and abroad.","TravelCode":"0"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"514368500","MatchedObjectDescriptor":{"PositionID":"DE-19-003-HQ-10332434","PositionTitle":"Administrative + Officer","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/514368500","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/514368500?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"District + of Columbia, District of Columbia","PositionLocation":[{"LocationName":"District + of Columbia, District of Columbia","CountryCode":"United States","CountrySubDivisionCode":"District + of Columbia","CityName":"District of Columbia, District of Columbia","Longitude":-77.03196,"Latitude":38.89037}],"OrganizationName":"Small + Business Administration","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"Administrative Officer","Code":"0341"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Cadre--See + definition under Important Notes","Code":"15327"}],"QualificationSummary":"Generally, + time in Non-Pay status is not creditable towards the specialized experience + requirement listed below.\nYou must meet all qualification requirements by + the closing date of this announcement. Experience: To receive credit, you + must indicate the month and year as well as the average hours worked per week + for each employer. Average work hours must be stated on the resume to quantify + each period of work experience or that experience will not be credited toward + meeting the specialized experience requirement.\nYou must address the specific + specialized experience required for each grade level of this position on your + resume or application or you will be rated \"Ineligible\" for that grade level. + GS-13: To qualify you must have at least 1 full year (52 weeks) of specialized + experience equivalent in difficulty and complexity to the GS-12 level in the + Federal service that has equipped you with the particular knowledge, skill, + and ability to perform successfully in this position. This experience may + have been gained in a Non-Federal service position. In addition, this Specialized + Experience must demonstrate the following: *Overseeing, managing, or directing + the day-to-day administrative functions of an organization to meet program + goals in the areas of payroll/budget, travel. and accountability property/procurement.\n* + Gathering and analyzing pertinent administrative data for various administrative + support functions, such as payroll, budget, travel, records management, accountable + property and procurement;\n* Interpreting and applying Federal Acquisition + Regulations (FAR) and Federal Travel Regulations (FTR); and\n*Communicating + orally and in writing to various levels of internal and external customers + to accomplish program goals GS-14: To qualify you must have at least 1 full + year (52 weeks) of specialized experience equivalent in difficulty and complexity + to the GS-13 level in the Federal service that has equipped you with the particular + knowledge, skill, and ability to perform successfully in this position. This + experience may have been gained in a Non-Federal service position. In addition, + this Specialized Experience must demonstrate the following: *Overseeing, managing, + or directing the day-to-day administrative functions of an organization to + meet program goals in the areas of payroll/budget, travel. and accountability + property/procurement.\n* Gathering and analyzing pertinent administrative + data and recommending improvements for various administrative support functions, + such as payroll, budget, travel, records management, accountable property + and procurement;\n* Interpreting and applying Federal Acquisition Regulations + (FAR) and Federal Travel Regulations (FTR);\n*Communicating orally and in + writing to various levels of internal and external customers to accomplish + program goals; and\n* Leading or supervising employees or projects.","PositionRemuneration":[{"MinimumRange":"96970.00","MaximumRange":"148967.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-19","PositionEndDate":"2018-11-02","PublicationStartDate":"2018-10-19","ApplicationCloseDate":"2018-11-02","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"13","HighGrade":"14","PromotionPotential":"14","HiringPath":["public"],"AgencyMarketingStatement":"Are + you excited by the idea of helping to support $39 billion in small business + financing and setting proper conditions to stimulate America''s economic growth? + SBA has been a leader in small business development for more than 60 years. + In an increasingly globalized economy, we tackle challenges confronted by + the small business community across geographic boundaries. Although times + have changed since the SBA was founded in 1953, the Agency''s mission - to + promote the growth of small business - has not. Today, SBA is more vital than + ever. We work in collaboration with partner organizations and use cutting-edge + technologies and well-tested best practices to multiply our impact on small + businesses. America''s 28 million small businesses are the engine of job creation + and economic growth in this country, creating nearly two out of every three + new jobs in the United States and employing over half the nation''s workforce. + SBA ensures that these businesses have the tools and resources required to + start and expand their operations, and create jobs that support a growing + economy and strengthen America''s middle class.","TravelCode":"1","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"514440600","MatchedObjectDescriptor":{"PositionID":"19-006-CS-DEU","PositionTitle":"Lender + Relations Specialist","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/514440600","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/514440600?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Wichita, + Kansas","PositionLocation":[{"LocationName":"Wichita, Kansas","CountryCode":"United + States","CountrySubDivisionCode":"Kansas","CityName":"Wichita, Kansas","Longitude":-97.33558,"Latitude":37.68698}],"OrganizationName":"Small + Business Administration","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"General Business And Industry","Code":"1101"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"GS-11: + One year of specialized experience, equivalent to the GS-09 grade level in + the Federal service, obtained in either the private or public sector performing + the following duties with minimal supervision: assisting in commercial or + business loan proposal development, packaging, and structuring; and assisting + with marketing lending programs and services to external customers through + outreach activities; and assisting with conducting formal training or professional + development; commercial lending experience; and assisting with the growth + and development of a customer base; and using a variety of software applications + and technologies in all aspects of the job. These qualifications must be clearly + referenced in your resume. GS-12: One year of specialized experience, equivalent + to the GS-11 grade level in the Federal service, obtained in either the private + or public sector performing the following duties independently: commercial + or business loan proposal development, packaging, and structuring; and marketing + lending programs and services to external customers through outreach activities; + and conducting formal training or professional development; and in the growth + and development of a customer base; commercial lending experience; and using + a variety of software applications and technologies in all aspects of the + job. These qualifications must be clearly referenced in your resume.\nAdditional + information on the qualification requirements is outlined in the OPM Qualifications + Standards Handbook of General Schedule Positions. It is available for your + review on OPM''s Qualifications web site. Experience refers to paid and unpaid + experience, including volunteer work done through National Service programs + (e.g. Peace Corps, AmeriCorps) and other organizations (e.g. professional; + philanthropic; religious; spiritual; community, student, social). Volunteer + work helps build critical competencies, knowledge, and skills and can provide + valuable training and experience that translates directly to paid employment. + You will receive credit for all qualifying experience, including volunteer + experience. All qualification requirements must be met by 11:59 pm (Eastern + Time) on the closing date of this vacancy announcement.","PositionRemuneration":[{"MinimumRange":"61218.00","MaximumRange":"95388.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-19","PositionEndDate":"2018-11-02","PublicationStartDate":"2018-10-19","ApplicationCloseDate":"2018-11-02","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"11","HighGrade":"12","PromotionPotential":"12","HiringPath":["public"],"TotalOpenings":"1","AgencyMarketingStatement":"Are + you excited by the idea of helping to support $39 billion in small business + financing and setting proper conditions to stimulate America''s economic growth? + SBA has been a leader in small business development for more than 60 years. + In an increasingly globalized economy, we tackle challenges confronted by + the small business community across geographic boundaries. Although times + have changed since the SBA was founded in 1953, the Agency''s mission-to promote + the growth of small business-has not. Today, SBA is more vital than ever. + We work in collaboration with partner organizations and using cutting-edge + technologies and well-tested best practices to multiply our impact on small + businesses. America''s 28 million small businesses are the engine of job creation + and economic growth in this country, creating nearly two out of every three + new jobs in the United States and employing over half the nation''s workforce. + SBA ensures that these businesses have the tools and resources required to + start and expand their operations, and create jobs that support a growing + economy and strengthen America''s middle class. The SBA and entrepreneurs + drive American competitiveness and help grow the economy. Picture yourself + at SBA.","TravelCode":"2","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"514446500","MatchedObjectDescriptor":{"PositionID":"DE-10338309-19-MLJ","PositionTitle":"Student + Trainee (Investigations)","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/514446500","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/514446500?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Houston, + Texas","PositionLocation":[{"LocationName":"Houston, Texas","CountryCode":"United + States","CountrySubDivisionCode":"Texas","CityName":"Houston, Texas","Longitude":-95.36978,"Latitude":29.76045}],"OrganizationName":"Small + Business Administration","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"Investigation Student Trainee","Code":"1899"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"One + year","Code":"15318"}],"QualificationSummary":"GS-1899-03: Completion of 1 + full academic year of post-high school study OR Successful completion of the + requirements for an Associate''s degree (please verify by attaching a copy + of your transcripts). GS-1899-04: Completion of 2 academic years of post-high + school study OR Successful completion of the requirements for an Associate''s + degree (please verify by attaching a copy of your college transcripts). Academic + year of undergraduate education (post-high school study): A minimum of 30 + semester or 45 quarter hours at an accredited college or university; or\nA + minimum of 36 weeks at an accredited business, technical, vocational, or qualifying + educational institution for at least 20 classroom hours per week. Additional + information on the qualification requirements is outlined in the OPM Qualifications + Standards Handbook of General Schedule Positions. It is available for your + review on OPM''s Qualifications web site. All qualification requirements must + be met by 11:59 pm (Eastern Time) on the closing date of this vacancy announcement.","PositionRemuneration":[{"MinimumRange":"30359.00","MaximumRange":"44303.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-19","PositionEndDate":"2018-11-02","PublicationStartDate":"2018-10-19","ApplicationCloseDate":"2018-11-02","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"3","HighGrade":"4","PromotionPotential":"None","HiringPath":["student"],"TotalOpenings":"1","AgencyMarketingStatement":"Are + you excited by the idea of helping to support $39 billion in small business + financing and setting proper conditions to stimulate America''s economic growth? + SBA has been a leader in small business development for more than 60 years. + In an increasingly globalized economy, we tackle challenges confronted by + the small business community across geographic boundaries. Although times + have changed since the SBA was founded in 1953, the Agency''s mission-to promote + the growth of small business-has not. Today, SBA is more vital than ever. + We work in collaboration with partner organizations and using cutting-edge + technologies and well-tested best practices to multiply our impact on small + businesses. America''s 28 million small businesses are the engine of job creation + and economic growth in this country, creating nearly two out of every three + new jobs in the United States and employing over half the nation''s workforce. + SBA ensures that these businesses have the tools and resources required to + start and expand their operations, and create jobs that support a growing + economy and strengthen America''s middle class. The SBA and entrepreneurs + drive American competitiveness and help grow the economy. Picture yourself + at SBA.","TravelCode":"0","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"514452800","MatchedObjectDescriptor":{"PositionID":"DE-019-004-HQ-10336385","PositionTitle":"Supervisory + Public Affairs Specialist","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/514452800","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/514452800?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Washington + DC, District of Columbia","PositionLocation":[{"LocationName":"Washington + DC, District of Columbia","CountryCode":"United States","CountrySubDivisionCode":"District + of Columbia","CityName":"Washington DC, District of Columbia","Longitude":-77.032,"Latitude":38.8904}],"OrganizationName":"Small + Business Administration","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"Public Affairs","Code":"1035"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"Generally, + time in Non-Pay status is not creditable towards the specialized experience + requirement listed below.\nYou must meet all qualification requirements by + the closing date of this announcement. Experience: To receive credit, you + must indicate the month and year as well as the average hours worked per week + for each employer. Average work hours must be stated on the resume to quantify + each period of work experience or that experience will not be credited toward + meeting the specialized experience requirement.\nYou must address the specific + specialized experience required for each grade level of this position on your + resume or application or you will be rated \"Ineligible\" for that grade level. + GS-15: To qualify you must have at least 1 full year (52 weeks) of specialized + experience equivalent in difficulty and complexity to the GS-14 level in the + Federal service that has equipped you with the particular knowledge, skill, + and ability to perform successfully in this position. This experience may + have been gained in a Non-Federal service position. In addition, this Specialized + Experience must demonstrate the following: *Leading or supervising employees + or projects in a disaster or emergency relief organization/program. (This + experience must involve activities pertaining to planning, socializing, and + maintaining preparedness for disasters or emergencies.)\n*Performing outreach + and coordination activities involving multiple agencies or organizations.\n*Reviewing/approving + or preparing press or news releases, speeches or talking points, and feature + and photo material for the media or public appearances; and\n*Acting as the + spokesperson for an organization or program.\n*Evaluating a program to identify + strengths, monitor progress, and make recommendations for improvement","PositionRemuneration":[{"MinimumRange":"134789.00","MaximumRange":"164200.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-19","PositionEndDate":"2018-11-02","PublicationStartDate":"2018-10-19","ApplicationCloseDate":"2018-11-02","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"15","HighGrade":"15","PromotionPotential":"15","HiringPath":["public"],"AgencyMarketingStatement":"Are + you excited by the idea of helping to support $39 billion in small business + financing and setting proper conditions to stimulate America''s economic growth? + SBA has been a leader in small business development for more than 60 years. + In an increasingly globalized economy, we tackle challenges confronted by + the small business community across geographic boundaries. Although times + have changed since the SBA was founded in 1953, the Agency''s mission - to + promote the growth of small business - has not. Today, SBA is more vital than + ever. We work in collaboration with partner organizations and use cutting-edge + technologies and well-tested best practices to multiply our impact on small + businesses. America''s 28 million small businesses are the engine of job creation + and economic growth in this country, creating nearly two out of every three + new jobs in the United States and employing over half the nation''s workforce. + SBA ensures that these businesses have the tools and resources required to + start and expand their operations, and create jobs that support a growing + economy and strengthen America''s middle class.","TravelCode":"1","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"514603500","MatchedObjectDescriptor":{"PositionID":"18-388D-LAC-DEU + (10339547)","PositionTitle":"Program Analyst","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/514603500","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/514603500?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Washington + DC, District of Columbia","PositionLocation":[{"LocationName":"Washington + DC, District of Columbia","CountryCode":"United States","CountrySubDivisionCode":"District + of Columbia","CityName":"Washington DC, District of Columbia","Longitude":-77.032,"Latitude":38.8904}],"OrganizationName":"Small + Business Administration","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"Management And Program Analysis","Code":"0343"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"MINIMUM + QUALIFICATIONS: To be considered minimally qualified for this position, you + must demonstrate that you have the required specialized experience and/or + education for the respective grade level in which you are applying. This experience + must be clearly articulated in your resume. GS-09: Specialized Experience: + One year of specialized experience (equivalent to the GS-7 grade level in + the Federal service) obtained in either the private or public sector that + includes: assisting in reading and writing SQL queries for assigned program + areas; AND assisting in manipulating large data sets, using data analytic + tools and reporting applications such as relational databases, MS Access and + MS Excel (to include Excel Pivot Tables), Tableau, SharePoint, Microsoft Reporting + Services; AND assisting in designing or developing reporting and dashboards + to be used for research in the examination of program office related activities; + AND evaluating, analyzing or financial interpreting data from various database + systems to determine program effectiveness. OR Education: Successful completion + of at least a Master''s or equivalent graduate degree or (2) full years of + progressively higher level graduate education leading to such a degree in + a field which demonstrates the knowledge, skills, and abilities necessary + to do the work of the position or LL.B. or J.D. , if related. You must include + transcripts. OR Combination of Education and Experience: A combination of + education and experience may be used to qualify for this position. To combine + education and experience, first divide your semester hours of graduate education + beyond 18 semester hours by 18. (If your education is currently described + in quarter hours, convert them to semester hours by dividing by 1.5). Then + divide your total months of qualifying specialized experience by 12. Finally, + add the two percentages together. The total percentage must equal at least + 100 percent to qualify. You must include transcripts. Additional information + on the qualification requirements is outlined in the OPM Qualifications Standards + Handbook of General Schedule Positions. It is available for your review on + OPM''s Qualifications web site. Experience refers to paid and unpaid experience, + including volunteer work done through National Service programs (e.g. Peace + Corps, AmeriCorps) and other organizations (e.g. professional; philanthropic; + religious; spiritual; community, student, social). Volunteer work helps build + critical competencies, knowledge, and skills and can provide valuable training + and experience that translates directly to paid employment. You will receive + credit for all qualifying experience, including volunteer experience. All + qualification requirements must be met by 11:59 pm (Eastern Time) on the closing + date of this vacancy announcement.","PositionRemuneration":[{"MinimumRange":"56233.00","MaximumRange":"106012.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-24","PositionEndDate":"2018-11-06","PublicationStartDate":"2018-10-24","ApplicationCloseDate":"2018-11-06","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"9","HighGrade":"9","PromotionPotential":"12","HiringPath":["public"],"TotalOpenings":"1","AgencyMarketingStatement":"Are + you excited by the idea of helping to support $39 billion in small business + financing and setting proper conditions to stimulate America''s economic growth? + SBA has been a leader in small business development for more than 60 years. + In an increasingly globalized economy, we tackle challenges confronted by + the small business community across geographic boundaries. Although times + have changed since the SBA was founded in 1953, the Agency''s mission-to promote + the growth of small business-has not. Today, SBA is more vital than ever. + We work in collaboration with partner organizations and using cutting-edge + technologies and well-tested best practices to multiply our impact on small + businesses. America''s 28 million small businesses are the engine of job creation + and economic growth in this country, creating nearly two out of every three + new jobs in the United States and employing over half the nation''s workforce. + SBA ensures that these businesses have the tools and resources required to + start and expand their operations, and create jobs that support a growing + economy and strengthen America''s middle class. The SBA and entrepreneurs + drive American competitiveness and help grow the economy. Picture yourself + at SBA.","TravelCode":"1","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"515174200","MatchedObjectDescriptor":{"PositionID":"19-014-CL-DEU","PositionTitle":"General + Attorney","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/515174200","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/515174200?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Hato + Rey, Puerto Rico","PositionLocation":[{"LocationName":"Hato Rey, Puerto Rico","CountryCode":"United + States","CountrySubDivisionCode":"Puerto Rico","CityName":"Hato Rey, Puerto + Rico","Longitude":-66.05612,"Latitude":18.42488}],"OrganizationName":"Small + Business Administration","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"Attorney","Code":"0905"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"GS-13: + Four or more years of professional legal experience, equivalent to the GS-12 + grade level in the Federal service, obtained in either the private or public + sector in one or more of the following area: government-guaranteed lending, + banking and financial law, litigation and bankruptcy and real estate law and + closings, administrative law and ethics. Additional information on the qualification + requirements is outlined in the OPM Qualifications Standards Handbook of General + Schedule Positions. It is available for your review on OPM''s Qualifications + web site. Experience refers to paid and unpaid experience, including volunteer + work done through National Service programs (e.g. Peace Corps, AmeriCorps) + and other organizations (e.g. professional; philanthropic; religious; spiritual; + community, student, social). Volunteer work helps build critical competencies, + knowledge, and skills and can provide valuable training and experience that + translates directly to paid employment. You will receive credit for all qualifying + experience, including volunteer experience. Selective Placement Factors: This + position requires a special qualification that has been determined to be essential + to perform the duties and will be used as a screen out element. Those who + do not provide evidence they possess the following selective factor(s) will + be rated not qualified. Active member of the Federal bar\nAdmitted to the + Bar of the U.S. District Court for the District of Puerto Rico\nObtained notarial + license for Puerto Rico All qualification requirements must be met by 11:59 + pm (Eastern Time) on the closing date of this vacancy announcement.","PositionRemuneration":[{"MinimumRange":"87252.00","MaximumRange":"113428.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-29","PositionEndDate":"2018-11-09","PublicationStartDate":"2018-10-29","ApplicationCloseDate":"2018-11-09","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"13","HighGrade":"13","PromotionPotential":"13","HiringPath":["public"],"TotalOpenings":"1","AgencyMarketingStatement":"Are + you excited by the idea of helping to support $39 billion in small business + financing and setting proper conditions to stimulate America''s economic growth? + SBA has been a leader in small business development for more than 60 years. + In an increasingly globalized economy, we tackle challenges confronted by + the small business community across geographic boundaries. Although times + have changed since the SBA was founded in 1953, the Agency''s mission-to promote + the growth of small business-has not. Today, SBA is more vital than ever. + We work in collaboration with partner organizations and using cutting-edge + technologies and well-tested best practices to multiply our impact on small + businesses. America''s 28 million small businesses are the engine of job creation + and economic growth in this country, creating nearly two out of every three + new jobs in the United States and employing over half the nation''s workforce. + SBA ensures that these businesses have the tools and resources required to + start and expand their operations, and create jobs that support a growing + economy and strengthen America''s middle class. The SBA and entrepreneurs + drive American competitiveness and help grow the economy. Picture yourself + at SBA.","TravelCode":"2","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"515350000","MatchedObjectDescriptor":{"PositionID":"DE-19-005-HQ-10339142","PositionTitle":"IT + Project Manager","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/515350000","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/515350000?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Washington + DC, District of Columbia","PositionLocation":[{"LocationName":"Washington + DC, District of Columbia","CountryCode":"United States","CountrySubDivisionCode":"District + of Columbia","CityName":"Washington DC, District of Columbia","Longitude":-77.032,"Latitude":38.8904}],"OrganizationName":"Small + Business Administration","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"Information Technology Management","Code":"2210"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Multiple + Appointment Types","Code":"15327"}],"QualificationSummary":"REQUIRED CERTIFICATION: + Federal Acquisition Certification (FAC) Contracting Officer''s Representative + (COR) Level II or higher Certification is required. In addition, selectees + with FAC COR Level II Certification must obtain FAC COR Level III Certification + within 6 months of entry on duty. If this Level III Certification is not obtained + within 6 months, the employee may be subject to removal from the position + Generally, time in Non-Pay status is not creditable towards the specialized + experience requirement listed below.\nYou must meet all qualification requirements + by the closing date of this announcement. Experience: To receive credit, you + must indicate the month and year as well as the average hours worked per week + for each employer. Average work hours must be stated on the resume to quantify + each period of work experience or that experience will not be credited toward + meeting the specialized experience requirement.\nYou must address the specific + specialized experience required for each grade level of this position on your + resume or application or you will be rated \"Ineligible\" for that grade level. + For all positions individuals must have IT-related experience demonstrating + each of the four competencies listed below:\n1. Attention to Detail - Is thorough + when performing work and conscientious about attending to detail.\n2. Customer + Service - Works with clients and customers (that is, any individuals who use + or receive the services or products that your work unit produces, including + the general public, individuals who work in the agency, other agencies, or + organizations outside the Government) to assess their needs, provide information + or assistance, resolve their problems, or satisfy their expectations; knows + about available products and services; is committed to providing quality products + and services.\n3. Oral Communication - Expresses information (for example, + ideas or facts) to individuals or groups effectively, taking into account + the audience and nature of the information (for example, technical, sensitive, + controversial); makes clear and convincing oral presentations; listens to + others, attends to nonverbal cues, and responds appropriately.\n4. Problem + Solving - Identifies problems; determines accuracy and relevance of information; + uses sound judgment to generate and evaluate alternatives, and to make recommendations. + GS-14: To qualify you must have at least 1 full year (52 weeks) of specialized + experience equivalent in difficulty and complexity to the GS-13 level in the + Federal service that has equipped you with the particular knowledge, skill, + and ability to perform successfully in this position. This experience may + have been gained in a Non-Federal service position. In addition, this Specialized + Experience must demonstrate the following: *Initiating, planning, and managing + information technology projects in support of enterprise software development + and implementation;\n*Serving as a Contracting Officer Representative (COR) + for contracts supporting a major information technology investment; and\n*Participating + in the project governance process for an Information Technology portfolio.","PositionRemuneration":[{"MinimumRange":"114590.00","MaximumRange":"148967.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-29","PositionEndDate":"2018-11-09","PublicationStartDate":"2018-10-29","ApplicationCloseDate":"2018-11-09","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"14","HighGrade":"14","PromotionPotential":"14","HiringPath":["public"],"TotalOpenings":"1","AgencyMarketingStatement":"Are + you excited by the idea of helping to support $39 billion in small business + financing and setting proper conditions to stimulate America''s economic growth? + SBA has been a leader in small business development for more than 60 years. + In an increasingly globalized economy, we tackle challenges confronted by + the small business community across geographic boundaries. Although times + have changed since the SBA was founded in 1953, the Agency''s mission - to + promote the growth of small business - has not. Today, SBA is more vital than + ever. We work in collaboration with partner organizations and use cutting-edge + technologies and well-tested best practices to multiply our impact on small + businesses. America''s 28 million small businesses are the engine of job creation + and economic growth in this country, creating nearly two out of every three + new jobs in the United States and employing over half the nation''s workforce. + SBA ensures that these businesses have the tools and resources required to + start and expand their operations, and create jobs that support a growing + economy and strengthen America''s middle class. By applying for this position + with SBA''s Office of Disaster Assistance, you can enjoy challenging but satisfying + work and join a highly motivated and diverse team that helps families and + businesses rebuild their lives after a disaster.","TravelCode":"1","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0}],"UserArea":{"NumberOfPages":"78","IsRadialSearch":false}}}' + http_version: + recorded_at: Wed, 31 Oct 2018 16:21:44 GMT recorded_with: VCR 4.0.0 diff --git a/lib/active_record_extension.rb b/lib/extensions/active_record_extension.rb similarity index 100% rename from lib/active_record_extension.rb rename to lib/extensions/active_record_extension.rb diff --git a/lib/extensions/geoip_extensions.rb b/lib/extensions/geoip_extensions.rb new file mode 100644 index 0000000000..59fc0a3fda --- /dev/null +++ b/lib/extensions/geoip_extensions.rb @@ -0,0 +1,11 @@ +module GeoipExtensions + module GeoIP + module City + def location_name + [city_name, real_region_name, country_name].reject(&:blank?).join(', ') + end + end + end +end + +GeoIP::City.include GeoipExtensions::GeoIP::City diff --git a/lib/jobs.rb b/lib/jobs.rb index 7849206ad5..03239a25ac 100644 --- a/lib/jobs.rb +++ b/lib/jobs.rb @@ -13,41 +13,29 @@ module Jobs "|#{BLOCKED_PHRASES}"+ "|(#{SIMPLE_SINGULARS.join('|')})s?" - RATE_INTERVALS = { - :BW => 'Bi-weekly', - :FB => 'Fee Basis', - :PA => 'Per Year', - :PD => 'Per Day', - :PH => 'Per Hour', - :PM => 'Per Month', - :PW => 'Piece Work', - :ST => 'Student Stipend Paid', - :SY => 'School Year', - :WC => 'Without Compensation'}.freeze - def self.establish_connection! - jobs_api_config = Rails.application.secrets.jobs - @endpoint = jobs_api_config['endpoint'] - @jobs_api_connection = Faraday.new jobs_api_config['host'] do |conn| + usajobs_api_config = Rails.application.secrets.jobs + @endpoint = usajobs_api_config['endpoint'] + @usajobs_api_connection = Faraday.new(usajobs_api_config['host']) do |conn| + conn.headers['Authorization-Key'] = usajobs_api_config['authorization_key'] + conn.headers['User-Agent'] = usajobs_api_config['user_agent'] conn.request :json - conn.response :mashify + conn.response :mrashify conn.response :json conn.use :instrumentation - conn.adapter jobs_api_config['adapter'] || Faraday.default_adapter + conn.adapter usajobs_api_config['adapter'] || Faraday.default_adapter end - @jobs_api_connection.headers[:accept] = 'application/vnd.usagov.position_openings.v3' end def self.search(options) - @jobs_api_connection.get(@endpoint, options).body if query_eligible?(options[:query]) - rescue Exception => e - Rails.logger.error("Trouble fetching jobs information: #{e}") + @usajobs_api_connection.get(@endpoint, options).body if query_eligible?(options[:Keyword]) + rescue => error + Rails.logger.error("Trouble fetching jobs information: #{error}") nil end def self.query_eligible?(query) query =~ /\b#{JOB_RELATED_KEYWORDS}\b/i && !(query =~ /\b#{BLOCKED_KEYWORDS}\b/i) && !(query =~ /["():]|^-| -\S+/) - end end diff --git a/spec/fixtures/json/usajobs_response.json b/spec/fixtures/json/usajobs_response.json new file mode 100644 index 0000000000..29f473b5ed --- /dev/null +++ b/spec/fixtures/json/usajobs_response.json @@ -0,0 +1,913 @@ +{ + "LanguageCode": "EN", + "SearchParameters": {}, + "SearchResult": { + "SearchResultCount": 10, + "SearchResultCountAll": 8457, + "SearchResultItems": [ + { + "MatchedObjectId": "390086900", + "MatchedObjectDescriptor": { + "PositionID": "FAR-F09-P001", + "PositionTitle": "Transportation Security Officer (TSO)", + "PositionURI": "https://www.usajobs.gov:443/GetJob/ViewDetails/390086900", + "ApplyURI": [ + "https://www.usajobs.gov:443/GetJob/ViewDetails/390086900?PostingChannelID=RESTAPI" + ], + "PositionLocationDisplay": "Fargo, North Dakota", + "PositionLocation": [ + { + "LocationName": "Fargo, North Dakota", + "CountryCode": "United States", + "CountrySubDivisionCode": "North Dakota", + "CityName": "Fargo, North Dakota", + "Longitude": -96.78177, + "Latitude": 46.87591 + } + ], + "OrganizationName": "Transportation Security Administration", + "DepartmentName": "Department of Homeland Security", + "JobCategory": [ + { + "Name": "Compliance Inspection And Support", + "Code": "1802" + } + ], + "JobGrade": [ + { + "Code": "SV" + } + ], + "PositionSchedule": [ + { + "Name": "Part-Time", + "Code": "2" + } + ], + "PositionOfferingType": [ + { + "Name": "Permanent", + "Code": "15317" + } + ], + "QualificationSummary": "Applicants must meet these qualifications in order to be further evaluated in the TSO hiring process:Have a high school diploma, General Educational Development (GED), High School Equivalency Test (HiSET), or Test Assessing Secondary Completion (TASC) credential OR at least one year of full-time work experience in the security industry, aviation screening, or as an X-ray technicianBe proficient in the English language (i.e., able to read, write, speak, and comprehend)National Service Experience (i.e., volunteer experience): Experience refers to paid and unpaid experience, including volunteer work done through National Service programs (e.g., Peace Corps, AmeriCorps) and other organizations (e.g., professional; philanthropic; religious; spiritual; community, student, social). Volunteer work helps build critical competencies, knowledge, and skills and can provide valuable training and experience that translates directly to paid employment. You will receive credit for all qualifying experience, including volunteer experience.", + "PositionRemuneration": [ + { + "MinimumRange": "19.54", + "MaximumRange": "26.23", + "RateIntervalCode": "Per Hour" + } + ], + "PositionStartDate": "2018-04-12", + "PositionEndDate": "2018-10-31", + "PublicationStartDate": "2018-04-12", + "ApplicationCloseDate": "2018-10-31", + "PositionFormattedDescription": [ + { + "Label": "Dynamic Teaser", + "LabelDescription": "Hit highlighting for keyword searches." + } + ], + "UserArea": { + "Details": { + "JobSummary": "Any offers of employment made pursuant to this announcement will be consistent with all applicable authorities concerning, including Presidential Memoranda, Executive Orders, interpretive U.S. Office of Management and Budget (OMB) and U.S. Office of Personnel Management (OPM) guidance, and Office of Management and Budget plans and policies concerning hiring. These authorities are subject to change.", + "WhoMayApply": { + "Name": "", + "Code": "" + }, + "LowGrade": "D", + "HighGrade": "D", + "PromotionPotential": "E", + "HiringPath": [ + "public" + ], + "AppointmentExplanationText": "Permanent", + "AgencyMarketingStatement": "", + "TravelCode": "1", + "ApplyOnlineUrl": "https://jobs-recruit.tsa.dhs.gov/tsa-tso/ros/rosDashboard.hms?O=1&J=153", + "DetailStatusUrl": "https://jobs-recruit.tsa.dhs.gov/tsa-tso/ros/rosDashboard.hms?O=1&J=153&S=1" + }, + "IsRadialSearch": false + } + }, + "RelevanceRank": 0 + }, + { + "MatchedObjectId": "404038500", + "MatchedObjectDescriptor": { + "PositionID": "DEN-F09-P001", + "PositionTitle": "Transportation Security Officer (TSO)", + "PositionURI": "https://www.usajobs.gov:443/GetJob/ViewDetails/404038500", + "ApplyURI": [ + "https://www.usajobs.gov:443/GetJob/ViewDetails/404038500?PostingChannelID=RESTAPI" + ], + "PositionLocationDisplay": "Denver, Colorado", + "PositionLocation": [ + { + "LocationName": "Denver, Colorado", + "CountryCode": "United States", + "CountrySubDivisionCode": "Colorado", + "CityName": "Denver, Colorado", + "Longitude": -104.992256, + "Latitude": 39.74001 + } + ], + "OrganizationName": "Transportation Security Administration", + "DepartmentName": "Department of Homeland Security", + "JobCategory": [ + { + "Name": "Compliance Inspection And Support", + "Code": "1802" + } + ], + "JobGrade": [ + { + "Code": "SV" + } + ], + "PositionSchedule": [ + { + "Name": "Part-Time", + "Code": "2" + } + ], + "PositionOfferingType": [ + { + "Name": "Permanent", + "Code": "15317" + } + ], + "QualificationSummary": "Applicants must meet these qualifications in order to be further evaluated in the TSO hiring process:Have a high school diploma, General Educational Development (GED), High School Equivalency Test (HiSET), or Test Assessing Secondary Completion (TASC) credential OR at least one year of full-time work experience in the security industry, aviation screening, or as an X-ray technicianBe proficient in the English language (i.e., able to read, write, speak, and comprehend)National Service Experience (i.e., volunteer experience): Experience refers to paid and unpaid experience, including volunteer work done through National Service programs (e.g., Peace Corps, AmeriCorps) and other organizations (e.g., professional; philanthropic; religious; spiritual; community, student, social). Volunteer work helps build critical competencies, knowledge, and skills and can provide valuable training and experience that translates directly to paid employment. You will receive credit for all qualifying experience, including volunteer experience.", + "PositionRemuneration": [ + { + "MinimumRange": "18.7", + "MaximumRange": "25.98", + "RateIntervalCode": "Per Hour" + } + ], + "PositionStartDate": "2018-05-30", + "PositionEndDate": "2018-12-31", + "PublicationStartDate": "2018-05-30", + "ApplicationCloseDate": "2018-12-31", + "PositionFormattedDescription": [ + { + "Label": "Dynamic Teaser", + "LabelDescription": "Hit highlighting for keyword searches." + } + ], + "UserArea": { + "Details": { + "JobSummary": "Any offers of employment made pursuant to this announcement will be consistent with all applicable authorities concerning, including Presidential Memoranda, Executive Orders, interpretive U.S. Office of Management and Budget (OMB) and U.S. Office of Personnel Management (OPM) guidance, and Office of Management and Budget plans and policies concerning hiring. These authorities are subject to change.", + "WhoMayApply": { + "Name": "", + "Code": "" + }, + "LowGrade": "D", + "HighGrade": "D", + "PromotionPotential": "E", + "HiringPath": [ + "public" + ], + "AppointmentExplanationText": "Permanent", + "AgencyMarketingStatement": "", + "TravelCode": "1", + "ApplyOnlineUrl": "https://jobs-recruit.tsa.dhs.gov/tsa-tso/ros/rosDashboard.hms?O=1&J=120", + "DetailStatusUrl": "https://jobs-recruit.tsa.dhs.gov/tsa-tso/ros/rosDashboard.hms?O=1&J=120&S=1" + }, + "IsRadialSearch": false + } + }, + "RelevanceRank": 0 + }, + { + "MatchedObjectId": "430942500", + "MatchedObjectDescriptor": { + "PositionID": "SLC-F09-P001", + "PositionTitle": "Transportation Security Officer (TSO)", + "PositionURI": "https://www.usajobs.gov:443/GetJob/ViewDetails/430942500", + "ApplyURI": [ + "https://www.usajobs.gov:443/GetJob/ViewDetails/430942500?PostingChannelID=RESTAPI" + ], + "PositionLocationDisplay": "Salt Lake City, Utah", + "PositionLocation": [ + { + "LocationName": "Salt Lake City, Utah", + "CountryCode": "United States", + "CountrySubDivisionCode": "Utah", + "CityName": "Salt Lake City, Utah", + "Longitude": -111.888229, + "Latitude": 40.75952 + } + ], + "OrganizationName": "Transportation Security Administration", + "DepartmentName": "Department of Homeland Security", + "JobCategory": [ + { + "Name": "Compliance Inspection And Support", + "Code": "1802" + } + ], + "JobGrade": [ + { + "Code": "SV" + } + ], + "PositionSchedule": [ + { + "Name": "Part-Time", + "Code": "2" + } + ], + "PositionOfferingType": [ + { + "Name": "Permanent", + "Code": "15317" + } + ], + "QualificationSummary": "Applicants must meet these qualifications in order to be further evaluated in the TSO hiring process:Have a high school diploma, General Educational Development (GED), High School Equivalency Test (HiSET), or Test Assessing Secondary Completion (TASC) credential OR at least one year of full-time work experience in the security industry, aviation screening, or as an X-ray technicianBe proficient in the English language (i.e., able to read, write, speak, and comprehend)National Service Experience (i.e., volunteer experience): Experience refers to paid and unpaid experience, including volunteer work done through National Service programs (e.g., Peace Corps, AmeriCorps) and other organizations (e.g., professional; philanthropic; religious; spiritual; community, student, social). Volunteer work helps build critical competencies, knowledge, and skills and can provide valuable training and experience that translates directly to paid employment. You will receive credit for all qualifying experience, including volunteer experience.", + "PositionRemuneration": [ + { + "MinimumRange": "15.63", + "MaximumRange": "22.33", + "RateIntervalCode": "Per Hour" + } + ], + "PositionStartDate": "2017-09-05", + "PositionEndDate": "2018-11-30", + "PublicationStartDate": "2017-09-05", + "ApplicationCloseDate": "2018-11-30", + "PositionFormattedDescription": [ + { + "Label": "Dynamic Teaser", + "LabelDescription": "Hit highlighting for keyword searches." + } + ], + "UserArea": { + "Details": { + "JobSummary": "Any offers of employment made pursuant to this announcement will be consistent with all applicable authorities concerning, including Presidential Memoranda, Executive Orders, interpretive U.S. Office of Management and Budget (OMB) and U.S. Office of Personnel Management (OPM) guidance, and Office of Management and Budget plans and policies concerning hiring. These authorities are subject to change.", + "WhoMayApply": { + "Name": "", + "Code": "" + }, + "LowGrade": "D", + "HighGrade": "D", + "PromotionPotential": "E", + "HiringPath": [ + "public" + ], + "AppointmentExplanationText": "Permanent", + "AgencyMarketingStatement": "", + "TravelCode": "1", + "ApplyOnlineUrl": "https://jobs-recruit.tsa.dhs.gov/tsa-tso/ros/rosDashboard.hms?O=1&J=438", + "DetailStatusUrl": "https://jobs-recruit.tsa.dhs.gov/tsa-tso/ros/rosDashboard.hms?O=1&J=438&S=1" + }, + "IsRadialSearch": false + } + }, + "RelevanceRank": 0 + }, + { + "MatchedObjectId": "434612600", + "MatchedObjectDescriptor": { + "PositionID": "DON0905-LTA", + "PositionTitle": "Attorney", + "PositionURI": "https://www.usajobs.gov:443/GetJob/ViewDetails/434612600", + "ApplyURI": [ + "https://www.usajobs.gov:443/GetJob/ViewDetails/434612600?PostingChannelID=RESTAPI" + ], + "PositionLocationDisplay": "Washington Navy Yard, District of Columbia", + "PositionLocation": [ + { + "LocationName": "Washington Navy Yard, District of Columbia", + "CountryCode": "United States", + "CountrySubDivisionCode": "District of Columbia", + "CityName": "Washington Navy Yard, District of Columbia", + "Longitude": -76.99695, + "Latitude": 38.873333 + } + ], + "OrganizationName": "Department of the Navy/Assistant for Administration", + "DepartmentName": "Department of the Navy", + "JobCategory": [ + { + "Name": "Attorney", + "Code": "0905" + } + ], + "JobGrade": [ + { + "Code": "GS" + } + ], + "PositionSchedule": [ + { + "Name": "Multiple Schedules", + "Code": "6" + } + ], + "PositionOfferingType": [ + { + "Name": "Multiple Appointment Types", + "Code": "15327" + } + ], + "QualificationSummary": "The Office of Personnel Management (OPM) has not issued qualification standards for attorney positions. However, OGC sets minimum qualifications for attorney positions and sets forth these qualifications in each vacancy announcement. The successful candidate: Must be a U.S. citizen Graduated with a J.D. or LL.B from a law school accredited by the American Bar Association An active member in good standing of the bar of the highest court of a State, U.S. Commonwealth, U.S. territory, or the District of Columbia Admitted to practice before a state or federal court Must obtain and maintain a Secret security clearance Patent Attorneys must be members of the U.S. Patent and Trademark Organization A secret or top secret security clearance is a requirement of a position with OGC. Failure to obtain and maintain the required level of clearance may result in the withdrawal of a position offer or removal. If you possess a security clearance, please indicate the level and termination date in your resume.", + "PositionRemuneration": [ + { + "MinimumRange": "64650.0000", + "MaximumRange": "160300.0000", + "RateIntervalCode": "Per Year" + } + ], + "PositionStartDate": "2018-01-16", + "PositionEndDate": "2019-01-15", + "PublicationStartDate": "2018-01-16", + "ApplicationCloseDate": "2019-01-15", + "PositionFormattedDescription": [ + { + "Label": "Dynamic Teaser", + "LabelDescription": "Hit highlighting for keyword searches." + } + ], + "UserArea": { + "Details": { + "JobSummary": "The Navy's Office of the General Counsel (OGC) has over 140 locations around the world. To view Department of the Navy's Office of the General Counsel (OGC) current attorney vacancies please go to the OGC website at: http://www.secnav.navy.mil/OGC/Lists/Vacancies2/Front.aspx. Please note that the OGC website lists all available attorney positions. All questions regarding vacancy announcements should be directed to the point of contact listed for the specific vacancy. OGC consists of approximately 750 civilian attorneys, 25 uniformed Navy JAGs and Marine Corps Judge Advocates, and over 200 support staff located in 140 offices throughout the United States and overseas. These positions range from GS-11 to GS-15. Approximately 300 civilian attorneys are located in Washington D.C.. The Office of the General Counsel of the Navy provides legal advice to the Secretary of the Navy, the Under Secretary of the Navy, the Assistant Secretaries of the Navy and their staffs, and the multiple components of the Department, to include the Navy and the Marine Corps, in the obligation of an annual budget of over $160 billion and the management of over 900,000 service members and civilians. . Civilian Navy OGC attorneys help clients address legal concerns in virtually every area of the law related to business, including government contracts, public employment ethics, environmental concerns, personal and real property law, personnel law, fiscal issues, intellectual property law, litigation, legislation, cyber and intelligence law.", + "WhoMayApply": { + "Name": "United States Citizens", + "Code": "15514" + }, + "LowGrade": "11", + "HighGrade": "15", + "PromotionPotential": "15", + "HiringPath": [ + "public" + ], + "TotalOpenings": "Many", + "AgencyMarketingStatement": "", + "TravelCode": "1" + }, + "IsRadialSearch": false + } + }, + "RelevanceRank": 0 + }, + { + "MatchedObjectId": "450389600", + "MatchedObjectDescriptor": { + "PositionID": "RAP-F09-P001", + "PositionTitle": "Transportation Security Officer (TSO)", + "PositionURI": "https://www.usajobs.gov:443/GetJob/ViewDetails/450389600", + "ApplyURI": [ + "https://www.usajobs.gov:443/GetJob/ViewDetails/450389600?PostingChannelID=RESTAPI" + ], + "PositionLocationDisplay": "Rapid City, South Dakota", + "PositionLocation": [ + { + "LocationName": "Rapid City, South Dakota", + "CountryCode": "United States", + "CountrySubDivisionCode": "South Dakota", + "CityName": "Rapid City, South Dakota", + "Longitude": -103.230888, + "Latitude": 44.0811653 + } + ], + "OrganizationName": "Transportation Security Administration", + "DepartmentName": "Department of Homeland Security", + "JobCategory": [ + { + "Name": "Compliance Inspection And Support", + "Code": "1802" + } + ], + "JobGrade": [ + { + "Code": "SV" + } + ], + "PositionSchedule": [ + { + "Name": "Part-Time", + "Code": "2" + } + ], + "PositionOfferingType": [ + { + "Name": "Permanent", + "Code": "15317" + } + ], + "QualificationSummary": "Applicants must meet these qualifications in order to be further evaluated in the TSO hiring process:Have a high school diploma, General Educational Development (GED), High School Equivalency Test (HiSET), or Test Assessing Secondary Completion (TASC) credential OR at least one year of full-time work experience in the security industry, aviation screening, or as an X-ray technicianBe proficient in the English language (i.e., able to read, write, speak, and comprehend)National Service Experience (i.e., volunteer experience): Experience refers to paid and unpaid experience, including volunteer work done through National Service programs (e.g., Peace Corps, AmeriCorps) and other organizations (e.g., professional; philanthropic; religious; spiritual; community, student, social). Volunteer work helps build critical competencies, knowledge, and skills and can provide valuable training and experience that translates directly to paid employment. You will receive credit for all qualifying experience, including volunteer experience.", + "PositionRemuneration": [ + { + "MinimumRange": "15.63", + "MaximumRange": "22.33", + "RateIntervalCode": "Per Hour" + } + ], + "PositionStartDate": "2018-07-02", + "PositionEndDate": "2018-10-31", + "PublicationStartDate": "2018-07-02", + "ApplicationCloseDate": "2018-10-31", + "PositionFormattedDescription": [ + { + "Label": "Dynamic Teaser", + "LabelDescription": "Hit highlighting for keyword searches." + } + ], + "UserArea": { + "Details": { + "JobSummary": "Any offers of employment made pursuant to this announcement will be consistent with all applicable authorities concerning, including Presidential Memoranda, Executive Orders, interpretive U.S. Office of Management and Budget (OMB) and U.S. Office of Personnel Management (OPM) guidance, and Office of Management and Budget plans and policies concerning hiring. These authorities are subject to change.", + "WhoMayApply": { + "Name": "", + "Code": "" + }, + "LowGrade": "D", + "HighGrade": "D", + "PromotionPotential": "E", + "HiringPath": [ + "public" + ], + "AppointmentExplanationText": "Permanent", + "AgencyMarketingStatement": "", + "TravelCode": "1", + "ApplyOnlineUrl": "https://jobs-recruit.tsa.dhs.gov/tsa-tso/ros/rosDashboard.hms?O=1&J=392", + "DetailStatusUrl": "https://jobs-recruit.tsa.dhs.gov/tsa-tso/ros/rosDashboard.hms?O=1&J=392&S=1" + }, + "IsRadialSearch": false + } + }, + "RelevanceRank": 0 + }, + { + "MatchedObjectId": "451842500", + "MatchedObjectDescriptor": { + "PositionID": "OARMAV1", + "PositionTitle": "Attorney and Assistant United States Attorney", + "PositionURI": "https://www.usajobs.gov:443/GetJob/ViewDetails/451842500", + "ApplyURI": [ + "https://www.usajobs.gov:443/GetJob/ViewDetails/451842500?PostingChannelID=RESTAPI" + ], + "PositionLocationDisplay": "Washington DC, District of Columbia", + "PositionLocation": [ + { + "LocationName": "Washington DC, District of Columbia", + "CountryCode": "United States", + "CountrySubDivisionCode": "District of Columbia", + "CityName": "Washington DC, District of Columbia", + "Longitude": -77.032, + "Latitude": 38.8904 + } + ], + "OrganizationName": "Offices, Boards and Divisions", + "DepartmentName": "Department of Justice", + "JobCategory": [ + { + "Name": "Attorney", + "Code": "0905" + } + ], + "JobGrade": [ + { + "Code": "GS" + } + ], + "PositionSchedule": [ + { + "Name": "Full Time", + "Code": "1" + } + ], + "PositionOfferingType": [ + { + "Name": "Multiple Appointment Types", + "Code": "15327" + } + ], + "QualificationSummary": "Given the scope of Justice's legal practice (see component practice areas at http://www.justice.gov/legal-careers/attorneys-vacancies ) the needs of each organization and section are defined by its respective mission, areas of practice, and the specific skills needed at the time of the vacancy. Generally, as the \"Nation's Litigator,\" Justice seeks attorneys with some litigation experience; however, opportunities also exist for attorneys with other types of experience, such as legislative review, policy formulation, and legal advising.To review the specific requirements, please review the vacancy announcements listed on the Department's web page, http://www.justice.gov/legal-careers/attorneys-vacanciesTECHNICAL QUALIFICATIONS:Any attorney who is an active member of the bar of any U.S. jurisdiction and has at least one year post-J.D. legal or other relevant experience is eligible to apply for any experienced attorney position.Please review the information listed in each vacancy announcement. The list of attorney vacancies is available at, [http://www.justice.gov/careers/legal/attvancies.html", + "PositionRemuneration": [ + { + "MinimumRange": "52329.0", + "MaximumRange": "134776.0", + "RateIntervalCode": "Per Year" + } + ], + "PositionStartDate": "2017-11-15", + "PositionEndDate": "2018-11-15", + "PublicationStartDate": "2017-11-15", + "ApplicationCloseDate": "2018-11-15", + "PositionFormattedDescription": [ + { + "Label": "Dynamic Teaser", + "LabelDescription": "Hit highlighting for keyword searches." + } + ], + "UserArea": { + "Details": { + "JobSummary": "The Department of Justice offers a broad range of opportunities for experienced attorneys to work on many significant and complex issues that face our nation. Our lawyers work in virtually every area of legal practice.The effectiveness of the Department's law enforcement and other legal responsibilities depends upon the continued recruitment and hiring of excellent and diverse legal talent. We recognize the need for attorneys of varied backgrounds and skills, and offer an inclusive environment that relies on diverse perspectives to ensure that we effectively serve the American people.", + "WhoMayApply": { + "Name": "All groups of qualified individuals", + "Code": "45575" + }, + "LowGrade": "11", + "HighGrade": "15", + "PromotionPotential": "15", + "HiringPath": [ + "public" + ], + "TotalOpenings": "Many", + "AgencyMarketingStatement": "", + "TravelCode": "0", + "DetailStatusUrl": "https://www.avuecentral.com/casting/aiportal/control/toVacancy" + }, + "IsRadialSearch": false + } + }, + "RelevanceRank": 0 + }, + { + "MatchedObjectId": "456773100", + "MatchedObjectDescriptor": { + "PositionID": "ABR-F09-P001", + "PositionTitle": "Transportation Security Officer (TSO)", + "PositionURI": "https://www.usajobs.gov:443/GetJob/ViewDetails/456773100", + "ApplyURI": [ + "https://www.usajobs.gov:443/GetJob/ViewDetails/456773100?PostingChannelID=RESTAPI" + ], + "PositionLocationDisplay": "Aberdeen, South Dakota", + "PositionLocation": [ + { + "LocationName": "Aberdeen, South Dakota", + "CountryCode": "United States", + "CountrySubDivisionCode": "South Dakota", + "CityName": "Aberdeen, South Dakota", + "Longitude": -98.48733, + "Latitude": 45.45909 + } + ], + "OrganizationName": "Transportation Security Administration", + "DepartmentName": "Department of Homeland Security", + "JobCategory": [ + { + "Name": "Compliance Inspection And Support", + "Code": "1802" + } + ], + "JobGrade": [ + { + "Code": "SV" + } + ], + "PositionSchedule": [ + { + "Name": "Part-Time", + "Code": "2" + } + ], + "PositionOfferingType": [ + { + "Name": "Permanent", + "Code": "15317" + } + ], + "QualificationSummary": "Applicants must meet these qualifications in order to be further evaluated in the TSO hiring process:Have a high school diploma, General Educational Development (GED), High School Equivalency Test (HiSET), or Test Assessing Secondary Completion (TASC) credential OR at least one year of full-time work experience in the security industry, aviation screening, or as an X-ray technicianBe proficient in the English language (i.e., able to read, write, speak, and comprehend)National Service Experience (i.e., volunteer experience): Experience refers to paid and unpaid experience, including volunteer work done through National Service programs (e.g., Peace Corps, AmeriCorps) and other organizations (e.g., professional; philanthropic; religious; spiritual; community, student, social). Volunteer work helps build critical competencies, knowledge, and skills and can provide valuable training and experience that translates directly to paid employment. You will receive credit for all qualifying experience, including volunteer experience.", + "PositionRemuneration": [ + { + "MinimumRange": "17.19", + "MaximumRange": "23.89", + "RateIntervalCode": "Per Hour" + } + ], + "PositionStartDate": "2018-07-02", + "PositionEndDate": "2018-10-31", + "PublicationStartDate": "2018-07-02", + "ApplicationCloseDate": "2018-10-31", + "PositionFormattedDescription": [ + { + "Label": "Dynamic Teaser", + "LabelDescription": "Hit highlighting for keyword searches." + } + ], + "UserArea": { + "Details": { + "JobSummary": "Any offers of employment made pursuant to this announcement will be consistent with all applicable authorities concerning, including Presidential Memoranda, Executive Orders, interpretive U.S. Office of Management and Budget (OMB) and U.S. Office of Personnel Management (OPM) guidance, and Office of Management and Budget plans and policies concerning hiring. These authorities are subject to change.", + "WhoMayApply": { + "Name": "", + "Code": "" + }, + "LowGrade": "D", + "HighGrade": "D", + "PromotionPotential": "E", + "HiringPath": [ + "public" + ], + "AppointmentExplanationText": "Permanent", + "AgencyMarketingStatement": "", + "TravelCode": "1", + "ApplyOnlineUrl": "https://jobs-recruit.tsa.dhs.gov/tsa-tso/ros/rosDashboard.hms?O=1&J=6", + "DetailStatusUrl": "https://jobs-recruit.tsa.dhs.gov/tsa-tso/ros/rosDashboard.hms?O=1&J=6&S=1" + }, + "IsRadialSearch": false + } + }, + "RelevanceRank": 0 + }, + { + "MatchedObjectId": "456773300", + "MatchedObjectDescriptor": { + "PositionID": "PIR-F09-P001", + "PositionTitle": "Transportation Security Officer (TSO)", + "PositionURI": "https://www.usajobs.gov:443/GetJob/ViewDetails/456773300", + "ApplyURI": [ + "https://www.usajobs.gov:443/GetJob/ViewDetails/456773300?PostingChannelID=RESTAPI" + ], + "PositionLocationDisplay": "Pierre, South Dakota", + "PositionLocation": [ + { + "LocationName": "Pierre, South Dakota", + "CountryCode": "United States", + "CountrySubDivisionCode": "South Dakota", + "CityName": "Pierre, South Dakota", + "Longitude": -100.35, + "Latitude": 44.3689 + } + ], + "OrganizationName": "Transportation Security Administration", + "DepartmentName": "Department of Homeland Security", + "JobCategory": [ + { + "Name": "Compliance Inspection And Support", + "Code": "1802" + } + ], + "JobGrade": [ + { + "Code": "SV" + } + ], + "PositionSchedule": [ + { + "Name": "Part-Time", + "Code": "2" + } + ], + "PositionOfferingType": [ + { + "Name": "Permanent", + "Code": "15317" + } + ], + "QualificationSummary": "Applicants must meet these qualifications in order to be further evaluated in the TSO hiring process:Have a high school diploma, General Educational Development (GED), High School Equivalency Test (HiSET), or Test Assessing Secondary Completion (TASC) credential OR at least one year of full-time work experience in the security industry, aviation screening, or as an X-ray technicianBe proficient in the English language (i.e., able to read, write, speak, and comprehend)National Service Experience (i.e., volunteer experience): Experience refers to paid and unpaid experience, including volunteer work done through National Service programs (e.g., Peace Corps, AmeriCorps) and other organizations (e.g., professional; philanthropic; religious; spiritual; community, student, social). Volunteer work helps build critical competencies, knowledge, and skills and can provide valuable training and experience that translates directly to paid employment. You will receive credit for all qualifying experience, including volunteer experience.", + "PositionRemuneration": [ + { + "MinimumRange": "16.41", + "MaximumRange": "23.11", + "RateIntervalCode": "Per Hour" + } + ], + "PositionStartDate": "2018-07-02", + "PositionEndDate": "2018-10-31", + "PublicationStartDate": "2018-07-02", + "ApplicationCloseDate": "2018-10-31", + "PositionFormattedDescription": [ + { + "Label": "Dynamic Teaser", + "LabelDescription": "Hit highlighting for keyword searches." + } + ], + "UserArea": { + "Details": { + "JobSummary": "Any offers of employment made pursuant to this announcement will be consistent with all applicable authorities concerning, including Presidential Memoranda, Executive Orders, interpretive U.S. Office of Management and Budget (OMB) and U.S. Office of Personnel Management (OPM) guidance, and Office of Management and Budget plans and policies concerning hiring. These authorities are subject to change.", + "WhoMayApply": { + "Name": "", + "Code": "" + }, + "LowGrade": "D", + "HighGrade": "D", + "PromotionPotential": "E", + "HiringPath": [ + "public" + ], + "AppointmentExplanationText": "Permanent", + "AgencyMarketingStatement": "", + "TravelCode": "1", + "ApplyOnlineUrl": "https://jobs-recruit.tsa.dhs.gov/tsa-tso/ros/rosDashboard.hms?O=1&J=371", + "DetailStatusUrl": "https://jobs-recruit.tsa.dhs.gov/tsa-tso/ros/rosDashboard.hms?O=1&J=371&S=1" + }, + "IsRadialSearch": false + } + }, + "RelevanceRank": 0 + }, + { + "MatchedObjectId": "462291700", + "MatchedObjectDescriptor": { + "PositionID": "SPP-Register", + "PositionTitle": "Selective Placement Program (Noncompetitive Appointments for Applicants with Disabilities)", + "PositionURI": "https://www.usajobs.gov:443/GetJob/ViewDetails/462291700", + "ApplyURI": [ + "https://www.usajobs.gov:443/GetJob/ViewDetails/462291700?PostingChannelID=RESTAPI" + ], + "PositionLocationDisplay": "Multiple Locations", + "PositionLocation": [ + { + "LocationName": "Washington DC, District of Columbia", + "CountryCode": "United States", + "CountrySubDivisionCode": "District of Columbia", + "CityName": "Washington DC, District of Columbia", + "Longitude": -77.032, + "Latitude": 38.8904 + }, + { + "LocationName": "Landover, Maryland", + "CountryCode": "United States", + "CountrySubDivisionCode": "Maryland", + "CityName": "Landover, Maryland", + "Longitude": -76.89111, + "Latitude": 38.930954 + }, + { + "LocationName": "Culpeper, Virginia", + "CountryCode": "United States", + "CountrySubDivisionCode": "Virginia", + "CityName": "Culpeper, Virginia", + "Longitude": -77.99614, + "Latitude": 38.47333 + } + ], + "OrganizationName": "Library of Congress", + "DepartmentName": "Legislative Branch", + "JobCategory": [ + { + "Name": "Social Science", + "Code": "0101" + }, + { + "Name": "Miscellaneous Administration And Program", + "Code": "0301" + }, + { + "Name": "Librarian", + "Code": "1410" + }, + { + "Name": "Copyright", + "Code": "1210" + }, + { + "Name": "Information Technology Management", + "Code": "2210" + } + ], + "JobGrade": [ + { + "Code": "GS" + } + ], + "PositionSchedule": [ + { + "Name": "Open", + "Code": "1" + } + ], + "PositionOfferingType": [ + { + "Name": "Temporary (Not To Exceed a period of 120 days to 2 years, depending on qualifications of applicant)", + "Code": "15317" + } + ], + "QualificationSummary": "Education: Some positions may require specific training, education and/or degrees depending on the series and grade level of the position being filled.Experience: Applicants must have had progressively responsible experience and training sufficient in scope and quality to furnish them with an acceptable level of knowledge, skills, and abilities to perform the duties of the position. The DETAILED description of your work experience in your personal resume must clearly demonstrate that you have gained and currently posess the knowledge, skills and abilities to satisfactorily perform the duties of the position being filled. Transcripts and certifications provided as proof of qualifying education and/or training must be submitted at the time of application.To view qualification requirements for all series, click on the following link: https://www.opm.gov/policy-data-oversight/classification-qualifications/general-schedule-qualification-standards/.Part-Time, Volunteer or Unpaid Experience: Credit will be given for appropriate undpaid and/or part-time work. You must clearly identify the duties and responsibilities in each position held and the total number of hours worked per week. Volunteer work experience can include work done through National Service Programs (i.e., Peace Corps, Americorps) and other organizations (e.g., professional, pilanthropic, religious, spiritual, community, student and social).", + "PositionRemuneration": [ + { + "MinimumRange": "23547.0", + "MaximumRange": "161900.0", + "RateIntervalCode": "Per Year" + } + ], + "PositionStartDate": "2017-01-12", + "PositionEndDate": "2018-12-28", + "PublicationStartDate": "2017-01-12", + "ApplicationCloseDate": "2018-12-28", + "PositionFormattedDescription": [ + { + "Label": "Dynamic Teaser", + "LabelDescription": "Hit highlighting for keyword searches." + } + ], + "UserArea": { + "Details": { + "JobSummary": "The Library of Congress is accepting applications from people who wish to be considered for employment at the Library under its Selective Placement Program (SPP). It is the policy of the Library to recruit and hire qualified applicants with targeted disabilities by assisting these individuals in obtaining employment consistent with their level of skills and abilities and their capacity for safe and efficient job performance. Targeted disabilities include, but are not limited to severe physical, cognitive, or emotional disabilities. The SPP program is open to applicants who have, or who have a history of having, a severe disability as listed above. Applicants with disabilities wishing to be considered for employment at the Library may apply using this announcement and must (1) have appropriate certification of their disability (Details in JOB REQUIREMENTS), (2) show that they have the qualifications for the job, and (3) satisfy the requirements/conditions for employment. By responding to this announcement you are applying to a resume database. Your resume and any documents submitted will be retained for two years and may be used at any time during that period. When a position is requested to be filled under the SPP hiring authority, a list of applicants will be provided to management for review and possible selection. Additional information on the Library's Selective Placement Program can be found at: https://www.loc.gov/hr/employment/LOCSelectivePlacementProgram.pdf.Applicants wishing to be considered for employment at the Library through the SPP may also submit an application using the Library’s competitive selection process by responding to a specific job opportunity announcement listed on the Library’s job opportunity page at http://www.loc.gov/hr/employment/index.php?action=cMain.showJobs.The salary range indicated reflects the wide range of grades/salaries which may be filled through this process and includes locality pay adjustments for the Washington, D.C., Metropolitan area. Appointments under this program do not have promotion potential beyond the grade to which the applicant is initially appointed.The incumbent of this position may request to work a flextime work schedule.Some positions may involve travel.This may be a supervisory or non-supervisory position and may be a bargaining unit position, if not excluded by regulation.Relocation expenses will not be authorized for any person(s) selected under this vacancy announcement.", + "WhoMayApply": { + "Name": "U.S. Citizens with a certified, severe intellectual, physical or psychiatric disability.", + "Code": "15669" + }, + "LowGrade": "01", + "HighGrade": "01", + "PromotionPotential": "01", + "HiringPath": [ + "public" + ], + "AppointmentExplanationText": "Permanent", + "AgencyMarketingStatement": "", + "TravelCode": "0", + "ApplyOnlineUrl": "https://jobs.monstergovt.com/loc/ros/rosDashboard.hms?O=1&J=24212", + "DetailStatusUrl": "https://jobs.monstergovt.com/loc/ros/rosDashboard.hms?O=1&J=24212&S=1" + }, + "IsRadialSearch": false + } + }, + "RelevanceRank": 0 + }, + { + "MatchedObjectId": "462541500", + "MatchedObjectDescriptor": { + "PositionID": "BOS-F09-F001", + "PositionTitle": "Transportation Security Officer (TSO)", + "PositionURI": "https://www.usajobs.gov:443/GetJob/ViewDetails/462541500", + "ApplyURI": [ + "https://www.usajobs.gov:443/GetJob/ViewDetails/462541500?PostingChannelID=RESTAPI" + ], + "PositionLocationDisplay": "Boston, Massachusetts", + "PositionLocation": [ + { + "LocationName": "Boston, Massachusetts", + "CountryCode": "United States", + "CountrySubDivisionCode": "Massachusetts", + "CityName": "Boston, Massachusetts", + "Longitude": -71.0567, + "Latitude": 42.3586349 + } + ], + "OrganizationName": "Transportation Security Administration", + "DepartmentName": "Department of Homeland Security", + "JobCategory": [ + { + "Name": "Compliance Inspection And Support", + "Code": "1802" + } + ], + "JobGrade": [ + { + "Code": "SV" + } + ], + "PositionSchedule": [ + { + "Name": "Full-Time", + "Code": "1" + } + ], + "PositionOfferingType": [ + { + "Name": "Permanent", + "Code": "15317" + } + ], + "QualificationSummary": "Applicants must meet these qualifications in order to be further evaluated in the TSO hiring process:Have a high school diploma, General Educational Development (GED), High School Equivalency Test (HiSET), or Test Assessing Secondary Completion (TASC) credential OR at least one year of full-time work experience in the security industry, aviation screening, or as an X-ray technicianBe proficient in the English language (i.e., able to read, write, speak, and comprehend)National Service Experience (i.e., volunteer experience): Experience refers to paid and unpaid experience, including volunteer work done through National Service programs (e.g., Peace Corps, AmeriCorps) and other organizations (e.g., professional; philanthropic; religious; spiritual; community, student, social). Volunteer work helps build critical competencies, knowledge, and skills and can provide valuable training and experience that translates directly to paid employment. You will receive credit for all qualifying experience, including volunteer experience.", + "PositionRemuneration": [ + { + "MinimumRange": "39645.0", + "MaximumRange": "55092.0", + "RateIntervalCode": "Per Year" + } + ], + "PositionStartDate": "2017-06-05", + "PositionEndDate": "2018-12-31", + "PublicationStartDate": "2017-06-05", + "ApplicationCloseDate": "2018-12-31", + "PositionFormattedDescription": [ + { + "Label": "Dynamic Teaser", + "LabelDescription": "Hit highlighting for keyword searches." + } + ], + "UserArea": { + "Details": { + "JobSummary": "Any offers of employment made pursuant to this announcement will be consistent with all applicable authorities concerning, including Presidential Memoranda, Executive Orders, interpretive U.S. Office of Management and Budget (OMB) and U.S. Office of Personnel Management (OPM) guidance, and Office of Management and Budget plans and policies concerning hiring. These authorities are subject to change.", + "WhoMayApply": { + "Name": "", + "Code": "" + }, + "LowGrade": "D", + "HighGrade": "D", + "PromotionPotential": "E", + "HiringPath": [ + "public" + ], + "AppointmentExplanationText": "Permanent", + "AgencyMarketingStatement": "", + "TravelCode": "1", + "ApplyOnlineUrl": "https://jobs-recruit.tsa.dhs.gov/tsa-tso/ros/rosDashboard.hms?O=1&J=557", + "DetailStatusUrl": "https://jobs-recruit.tsa.dhs.gov/tsa-tso/ros/rosDashboard.hms?O=1&J=557&S=1" + }, + "IsRadialSearch": false + } + }, + "RelevanceRank": 0 + } + ], + "UserArea": { + "NumberOfPages": "846", + "IsRadialSearch": false + } + } +} diff --git a/spec/helpers/jobs_helper_spec.rb b/spec/helpers/jobs_helper_spec.rb index c565378cce..50e529e22c 100644 --- a/spec/helpers/jobs_helper_spec.rb +++ b/spec/helpers/jobs_helper_spec.rb @@ -5,27 +5,27 @@ describe '#format_salary' do it 'should return nil when minimum is nil' do - job = double('job', minimum: nil, maximum: nil, rate_interval_code: 'PA') + job = double('job', minimum: nil, maximum: nil, rate_interval_code: 'Per Year') expect(helper.format_salary(job)).to be_nil end it 'should return nil when minimum is zero and maximum is nil' do - job = double('job', minimum: 0, maximum: nil, rate_interval_code: 'PH') + job = double('job', minimum: 0, maximum: nil, rate_interval_code: 'Per Hour') expect(helper.format_salary(job)).to be_nil end it 'should return salary when minimum is not zero and maximum is nil' do - job = double('job', minimum: 17.50, maximum: nil, rate_interval_code: 'PH') + job = double('job', minimum: 17.50, maximum: nil, rate_interval_code: 'Per Hour') expect(helper.format_salary(job)).to eq('$17.50/hr') end - it 'should return salary when the rate interval is not PA, PH or WC' do - job = double('job', minimum: 17.50, maximum: nil, rate_interval_code: 'PD') + it 'should return salary when the rate interval is not Per Year, Per Hour or Without Compensation' do + job = double('job', minimum: 17.50, maximum: nil, rate_interval_code: 'Per Day') expect(helper.format_salary(job)).to eq('$17.50 Per Day') end - it 'should return salary range when maximum is not nil and the rate interval is not PA, PH or WC' do - job = double('job', minimum: 17.50, maximum: 20.50, rate_interval_code: 'PD') + it 'should return salary range when maximum is not nil and the rate interval is not Per Year, Per Hour or Without Compensation' do + job = double('job', minimum: 17.50, maximum: 20.50, rate_interval_code: 'Per Day') expect(helper.format_salary(job)).to eq('$17.50-$20.50 Per Day') end end @@ -85,40 +85,5 @@ end end end - - context 'when rendering neogov jobs for a given organization' do - let(:search) do - affiliate = affiliates(:usagov_affiliate) - agency = Agency.create!(name: 'State of Michigan') - AgencyOrganizationCode.create!(organization_code: "USMI", agency: agency) - affiliate.agency = agency - double('search', affiliate: affiliate, query: 'gov') - end - - before do - allow(search).to receive_message_chain(:jobs).and_return([double('job', id: 'ng:michigan:1000')]) - end - - it 'should render an organization specific link to usajobs.gov' do - expect(helper).to receive(:job_link_with_click_tracking).with( - 'More State of Michigan job openings', - 'http://agency.governmentjobs.com/michigan/default.cfm', - search.affiliate, 'gov', -1, nil) - helper.legacy_link_to_more_jobs(search) - end - - context 'when the affiliate locale is es' do - before { I18n.locale = :es } - after { I18n.locale = I18n.default_locale } - - it 'should render an organization specific link to usajobs in Spanish' do - expect(helper).to receive(:job_link_with_click_tracking).with( - 'Más trabajos en State of Michigan', - 'http://agency.governmentjobs.com/michigan/default.cfm', - search.affiliate, 'gov', -1, nil) - helper.legacy_link_to_more_jobs(search) - end - end - end end end diff --git a/spec/lib/extensions/geoip_extensions_spec.rb b/spec/lib/extensions/geoip_extensions_spec.rb new file mode 100644 index 0000000000..3550cfb72d --- /dev/null +++ b/spec/lib/extensions/geoip_extensions_spec.rb @@ -0,0 +1,25 @@ +require 'spec_helper' + +describe GeoipExtensions do + describe GeoIP::City do + let(:city) { GeoipLookup.lookup('159.142.55.255') } + + describe '.location_name' do + subject(:location_name) { city.location_name } + + it { is_expected.to eq 'Washington, District of Columbia, United States' } + + context 'when the location is international' do + let(:city) { GeoipLookup.lookup('85.214.132.117') } + + it { is_expected.to eq "Berlin, Berlin, Germany" } + end + + context 'when the city and region are nil' do + let(:city) { GeoipLookup.lookup('197.156.65.234') } + + it { is_expected.to eq 'Ethiopia' } + end + end + end +end diff --git a/spec/lib/jobs_spec.rb b/spec/lib/jobs_spec.rb index 3aa2907c1c..3be70d0264 100644 --- a/spec/lib/jobs_spec.rb +++ b/spec/lib/jobs_spec.rb @@ -2,19 +2,21 @@ describe Jobs do describe '.search(options)' do + subject(:search) { Jobs.search(Keyword: 'jobs') } + + it 'returns results' do + expect(search.search_result.search_result_count).to eq 10 + end + context "when there is some problem" do before do - allow(Rails.application.secrets).to receive(:jobs).and_return({ - 'host' => 'http://nonexistent.server.gov', - 'endpoint' => '/test/search', - 'adapter' => Faraday.default_adapter - }) - Jobs.establish_connection! + stub_request(:get, %r{data.usajobs.gov}).to_raise(StandardError) end it "should log any errors that occur and return nil" do - expect(Rails.logger).to receive(:error).with(/Trouble fetching jobs information/) - expect(Jobs.search(:query => 'jobs')).to be_nil + expect(Rails.logger).to receive(:error). + with(/Trouble fetching jobs information/) + expect(search).to be_nil end end end diff --git a/spec/models/govbox_set_spec.rb b/spec/models/govbox_set_spec.rb index c54709fe9b..7ba71d4021 100644 --- a/spec/models/govbox_set_spec.rb +++ b/spec/models/govbox_set_spec.rb @@ -7,7 +7,12 @@ describe ".new(query, affiliate, geoip_info)" do let(:affiliate) { affiliates(:basic_affiliate) } let(:agency) { agencies(:irs) } - let(:geoip_info) { double('GeoipInfo', latitude: '12.34', longitude: '-34.56') } + let(:geoip_info) do + instance_double( + GeoIP::City,location_name: 'Flemington, New Jersey, United States' + ) + end + let(:highlighting_options) do { highlighting: true, pre_tags: %w(), @@ -145,91 +150,40 @@ end context "when the affiliate has the jobs govbox enabled" do - let(:job_openings) do - [Hashie::Mash.new(id: 'usajobs:359509200', - position_title: 'Nurse', - organization_name: 'Indian Health Service', - rate_interval_code: 'PA', - minimum: 42913, - maximum: 61775, - start_date: '2014-01-16', - end_date: '2021-12-31', - locations: ['Gallup, NM', 'Dallas, TX'], - url: 'https://www.usajobs.gov/GetJob/ViewDetails/359509200')] - end + let(:govbox_set) { GovboxSet.new('job', affiliate, geoip_info) } before do allow(affiliate).to receive(:jobs_enabled?).and_return(true) end + it "includes 'JOBS' in the modules" do + expect(govbox_set.modules).to include('JOBS') + end + + it "returns job results" do + expect(govbox_set.jobs.first.position_title).to eq('Therapy Assistant') + expect(govbox_set.jobs.first.locations).to eq(['Lyons, New Jersey']) + end + context "when the affiliate has a related agency with an org code" do before do allow(affiliate).to receive(:agency).and_return(agency) end - it "should call Jobs.search with the query, org codes, size, hl, and lat_lon params" do + it "should call Jobs.search with the query, org codes, results per page, and location_name params" do expect(Jobs).to receive(:search). - with(:query => 'foo', :hl => 1, :size => 10, :organization_ids => 'ABCD,BCDE', :lat_lon => '12.34,-34.56'). - and_return(job_openings) - govbox_set = GovboxSet.new('foo', affiliate, geoip_info) - expect(govbox_set.jobs.first.position_title).to eq('Nurse') - expect(govbox_set.modules).to include('JOBS') + with(Keyword: 'job', + ResultsPerPage: 10, + Organization: 'ABCD;BCDE', + LocationName: 'Flemington, New Jersey, United States') + govbox_set = GovboxSet.new('job', affiliate, geoip_info) end end context "when the affiliate does not have a related agency with an org code" do - it 'should call Jobs.search with just the query, size, hl, and tags' do - expect(Jobs).to receive(:search).with(query: 'foo', hl: 1, size: 10, tags: 'federal').and_return nil - GovboxSet.new('foo', affiliate, nil) - end - end - - context 'when highlighting is enabled by default' do - it "translates '' and ''" do - expect(Jobs).to receive(:search). - with(query: 'nursing jobs', hl: 1, size: 10, tags: 'federal'). - and_return job_openings - govbox_set = GovboxSet.new('nursing jobs', affiliate, nil) - expect(govbox_set.jobs.first.position_title).to eq('Nurse') - expect(govbox_set.jobs.first.locations).to eq(['Gallup, NM', 'Dallas, TX']) - end - - context 'when highlighting options are assigned' do - it "translates '' and ''" do - expect(Jobs).to receive(:search). - with(query: 'nursing jobs', hl: 1, size: 10, tags: 'federal'). - and_return job_openings - govbox_set = GovboxSet.new('nursing jobs', - affiliate, - nil, - highlighting: true, - pre_tags: ["\ue000"], - post_tags: ["\ue001"]) - expect(govbox_set.jobs.first.position_title).to eq("\ue000Nurse\ue001") - end - end - end - - context 'when highlighting is disabled' do - let(:job_openings_no_hl) do - [Hashie::Mash.new(id: 'usajobs:359509200', - position_title: 'Nurse', - organization_name: 'Indian Health Service', - rate_interval_code: 'PA', - minimum: 42913, - maximum: 61775, - start_date: '2014-01-16', - end_date: '2021-12-31', - locations: ['Gallup, NM'], - url: 'https://www.usajobs.gov/GetJob/ViewDetails/359509200')] - end - - it 'returns position_title without highlighting' do - expect(Jobs).to receive(:search).with(query: 'nursing jobs', - size: 10, - tags: 'federal').and_return(job_openings_no_hl) - govbox_set = GovboxSet.new('nursing jobs', affiliate, nil, highlighting: false) - expect(govbox_set.jobs.first.position_title).to eq('Nurse') + it 'calls Jobs.search with just the query, results per page' do + expect(Jobs).to receive(:search).with(Keyword: 'job', ResultsPerPage: 10).and_return nil + GovboxSet.new('job', affiliate, nil) end end end diff --git a/spec/models/job_results_post_processor_spec.rb b/spec/models/job_results_post_processor_spec.rb new file mode 100644 index 0000000000..3c121b36f3 --- /dev/null +++ b/spec/models/job_results_post_processor_spec.rb @@ -0,0 +1,25 @@ +require 'spec_helper' + +describe JobResultsPostProcessor do + let(:results) do + response = JSON.parse read_fixture_file('/json/usajobs_response.json') + response['SearchResult']['SearchResultItems'].map do |result| + Hashie::Mash::Rash.new(result) + end + end + let(:post_processor) { JobResultsPostProcessor.new(results: results) } + let(:post_processed_results) { post_processor.post_processed_results } + let(:result) { post_processed_results.first } + + it 'renames the result fields' do + expect(result.url).to eq 'https://www.usajobs.gov:443/GetJob/ViewDetails/390086900' + expect(result.id).to eq 'FAR-F09-P001' + expect(result.locations.first).to eq 'Fargo, North Dakota' + expect(result.rate_interval_code).to eq 'Per Hour' + end + + it 'converts the salary ranges to floats' do + expect(result.minimum).to eq 19.54 + expect(result.maximum).to eq 26.23 + end +end diff --git a/spec/vcr_cassettes/govbox_set/new_query_/affiliate_geoip_info_when_the_affiliate_has_the_jobs_govbox_enabled.yml b/spec/vcr_cassettes/govbox_set/new_query_/affiliate_geoip_info_when_the_affiliate_has_the_jobs_govbox_enabled.yml new file mode 100644 index 0000000000..0ac5a0fef0 --- /dev/null +++ b/spec/vcr_cassettes/govbox_set/new_query_/affiliate_geoip_info_when_the_affiliate_has_the_jobs_govbox_enabled.yml @@ -0,0 +1,3432 @@ +--- +http_interactions: +- request: + method: get + uri: https://data.usajobs.gov/api/search?Keyword=job&LocationName=Flemington,%20New%20Jersey,%20United%20States&ResultsPerPage=10 + body: + encoding: US-ASCII + string: '' + headers: + Authorization-Key: + - Qbk5RB/WRc1ctYqwojqlSKeoLVrwokT8OnSLq+G1qu0= + User-Agent: + - parissa.eggleston@gsa.gov + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Connection: + - keep-alive + Keep-Alive: + - '30' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/hr+json + Expires: + - "-1" + Server: + - Microsoft-IIS/10.0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Vary: + - Accept-Encoding + Date: + - Tue, 30 Oct 2018 20:22:56 GMT + Transfer-Encoding: + - chunked + Connection: + - Transfer-Encoding + - keep-alive + Set-Cookie: + - akavpau_DATA_USAJ=1540931276~id=a841a9b55045bddcf2686bed3677fb31; Domain=data.usajobs.gov; + Path=/; Secure + body: + encoding: UTF-8 + string: '{"LanguageCode":"EN","SearchParameters":{},"SearchResult":{"SearchResultCount":10,"SearchResultCountAll":11,"SearchResultItems":[{"MatchedObjectId":"515227700","MatchedObjectDescriptor":{"PositionID":"CARZ-10341191-19-DLL","PositionTitle":"Therapy + Assistant","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/515227700","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/515227700?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Lyons, + New Jersey","PositionLocation":[{"LocationName":"Lyons, New Jersey","CountryCode":"United + States","CountrySubDivisionCode":"New Jersey","CityName":"Lyons, New Jersey","Longitude":-74.5544739,"Latitude":40.66726}],"OrganizationName":"Veterans + Affairs, Veterans Health Administration","DepartmentName":"Department of Veterans + Affairs","JobCategory":[{"Name":"Rehabilitation Therapy Assistant","Code":"0636"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"English + Language Proficiency: In accordance with 38 U.S.C. 7402(d), No person shall + serve in direct patient care positions unless they are proficient in basic + written and spoken English. You must be proficient in basic written and spoken + English in order to meet the requirements of this position. ~AND~ Driver''s + License Requirement: The work of this position requires driving recreation + vehicles such as a sedan or van in and out of a variety of settings in the + community, therefore, a valid state issued driver''s license is required. + ~AND~ To qualify for this position, you must meet one of the following: Specialized + Experience: Possess at least one (1) full year of specialized experience equivalent + to at least the next lower grade in federal service (GS-5). This experience + is close to the work of this position and has given you the particular knowledge, + skills, and abilities required to successfully perform the duties of this + Therapy Assistant position. Specialized experience includes work as an assistant + to one of the specialized therapies such as occupational, physical, manual + arts, corrective, or educational therapy; or experience gained as an assistant + or aid in patient care, social work, or psychology where the duties involved + actual participation in physical medicine and activities of a hospital or + clinic. Specialized experience includes: planning and carrying out direct + patient care, such as therapeutic activities; using recreational materials/equipment + to provide therapeutic exercises; working knowledge of basic health care issues; + skill in assessing the needs of patients; developing patient treatment goals/objectives; + and documenting patient response and progress. NOTE: Experience must be fully + documented in your resume and must include job title, duties, month & + year starting and ending dates AND hours worked per week. ~OR~ Education: + Successfully completed one-half year (9 semester hours) of graduate education + with course work that is directly related to the position of a Therapy Assistant. + NOTE: If you select this option, you must submit a copy of your transcript + with your application. Education cannot be credited without documentation. + ~OR~ Combination: A combination of directly related graduate level education + and specialized experience. NOTE: If you select this option, you must submit + a copy of your transcript with your application. Education cannot be credited + without documentation. You will be rated on the following Competencies as + part of the assessment questionnaire for this position:\nCreative ThinkingCustomer + ServiceOral CommunicationPlanning and EvaluatingWriting IMPORTANT: A full + year of work is considered to be 35-40 hours of work per week. All experience + listed on your resume must include the month and year start/end dates. Part-time + experience will be credited on the basis of time actually spent in appropriate + activities. Applicants wishing to receive credit for such experience must + indicate clearly the nature of their duties and responsibilities in each position + and the number of hours a week spent in such employment. Experience refers + to paid and unpaid experience, including volunteer work done through National + Service programs (e.g., Peace Corps, AmeriCorps) and other organizations (e.g., + professional; philanthropic; religious; spiritual; community; student; social). + Volunteer work helps build critical competencies, knowledge, and skills and + can provide valuable training and experience that translates directly to paid + employment. You will receive credit for all qualifying experience, including + volunteer experience. For more information on these qualification standards, + please visit the United States Office of Personnel Management''s website at + http://www.opm.gov/qualifications.","PositionRemuneration":[{"MinimumRange":"42630.00","MaximumRange":"55414.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-30","PositionEndDate":"2018-11-05","PublicationStartDate":"2018-10-30","ApplicationCloseDate":"2018-11-05","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"6","HighGrade":"6","PromotionPotential":"6","HiringPath":["public"],"TotalOpenings":"1","AgencyMarketingStatement":"OUR + MISSION: To fulfill President Lincoln''s promise: \"To care for him who shall + have borne the battle, and for his widow, and his orphan\" - by serving and + honoring the men and women who are America''s Veterans. How would you like + to become a part of a team providing compassionate care to Veterans? The Department + of Veterans Affairs (VA) needs employees who possess the energy, compassion, + and commitment to serve those who served our Country. Whatever the job title, + every position in VA will give you a chance to make a meaningful and personal + contribution to the lives of truly special and deserving people - our Veterans. + VA professionals feel good about their careers and their ability to balance + work and home life. VA offers generous paid time off and a variety of predictable + and flexible scheduling opportunities. Working for VA is one of the most emotionally + satisfying and professionally rewarding ways to dedicate the best within you + to your Country''s service. If you are transitioning from the military or + a Veteran already, we invite you to explore the benefits of continuing your + career at the VA. The VA is committed to hiring Veterans. The VA is much more + than just another employer. It is an honorable, open and welcoming community + of those who care. Gratitude is our motivation and service is our mission. + America''s Veterans need you!","TravelCode":"0","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"503588500","MatchedObjectDescriptor":{"PositionID":"HHS-CDC-DH-18-10247876","PositionTitle":"Physician","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/503588500","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/503588500?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Multiple + Locations","PositionLocation":[{"LocationName":"Anchorage, Alaska","CountryCode":"United + States","CountrySubDivisionCode":"Alaska","CityName":"Anchorage, Alaska","Longitude":-149.857742,"Latitude":61.21756},{"LocationName":"Phoenix, + Arizona","CountryCode":"United States","CountrySubDivisionCode":"Arizona","CityName":"Phoenix, + Arizona","Longitude":-112.075775,"Latitude":33.44826},{"LocationName":"Los + Angeles, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Los + Angeles, California","Longitude":-118.245,"Latitude":34.0535},{"LocationName":"Richmond, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Richmond, + California","Longitude":-122.3427,"Latitude":37.9378},{"LocationName":"Sacramento, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Sacramento, + California","Longitude":-121.491,"Latitude":38.57906},{"LocationName":"San + Diego, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"San + Diego, California","Longitude":-117.162,"Latitude":32.7157},{"LocationName":"Fort + Collins, Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Fort + Collins, Colorado","Longitude":-105.076263,"Latitude":40.5815048},{"LocationName":"Hartford, + Connecticut","CountryCode":"United States","CountrySubDivisionCode":"Connecticut","CityName":"Hartford, + Connecticut","Longitude":-72.67407,"Latitude":41.7633247},{"LocationName":"Washington + DC, District of Columbia","CountryCode":"United States","CountrySubDivisionCode":"District + of Columbia","CityName":"Washington DC, District of Columbia","Longitude":-77.032,"Latitude":38.8904},{"LocationName":"Fort + Lauderdale, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Fort + Lauderdale, Florida","Longitude":-80.14356,"Latitude":26.12367},{"LocationName":"Gainesville, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Gainesville, + Florida","Longitude":-82.32319,"Latitude":29.65195},{"LocationName":"Hollywood, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Hollywood, + Florida","Longitude":-80.16008,"Latitude":26.010397},{"LocationName":"Miami, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Miami, + Florida","Longitude":-80.23742,"Latitude":25.7289848},{"LocationName":"North + Miami, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"North + Miami, Florida","Longitude":-80.18271,"Latitude":25.8904247},{"LocationName":"Tallahassee, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Tallahassee, + Florida","Longitude":-84.28065,"Latitude":30.4397755},{"LocationName":"Vero + Beach, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Vero + Beach, Florida","Longitude":-80.3942261,"Latitude":27.6388512},{"LocationName":"Atlanta, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Atlanta, + Georgia","Longitude":-84.39111,"Latitude":33.7483139},{"LocationName":"Atlanta, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Atlanta, + Georgia","Longitude":-84.39111,"Latitude":33.7483139},{"LocationName":"Mangilao, + Guam","CountryCode":"United States","CountrySubDivisionCode":"Guam","CityName":"Mangilao, + Guam","Longitude":144.7406,"Latitude":13.2755928},{"LocationName":"Honolulu, + Hawaii","CountryCode":"United States","CountrySubDivisionCode":"Hawaii","CityName":"Honolulu, + Hawaii","Longitude":-157.858,"Latitude":21.3047},{"LocationName":"Des Moines, + Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Des + Moines, Iowa","Longitude":-93.61568,"Latitude":41.5897865},{"LocationName":"Boise, + Idaho","CountryCode":"United States","CountrySubDivisionCode":"Idaho","CityName":"Boise, + Idaho","Longitude":-116.193413,"Latitude":43.60698},{"LocationName":"Chicago, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Chicago, + Illinois","Longitude":-87.63241,"Latitude":41.88415},{"LocationName":"Chicago, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Chicago, + Illinois","Longitude":-87.63241,"Latitude":41.88415},{"LocationName":"Indianapolis, + Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Indianapolis, + Indiana","Longitude":-86.14996,"Latitude":39.76691},{"LocationName":"Frankfort, + Kentucky","CountryCode":"United States","CountrySubDivisionCode":"Kentucky","CityName":"Frankfort, + Kentucky","Longitude":-84.87869,"Latitude":38.19506},{"LocationName":"Alexandria, + Louisiana","CountryCode":"United States","CountrySubDivisionCode":"Louisiana","CityName":"Alexandria, + Louisiana","Longitude":-92.44565,"Latitude":31.312685},{"LocationName":"Baton + Rouge, Louisiana","CountryCode":"United States","CountrySubDivisionCode":"Louisiana","CityName":"Baton + Rouge, Louisiana","Longitude":-91.1868744,"Latitude":30.44342},{"LocationName":"Berlin, + Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"Berlin, + Massachusetts","Longitude":-71.63784,"Latitude":42.3813744},{"LocationName":"Boston, + Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"Boston, + Massachusetts","Longitude":-71.0567,"Latitude":42.3586349},{"LocationName":"Concord, + Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"Concord, + Massachusetts","Longitude":-71.34647,"Latitude":42.46286},{"LocationName":"Marlborough, + Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"Marlborough, + Massachusetts","Longitude":-71.548,"Latitude":42.3468056},{"LocationName":"Milton, + Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"Milton, + Massachusetts","Longitude":-71.06313,"Latitude":42.2653732},{"LocationName":"Northampton, + Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"Northampton, + Massachusetts","Longitude":-72.6324,"Latitude":42.3178139},{"LocationName":"Baltimore, + Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Baltimore, + Maryland","Longitude":-76.6096039,"Latitude":39.290554},{"LocationName":"College + Park, Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"College + Park, Maryland","Longitude":-76.93727,"Latitude":38.9807243},{"LocationName":"Columbia, + Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Columbia, + Maryland","Longitude":-76.8673,"Latitude":39.2092},{"LocationName":"Ellicott + City, Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Ellicott + City, Maryland","Longitude":-76.79945,"Latitude":39.2687225},{"LocationName":"Hyattsville, + Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Hyattsville, + Maryland","Longitude":-76.94208,"Latitude":38.95259},{"LocationName":"Kensington, + Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Kensington, + Maryland","Longitude":-77.07452,"Latitude":39.0261536},{"LocationName":"Potomac, + Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Potomac, + Maryland","Longitude":-77.2083359,"Latitude":39.01765},{"LocationName":"Rockville, + Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Rockville, + Maryland","Longitude":-77.1512,"Latitude":39.0817},{"LocationName":"Silver + Spring, Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Silver + Spring, Maryland","Longitude":-77.02888,"Latitude":38.99668},{"LocationName":"White + Oak, Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"White + Oak, Maryland","Longitude":-76.99311,"Latitude":39.0479279},{"LocationName":"Woodlawn, + Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Woodlawn, + Maryland","Longitude":-76.7374,"Latitude":39.317},{"LocationName":"Augusta, + Maine","CountryCode":"United States","CountrySubDivisionCode":"Maine","CityName":"Augusta, + Maine","Longitude":-69.7762,"Latitude":44.318},{"LocationName":"Fairfield, + Maine","CountryCode":"United States","CountrySubDivisionCode":"Maine","CityName":"Fairfield, + Maine","Longitude":-69.5947,"Latitude":44.5893},{"LocationName":"Freeport, + Maine","CountryCode":"United States","CountrySubDivisionCode":"Maine","CityName":"Freeport, + Maine","Longitude":-70.105896,"Latitude":43.8555145},{"LocationName":"Fenton, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Fenton, + Michigan","Longitude":-83.70526,"Latitude":42.7936935},{"LocationName":"Minneapolis, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Minneapolis, + Minnesota","Longitude":-93.26493,"Latitude":44.9790344},{"LocationName":"Saint + Paul, Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Saint + Paul, Minnesota","Longitude":-93.09333,"Latitude":44.94383},{"LocationName":"Blue + Springs, Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Blue + Springs, Missouri","Longitude":-94.27481,"Latitude":39.0182648},{"LocationName":"Saint + Charles, Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Saint + Charles, Missouri","Longitude":-90.4821,"Latitude":38.7824},{"LocationName":"Monroe, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Monroe, North Carolina","Longitude":-80.5489,"Latitude":34.9826},{"LocationName":"Raleigh, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Raleigh, North Carolina","Longitude":-78.64267,"Latitude":35.78551},{"LocationName":"Trenton, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Trenton, North Carolina","Longitude":-77.35292,"Latitude":35.06337},{"LocationName":"Ashley, + North Dakota","CountryCode":"United States","CountrySubDivisionCode":"North + Dakota","CityName":"Ashley, North Dakota","Longitude":-99.37806,"Latitude":46.03451},{"LocationName":"Lincoln, + Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Lincoln, + Nebraska","Longitude":-96.70774,"Latitude":40.81362},{"LocationName":"Newark, + New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New Jersey","CityName":"Newark, + New Jersey","Longitude":-74.17419,"Latitude":40.73197},{"LocationName":"Trenton, + New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New Jersey","CityName":"Trenton, + New Jersey","Longitude":-74.7594,"Latitude":40.2179},{"LocationName":"Albuquerque, + New Mexico","CountryCode":"United States","CountrySubDivisionCode":"New Mexico","CityName":"Albuquerque, + New Mexico","Longitude":-106.649,"Latitude":35.0842},{"LocationName":"Santa + Fe, New Mexico","CountryCode":"United States","CountrySubDivisionCode":"New + Mexico","CityName":"Santa Fe, New Mexico","Longitude":-105.937424,"Latitude":35.6915474},{"LocationName":"Las + Vegas, Nevada","CountryCode":"United States","CountrySubDivisionCode":"Nevada","CityName":"Las + Vegas, Nevada","Longitude":-115.14,"Latitude":36.1719},{"LocationName":"Albany, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Albany, + New York","Longitude":-73.75527,"Latitude":42.6514549},{"LocationName":"New + York, New York","CountryCode":"United States","CountrySubDivisionCode":"New + York","CityName":"New York, New York","Longitude":-74.0071,"Latitude":40.7146},{"LocationName":"Suffern, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Suffern, + New York","Longitude":-74.14964,"Latitude":41.1143837},{"LocationName":"Cincinnati, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Cincinnati, + Ohio","Longitude":-84.5041,"Latitude":39.1071},{"LocationName":"Columbus, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Columbus, + Ohio","Longitude":-83.00301,"Latitude":39.962},{"LocationName":"Lyndhurst, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Lyndhurst, + Ohio","Longitude":-81.48846,"Latitude":41.5199356},{"LocationName":"Perrysburg, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Perrysburg, + Ohio","Longitude":-83.6289,"Latitude":41.5567},{"LocationName":"Toledo, Ohio","CountryCode":"United + States","CountrySubDivisionCode":"Ohio","CityName":"Toledo, Ohio","Longitude":-83.53626,"Latitude":41.65381},{"LocationName":"Oklahoma + City, Oklahoma","CountryCode":"United States","CountrySubDivisionCode":"Oklahoma","CityName":"Oklahoma + City, Oklahoma","Longitude":-97.52033,"Latitude":35.4720039},{"LocationName":"Oklahoma + City, Oklahoma","CountryCode":"United States","CountrySubDivisionCode":"Oklahoma","CityName":"Oklahoma + City, Oklahoma","Longitude":-97.52033,"Latitude":35.4720039},{"LocationName":"Oklahoma + City, Oklahoma","CountryCode":"United States","CountrySubDivisionCode":"Oklahoma","CityName":"Oklahoma + City, Oklahoma","Longitude":-97.52033,"Latitude":35.4720039},{"LocationName":"Oklahoma + City, Oklahoma","CountryCode":"United States","CountrySubDivisionCode":"Oklahoma","CityName":"Oklahoma + City, Oklahoma","Longitude":-97.52033,"Latitude":35.4720039},{"LocationName":"Oklahoma + City, Oklahoma","CountryCode":"United States","CountrySubDivisionCode":"Oklahoma","CityName":"Oklahoma + City, Oklahoma","Longitude":-97.52033,"Latitude":35.4720039},{"LocationName":"Tulsa, + Oklahoma","CountryCode":"United States","CountrySubDivisionCode":"Oklahoma","CityName":"Tulsa, + Oklahoma","Longitude":-95.9933548,"Latitude":36.14975},{"LocationName":"Tulsa, + Oklahoma","CountryCode":"United States","CountrySubDivisionCode":"Oklahoma","CityName":"Tulsa, + Oklahoma","Longitude":-95.9933548,"Latitude":36.14975},{"LocationName":"Portland, + Oregon","CountryCode":"United States","CountrySubDivisionCode":"Oregon","CityName":"Portland, + Oregon","Longitude":-122.675629,"Latitude":45.511795},{"LocationName":"Portland, + Oregon","CountryCode":"United States","CountrySubDivisionCode":"Oregon","CityName":"Portland, + Oregon","Longitude":-122.675629,"Latitude":45.511795},{"LocationName":"Portland, + Oregon","CountryCode":"United States","CountrySubDivisionCode":"Oregon","CityName":"Portland, + Oregon","Longitude":-122.675629,"Latitude":45.511795},{"LocationName":"Philadelphia, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Philadelphia, + Pennsylvania","Longitude":-75.16237,"Latitude":39.95227},{"LocationName":"Pittsburgh, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Pittsburgh, + Pennsylvania","Longitude":-79.99746,"Latitude":40.43831},{"LocationName":"Yardley, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Yardley, + Pennsylvania","Longitude":-74.83738,"Latitude":40.2413368},{"LocationName":"San + Juan, Puerto Rico","CountryCode":"United States","CountrySubDivisionCode":"Puerto + Rico","CityName":"San Juan, Puerto Rico","Longitude":-66.1067,"Latitude":18.4662},{"LocationName":"Providence, + Rhode Island","CountryCode":"United States","CountrySubDivisionCode":"Rhode + Island","CityName":"Providence, Rhode Island","Longitude":-71.4119949,"Latitude":41.8238754},{"LocationName":"Columbia, + South Carolina","CountryCode":"United States","CountrySubDivisionCode":"South + Carolina","CityName":"Columbia, South Carolina","Longitude":-81.04525,"Latitude":33.99855},{"LocationName":"Columbia, + South Carolina","CountryCode":"United States","CountrySubDivisionCode":"South + Carolina","CityName":"Columbia, South Carolina","Longitude":-81.04525,"Latitude":33.99855},{"LocationName":"North + Augusta, South Carolina","CountryCode":"United States","CountrySubDivisionCode":"South + Carolina","CityName":"North Augusta, South Carolina","Longitude":-81.9701,"Latitude":33.4958},{"LocationName":"Coalmont, + Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Coalmont, + Tennessee","Longitude":-85.69968,"Latitude":35.3475838},{"LocationName":"Nashville, + Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Nashville, + Tennessee","Longitude":-86.7783661,"Latitude":36.16778},{"LocationName":"Austin, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Austin, + Texas","Longitude":-97.743,"Latitude":30.2676},{"LocationName":"Austin, Texas","CountryCode":"United + States","CountrySubDivisionCode":"Texas","CityName":"Austin, Texas","Longitude":-97.6428,"Latitude":30.4887},{"LocationName":"El + Paso, Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"El + Paso, Texas","Longitude":-106.4874,"Latitude":31.7591},{"LocationName":"Houston, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Houston, + Texas","Longitude":-95.36978,"Latitude":29.76045},{"LocationName":"Houston, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Houston, + Texas","Longitude":-95.36978,"Latitude":29.76045},{"LocationName":"Houston, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Houston, + Texas","Longitude":-95.36978,"Latitude":29.76045},{"LocationName":"Keller, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Keller, + Texas","Longitude":-97.22513,"Latitude":32.9308624},{"LocationName":"San Antonio, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"San + Antonio, Texas","Longitude":-98.49462,"Latitude":29.42449},{"LocationName":"Salt + Lake City, Utah","CountryCode":"United States","CountrySubDivisionCode":"Utah","CityName":"Salt + Lake City, Utah","Longitude":-111.888229,"Latitude":40.75952},{"LocationName":"Richmond, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Richmond, + Virginia","Longitude":-77.4336548,"Latitude":37.5407},{"LocationName":"Burlington, + Vermont","CountryCode":"United States","CountrySubDivisionCode":"Vermont","CityName":"Burlington, + Vermont","Longitude":-73.2132,"Latitude":44.4759},{"LocationName":"Seattle, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Seattle, + Washington","Longitude":-122.329453,"Latitude":47.60358},{"LocationName":"Shoreline, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Shoreline, + Washington","Longitude":-122.344582,"Latitude":47.756897},{"LocationName":"Spokane, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Spokane, + Washington","Longitude":-117.412277,"Latitude":47.65726},{"LocationName":"Madison, + Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Madison, + Wisconsin","Longitude":-89.38666,"Latitude":43.0729256},{"LocationName":"Charleston, + West Virginia","CountryCode":"United States","CountrySubDivisionCode":"West + Virginia","CityName":"Charleston, West Virginia","Longitude":-81.63893,"Latitude":38.3502159},{"LocationName":"Morgantown, + West Virginia","CountryCode":"United States","CountrySubDivisionCode":"West + Virginia","CityName":"Morgantown, West Virginia","Longitude":-79.95785,"Latitude":39.6303749}],"OrganizationName":"Centers + for Disease Control and Prevention","DepartmentName":"Department of Health + And Human Services","JobCategory":[{"Name":"Medical Officer","Code":"0602"}],"JobGrade":[{"Code":"GP"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Multiple + Appointment Types","Code":"15327"}],"QualificationSummary":"BASIC QUALIFICATIONS:\nApplicants + must possess a Doctor of Medicine or Doctor of Osteopathic Medicine or equivalent + from a school in the United States or Canada. This degree must have been accredited + by the Council on Medical Education of the American Medical Association; Association + of American Medical Colleges; Liaison Committee on Medical Education; Commission + on Osteopathic College Accreditation of the American Osteopathic Association, + or an accrediting body recognized by the U.S. Department of Education at the + time the degree was obtained. A Doctor of Medicine or equivalent degree from + a foreign medical school must provide education and medical knowledge equivalent + to accredited schools in the United States. Evidence of equivalency to accredited + schools in the United States is demonstrated by permanent certification by + the Educational Commission for Foreign Medical Graduates (ECFMG) https://www.ecfmg.org/, + a fifth pathway certificate for Americans who completed premedical education + in the United States and graduate education in a foreign country, or successful + completion of the U.S. Medical Licensing Examination. Applicants must possess + a current, active, full, and unrestricted license or registration as a Physician + from a State, the District of Columbia, the Commonwealth of Puerto Rico, or + a territory of the United States. NOTE: All applicants must possess a current + medical license when applying for positions that require clinical or patient + care. Additional Qualifications: In addition to meeting the Basic Qualifications + applicants must also meet the following for Physician, GP-602-13/14/15. NOTE: + A residency program involves training in a specialized field of medicine in + an institution accredited for training in the specialty by a recognized body + of the American Medical Association (AMA) or AOA. For GS-13: Three years of + residency training in the specialty of the position to be filled or possess + at least one year of specialized experience equivalent to the GS-12 grade + level in the Federal service implementing and evaluating medical activities + related to public health programs. For GS-14: Four years of residency training + in the specialty of the position to be filled or possess at least one year + of specialized experience equivalent to the GS-13 grade level in the Federal + service designing, implementing and evaluating medical activities related + to public health programs. For GS-15: Five years of residency training in + the specialty of the position to be filled or possess at least one year of + specialized experience equivalent to the GS-14 grade level in the Federal + service performing scientific, technical and programmatic medical activities + to originate new techniques, establish criteria, or develop new information + related to public health programs.","PositionRemuneration":[{"MinimumRange":"75628.00","MaximumRange":"136659.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-07-09","PositionEndDate":"2019-01-11","PublicationStartDate":"2018-07-09","ApplicationCloseDate":"2019-01-11","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"13","HighGrade":"15","PromotionPotential":"15","PromotionPotentialAdditionalText":"No + promotion potential for Physician positions, any position filled with this + announcement will be filled at the single grade level requested.","HiringPath":["public"],"TotalOpenings":"Few","AgencyMarketingStatement":"The + Centers for Disease Control and Prevention (CDC) is the agency Americans trust + with their lives. As a global leader in public health, CDC is the nation''s + premier health promotion, prevention, and preparedness agency. Whether we + are protecting the American people from public health threats, researching + emerging diseases, or mobilizing public health programs with our domestic + and international partners, we rely on our employees to make a real difference + in the health and well-being of people here and around the world. This position + is being filled through the Direct Hire Authority. Veterans'' preference and + traditional rating and ranking of applications do not apply to positions filled + under this announcement. All applicants who meet the basic qualification requirements + will be forwarded to the Selecting Official for consideration. Applications + received as a result of job fairs, recruitment events, and emergency hiring + mechanisms in support of this hiring initiative will also be accepted during + the duration of the direct-hire authority. Physician positions may be filled + with this open continuous vacancy announcement within any CDC organization. + This announcement will be used to fill positions in various geographical locations + HHS-wide. Please be advised there is no promotion potential for Physician + positions, any position filled with this announcement will be filled at the + single grade level requested. CDC is an Equal Opportunity Employer.","TravelCode":"1","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"478506200","MatchedObjectDescriptor":{"PositionID":"AWA-AHF-17-PWDPWTD-54074","PositionTitle":"Public + Announcement for Individuals With Disabilities and Individuals with Targeted + Disabilities","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/478506200","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/478506200?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"FAA + Location Negotiable Upon Request, United States","PositionLocation":[{"LocationName":"Singapore, + Singapore","CountryCode":"Singapore","CityName":"Singapore, Singapore","Longitude":103.821,"Latitude":1.32199979},{"LocationName":"Senegal, + Senegal","CountryCode":"Senegal","CityName":"Senegal, Senegal","Longitude":-14.599,"Latitude":14.9},{"LocationName":"Saint + Croix, Virgin Islands","CountryCode":"United States","CountrySubDivisionCode":"Virgin + Islands","CityName":"Saint Croix, Virgin Islands","Longitude":-64.73595,"Latitude":17.7363148},{"LocationName":"Saint + Thomas, Virgin Islands","CountryCode":"United States","CountrySubDivisionCode":"Virgin + Islands","CityName":"Saint Thomas, Virgin Islands","Longitude":-64.93678,"Latitude":18.35075},{"LocationName":"Pago + Pago, American Samoa","CountryCode":"United States","CountrySubDivisionCode":"American + Samoa","CityName":"Pago Pago, American Samoa","Longitude":-170.700912,"Latitude":-14.2793312},{"LocationName":"Brussels, + Belgium","CountryCode":"Belgium","CityName":"Brussels, Belgium","Longitude":4.35626125,"Latitude":50.8458939},{"LocationName":"Brasilia, + Brazil","CountryCode":"Brazil","CityName":"Brasilia, Brazil","Longitude":-47.897747,"Latitude":-15.7921095},{"LocationName":"Montreal, + Canada","CountryCode":"Canada","CityName":"Montreal, Canada","Longitude":-73.55439,"Latitude":45.5122871},{"LocationName":"Beijing, + China","CountryCode":"China","CityName":"Beijing, China","Longitude":116.388985,"Latitude":39.9125748},{"LocationName":"Shanghai, + China","CountryCode":"China","CityName":"Shanghai, China","Longitude":121.483742,"Latitude":31.23519},{"LocationName":"Paris, + France","CountryCode":"France","CityName":"Paris, France","Longitude":2.34120965,"Latitude":48.856926},{"LocationName":"Frankfurt + On Main, Germany","CountryCode":"Germany","CityName":"Frankfurt On Main, Germany","Longitude":8.669581,"Latitude":50.13144},{"LocationName":"Andersen + Air Base, Guam","CountryCode":"United States","CountrySubDivisionCode":"Guam","CityName":"Andersen + Air Base, Guam","Longitude":144.796,"Latitude":13.4831},{"LocationName":"Finegayan, + Guam","CountryCode":"United States","CountrySubDivisionCode":"Guam","CityName":"Finegayan, + Guam","Longitude":144.8487,"Latitude":13.5681},{"LocationName":"New Delhi, + India","CountryCode":"India","CityName":"New Delhi, India","Longitude":77.22478,"Latitude":28.5904083},{"LocationName":"Tokyo, + Japan","CountryCode":"Japan","CityName":"Tokyo, Japan","Longitude":139.769592,"Latitude":35.6751976},{"LocationName":"Saipan, + Mariana Island, Northern Mariana Islands","CountryCode":"United States","CountrySubDivisionCode":"Northern + Mariana Islands","CityName":"Saipan, Mariana Island, Northern Mariana Islands","Longitude":145.7641,"Latitude":15.192},{"LocationName":"Panama + City, Panama","CountryCode":"Panama","CityName":"Panama City, Panama","Longitude":-79.54,"Latitude":8.9618},{"LocationName":"San + Juan, Puerto Rico","CountryCode":"United States","CountrySubDivisionCode":"Puerto + Rico","CityName":"San Juan, Puerto Rico","Longitude":-66.1067,"Latitude":18.4662},{"LocationName":"Moscow, + Russia","CountryCode":"Russia","CityName":"Moscow, Russia","Longitude":37.6180229,"Latitude":55.75171},{"LocationName":"Singapore, + Singapore","CountryCode":"Singapore","CityName":"Singapore, Singapore","Longitude":103.821,"Latitude":1.32199979},{"LocationName":"Abu + Dhabi, United Arab Emirates","CountryCode":"United Arab Emirates","CityName":"Abu + Dhabi, United Arab Emirates","Longitude":54.3705139,"Latitude":24.4764347},{"LocationName":"Texarkana, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Texarkana, + Texas","Longitude":-94.0482559,"Latitude":33.42558},{"LocationName":"Tomball, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Tomball, + Texas","Longitude":-95.61709,"Latitude":30.0958042},{"LocationName":"Tyler, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Tyler, + Texas","Longitude":-95.2943,"Latitude":32.3474731},{"LocationName":"Waco, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Waco, + Texas","Longitude":-97.1495056,"Latitude":31.5718212},{"LocationName":"Wichita + Falls, Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Wichita + Falls, Texas","Longitude":-98.50099,"Latitude":33.90831},{"LocationName":"Cedar + City, Utah","CountryCode":"United States","CountrySubDivisionCode":"Utah","CityName":"Cedar + City, Utah","Longitude":-113.061768,"Latitude":37.67795},{"LocationName":"Salt + Lake City, Utah","CountryCode":"United States","CountrySubDivisionCode":"Utah","CityName":"Salt + Lake City, Utah","Longitude":-111.888229,"Latitude":40.75952},{"LocationName":"Burlington, + Vermont","CountryCode":"United States","CountrySubDivisionCode":"Vermont","CityName":"Burlington, + Vermont","Longitude":-73.2132,"Latitude":44.4759},{"LocationName":"Arlington, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Arlington, + Virginia","Longitude":-77.0862961,"Latitude":38.89051},{"LocationName":"Chantilly, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Chantilly, + Virginia","Longitude":-77.43992,"Latitude":38.8833122},{"LocationName":"Charles + City, Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Charles + City, Virginia","Longitude":-77.072525,"Latitude":37.3419647},{"LocationName":"Charlottesville, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Charlottesville, + Virginia","Longitude":-78.47752,"Latitude":38.0321236},{"LocationName":"Dulles + Airport, Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Dulles + Airport, Virginia","Longitude":-77.44841,"Latitude":38.9555855},{"LocationName":"Dulles + Airport, Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Dulles + Airport, Virginia","Longitude":-77.44841,"Latitude":38.9555855},{"LocationName":"Fredericksburg, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Fredericksburg, + Virginia","Longitude":-77.4591446,"Latitude":38.30089},{"LocationName":"Hampton, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Hampton, + Virginia","Longitude":-76.34512,"Latitude":37.0277939},{"LocationName":"Herndon, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Herndon, + Virginia","Longitude":-77.3854752,"Latitude":38.9697},{"LocationName":"Leesburg, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Leesburg, + Virginia","Longitude":-77.5653,"Latitude":39.11567},{"LocationName":"Lynchburg, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Lynchburg, + Virginia","Longitude":-79.14284,"Latitude":37.41402},{"LocationName":"Manassas, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Manassas, + Virginia","Longitude":-77.47112,"Latitude":38.751194},{"LocationName":"Newport + News, Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Newport + News, Virginia","Longitude":-76.42946,"Latitude":36.9805069},{"LocationName":"Norfolk, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Norfolk, + Virginia","Longitude":-76.28507,"Latitude":36.8468246},{"LocationName":"Richmond, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Richmond, + Virginia","Longitude":-77.4336548,"Latitude":37.5407},{"LocationName":"Roanoke, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Roanoke, + Virginia","Longitude":-79.9405,"Latitude":37.2715},{"LocationName":"Sandston, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Sandston, + Virginia","Longitude":-77.31298,"Latitude":37.52291},{"LocationName":"Vint + Hill Farms Military Installation, Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Vint + Hill Farms Military Installation, Virginia","Longitude":-77.7354,"Latitude":38.7303},{"LocationName":"Virginia + Beach, Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Virginia + Beach, Virginia","Longitude":-75.97791,"Latitude":36.850563},{"LocationName":"Wallops + Island, Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Wallops + Island, Virginia","Longitude":-75.47912,"Latitude":37.8440437},{"LocationName":"Warrenton, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Warrenton, + Virginia","Longitude":-77.79551,"Latitude":38.7136154},{"LocationName":"Auburn, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Auburn, + Washington","Longitude":-122.230408,"Latitude":47.3074},{"LocationName":"Bellingham, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Bellingham, + Washington","Longitude":-122.471222,"Latitude":48.75235},{"LocationName":"Bremerton, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Bremerton, + Washington","Longitude":-122.6257,"Latitude":47.5650024},{"LocationName":"Burien, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Burien, + Washington","Longitude":-122.340363,"Latitude":47.4686241},{"LocationName":"Everett, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Everett, + Washington","Longitude":-122.206421,"Latitude":47.9765739},{"LocationName":"Fife, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Fife, + Washington","Longitude":-122.356819,"Latitude":47.23681},{"LocationName":"Gig + Harbor, Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Gig + Harbor, Washington","Longitude":-122.580368,"Latitude":47.328},{"LocationName":"McChord + AFB, Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"McChord + AFB, Washington","Longitude":-122.501572,"Latitude":47.1286964},{"LocationName":"Moses + Lake, Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Moses + Lake, Washington","Longitude":-119.277153,"Latitude":47.1319427},{"LocationName":"Neah + Bay, Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Neah + Bay, Washington","Longitude":-124.627388,"Latitude":48.36772},{"LocationName":"Olympia, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Olympia, + Washington","Longitude":-122.891434,"Latitude":47.0392265},{"LocationName":"Pasco, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Pasco, + Washington","Longitude":-119.094559,"Latitude":46.23518},{"LocationName":"Renton, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Renton, + Washington","Longitude":-122.204964,"Latitude":47.4752541},{"LocationName":"Seatac, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Seatac, + Washington","Longitude":-122.296211,"Latitude":47.441124},{"LocationName":"Seattle, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Seattle, + Washington","Longitude":-122.329453,"Latitude":47.60358},{"LocationName":"Spokane, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Spokane, + Washington","Longitude":-117.412277,"Latitude":47.65726},{"LocationName":"Spokane + International Airport, Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Spokane + International Airport, Washington","Longitude":-117.537766,"Latitude":47.62498},{"LocationName":"Vancouver, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Vancouver, + Washington","Longitude":-122.671547,"Latitude":45.6322136},{"LocationName":"Wenatchee, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Wenatchee, + Washington","Longitude":-120.3049,"Latitude":47.41419},{"LocationName":"Yakima, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Yakima, + Washington","Longitude":-120.50705,"Latitude":46.6041336},{"LocationName":"Beaver, + West Virginia","CountryCode":"United States","CountrySubDivisionCode":"West + Virginia","CityName":"Beaver, West Virginia","Longitude":-81.0711,"Latitude":37.7683},{"LocationName":"Beckley, + West Virginia","CountryCode":"United States","CountrySubDivisionCode":"West + Virginia","CityName":"Beckley, West Virginia","Longitude":-81.187645,"Latitude":37.7775879},{"LocationName":"Bridgeport, + West Virginia","CountryCode":"United States","CountrySubDivisionCode":"West + Virginia","CityName":"Bridgeport, West Virginia","Longitude":-80.24889,"Latitude":39.2859726},{"LocationName":"Ceredo, + West Virginia","CountryCode":"United States","CountrySubDivisionCode":"West + Virginia","CityName":"Ceredo, West Virginia","Longitude":-82.55918,"Latitude":38.39659},{"LocationName":"Charleston, + West Virginia","CountryCode":"United States","CountrySubDivisionCode":"West + Virginia","CityName":"Charleston, West Virginia","Longitude":-81.63893,"Latitude":38.3502159},{"LocationName":"Clarksburg, + West Virginia","CountryCode":"United States","CountrySubDivisionCode":"West + Virginia","CityName":"Clarksburg, West Virginia","Longitude":-80.34012,"Latitude":39.27942},{"LocationName":"Elkins, + West Virginia","CountryCode":"United States","CountrySubDivisionCode":"West + Virginia","CityName":"Elkins, West Virginia","Longitude":-79.84449,"Latitude":38.92402},{"LocationName":"Huntington, + West Virginia","CountryCode":"United States","CountrySubDivisionCode":"West + Virginia","CityName":"Huntington, West Virginia","Longitude":-82.44537,"Latitude":38.4198265},{"LocationName":"Martinsburg, + West Virginia","CountryCode":"United States","CountrySubDivisionCode":"West + Virginia","CityName":"Martinsburg, West Virginia","Longitude":-77.96456,"Latitude":39.45637},{"LocationName":"Orlando, + West Virginia","CountryCode":"United States","CountrySubDivisionCode":"West + Virginia","CityName":"Orlando, West Virginia","Longitude":-80.58239,"Latitude":38.87725},{"LocationName":"Eau + Claire, Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Eau + Claire, Wisconsin","Longitude":-91.501236,"Latitude":44.8165131},{"LocationName":"Green + Bay, Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Green + Bay, Wisconsin","Longitude":-88.01016,"Latitude":44.5127945},{"LocationName":"Horicon, + Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Horicon, + Wisconsin","Longitude":-88.63251,"Latitude":43.4511757},{"LocationName":"La + Crosse, Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"La + Crosse, Wisconsin","Longitude":-91.25192,"Latitude":43.8126259},{"LocationName":"Madison, + Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Madison, + Wisconsin","Longitude":-89.38666,"Latitude":43.0729256},{"LocationName":"Milwaukee, + Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Milwaukee, + Wisconsin","Longitude":-87.9068451,"Latitude":43.04181},{"LocationName":"Mosinee, + Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Mosinee, + Wisconsin","Longitude":-89.7034,"Latitude":44.7932},{"LocationName":"Casper, + Wyoming","CountryCode":"United States","CountrySubDivisionCode":"Wyoming","CityName":"Casper, + Wyoming","Longitude":-106.3277,"Latitude":42.8501},{"LocationName":"Cheyenne, + Wyoming","CountryCode":"United States","CountrySubDivisionCode":"Wyoming","CityName":"Cheyenne, + Wyoming","Longitude":-104.821548,"Latitude":41.1348152},{"LocationName":"Evanston, + Wyoming","CountryCode":"United States","CountrySubDivisionCode":"Wyoming","CityName":"Evanston, + Wyoming","Longitude":-110.963989,"Latitude":41.26748},{"LocationName":"Jackson, + Wyoming","CountryCode":"United States","CountrySubDivisionCode":"Wyoming","CityName":"Jackson, + Wyoming","Longitude":-110.7624,"Latitude":43.479763},{"LocationName":"Lovell, + Wyoming","CountryCode":"United States","CountrySubDivisionCode":"Wyoming","CityName":"Lovell, + Wyoming","Longitude":-108.38826,"Latitude":44.83755},{"LocationName":"Sheridan, + Wyoming","CountryCode":"United States","CountrySubDivisionCode":"Wyoming","CityName":"Sheridan, + Wyoming","Longitude":-106.955856,"Latitude":44.7976952},{"LocationName":"Anniston, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Anniston, + Alabama","Longitude":-85.8195,"Latitude":33.6571},{"LocationName":"Birmingham, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Birmingham, + Alabama","Longitude":-86.8115,"Latitude":33.5203},{"LocationName":"Birmingham, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Birmingham, + Alabama","Longitude":-86.8115,"Latitude":33.5203},{"LocationName":"Citronelle, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Citronelle, + Alabama","Longitude":-88.23813,"Latitude":31.0927238},{"LocationName":"Dothan, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Dothan, + Alabama","Longitude":-85.3933,"Latitude":31.2232},{"LocationName":"Huntsville, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Huntsville, + Alabama","Longitude":-86.585,"Latitude":34.7291},{"LocationName":"Mobile, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Mobile, + Alabama","Longitude":-88.0532,"Latitude":30.6864},{"LocationName":"Montgomery, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Montgomery, + Alabama","Longitude":-86.3006,"Latitude":32.3801},{"LocationName":"Tuscaloosa, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Tuscaloosa, + Alabama","Longitude":-87.5658,"Latitude":33.2105},{"LocationName":"Vestavia + Hills, Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Vestavia + Hills, Alabama","Longitude":-86.7884,"Latitude":33.4505},{"LocationName":"Anchorage, + Alaska","CountryCode":"United States","CountrySubDivisionCode":"Alaska","CityName":"Anchorage, + Alaska","Longitude":-149.857742,"Latitude":61.21756},{"LocationName":"Bethel, + Alaska","CountryCode":"United States","CountrySubDivisionCode":"Alaska","CityName":"Bethel, + Alaska","Longitude":-161.75856,"Latitude":60.79017},{"LocationName":"Cold + Bay, Alaska","CountryCode":"United States","CountrySubDivisionCode":"Alaska","CityName":"Cold + Bay, Alaska","Longitude":-162.711212,"Latitude":55.20812},{"LocationName":"Cordova, + Alaska","CountryCode":"United States","CountrySubDivisionCode":"Alaska","CityName":"Cordova, + Alaska","Longitude":-145.752136,"Latitude":60.54148},{"LocationName":"Dillingham, + Alaska","CountryCode":"United States","CountrySubDivisionCode":"Alaska","CityName":"Dillingham, + Alaska","Longitude":-158.465561,"Latitude":59.0397949},{"LocationName":"Fairbanks, + Alaska","CountryCode":"United States","CountrySubDivisionCode":"Alaska","CityName":"Fairbanks, + Alaska","Longitude":-147.722183,"Latitude":64.8455048},{"LocationName":"Homer, + Alaska","CountryCode":"United States","CountrySubDivisionCode":"Alaska","CityName":"Homer, + Alaska","Longitude":-151.546066,"Latitude":59.6449738},{"LocationName":"Juneau, + Alaska","CountryCode":"United States","CountrySubDivisionCode":"Alaska","CityName":"Juneau, + Alaska","Longitude":-134.4068,"Latitude":58.2997},{"LocationName":"Kenai, + Alaska","CountryCode":"United States","CountrySubDivisionCode":"Alaska","CityName":"Kenai, + Alaska","Longitude":-151.26,"Latitude":60.5531},{"LocationName":"Ketchikan, + Alaska","CountryCode":"United States","CountrySubDivisionCode":"Alaska","CityName":"Ketchikan, + Alaska","Longitude":-131.647812,"Latitude":55.34208},{"LocationName":"King + Salmon, Alaska","CountryCode":"United States","CountrySubDivisionCode":"Alaska","CityName":"King + Salmon, Alaska","Longitude":-156.697,"Latitude":58.6971},{"LocationName":"McGrath, + Alaska","CountryCode":"United States","CountrySubDivisionCode":"Alaska","CityName":"McGrath, + Alaska","Longitude":-155.559891,"Latitude":62.9491158},{"LocationName":"Nome, + Alaska","CountryCode":"United States","CountrySubDivisionCode":"Alaska","CityName":"Nome, + Alaska","Longitude":-165.4047,"Latitude":64.49956},{"LocationName":"Palmer, + Alaska","CountryCode":"United States","CountrySubDivisionCode":"Alaska","CityName":"Palmer, + Alaska","Longitude":-149.117371,"Latitude":61.59944},{"LocationName":"Petersburg, + Alaska","CountryCode":"United States","CountrySubDivisionCode":"Alaska","CityName":"Petersburg, + Alaska","Longitude":-132.9709,"Latitude":56.8065033},{"LocationName":"Sitka, + Alaska","CountryCode":"United States","CountrySubDivisionCode":"Alaska","CityName":"Sitka, + Alaska","Longitude":-135.335129,"Latitude":57.05372},{"LocationName":"Talkeetna, + Alaska","CountryCode":"United States","CountrySubDivisionCode":"Alaska","CityName":"Talkeetna, + Alaska","Longitude":-150.104889,"Latitude":62.3219681},{"LocationName":"Wasilla, + Alaska","CountryCode":"United States","CountrySubDivisionCode":"Alaska","CityName":"Wasilla, + Alaska","Longitude":-149.445,"Latitude":61.5823},{"LocationName":"Yakutat, + Alaska","CountryCode":"United States","CountrySubDivisionCode":"Alaska","CityName":"Yakutat, + Alaska","Longitude":-139.1525,"Latitude":59.7074},{"LocationName":"Davis Monthan + AFB, Arizona","CountryCode":"United States","CountrySubDivisionCode":"Arizona","CityName":"Davis + Monthan AFB, Arizona","Longitude":-110.8475,"Latitude":32.1566},{"LocationName":"Flagstaff, + Arizona","CountryCode":"United States","CountrySubDivisionCode":"Arizona","CityName":"Flagstaff, + Arizona","Longitude":-111.651306,"Latitude":35.1982},{"LocationName":"Grand + Canyon, Arizona","CountryCode":"United States","CountrySubDivisionCode":"Arizona","CityName":"Grand + Canyon, Arizona","Longitude":-112.790237,"Latitude":36.2994041},{"LocationName":"Mesa, + Arizona","CountryCode":"United States","CountrySubDivisionCode":"Arizona","CityName":"Mesa, + Arizona","Longitude":-111.831459,"Latitude":33.4170456},{"LocationName":"Phoenix, + Arizona","CountryCode":"United States","CountrySubDivisionCode":"Arizona","CityName":"Phoenix, + Arizona","Longitude":-112.075775,"Latitude":33.44826},{"LocationName":"Prescott, + Arizona","CountryCode":"United States","CountrySubDivisionCode":"Arizona","CityName":"Prescott, + Arizona","Longitude":-112.468727,"Latitude":34.5414238},{"LocationName":"Scottsdale, + Arizona","CountryCode":"United States","CountrySubDivisionCode":"Arizona","CityName":"Scottsdale, + Arizona","Longitude":-111.92131,"Latitude":33.4940071},{"LocationName":"Tempe, + Arizona","CountryCode":"United States","CountrySubDivisionCode":"Arizona","CityName":"Tempe, + Arizona","Longitude":-111.9383,"Latitude":33.4255066},{"LocationName":"Tucson, + Arizona","CountryCode":"United States","CountrySubDivisionCode":"Arizona","CityName":"Tucson, + Arizona","Longitude":-110.969757,"Latitude":32.2215538},{"LocationName":"Yuma, + Arizona","CountryCode":"United States","CountrySubDivisionCode":"Arizona","CityName":"Yuma, + Arizona","Longitude":-114.624611,"Latitude":32.68485},{"LocationName":"Fayetteville, + Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Fayetteville, + Arkansas","Longitude":-94.1579,"Latitude":36.0632},{"LocationName":"Fort Smith, + Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Fort + Smith, Arkansas","Longitude":-94.4213,"Latitude":35.3846},{"LocationName":"Harrison, + Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Harrison, + Arkansas","Longitude":-93.1105,"Latitude":36.2286},{"LocationName":"Jonesboro, + Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Jonesboro, + Arkansas","Longitude":-90.7050552,"Latitude":35.83526},{"LocationName":"Little + Rock, Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Little + Rock, Arkansas","Longitude":-92.2745,"Latitude":34.7487},{"LocationName":"Little + Rock AFB, Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Little + Rock AFB, Arkansas","Longitude":-92.14686,"Latitude":34.91159},{"LocationName":"Russellville, + Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Russellville, + Arkansas","Longitude":-93.13483,"Latitude":35.27827},{"LocationName":"Texarkana, + Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Texarkana, + Arkansas","Longitude":-94.0358,"Latitude":33.431},{"LocationName":"Alameda, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Alameda, + California","Longitude":-122.245,"Latitude":37.7666},{"LocationName":"Arcata, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Arcata, + California","Longitude":-124.085,"Latitude":40.8674},{"LocationName":"Bakersfield, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Bakersfield, + California","Longitude":-119.019,"Latitude":35.367},{"LocationName":"Barstow, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Barstow, + California","Longitude":-117.0258,"Latitude":34.893},{"LocationName":"Brisbane, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Brisbane, + California","Longitude":-122.4024,"Latitude":37.6863},{"LocationName":"Burbank, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Burbank, + California","Longitude":-118.308121,"Latitude":34.18147},{"LocationName":"Burlingame, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Burlingame, + California","Longitude":-122.350464,"Latitude":37.5801735},{"LocationName":"Camarillo, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Camarillo, + California","Longitude":-119.0507,"Latitude":34.2229156},{"LocationName":"Carlsbad, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Carlsbad, + California","Longitude":-117.338226,"Latitude":33.1658859},{"LocationName":"Chino, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Chino, + California","Longitude":-117.689331,"Latitude":34.01281},{"LocationName":"Concord, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Concord, + California","Longitude":-122.025192,"Latitude":37.9808121},{"LocationName":"Costa + Mesa, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Costa + Mesa, California","Longitude":-117.903427,"Latitude":33.66388},{"LocationName":"Daggett, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Daggett, + California","Longitude":-116.888916,"Latitude":34.8591843},{"LocationName":"Daly + City, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Daly + City, California","Longitude":-122.473351,"Latitude":37.6910858},{"LocationName":"Edwards + AFB, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Edwards + AFB, California","Longitude":-117.8332,"Latitude":34.8898},{"LocationName":"El + Cajon, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"El + Cajon, California","Longitude":-116.959473,"Latitude":32.79495},{"LocationName":"El + Monte, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"El + Monte, California","Longitude":-118.030373,"Latitude":34.07064},{"LocationName":"El + Segundo, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"El + Segundo, California","Longitude":-118.415962,"Latitude":33.9199257},{"LocationName":"Fairfield, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Fairfield, + California","Longitude":-122.044,"Latitude":38.2492},{"LocationName":"Foster + City, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Foster + City, California","Longitude":-122.268517,"Latitude":37.56093},{"LocationName":"Fremont, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Fremont, + California","Longitude":-121.9822,"Latitude":37.5509},{"LocationName":"Fresno, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Fresno, + California","Longitude":-119.785683,"Latitude":36.7406158},{"LocationName":"Fullerton, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Fullerton, + California","Longitude":-117.929108,"Latitude":33.870327},{"LocationName":"Hawthorne, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Hawthorne, + California","Longitude":-118.353745,"Latitude":33.91819},{"LocationName":"Hayward, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Hayward, + California","Longitude":-122.0861,"Latitude":37.6712},{"LocationName":"Inyokern, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Inyokern, + California","Longitude":-117.812996,"Latitude":35.64694},{"LocationName":"Kramer + Junction, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Kramer + Junction, California","Longitude":-117.541443,"Latitude":34.9919167},{"LocationName":"La + Mirada, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"La + Mirada, California","Longitude":-118.012,"Latitude":33.9071},{"LocationName":"La + Verne, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"La + Verne, California","Longitude":-117.765076,"Latitude":34.113327},{"LocationName":"Lakewood, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Lakewood, + California","Longitude":-118.133781,"Latitude":33.8488159},{"LocationName":"Lancaster, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Lancaster, + California","Longitude":-118.144783,"Latitude":34.6989059},{"LocationName":"Lawndale, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Lawndale, + California","Longitude":-118.353851,"Latitude":33.8986244},{"LocationName":"Livermore, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Livermore, + California","Longitude":-121.757828,"Latitude":37.6752434},{"LocationName":"Long + Beach, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Long + Beach, California","Longitude":-118.1924,"Latitude":33.7667236},{"LocationName":"Los + Alamitos, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Los + Alamitos, California","Longitude":-118.076622,"Latitude":33.8031654},{"LocationName":"Los + Angeles, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Los + Angeles, California","Longitude":-118.245,"Latitude":34.0535},{"LocationName":"Mather + AFB, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Mather + AFB, California","Longitude":-121.282,"Latitude":38.5554},{"LocationName":"McKinleyville, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"McKinleyville, + California","Longitude":-124.100983,"Latitude":40.9426651},{"LocationName":"Monterey, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Monterey, + California","Longitude":-121.897,"Latitude":36.5976},{"LocationName":"Montrose, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Montrose, + California","Longitude":-118.228027,"Latitude":34.20522},{"LocationName":"Napa, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Napa, + California","Longitude":-122.285194,"Latitude":38.2988548},{"LocationName":"Oakland, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Oakland, + California","Longitude":-122.273026,"Latitude":37.8050652},{"LocationName":"Ontario, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Ontario, + California","Longitude":-117.647812,"Latitude":34.06457},{"LocationName":"Oxnard, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Oxnard, + California","Longitude":-119.180443,"Latitude":34.20034},{"LocationName":"Palm + Springs, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Palm + Springs, California","Longitude":-116.512115,"Latitude":33.8232155},{"LocationName":"Palmdale, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Palmdale, + California","Longitude":-118.116455,"Latitude":34.5784836},{"LocationName":"Palo + Alto, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Palo + Alto, California","Longitude":-122.1608,"Latitude":37.44466},{"LocationName":"Paso + Robles, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Paso + Robles, California","Longitude":-120.691261,"Latitude":35.6250954},{"LocationName":"Rancho + Cordova, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Rancho + Cordova, California","Longitude":-121.303261,"Latitude":38.5744858},{"LocationName":"Rancho + Palos Verdes, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Rancho + Palos Verdes, California","Longitude":-118.4031,"Latitude":33.74492},{"LocationName":"Red + Bluff, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Red + Bluff, California","Longitude":-122.235313,"Latitude":40.1779747},{"LocationName":"Redwood + City, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Redwood + City, California","Longitude":-122.227,"Latitude":37.4842},{"LocationName":"Ridgecrest, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Ridgecrest, + California","Longitude":-117.668861,"Latitude":35.6224861},{"LocationName":"Riverside, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Riverside, + California","Longitude":-117.373878,"Latitude":33.98163},{"LocationName":"Sacramento, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Sacramento, + California","Longitude":-121.491,"Latitude":38.57906},{"LocationName":"Sacramento + South, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Sacramento + South, California","Longitude":-121.491,"Latitude":38.57906},{"LocationName":"San + Diego, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"San + Diego, California","Longitude":-117.162,"Latitude":32.7157},{"LocationName":"San + Francisco, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"San + Francisco, California","Longitude":-122.4196,"Latitude":37.7771},{"LocationName":"San + Jose, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"San + Jose, California","Longitude":-121.885796,"Latitude":37.3384743},{"LocationName":"Santa + Ana, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Santa + Ana, California","Longitude":-117.8739,"Latitude":33.7491},{"LocationName":"Santa + Ana Heights, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Santa + Ana Heights, California","Longitude":-117.873749,"Latitude":33.6527863},{"LocationName":"Santa + Barbara, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Santa + Barbara, California","Longitude":-119.6989,"Latitude":34.4193},{"LocationName":"Santa + Monica, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Santa + Monica, California","Longitude":-118.492287,"Latitude":34.0115662},{"LocationName":"Santa + Rosa, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Santa + Rosa, California","Longitude":-122.712425,"Latitude":38.4377327},{"LocationName":"South + San Francisco, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"South + San Francisco, California","Longitude":-122.413376,"Latitude":37.65589},{"LocationName":"Stanton, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Stanton, + California","Longitude":-117.996239,"Latitude":33.80295},{"LocationName":"Stockton, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Stockton, + California","Longitude":-121.291,"Latitude":37.9536},{"LocationName":"Torrance, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Torrance, + California","Longitude":-118.34166,"Latitude":33.8366623},{"LocationName":"Vacaville, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Vacaville, + California","Longitude":-121.993393,"Latitude":38.35134},{"LocationName":"Van + Nuys, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Van + Nuys, California","Longitude":-118.446518,"Latitude":34.18416},{"LocationName":"Vandenberg + AFB, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Vandenberg + AFB, California","Longitude":-120.542488,"Latitude":34.75468},{"LocationName":"Vista, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Vista, + California","Longitude":-117.234,"Latitude":33.202},{"LocationName":"Aspen, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Aspen, + Colorado","Longitude":-106.818184,"Latitude":39.19003},{"LocationName":"Aurora, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Aurora, + Colorado","Longitude":-104.813,"Latitude":39.7087},{"LocationName":"Broomfield, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Broomfield, + Colorado","Longitude":-105.069626,"Latitude":39.9194145},{"LocationName":"Centennial, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Centennial, + Colorado","Longitude":-104.898376,"Latitude":39.59512},{"LocationName":"Colorado + City, Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Colorado + City, Colorado","Longitude":-104.836021,"Latitude":37.9450378},{"LocationName":"Colorado + Springs, Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Colorado + Springs, Colorado","Longitude":-104.821732,"Latitude":38.83311},{"LocationName":"Cortez, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Cortez, + Colorado","Longitude":-108.553665,"Latitude":37.3546638},{"LocationName":"Denver, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Denver, + Colorado","Longitude":-104.992256,"Latitude":39.74001},{"LocationName":"Englewood, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Englewood, + Colorado","Longitude":-104.993561,"Latitude":39.6543655},{"LocationName":"Grand + Junction, Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Grand + Junction, Colorado","Longitude":-108.564453,"Latitude":39.06879},{"LocationName":"Longmont, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Longmont, + Colorado","Longitude":-105.1005,"Latitude":40.16394},{"LocationName":"Parker, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Parker, + Colorado","Longitude":-104.754631,"Latitude":39.5180321},{"LocationName":"Pueblo, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Pueblo, + Colorado","Longitude":-104.612373,"Latitude":38.26386},{"LocationName":"Watkins, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Watkins, + Colorado","Longitude":-104.6031,"Latitude":39.7389832},{"LocationName":"Bridgeport, + Connecticut","CountryCode":"United States","CountrySubDivisionCode":"Connecticut","CityName":"Bridgeport, + Connecticut","Longitude":-73.19127,"Latitude":41.18188},{"LocationName":"Groton, + Connecticut","CountryCode":"United States","CountrySubDivisionCode":"Connecticut","CityName":"Groton, + Connecticut","Longitude":-72.07072,"Latitude":41.354847},{"LocationName":"New + Haven, Connecticut","CountryCode":"United States","CountrySubDivisionCode":"Connecticut","CityName":"New + Haven, Connecticut","Longitude":-72.92496,"Latitude":41.3071136},{"LocationName":"Stratford, + Connecticut","CountryCode":"United States","CountrySubDivisionCode":"Connecticut","CityName":"Stratford, + Connecticut","Longitude":-73.1319,"Latitude":41.19914},{"LocationName":"Windsor, + Connecticut","CountryCode":"United States","CountrySubDivisionCode":"Connecticut","CityName":"Windsor, + Connecticut","Longitude":-72.64417,"Latitude":41.85076},{"LocationName":"Windsor + Locks, Connecticut","CountryCode":"United States","CountrySubDivisionCode":"Connecticut","CityName":"Windsor + Locks, Connecticut","Longitude":-72.6313,"Latitude":41.9296875},{"LocationName":"Dover + AFB, Delaware","CountryCode":"United States","CountrySubDivisionCode":"Delaware","CityName":"Dover + AFB, Delaware","Longitude":-75.4701,"Latitude":39.1274},{"LocationName":"New + Castle, Delaware","CountryCode":"United States","CountrySubDivisionCode":"Delaware","CityName":"New + Castle, Delaware","Longitude":-75.56394,"Latitude":39.65977},{"LocationName":"Fort + McNair, District of Columbia","CountryCode":"United States","CountrySubDivisionCode":"District + of Columbia","CityName":"Fort McNair, District of Columbia","Longitude":-77.017,"Latitude":38.8664},{"LocationName":"Washington + DC, District of Columbia","CountryCode":"United States","CountrySubDivisionCode":"District + of Columbia","CityName":"Washington DC, District of Columbia","Longitude":-77.032,"Latitude":38.8904},{"LocationName":"Bradenton, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Bradenton, + Florida","Longitude":-82.5781,"Latitude":27.4955},{"LocationName":"Cape Canaveral + AFS, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Cape + Canaveral AFS, Florida","Longitude":-80.5678,"Latitude":28.5071},{"LocationName":"Cross + City, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Cross + City, Florida","Longitude":-83.12859,"Latitude":29.6365185},{"LocationName":"Daytona + Beach, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Daytona + Beach, Florida","Longitude":-81.0394058,"Latitude":29.2035751},{"LocationName":"Delray + Beach, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Delray + Beach, Florida","Longitude":-80.07419,"Latitude":26.464365},{"LocationName":"Fort + Lauderdale, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Fort + Lauderdale, Florida","Longitude":-80.14356,"Latitude":26.12367},{"LocationName":"Fort + Myers, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Fort + Myers, Florida","Longitude":-81.8682,"Latitude":26.6408},{"LocationName":"Fort + Pierce, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Fort + Pierce, Florida","Longitude":-80.3266144,"Latitude":27.44865},{"LocationName":"Gainesville, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Gainesville, + Florida","Longitude":-82.32319,"Latitude":29.65195},{"LocationName":"Hilliard, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Hilliard, + Florida","Longitude":-81.91849,"Latitude":30.6905346},{"LocationName":"Jacksonville, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Jacksonville, + Florida","Longitude":-81.6558,"Latitude":30.33138},{"LocationName":"Key West, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Key + West, Florida","Longitude":-81.80085,"Latitude":24.5541172},{"LocationName":"Lakeland, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Lakeland, + Florida","Longitude":-81.94787,"Latitude":28.04419},{"LocationName":"Melbourne, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Melbourne, + Florida","Longitude":-80.60689,"Latitude":28.07939},{"LocationName":"Miami, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Miami, + Florida","Longitude":-80.23742,"Latitude":25.7289848},{"LocationName":"Miami + Beach, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Miami + Beach, Florida","Longitude":-80.1349,"Latitude":25.7930946},{"LocationName":"Miramar, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Miramar, + Florida","Longitude":-80.22053,"Latitude":25.9820557},{"LocationName":"Odessa, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Odessa, + Florida","Longitude":-82.5923,"Latitude":28.194},{"LocationName":"Orlando, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Orlando, + Florida","Longitude":-81.37739,"Latitude":28.5382347},{"LocationName":"Pace, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Pace, + Florida","Longitude":-87.1615143,"Latitude":30.6027641},{"LocationName":"Palm + Beach, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Palm + Beach, Florida","Longitude":-80.03661,"Latitude":26.7028847},{"LocationName":"Palm + Coast, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Palm + Coast, Florida","Longitude":-81.26009,"Latitude":29.5505867},{"LocationName":"Panama + City, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Panama + City, Florida","Longitude":-85.66033,"Latitude":30.15987},{"LocationName":"Patrick + AFB, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Patrick + AFB, Florida","Longitude":-80.60844,"Latitude":28.2421055},{"LocationName":"Pensacola, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Pensacola, + Florida","Longitude":-87.21724,"Latitude":30.420845},{"LocationName":"Redington + Shores, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Redington + Shores, Florida","Longitude":-82.82995,"Latitude":27.827755},{"LocationName":"Saint + Petersburg, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Saint + Petersburg, Florida","Longitude":-82.63934,"Latitude":27.7885551},{"LocationName":"Sanford, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Sanford, + Florida","Longitude":-81.2680359,"Latitude":28.81403},{"LocationName":"Sarasota, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Sarasota, + Florida","Longitude":-82.53963,"Latitude":27.33888},{"LocationName":"Tallahassee, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Tallahassee, + Florida","Longitude":-84.28065,"Latitude":30.4397755},{"LocationName":"Tampa, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Tampa, + Florida","Longitude":-82.45927,"Latitude":27.94653},{"LocationName":"Tyndall + AFB, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Tyndall + AFB, Florida","Longitude":-85.5674,"Latitude":30.049},{"LocationName":"Vero + Beach, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Vero + Beach, Florida","Longitude":-80.3942261,"Latitude":27.6388512},{"LocationName":"West + Palm Beach, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"West + Palm Beach, Florida","Longitude":-80.05269,"Latitude":26.7143879},{"LocationName":"Albany, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Albany, + Georgia","Longitude":-84.15601,"Latitude":31.58076},{"LocationName":"Ashburn, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Ashburn, + Georgia","Longitude":-83.6542358,"Latitude":31.7056046},{"LocationName":"Atlanta, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Atlanta, + Georgia","Longitude":-84.39111,"Latitude":33.7483139},{"LocationName":"Atlanta, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Atlanta, + Georgia","Longitude":-84.39111,"Latitude":33.7483139},{"LocationName":"Augusta, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Augusta, + Georgia","Longitude":-81.97531,"Latitude":33.47909},{"LocationName":"Brunswick, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Brunswick, + Georgia","Longitude":-81.49557,"Latitude":31.149765},{"LocationName":"Cartersville, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Cartersville, + Georgia","Longitude":-84.7957,"Latitude":34.1652},{"LocationName":"Chamblee, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Chamblee, + Georgia","Longitude":-84.29867,"Latitude":33.89412},{"LocationName":"College + Park, Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"College + Park, Georgia","Longitude":-84.44896,"Latitude":33.65597},{"LocationName":"College + Park, Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"College + Park, Georgia","Longitude":-84.44896,"Latitude":33.65597},{"LocationName":"Columbus, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Columbus, + Georgia","Longitude":-84.98763,"Latitude":32.462925},{"LocationName":"East + Point, Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"East + Point, Georgia","Longitude":-84.44181,"Latitude":33.67944},{"LocationName":"Hampton, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Hampton, + Georgia","Longitude":-84.28296,"Latitude":33.387722},{"LocationName":"Hapeville, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Hapeville, + Georgia","Longitude":-84.4085541,"Latitude":33.65931},{"LocationName":"Macon, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Macon, + Georgia","Longitude":-83.62758,"Latitude":32.8396835},{"LocationName":"Marietta, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Marietta, + Georgia","Longitude":-84.54588,"Latitude":33.9531937},{"LocationName":"Peachtree + City, Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Peachtree + City, Georgia","Longitude":-84.58769,"Latitude":33.3989334},{"LocationName":"Savannah, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Savannah, + Georgia","Longitude":-81.09072,"Latitude":32.08078},{"LocationName":"Hilo, + Hawaii","CountryCode":"United States","CountrySubDivisionCode":"Hawaii","CityName":"Hilo, + Hawaii","Longitude":-155.081863,"Latitude":19.7192345},{"LocationName":"Honolulu, + Hawaii","CountryCode":"United States","CountrySubDivisionCode":"Hawaii","CityName":"Honolulu, + Hawaii","Longitude":-157.858,"Latitude":21.3047},{"LocationName":"Kahului, + Hawaii","CountryCode":"United States","CountrySubDivisionCode":"Hawaii","CityName":"Kahului, + Hawaii","Longitude":-156.467148,"Latitude":20.8907757},{"LocationName":"Kailua + Kona, Hawaii","CountryCode":"United States","CountrySubDivisionCode":"Hawaii","CityName":"Kailua + Kona, Hawaii","Longitude":-155.9956,"Latitude":19.6401},{"LocationName":"Lihue, + Hawaii","CountryCode":"United States","CountrySubDivisionCode":"Hawaii","CityName":"Lihue, + Hawaii","Longitude":-159.368576,"Latitude":21.9749241},{"LocationName":"Waialua, + Hawaii","CountryCode":"United States","CountrySubDivisionCode":"Hawaii","CityName":"Waialua, + Hawaii","Longitude":-158.123,"Latitude":21.574},{"LocationName":"Ashton, Idaho","CountryCode":"United + States","CountrySubDivisionCode":"Idaho","CityName":"Ashton, Idaho","Longitude":-111.446533,"Latitude":44.07135},{"LocationName":"Boise, + Idaho","CountryCode":"United States","CountrySubDivisionCode":"Idaho","CityName":"Boise, + Idaho","Longitude":-116.193413,"Latitude":43.60698},{"LocationName":"Cascade, + Idaho","CountryCode":"United States","CountrySubDivisionCode":"Idaho","CityName":"Cascade, + Idaho","Longitude":-116.041451,"Latitude":44.51554},{"LocationName":"Idaho + Falls, Idaho","CountryCode":"United States","CountrySubDivisionCode":"Idaho","CityName":"Idaho + Falls, Idaho","Longitude":-112.041992,"Latitude":43.492},{"LocationName":"Lewiston, + Idaho","CountryCode":"United States","CountrySubDivisionCode":"Idaho","CityName":"Lewiston, + Idaho","Longitude":-117.016663,"Latitude":46.4186554},{"LocationName":"Pocatello, + Idaho","CountryCode":"United States","CountrySubDivisionCode":"Idaho","CityName":"Pocatello, + Idaho","Longitude":-112.450577,"Latitude":42.87472},{"LocationName":"Twin + Falls, Idaho","CountryCode":"United States","CountrySubDivisionCode":"Idaho","CityName":"Twin + Falls, Idaho","Longitude":-114.469612,"Latitude":42.5562},{"LocationName":"Alton, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Alton, + Illinois","Longitude":-90.18384,"Latitude":38.89086},{"LocationName":"Aurora, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Aurora, + Illinois","Longitude":-88.31577,"Latitude":41.75695},{"LocationName":"Belleville, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Belleville, + Illinois","Longitude":-89.9842,"Latitude":38.5121},{"LocationName":"Bloomington, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Bloomington, + Illinois","Longitude":-88.99771,"Latitude":40.48501},{"LocationName":"Champaign, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Champaign, + Illinois","Longitude":-88.2435,"Latitude":40.1142},{"LocationName":"Chicago, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Chicago, + Illinois","Longitude":-87.63241,"Latitude":41.88415},{"LocationName":"Des + Plaines, Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Des + Plaines, Illinois","Longitude":-87.88846,"Latitude":42.0420074},{"LocationName":"East + Saint Louis, Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"East + Saint Louis, Illinois","Longitude":-90.15563,"Latitude":38.62216},{"LocationName":"Elgin, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Elgin, + Illinois","Longitude":-88.28324,"Latitude":42.039566},{"LocationName":"Elgin, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Elgin, + Illinois","Longitude":-88.28324,"Latitude":42.039566},{"LocationName":"Elk + Grove Village, Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Elk + Grove Village, Illinois","Longitude":-88.00904,"Latitude":42.0028076},{"LocationName":"Hanna + City, Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Hanna + City, Illinois","Longitude":-89.79286,"Latitude":40.6917343},{"LocationName":"Joliet, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Joliet, + Illinois","Longitude":-88.0845947,"Latitude":41.5249329},{"LocationName":"Kankakee, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Kankakee, + Illinois","Longitude":-87.86041,"Latitude":41.1199455},{"LocationName":"Milan, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Milan, + Illinois","Longitude":-90.568306,"Latitude":41.4532051},{"LocationName":"Moline, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Moline, + Illinois","Longitude":-90.4899,"Latitude":41.4917336},{"LocationName":"Peoria, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Peoria, + Illinois","Longitude":-89.58776,"Latitude":40.69214},{"LocationName":"Rockford, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Rockford, + Illinois","Longitude":-89.0783539,"Latitude":42.2669},{"LocationName":"Schiller + Park, Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Schiller + Park, Illinois","Longitude":-87.86565,"Latitude":41.9547653},{"LocationName":"Scott + AFB, Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Scott + AFB, Illinois","Longitude":-89.8714,"Latitude":38.5483},{"LocationName":"Springfield, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Springfield, + Illinois","Longitude":-89.64361,"Latitude":39.8010559},{"LocationName":"Sugar + Grove, Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Sugar + Grove, Illinois","Longitude":-88.4555,"Latitude":41.7642},{"LocationName":"West + Chicago, Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"West + Chicago, Illinois","Longitude":-88.2006149,"Latitude":41.882},{"LocationName":"Wheeling, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Wheeling, + Illinois","Longitude":-87.91619,"Latitude":42.13954},{"LocationName":"Evansville, + Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Evansville, + Indiana","Longitude":-87.5641251,"Latitude":37.97691},{"LocationName":"Fort + Wayne, Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Fort + Wayne, Indiana","Longitude":-85.09907,"Latitude":41.0755234},{"LocationName":"Indianapolis, + Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Indianapolis, + Indiana","Longitude":-86.14996,"Latitude":39.76691},{"LocationName":"Lagrange, + Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Lagrange, + Indiana","Longitude":-85.41796,"Latitude":41.6444168},{"LocationName":"Marion, + Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Marion, + Indiana","Longitude":-85.66038,"Latitude":40.5588},{"LocationName":"Plainfield, + Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Plainfield, + Indiana","Longitude":-86.39776,"Latitude":39.7043953},{"LocationName":"South + Bend, Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"South + Bend, Indiana","Longitude":-86.25404,"Latitude":41.6790581},{"LocationName":"Terre + Haute, Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Terre + Haute, Indiana","Longitude":-87.41323,"Latitude":39.4664955},{"LocationName":"West + Lafayette, Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"West + Lafayette, Indiana","Longitude":-86.91367,"Latitude":40.4310265},{"LocationName":"Ankeny, + Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Ankeny, + Iowa","Longitude":-93.60526,"Latitude":41.731842},{"LocationName":"Burlington, + Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Burlington, + Iowa","Longitude":-91.1008,"Latitude":40.812},{"LocationName":"Cedar Rapids, + Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Cedar + Rapids, Iowa","Longitude":-91.67376,"Latitude":41.9763451},{"LocationName":"Des + Moines, Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Des + Moines, Iowa","Longitude":-93.61568,"Latitude":41.5897865},{"LocationName":"Dubuque, + Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Dubuque, + Iowa","Longitude":-90.6633,"Latitude":42.4991},{"LocationName":"Fort Dodge, + Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Fort + Dodge, Iowa","Longitude":-94.17763,"Latitude":42.50157},{"LocationName":"Sioux + City, Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Sioux + City, Iowa","Longitude":-96.4209442,"Latitude":42.49981},{"LocationName":"Waterloo, + Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Waterloo, + Iowa","Longitude":-92.3423157,"Latitude":42.4929543},{"LocationName":"Dodge + City, Kansas","CountryCode":"United States","CountrySubDivisionCode":"Kansas","CityName":"Dodge + City, Kansas","Longitude":-100.0187,"Latitude":37.7526},{"LocationName":"Garden + City, Kansas","CountryCode":"United States","CountrySubDivisionCode":"Kansas","CityName":"Garden + City, Kansas","Longitude":-100.873184,"Latitude":37.96918},{"LocationName":"Gardner, + Kansas","CountryCode":"United States","CountrySubDivisionCode":"Kansas","CityName":"Gardner, + Kansas","Longitude":-94.9272,"Latitude":38.811},{"LocationName":"Goodland, + Kansas","CountryCode":"United States","CountrySubDivisionCode":"Kansas","CityName":"Goodland, + Kansas","Longitude":-101.711975,"Latitude":39.36573},{"LocationName":"Hutchinson, + Kansas","CountryCode":"United States","CountrySubDivisionCode":"Kansas","CityName":"Hutchinson, + Kansas","Longitude":-97.93268,"Latitude":38.05726},{"LocationName":"Lenexa, + Kansas","CountryCode":"United States","CountrySubDivisionCode":"Kansas","CityName":"Lenexa, + Kansas","Longitude":-94.7405853,"Latitude":38.96096},{"LocationName":"Olathe, + Kansas","CountryCode":"United States","CountrySubDivisionCode":"Kansas","CityName":"Olathe, + Kansas","Longitude":-94.81888,"Latitude":38.88353},{"LocationName":"Salina, + Kansas","CountryCode":"United States","CountrySubDivisionCode":"Kansas","CityName":"Salina, + Kansas","Longitude":-97.6097,"Latitude":38.8405},{"LocationName":"Shawnee, + Kansas","CountryCode":"United States","CountrySubDivisionCode":"Kansas","CityName":"Shawnee, + Kansas","Longitude":-94.71543,"Latitude":39.0229034},{"LocationName":"Sublette, + Kansas","CountryCode":"United States","CountrySubDivisionCode":"Kansas","CityName":"Sublette, + Kansas","Longitude":-100.843758,"Latitude":37.47698},{"LocationName":"Topeka, + Kansas","CountryCode":"United States","CountrySubDivisionCode":"Kansas","CityName":"Topeka, + Kansas","Longitude":-95.6775,"Latitude":39.0567},{"LocationName":"Wichita, + Kansas","CountryCode":"United States","CountrySubDivisionCode":"Kansas","CityName":"Wichita, + Kansas","Longitude":-97.33558,"Latitude":37.68698},{"LocationName":"Covington, + Kentucky","CountryCode":"United States","CountrySubDivisionCode":"Kentucky","CityName":"Covington, + Kentucky","Longitude":-84.51018,"Latitude":39.08378},{"LocationName":"Hebron, + Kentucky","CountryCode":"United States","CountrySubDivisionCode":"Kentucky","CityName":"Hebron, + Kentucky","Longitude":-84.69989,"Latitude":39.0659752},{"LocationName":"Lexington, + Kentucky","CountryCode":"United States","CountrySubDivisionCode":"Kentucky","CityName":"Lexington, + Kentucky","Longitude":-84.50032,"Latitude":38.0485954},{"LocationName":"Louisville, + Kentucky","CountryCode":"United States","CountrySubDivisionCode":"Kentucky","CityName":"Louisville, + Kentucky","Longitude":-85.7664,"Latitude":38.25486},{"LocationName":"Owensboro, + Kentucky","CountryCode":"United States","CountrySubDivisionCode":"Kentucky","CityName":"Owensboro, + Kentucky","Longitude":-87.11354,"Latitude":37.7742},{"LocationName":"Paducah, + Kentucky","CountryCode":"United States","CountrySubDivisionCode":"Kentucky","CityName":"Paducah, + Kentucky","Longitude":-88.5958,"Latitude":37.0857},{"LocationName":"Alexandria, + Louisiana","CountryCode":"United States","CountrySubDivisionCode":"Louisiana","CityName":"Alexandria, + Louisiana","Longitude":-92.44565,"Latitude":31.312685},{"LocationName":"Barksdale + AFB, Louisiana","CountryCode":"United States","CountrySubDivisionCode":"Louisiana","CityName":"Barksdale + AFB, Louisiana","Longitude":-93.6116,"Latitude":32.49727},{"LocationName":"Baton + Rouge, Louisiana","CountryCode":"United States","CountrySubDivisionCode":"Louisiana","CityName":"Baton + Rouge, Louisiana","Longitude":-91.1868744,"Latitude":30.44342},{"LocationName":"De + Ridder, Louisiana","CountryCode":"United States","CountrySubDivisionCode":"Louisiana","CityName":"De + Ridder, Louisiana","Longitude":-93.289,"Latitude":30.8473},{"LocationName":"Lafayette, + Louisiana","CountryCode":"United States","CountrySubDivisionCode":"Louisiana","CityName":"Lafayette, + Louisiana","Longitude":-92.01705,"Latitude":30.2203255},{"LocationName":"Lake + Charles, Louisiana","CountryCode":"United States","CountrySubDivisionCode":"Louisiana","CityName":"Lake + Charles, Louisiana","Longitude":-93.22011,"Latitude":30.2240334},{"LocationName":"Monroe, + Louisiana","CountryCode":"United States","CountrySubDivisionCode":"Louisiana","CityName":"Monroe, + Louisiana","Longitude":-92.11905,"Latitude":32.50965},{"LocationName":"New + Orleans, Louisiana","CountryCode":"United States","CountrySubDivisionCode":"Louisiana","CityName":"New + Orleans, Louisiana","Longitude":-90.07771,"Latitude":29.95369},{"LocationName":"Shreveport, + Louisiana","CountryCode":"United States","CountrySubDivisionCode":"Louisiana","CityName":"Shreveport, + Louisiana","Longitude":-93.74728,"Latitude":32.5146141},{"LocationName":"Shreveport, + Louisiana","CountryCode":"United States","CountrySubDivisionCode":"Louisiana","CityName":"Shreveport, + Louisiana","Longitude":-93.74728,"Latitude":32.5146141},{"LocationName":"Augusta, + Maine","CountryCode":"United States","CountrySubDivisionCode":"Maine","CityName":"Augusta, + Maine","Longitude":-69.7762,"Latitude":44.318},{"LocationName":"Bangor, Maine","CountryCode":"United + States","CountrySubDivisionCode":"Maine","CityName":"Bangor, Maine","Longitude":-68.7708,"Latitude":44.8017},{"LocationName":"Caribou, + Maine","CountryCode":"United States","CountrySubDivisionCode":"Maine","CityName":"Caribou, + Maine","Longitude":-68.0112,"Latitude":46.8593},{"LocationName":"Limestone, + Maine","CountryCode":"United States","CountrySubDivisionCode":"Maine","CityName":"Limestone, + Maine","Longitude":-67.8256,"Latitude":46.9122},{"LocationName":"Portland, + Maine","CountryCode":"United States","CountrySubDivisionCode":"Maine","CityName":"Portland, + Maine","Longitude":-70.2567,"Latitude":43.6591},{"LocationName":"Andrews AFB, + Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Andrews + AFB, Maryland","Longitude":-76.8765,"Latitude":38.8054},{"LocationName":"Baltimore, + Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Baltimore, + Maryland","Longitude":-76.6096039,"Latitude":39.290554},{"LocationName":"Boonsboro, + Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Boonsboro, + Maryland","Longitude":-77.65246,"Latitude":39.50705},{"LocationName":"Camp + Springs, Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Camp + Springs, Maryland","Longitude":-76.88768,"Latitude":38.8206177},{"LocationName":"Gaithersburg, + Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Gaithersburg, + Maryland","Longitude":-77.19383,"Latitude":39.1398659},{"LocationName":"Glen + Burnie, Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Glen + Burnie, Maryland","Longitude":-76.62184,"Latitude":39.1617737},{"LocationName":"Glenn + Dale, Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Glenn + Dale, Maryland","Longitude":-76.81931,"Latitude":38.98745},{"LocationName":"Rockville, + Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Rockville, + Maryland","Longitude":-77.1512,"Latitude":39.0817},{"LocationName":"Salisbury, + Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Salisbury, + Maryland","Longitude":-75.59532,"Latitude":38.3657341},{"LocationName":"Silver + Spring, Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Silver + Spring, Maryland","Longitude":-77.02888,"Latitude":38.99668},{"LocationName":"Bedford, + Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"Bedford, + Massachusetts","Longitude":-71.274,"Latitude":42.4917},{"LocationName":"Boston, + Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"Boston, + Massachusetts","Longitude":-71.0567,"Latitude":42.3586349},{"LocationName":"Burlington, + Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"Burlington, + Massachusetts","Longitude":-71.1958847,"Latitude":42.5067749},{"LocationName":"Cambridge, + Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"Cambridge, + Massachusetts","Longitude":-71.10602,"Latitude":42.36679},{"LocationName":"Chelsea, + Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"Chelsea, + Massachusetts","Longitude":-71.03237,"Latitude":42.39376},{"LocationName":"Cummington, + Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"Cummington, + Massachusetts","Longitude":-72.8935242,"Latitude":42.46072},{"LocationName":"Falmouth, + Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"Falmouth, + Massachusetts","Longitude":-70.61748,"Latitude":41.5523567},{"LocationName":"Hyannis, + Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"Hyannis, + Massachusetts","Longitude":-70.2796249,"Latitude":41.6547928},{"LocationName":"Lawrence, + Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"Lawrence, + Massachusetts","Longitude":-71.16125,"Latitude":42.7103271},{"LocationName":"Lexington, + Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"Lexington, + Massachusetts","Longitude":-71.22305,"Latitude":42.44648},{"LocationName":"Marlboro, + Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"Marlboro, + Massachusetts","Longitude":-71.548,"Latitude":42.3468056},{"LocationName":"Marlborough, + Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"Marlborough, + Massachusetts","Longitude":-71.548,"Latitude":42.3468056},{"LocationName":"Nantucket, + Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"Nantucket, + Massachusetts","Longitude":-70.09933,"Latitude":41.2852135},{"LocationName":"North + Truro, Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"North + Truro, Massachusetts","Longitude":-70.14114,"Latitude":42.0599747},{"LocationName":"Norwood, + Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"Norwood, + Massachusetts","Longitude":-71.20032,"Latitude":42.1931267},{"LocationName":"Worcester, + Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"Worcester, + Massachusetts","Longitude":-71.80235,"Latitude":42.26299},{"LocationName":"Ann + Arbor, Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Ann + Arbor, Michigan","Longitude":-83.74848,"Latitude":42.2818756},{"LocationName":"Battle + Creek, Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Battle + Creek, Michigan","Longitude":-85.18022,"Latitude":42.31617},{"LocationName":"Belleville, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Belleville, + Michigan","Longitude":-83.48633,"Latitude":42.2054367},{"LocationName":"Calumet, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Calumet, + Michigan","Longitude":-88.4538,"Latitude":47.2458},{"LocationName":"Coopersville, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Coopersville, + Michigan","Longitude":-85.92715,"Latitude":43.074},{"LocationName":"Detroit, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Detroit, + Michigan","Longitude":-83.0479,"Latitude":42.3317},{"LocationName":"Flint, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Flint, + Michigan","Longitude":-83.68602,"Latitude":43.010746},{"LocationName":"Freeland, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Freeland, + Michigan","Longitude":-84.12281,"Latitude":43.5244751},{"LocationName":"Grand + Rapids, Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Grand + Rapids, Michigan","Longitude":-85.67118,"Latitude":42.96641},{"LocationName":"Indian + River, Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Indian + River, Michigan","Longitude":-84.61143,"Latitude":45.41335},{"LocationName":"Ishpeming, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Ishpeming, + Michigan","Longitude":-87.66936,"Latitude":46.48863},{"LocationName":"Kalamazoo, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Kalamazoo, + Michigan","Longitude":-85.60111,"Latitude":42.2924347},{"LocationName":"Kentwood, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Kentwood, + Michigan","Longitude":-85.59644,"Latitude":42.87339},{"LocationName":"Lansing, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Lansing, + Michigan","Longitude":-84.55229,"Latitude":42.73197},{"LocationName":"Muskegon, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Muskegon, + Michigan","Longitude":-86.24593,"Latitude":43.23424},{"LocationName":"Romulus, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Romulus, + Michigan","Longitude":-83.38534,"Latitude":42.22183},{"LocationName":"Saginaw, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Saginaw, + Michigan","Longitude":-83.94668,"Latitude":43.419178},{"LocationName":"Traverse + City, Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Traverse + City, Michigan","Longitude":-85.61584,"Latitude":44.7599945},{"LocationName":"Waterford, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Waterford, + Michigan","Longitude":-83.3893356,"Latitude":42.66984},{"LocationName":"Apple + Valley, Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Apple + Valley, Minnesota","Longitude":-93.21758,"Latitude":44.74275},{"LocationName":"Bemidji, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Bemidji, + Minnesota","Longitude":-94.8796,"Latitude":47.4731},{"LocationName":"Bloomington, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Bloomington, + Minnesota","Longitude":-93.306366,"Latitude":44.82049},{"LocationName":"Crystal, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Crystal, + Minnesota","Longitude":-93.3601,"Latitude":45.0318336},{"LocationName":"Duluth, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Duluth, + Minnesota","Longitude":-92.09985,"Latitude":46.7879639},{"LocationName":"Eden + Prairie, Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Eden + Prairie, Minnesota","Longitude":-93.46014,"Latitude":44.8586655},{"LocationName":"Farmington, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Farmington, + Minnesota","Longitude":-93.14439,"Latitude":44.63919},{"LocationName":"Hibbing, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Hibbing, + Minnesota","Longitude":-92.94174,"Latitude":47.4210548},{"LocationName":"Minneapolis, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Minneapolis, + Minnesota","Longitude":-93.26493,"Latitude":44.9790344},{"LocationName":"Nashwauk, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Nashwauk, + Minnesota","Longitude":-93.16867,"Latitude":47.38273},{"LocationName":"Princeton, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Princeton, + Minnesota","Longitude":-93.5845947,"Latitude":45.57921},{"LocationName":"Rochester, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Rochester, + Minnesota","Longitude":-92.45977,"Latitude":44.01925},{"LocationName":"Saint + Paul, Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Saint + Paul, Minnesota","Longitude":-93.09333,"Latitude":44.94383},{"LocationName":"Byhalia, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Byhalia, + Mississippi","Longitude":-89.68861,"Latitude":34.8693237},{"LocationName":"Columbus, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Columbus, + Mississippi","Longitude":-88.4288,"Latitude":33.495},{"LocationName":"Goodman, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Goodman, + Mississippi","Longitude":-89.91136,"Latitude":32.96814},{"LocationName":"Greenville, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Greenville, + Mississippi","Longitude":-91.0378647,"Latitude":33.398468},{"LocationName":"Greenwood, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Greenwood, + Mississippi","Longitude":-90.1804352,"Latitude":33.51711},{"LocationName":"Gulfport, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Gulfport, + Mississippi","Longitude":-89.0923538,"Latitude":30.38032},{"LocationName":"Jackson, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Jackson, + Mississippi","Longitude":-90.18049,"Latitude":32.29869},{"LocationName":"McComb, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"McComb, + Mississippi","Longitude":-90.45409,"Latitude":31.2457447},{"LocationName":"Meridian, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Meridian, + Mississippi","Longitude":-88.70307,"Latitude":32.36503},{"LocationName":"Olive + Branch, Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Olive + Branch, Mississippi","Longitude":-89.82709,"Latitude":34.96128},{"LocationName":"Pearl, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Pearl, + Mississippi","Longitude":-90.13717,"Latitude":32.27512},{"LocationName":"Tupelo, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Tupelo, + Mississippi","Longitude":-88.70783,"Latitude":34.25741},{"LocationName":"Bridgeton, + Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Bridgeton, + Missouri","Longitude":-90.40675,"Latitude":38.7552948},{"LocationName":"Cape + Girardeau, Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Cape + Girardeau, Missouri","Longitude":-89.5445,"Latitude":37.3027},{"LocationName":"Chesterfield, + Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Chesterfield, + Missouri","Longitude":-90.5538559,"Latitude":38.6536942},{"LocationName":"Columbia, + Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Columbia, + Missouri","Longitude":-92.33416,"Latitude":38.9521751},{"LocationName":"Earth + City, Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Earth + City, Missouri","Longitude":-90.46003,"Latitude":38.76564},{"LocationName":"Greentop, + Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Greentop, + Missouri","Longitude":-92.56838,"Latitude":40.3469429},{"LocationName":"Independence, + Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Independence, + Missouri","Longitude":-94.41563,"Latitude":39.0932465},{"LocationName":"Joplin, + Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Joplin, + Missouri","Longitude":-94.5135,"Latitude":37.0848},{"LocationName":"Kansas + City, Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Kansas + City, Missouri","Longitude":-94.58306,"Latitude":39.10296},{"LocationName":"Kansas + City, Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Kansas + City, Missouri","Longitude":-94.58306,"Latitude":39.10296},{"LocationName":"Kansas + City, Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Kansas + City, Missouri","Longitude":-94.58306,"Latitude":39.10296},{"LocationName":"Saint + Ann, Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Saint + Ann, Missouri","Longitude":-90.3920441,"Latitude":38.73258},{"LocationName":"Saint + Charles, Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Saint + Charles, Missouri","Longitude":-90.4821,"Latitude":38.7824},{"LocationName":"Saint + Joseph, Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Saint + Joseph, Missouri","Longitude":-94.83068,"Latitude":39.7793732},{"LocationName":"Saint + Louis, Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Saint + Louis, Missouri","Longitude":-90.19952,"Latitude":38.62774},{"LocationName":"Springfield, + Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Springfield, + Missouri","Longitude":-93.2915649,"Latitude":37.2089767},{"LocationName":"Weldon + Spring, Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Weldon + Spring, Missouri","Longitude":-90.6904449,"Latitude":38.71322},{"LocationName":"Belgrade, + Montana","CountryCode":"United States","CountrySubDivisionCode":"Montana","CityName":"Belgrade, + Montana","Longitude":-111.178,"Latitude":45.7765},{"LocationName":"Billings, + Montana","CountryCode":"United States","CountrySubDivisionCode":"Montana","CityName":"Billings, + Montana","Longitude":-108.505577,"Latitude":45.7837524},{"LocationName":"Great + Falls, Montana","CountryCode":"United States","CountrySubDivisionCode":"Montana","CityName":"Great + Falls, Montana","Longitude":-111.306076,"Latitude":47.5071449},{"LocationName":"Helena, + Montana","CountryCode":"United States","CountrySubDivisionCode":"Montana","CityName":"Helena, + Montana","Longitude":-112.0212,"Latitude":46.58976},{"LocationName":"Kalispell, + Montana","CountryCode":"United States","CountrySubDivisionCode":"Montana","CityName":"Kalispell, + Montana","Longitude":-114.3149,"Latitude":48.20164},{"LocationName":"Missoula, + Montana","CountryCode":"United States","CountrySubDivisionCode":"Montana","CityName":"Missoula, + Montana","Longitude":-113.996239,"Latitude":46.87278},{"LocationName":"Bellevue, + Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Bellevue, + Nebraska","Longitude":-95.893,"Latitude":41.1365},{"LocationName":"Columbus, + Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Columbus, + Nebraska","Longitude":-97.3718,"Latitude":41.4309349},{"LocationName":"Grand + Island, Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Grand + Island, Nebraska","Longitude":-98.3399048,"Latitude":40.92474},{"LocationName":"Lincoln, + Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Lincoln, + Nebraska","Longitude":-96.70774,"Latitude":40.81362},{"LocationName":"North + Platte, Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"North + Platte, Nebraska","Longitude":-100.763329,"Latitude":41.1363258},{"LocationName":"Offutt + AFB, Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Offutt + AFB, Nebraska","Longitude":-95.9223,"Latitude":41.1203},{"LocationName":"Omaha, + Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Omaha, + Nebraska","Longitude":-95.94007,"Latitude":41.26067},{"LocationName":"Scottsbluff, + Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Scottsbluff, + Nebraska","Longitude":-103.662758,"Latitude":41.8618},{"LocationName":"Wellfleet, + Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Wellfleet, + Nebraska","Longitude":-100.725685,"Latitude":40.7527733},{"LocationName":"Elko, + Nevada","CountryCode":"United States","CountrySubDivisionCode":"Nevada","CityName":"Elko, + Nevada","Longitude":-115.768,"Latitude":40.8356},{"LocationName":"Fallon, + Nevada","CountryCode":"United States","CountrySubDivisionCode":"Nevada","CityName":"Fallon, + Nevada","Longitude":-118.778,"Latitude":39.4749},{"LocationName":"Las Vegas, + Nevada","CountryCode":"United States","CountrySubDivisionCode":"Nevada","CityName":"Las + Vegas, Nevada","Longitude":-115.14,"Latitude":36.1719},{"LocationName":"Nellis + AFB, Nevada","CountryCode":"United States","CountrySubDivisionCode":"Nevada","CityName":"Nellis + AFB, Nevada","Longitude":-114.996,"Latitude":36.2363},{"LocationName":"North + Las Vegas, Nevada","CountryCode":"United States","CountrySubDivisionCode":"Nevada","CityName":"North + Las Vegas, Nevada","Longitude":-115.118515,"Latitude":36.1988831},{"LocationName":"Reno, + Nevada","CountryCode":"United States","CountrySubDivisionCode":"Nevada","CityName":"Reno, + Nevada","Longitude":-119.813,"Latitude":39.5274},{"LocationName":"Tonopah, + Nevada","CountryCode":"United States","CountrySubDivisionCode":"Nevada","CityName":"Tonopah, + Nevada","Longitude":-117.232,"Latitude":38.0655},{"LocationName":"Lebanon, + New Hampshire","CountryCode":"United States","CountrySubDivisionCode":"New + Hampshire","CityName":"Lebanon, New Hampshire","Longitude":-72.254,"Latitude":43.6448},{"LocationName":"Manchester, + New Hampshire","CountryCode":"United States","CountrySubDivisionCode":"New + Hampshire","CityName":"Manchester, New Hampshire","Longitude":-71.46309,"Latitude":42.9911766},{"LocationName":"Merrimack, + New Hampshire","CountryCode":"United States","CountrySubDivisionCode":"New + Hampshire","CityName":"Merrimack, New Hampshire","Longitude":-71.49441,"Latitude":42.86678},{"LocationName":"Nashua, + New Hampshire","CountryCode":"United States","CountrySubDivisionCode":"New + Hampshire","CityName":"Nashua, New Hampshire","Longitude":-71.46421,"Latitude":42.7583656},{"LocationName":"Portsmouth, + New Hampshire","CountryCode":"United States","CountrySubDivisionCode":"New + Hampshire","CityName":"Portsmouth, New Hampshire","Longitude":-70.7721,"Latitude":43.0706139},{"LocationName":"Atlantic + City, New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New + Jersey","CityName":"Atlantic City, New Jersey","Longitude":-74.42652,"Latitude":39.3628159},{"LocationName":"Caldwell, + New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New Jersey","CityName":"Caldwell, + New Jersey","Longitude":-74.27446,"Latitude":40.8379059},{"LocationName":"Fairfield, + New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New Jersey","CityName":"Fairfield, + New Jersey","Longitude":-74.28963,"Latitude":40.87998},{"LocationName":"Gibbsboro, + New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New Jersey","CityName":"Gibbsboro, + New Jersey","Longitude":-74.97043,"Latitude":39.8373146},{"LocationName":"Millville, + New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New Jersey","CityName":"Millville, + New Jersey","Longitude":-75.03775,"Latitude":39.3953667},{"LocationName":"Morristown, + New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New Jersey","CityName":"Morristown, + New Jersey","Longitude":-74.4771347,"Latitude":40.7930145},{"LocationName":"Newark, + New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New Jersey","CityName":"Newark, + New Jersey","Longitude":-74.17419,"Latitude":40.73197},{"LocationName":"Newtonville, + New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New Jersey","CityName":"Newtonville, + New Jersey","Longitude":-74.87035,"Latitude":39.5727959},{"LocationName":"Teterboro, + New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New Jersey","CityName":"Teterboro, + New Jersey","Longitude":-74.0562744,"Latitude":40.8605042},{"LocationName":"Trenton, + New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New Jersey","CityName":"Trenton, + New Jersey","Longitude":-74.7594,"Latitude":40.2179},{"LocationName":"Albuquerque, + New Mexico","CountryCode":"United States","CountrySubDivisionCode":"New Mexico","CityName":"Albuquerque, + New Mexico","Longitude":-106.649,"Latitude":35.0842},{"LocationName":"Carlsbad, + New Mexico","CountryCode":"United States","CountrySubDivisionCode":"New Mexico","CityName":"Carlsbad, + New Mexico","Longitude":-104.229019,"Latitude":32.4185944},{"LocationName":"Farmington, + New Mexico","CountryCode":"United States","CountrySubDivisionCode":"New Mexico","CityName":"Farmington, + New Mexico","Longitude":-108.205688,"Latitude":36.728138},{"LocationName":"Newkirk, + New Mexico","CountryCode":"United States","CountrySubDivisionCode":"New Mexico","CityName":"Newkirk, + New Mexico","Longitude":-104.267311,"Latitude":35.06766},{"LocationName":"Roswell, + New Mexico","CountryCode":"United States","CountrySubDivisionCode":"New Mexico","CityName":"Roswell, + New Mexico","Longitude":-104.522751,"Latitude":33.39482},{"LocationName":"Albany, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Albany, + New York","Longitude":-73.75527,"Latitude":42.6514549},{"LocationName":"Binghamton, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Binghamton, + New York","Longitude":-75.91127,"Latitude":42.0986862},{"LocationName":"Buffalo, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Buffalo, + New York","Longitude":-78.87846,"Latitude":42.88544},{"LocationName":"Dansville, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Dansville, + New York","Longitude":-77.6966,"Latitude":42.56164},{"LocationName":"East + Farmingdale, New York","CountryCode":"United States","CountrySubDivisionCode":"New + York","CityName":"East Farmingdale, New York","Longitude":-73.42611,"Latitude":40.725},{"LocationName":"Elmira, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Elmira, + New York","Longitude":-76.79881,"Latitude":42.09041},{"LocationName":"Farmingdale, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Farmingdale, + New York","Longitude":-73.4457,"Latitude":40.7319},{"LocationName":"Garden + City, New York","CountryCode":"United States","CountrySubDivisionCode":"New + York","CityName":"Garden City, New York","Longitude":-73.63691,"Latitude":40.72605},{"LocationName":"Horseheads, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Horseheads, + New York","Longitude":-76.82607,"Latitude":42.1726532},{"LocationName":"Islip, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Islip, + New York","Longitude":-73.21132,"Latitude":40.7296448},{"LocationName":"Ithaca, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Ithaca, + New York","Longitude":-76.49545,"Latitude":42.4404945},{"LocationName":"Johnson + City, New York","CountryCode":"United States","CountrySubDivisionCode":"New + York","CityName":"Johnson City, New York","Longitude":-75.9577,"Latitude":42.1159},{"LocationName":"Melville, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Melville, + New York","Longitude":-73.4163,"Latitude":40.79275},{"LocationName":"Kings, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Kings, + New York","Longitude":-73.9594955,"Latitude":40.6528778},{"LocationName":"New + York, New York","CountryCode":"United States","CountrySubDivisionCode":"New + York","CityName":"New York, New York","Longitude":-74.0071,"Latitude":40.7146},{"LocationName":"Queens, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Queens, + New York","Longitude":-73.8299,"Latitude":40.7139},{"LocationName":"Newburgh, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Newburgh, + New York","Longitude":-74.01023,"Latitude":41.4999466},{"LocationName":"Rochester, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Rochester, + New York","Longitude":-77.61604,"Latitude":43.1555061},{"LocationName":"Rome, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Rome, + New York","Longitude":-75.45336,"Latitude":43.215168},{"LocationName":"Ronkonkoma, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Ronkonkoma, + New York","Longitude":-73.09875,"Latitude":40.8112221},{"LocationName":"Saranac + Lake, New York","CountryCode":"United States","CountrySubDivisionCode":"New + York","CityName":"Saranac Lake, New York","Longitude":-74.1318,"Latitude":44.3245},{"LocationName":"Syracuse, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Syracuse, + New York","Longitude":-76.14739,"Latitude":43.04999},{"LocationName":"Valley + Stream, New York","CountryCode":"United States","CountrySubDivisionCode":"New + York","CityName":"Valley Stream, New York","Longitude":-73.70853,"Latitude":40.66404},{"LocationName":"Wappingers + Falls, New York","CountryCode":"United States","CountrySubDivisionCode":"New + York","CityName":"Wappingers Falls, New York","Longitude":-73.91326,"Latitude":41.5969849},{"LocationName":"Westbury, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Westbury, + New York","Longitude":-73.58683,"Latitude":40.7571068},{"LocationName":"White + Plains, New York","CountryCode":"United States","CountrySubDivisionCode":"New + York","CityName":"White Plains, New York","Longitude":-73.76415,"Latitude":41.03354},{"LocationName":"Asheville, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Asheville, North Carolina","Longitude":-82.55315,"Latitude":35.59846},{"LocationName":"Benson, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Benson, North Carolina","Longitude":-78.54868,"Latitude":35.3818626},{"LocationName":"Charlotte, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Charlotte, North Carolina","Longitude":-80.83754,"Latitude":35.2225},{"LocationName":"Fayetteville, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Fayetteville, North Carolina","Longitude":-78.87758,"Latitude":35.0544968},{"LocationName":"Fort + Bragg, North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Fort Bragg, North Carolina","Longitude":-78.9974,"Latitude":35.1356},{"LocationName":"Goldsboro, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Goldsboro, North Carolina","Longitude":-77.99686,"Latitude":35.3859634},{"LocationName":"Greensboro, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Greensboro, North Carolina","Longitude":-79.79471,"Latitude":36.0689926},{"LocationName":"Kinston, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Kinston, North Carolina","Longitude":-77.5818,"Latitude":35.2687},{"LocationName":"Lexington, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Lexington, North Carolina","Longitude":-80.25073,"Latitude":35.8262444},{"LocationName":"Maiden, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Maiden, North Carolina","Longitude":-81.21359,"Latitude":35.5761261},{"LocationName":"Raleigh, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Raleigh, North Carolina","Longitude":-78.64267,"Latitude":35.78551},{"LocationName":"Wilmington, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Wilmington, North Carolina","Longitude":-77.94599,"Latitude":34.23497},{"LocationName":"Bismarck, + North Dakota","CountryCode":"United States","CountrySubDivisionCode":"North + Dakota","CityName":"Bismarck, North Dakota","Longitude":-100.77932,"Latitude":46.80537},{"LocationName":"Fargo, + North Dakota","CountryCode":"United States","CountrySubDivisionCode":"North + Dakota","CityName":"Fargo, North Dakota","Longitude":-96.78177,"Latitude":46.87591},{"LocationName":"Finley, + North Dakota","CountryCode":"United States","CountrySubDivisionCode":"North + Dakota","CityName":"Finley, North Dakota","Longitude":-97.83521,"Latitude":47.51411},{"LocationName":"Grand + Forks, North Dakota","CountryCode":"United States","CountrySubDivisionCode":"North + Dakota","CityName":"Grand Forks, North Dakota","Longitude":-97.032,"Latitude":47.9241},{"LocationName":"Minot, + North Dakota","CountryCode":"United States","CountrySubDivisionCode":"North + Dakota","CityName":"Minot, North Dakota","Longitude":-101.296,"Latitude":48.2361},{"LocationName":"Minot + AFB, North Dakota","CountryCode":"United States","CountrySubDivisionCode":"North + Dakota","CityName":"Minot AFB, North Dakota","Longitude":-101.352,"Latitude":48.419},{"LocationName":"Broadview + Heights, Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Broadview + Heights, Ohio","Longitude":-81.6845856,"Latitude":41.32806},{"LocationName":"Clermontville, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Clermontville, + Ohio","Longitude":-84.41994,"Latitude":38.9496155},{"LocationName":"Cleveland, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Cleveland, + Ohio","Longitude":-81.6905746,"Latitude":41.5044937},{"LocationName":"Columbus, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Columbus, + Ohio","Longitude":-83.00301,"Latitude":39.962},{"LocationName":"Dayton, Ohio","CountryCode":"United + States","CountrySubDivisionCode":"Ohio","CityName":"Dayton, Ohio","Longitude":-84.1944,"Latitude":39.7591},{"LocationName":"Findlay, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Findlay, + Ohio","Longitude":-83.65029,"Latitude":41.0374},{"LocationName":"Green, Ohio","CountryCode":"United + States","CountrySubDivisionCode":"Ohio","CityName":"Green, Ohio","Longitude":-81.4652,"Latitude":40.9474},{"LocationName":"London, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"London, + Ohio","Longitude":-83.44813,"Latitude":39.8859634},{"LocationName":"Mansfield, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Mansfield, + Ohio","Longitude":-82.51481,"Latitude":40.7585144},{"LocationName":"New London, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"New + London, Ohio","Longitude":-82.3996,"Latitude":41.0859},{"LocationName":"North + Olmsted, Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"North + Olmsted, Ohio","Longitude":-81.9234161,"Latitude":41.4141235},{"LocationName":"Oberlin, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Oberlin, + Ohio","Longitude":-82.2173538,"Latitude":41.2929268},{"LocationName":"Swanton, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Swanton, + Ohio","Longitude":-83.8906,"Latitude":41.5883},{"LocationName":"Swanton, Ohio","CountryCode":"United + States","CountrySubDivisionCode":"Ohio","CityName":"Swanton, Ohio","Longitude":-83.8906,"Latitude":41.5883},{"LocationName":"Vandalia, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Vandalia, + Ohio","Longitude":-84.19428,"Latitude":39.89118},{"LocationName":"Vienna, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Vienna, + Ohio","Longitude":-80.6614,"Latitude":41.2506},{"LocationName":"Ardmore, Oklahoma","CountryCode":"United + States","CountrySubDivisionCode":"Oklahoma","CityName":"Ardmore, Oklahoma","Longitude":-97.1288,"Latitude":34.1727},{"LocationName":"Bethany, + Oklahoma","CountryCode":"United States","CountrySubDivisionCode":"Oklahoma","CityName":"Bethany, + Oklahoma","Longitude":-97.62985,"Latitude":35.506897},{"LocationName":"Lawton, + Oklahoma","CountryCode":"United States","CountrySubDivisionCode":"Oklahoma","CityName":"Lawton, + Oklahoma","Longitude":-98.38983,"Latitude":34.60515},{"LocationName":"McAlester, + Oklahoma","CountryCode":"United States","CountrySubDivisionCode":"Oklahoma","CityName":"McAlester, + Oklahoma","Longitude":-95.76956,"Latitude":34.9340134},{"LocationName":"Midwest + City, Oklahoma","CountryCode":"United States","CountrySubDivisionCode":"Oklahoma","CityName":"Midwest + City, Oklahoma","Longitude":-97.38468,"Latitude":35.4640541},{"LocationName":"Oklahoma + City, Oklahoma","CountryCode":"United States","CountrySubDivisionCode":"Oklahoma","CityName":"Oklahoma + City, Oklahoma","Longitude":-97.52033,"Latitude":35.4720039},{"LocationName":"Oklahoma + City, Oklahoma","CountryCode":"United States","CountrySubDivisionCode":"Oklahoma","CityName":"Oklahoma + City, Oklahoma","Longitude":-97.52033,"Latitude":35.4720039},{"LocationName":"Tulsa, + Oklahoma","CountryCode":"United States","CountrySubDivisionCode":"Oklahoma","CityName":"Tulsa, + Oklahoma","Longitude":-95.9933548,"Latitude":36.14975},{"LocationName":"Tulsa, + Oklahoma","CountryCode":"United States","CountrySubDivisionCode":"Oklahoma","CityName":"Tulsa, + Oklahoma","Longitude":-95.9933548,"Latitude":36.14975},{"LocationName":"Yukon, + Oklahoma","CountryCode":"United States","CountrySubDivisionCode":"Oklahoma","CityName":"Yukon, + Oklahoma","Longitude":-97.73727,"Latitude":35.50542},{"LocationName":"Eugene, + Oregon","CountryCode":"United States","CountrySubDivisionCode":"Oregon","CityName":"Eugene, + Oregon","Longitude":-123.088921,"Latitude":44.04991},{"LocationName":"Fossil, + Oregon","CountryCode":"United States","CountrySubDivisionCode":"Oregon","CityName":"Fossil, + Oregon","Longitude":-120.215179,"Latitude":44.9961052},{"LocationName":"Hillsboro, + Oregon","CountryCode":"United States","CountrySubDivisionCode":"Oregon","CityName":"Hillsboro, + Oregon","Longitude":-122.990318,"Latitude":45.5226746},{"LocationName":"Keno, + Oregon","CountryCode":"United States","CountrySubDivisionCode":"Oregon","CityName":"Keno, + Oregon","Longitude":-121.934654,"Latitude":42.1255},{"LocationName":"Klamath + Falls, Oregon","CountryCode":"United States","CountrySubDivisionCode":"Oregon","CityName":"Klamath + Falls, Oregon","Longitude":-121.782066,"Latitude":42.2238846},{"LocationName":"Medford, + Oregon","CountryCode":"United States","CountrySubDivisionCode":"Oregon","CityName":"Medford, + Oregon","Longitude":-122.876,"Latitude":42.3236},{"LocationName":"North Bend, + Oregon","CountryCode":"United States","CountrySubDivisionCode":"Oregon","CityName":"North + Bend, Oregon","Longitude":-124.224548,"Latitude":43.40661},{"LocationName":"Portland, + Oregon","CountryCode":"United States","CountrySubDivisionCode":"Oregon","CityName":"Portland, + Oregon","Longitude":-122.675629,"Latitude":45.511795},{"LocationName":"Portland, + Oregon","CountryCode":"United States","CountrySubDivisionCode":"Oregon","CityName":"Portland, + Oregon","Longitude":-122.675629,"Latitude":45.511795},{"LocationName":"Portland, + Oregon","CountryCode":"United States","CountrySubDivisionCode":"Oregon","CityName":"Portland, + Oregon","Longitude":-122.675629,"Latitude":45.511795},{"LocationName":"Redmond, + Oregon","CountryCode":"United States","CountrySubDivisionCode":"Oregon","CityName":"Redmond, + Oregon","Longitude":-121.1756,"Latitude":44.2726},{"LocationName":"Salem, + Oregon","CountryCode":"United States","CountrySubDivisionCode":"Oregon","CityName":"Salem, + Oregon","Longitude":-123.043854,"Latitude":44.93323},{"LocationName":"Allentown, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Allentown, + Pennsylvania","Longitude":-75.47021,"Latitude":40.60257},{"LocationName":"Altoona, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Altoona, + Pennsylvania","Longitude":-78.3989,"Latitude":40.5072},{"LocationName":"Avoca, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Avoca, + Pennsylvania","Longitude":-75.74343,"Latitude":41.3354759},{"LocationName":"Benton, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Benton, + Pennsylvania","Longitude":-76.38368,"Latitude":41.19467},{"LocationName":"Bern, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Bern, + Pennsylvania","Longitude":-75.99167,"Latitude":40.3983345},{"LocationName":"Brentwood, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Brentwood, + Pennsylvania","Longitude":-79.9755249,"Latitude":40.3733635},{"LocationName":"Camp + Hill, Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Camp + Hill, Pennsylvania","Longitude":-76.92118,"Latitude":40.2401352},{"LocationName":"Coraopolis, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Coraopolis, + Pennsylvania","Longitude":-80.16359,"Latitude":40.5172234},{"LocationName":"Du + Bois, Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Du + Bois, Pennsylvania","Longitude":-78.75975,"Latitude":41.1197739},{"LocationName":"Erie, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Erie, + Pennsylvania","Longitude":-80.08524,"Latitude":42.1294441},{"LocationName":"Essington, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Essington, + Pennsylvania","Longitude":-75.30045,"Latitude":39.86232},{"LocationName":"Fairview, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Fairview, + Pennsylvania","Longitude":-76.8511,"Latitude":40.1855},{"LocationName":"Indiana, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Indiana, + Pennsylvania","Longitude":-79.15015,"Latitude":40.6229057},{"LocationName":"Lester, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Lester, + Pennsylvania","Longitude":-75.2839,"Latitude":39.8703957},{"LocationName":"Middletown, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Middletown, + Pennsylvania","Longitude":-76.7323761,"Latitude":40.19527},{"LocationName":"Millcreek + Township, Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Millcreek + Township, Pennsylvania","Longitude":-80.0997238,"Latitude":42.15},{"LocationName":"New + Cumberland, Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"New + Cumberland, Pennsylvania","Longitude":-76.86868,"Latitude":40.2292137},{"LocationName":"Oakdale, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Oakdale, + Pennsylvania","Longitude":-80.18846,"Latitude":40.3980026},{"LocationName":"Philadelphia, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Philadelphia, + Pennsylvania","Longitude":-75.16237,"Latitude":39.95227},{"LocationName":"Pittsburgh, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Pittsburgh, + Pennsylvania","Longitude":-79.99746,"Latitude":40.43831},{"LocationName":"Reading, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Reading, + Pennsylvania","Longitude":-75.92784,"Latitude":40.336586},{"LocationName":"Scranton, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Scranton, + Pennsylvania","Longitude":-75.6608,"Latitude":41.4101334},{"LocationName":"State + College, Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"State + College, Pennsylvania","Longitude":-77.8607,"Latitude":40.79373},{"LocationName":"Tinicum, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Tinicum, + Pennsylvania","Longitude":-75.1264,"Latitude":40.5083},{"LocationName":"West + Mifflin, Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"West + Mifflin, Pennsylvania","Longitude":-79.92542,"Latitude":40.35056},{"LocationName":"Wilkes + Barre, Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Wilkes + Barre, Pennsylvania","Longitude":-75.87733,"Latitude":41.2426033},{"LocationName":"Wilkes + Barre Township, Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Wilkes + Barre Township, Pennsylvania","Longitude":-75.87733,"Latitude":41.2426033},{"LocationName":"Williamsport, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Williamsport, + Pennsylvania","Longitude":-77.00141,"Latitude":41.2409439},{"LocationName":"Kingston, + Rhode Island","CountryCode":"United States","CountrySubDivisionCode":"Rhode + Island","CityName":"Kingston, Rhode Island","Longitude":-71.52169,"Latitude":41.48},{"LocationName":"North + Kingstown, Rhode Island","CountryCode":"United States","CountrySubDivisionCode":"Rhode + Island","CityName":"North Kingstown, Rhode Island","Longitude":-71.468,"Latitude":41.554},{"LocationName":"Providence, + Rhode Island","CountryCode":"United States","CountrySubDivisionCode":"Rhode + Island","CityName":"Providence, Rhode Island","Longitude":-71.4119949,"Latitude":41.8238754},{"LocationName":"Warwick, + Rhode Island","CountryCode":"United States","CountrySubDivisionCode":"Rhode + Island","CityName":"Warwick, Rhode Island","Longitude":-71.4616547,"Latitude":41.6985626},{"LocationName":"Anderson, + South Carolina","CountryCode":"United States","CountrySubDivisionCode":"South + Carolina","CityName":"Anderson, South Carolina","Longitude":-82.6496,"Latitude":34.5004},{"LocationName":"Charleston, + South Carolina","CountryCode":"United States","CountrySubDivisionCode":"South + Carolina","CityName":"Charleston, South Carolina","Longitude":-79.9316,"Latitude":32.7811546},{"LocationName":"Columbia, + South Carolina","CountryCode":"United States","CountrySubDivisionCode":"South + Carolina","CityName":"Columbia, South Carolina","Longitude":-81.04525,"Latitude":33.99855},{"LocationName":"Columbia, + South Carolina","CountryCode":"United States","CountrySubDivisionCode":"South + Carolina","CityName":"Columbia, South Carolina","Longitude":-81.04525,"Latitude":33.99855},{"LocationName":"Florence, + South Carolina","CountryCode":"United States","CountrySubDivisionCode":"South + Carolina","CityName":"Florence, South Carolina","Longitude":-79.76906,"Latitude":34.19363},{"LocationName":"Fort + Mill, South Carolina","CountryCode":"United States","CountrySubDivisionCode":"South + Carolina","CityName":"Fort Mill, South Carolina","Longitude":-80.94317,"Latitude":35.00668},{"LocationName":"Greer, + South Carolina","CountryCode":"United States","CountrySubDivisionCode":"South + Carolina","CityName":"Greer, South Carolina","Longitude":-82.22771,"Latitude":34.9382133},{"LocationName":"Myrtle + Beach, South Carolina","CountryCode":"United States","CountrySubDivisionCode":"South + Carolina","CityName":"Myrtle Beach, South Carolina","Longitude":-78.88268,"Latitude":33.6935654},{"LocationName":"North + Charleston, South Carolina","CountryCode":"United States","CountrySubDivisionCode":"South + Carolina","CityName":"North Charleston, South Carolina","Longitude":-80.0098,"Latitude":32.8761},{"LocationName":"West + Columbia, South Carolina","CountryCode":"United States","CountrySubDivisionCode":"South + Carolina","CityName":"West Columbia, South Carolina","Longitude":-81.07328,"Latitude":33.98897},{"LocationName":"Gettysburg, + South Dakota","CountryCode":"United States","CountrySubDivisionCode":"South + Dakota","CityName":"Gettysburg, South Dakota","Longitude":-99.9564056,"Latitude":45.01356},{"LocationName":"Huron, + South Dakota","CountryCode":"United States","CountrySubDivisionCode":"South + Dakota","CityName":"Huron, South Dakota","Longitude":-98.21414,"Latitude":44.36385},{"LocationName":"Rapid + City, South Dakota","CountryCode":"United States","CountrySubDivisionCode":"South + Dakota","CityName":"Rapid City, South Dakota","Longitude":-103.230888,"Latitude":44.0811653},{"LocationName":"Sioux + Falls, South Dakota","CountryCode":"United States","CountrySubDivisionCode":"South + Dakota","CityName":"Sioux Falls, South Dakota","Longitude":-96.7313,"Latitude":43.5453},{"LocationName":"Blountville, + Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Blountville, + Tennessee","Longitude":-82.3264,"Latitude":36.533},{"LocationName":"Bristol, + Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Bristol, + Tennessee","Longitude":-82.2212753,"Latitude":36.5919342},{"LocationName":"Chattanooga, + Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Chattanooga, + Tennessee","Longitude":-85.3094254,"Latitude":35.0464325},{"LocationName":"Jackson, + Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Jackson, + Tennessee","Longitude":-88.8194,"Latitude":35.6139},{"LocationName":"Joelton, + Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Joelton, + Tennessee","Longitude":-86.8656,"Latitude":36.315},{"LocationName":"Knoxville, + Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Knoxville, + Tennessee","Longitude":-83.92091,"Latitude":35.960495},{"LocationName":"Memphis, + Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Memphis, + Tennessee","Longitude":-90.04893,"Latitude":35.14968},{"LocationName":"Nashville, + Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Nashville, + Tennessee","Longitude":-86.7783661,"Latitude":36.16778},{"LocationName":"Abilene, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Abilene, + Texas","Longitude":-99.7414246,"Latitude":32.4491768},{"LocationName":"Addison, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Addison, + Texas","Longitude":-96.8168945,"Latitude":32.95398},{"LocationName":"Amarillo, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Amarillo, + Texas","Longitude":-101.833893,"Latitude":35.2072563},{"LocationName":"Andrews, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Andrews, + Texas","Longitude":-102.546669,"Latitude":32.31898},{"LocationName":"Austin, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Austin, + Texas","Longitude":-97.743,"Latitude":30.2676},{"LocationName":"Austin, Texas","CountryCode":"United + States","CountrySubDivisionCode":"Texas","CityName":"Austin, Texas","Longitude":-97.6428,"Latitude":30.4887},{"LocationName":"Beaumont, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Beaumont, + Texas","Longitude":-94.1016,"Latitude":30.0861},{"LocationName":"Bellville, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Bellville, + Texas","Longitude":-96.2574,"Latitude":29.951025},{"LocationName":"Burleson, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Burleson, + Texas","Longitude":-97.3221359,"Latitude":32.56308},{"LocationName":"Burnet, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Burnet, + Texas","Longitude":-98.2271957,"Latitude":30.7584343},{"LocationName":"Corpus + Christi, Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Corpus + Christi, Texas","Longitude":-97.4035645,"Latitude":27.79635},{"LocationName":"Corpus + Christi, Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Corpus + Christi, Texas","Longitude":-97.4035645,"Latitude":27.79635},{"LocationName":"Dallas, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Dallas, + Texas","Longitude":-96.7954,"Latitude":32.7781563},{"LocationName":"Dallas, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Dallas, + Texas","Longitude":-96.7954,"Latitude":32.7781563},{"LocationName":"El Paso, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"El + Paso, Texas","Longitude":-106.4874,"Latitude":31.7591},{"LocationName":"Ennis, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Ennis, + Texas","Longitude":-96.6237946,"Latitude":32.3294563},{"LocationName":"Euless, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Euless, + Texas","Longitude":-97.09117,"Latitude":32.8391762},{"LocationName":"Fort + Worth, Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Fort + Worth, Texas","Longitude":-97.32925,"Latitude":32.74863},{"LocationName":"Harlingen, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Harlingen, + Texas","Longitude":-97.6955,"Latitude":26.1899},{"LocationName":"Houston, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Houston, + Texas","Longitude":-95.36978,"Latitude":29.76045},{"LocationName":"Houston, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Houston, + Texas","Longitude":-95.36978,"Latitude":29.76045},{"LocationName":"Irving, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Irving, + Texas","Longitude":-96.9555054,"Latitude":32.8135147},{"LocationName":"Keller, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Keller, + Texas","Longitude":-97.22513,"Latitude":32.9308624},{"LocationName":"Laredo, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Laredo, + Texas","Longitude":-99.50201,"Latitude":27.53092},{"LocationName":"Longview, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Longview, + Texas","Longitude":-94.7411,"Latitude":32.5006},{"LocationName":"Lubbock, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Lubbock, + Texas","Longitude":-101.855865,"Latitude":33.59233},{"LocationName":"McAllen, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"McAllen, + Texas","Longitude":-98.2294,"Latitude":26.2074},{"LocationName":"Midland, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Midland, + Texas","Longitude":-102.0756,"Latitude":32.0004},{"LocationName":"New Caney, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"New + Caney, Texas","Longitude":-95.21347,"Latitude":30.1548347},{"LocationName":"Rogers, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Rogers, + Texas","Longitude":-97.2266,"Latitude":30.9313},{"LocationName":"San Angelo, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"San + Angelo, Texas","Longitude":-100.442421,"Latitude":31.4615},{"LocationName":"San + Antonio, Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"San + Antonio, Texas","Longitude":-98.49462,"Latitude":29.42449}],"OrganizationName":"Federal + Aviation Administration","DepartmentName":"Department of Transportation","JobCategory":[{"Name":"Air + Traffic Control","Code":"2152"},{"Name":"Aviation Safety","Code":"1825"},{"Name":"Transportation + Specialist","Code":"2101"},{"Name":"Management And Program Analysis","Code":"0343"},{"Name":"Management + And Program Clerical And Assistance","Code":"0344"},{"Name":"Miscellaneous + Administration And Program","Code":"0301"},{"Name":"Aerospace Engineering","Code":"0861"},{"Name":"Program + Management","Code":"0340"},{"Name":"Computer Specialist (FAA Only)","Code":"0334"},{"Name":"General + Engineering","Code":"0801"},{"Name":"Technical Systems Program Manager","Code":"2186"},{"Name":"Engineering + Technical","Code":"0802"},{"Name":"Secretary","Code":"0318"},{"Name":"Miscellaneous + Clerk And Assistant","Code":"0303"},{"Name":"Civil Engineering","Code":"0810"},{"Name":"General + Inspection, Investigation, Enforcement, And Compliance Series","Code":"1801"}],"JobGrade":[{"Code":"FV"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Multiple + Appointment Types","Code":"15327"}],"QualificationSummary":"All positions, + dependent upon grade/band levels being filled, may require some level of related/specialized + experience or education. Please review each announcement for specific qualifications + required.","PositionRemuneration":[{"MinimumRange":"26583.0","MaximumRange":"97825.0","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2017-09-01","PositionEndDate":"2018-10-31","PublicationStartDate":"2017-09-01","ApplicationCloseDate":"2018-10-31","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"F","HighGrade":"K","PromotionPotential":"NA","HiringPath":["public","disability"],"TotalOpenings":"Many","AgencyMarketingStatement":"The + Department of Transportation (DOT) is ranked #4 in the 2017 best places to + work in the Federal Government!Thanks to the work of the Federal Aviation + Administration (FAA), over the past 50 years, aviation has become central + to the way we live and do business, linking people from coast to coast and + connecting America to the world. In fact, FAA has created the safest, most + reliable, most efficient, and most productive air transportation system in + the world.","TravelCode":"0"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"515007800","MatchedObjectDescriptor":{"PositionID":"TTN-F19-P001","PositionTitle":"Transportation + Security Officer (TSO)","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/515007800","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/515007800?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Trenton, + New Jersey","PositionLocation":[{"LocationName":"Trenton, New Jersey","CountryCode":"United + States","CountrySubDivisionCode":"New Jersey","CityName":"Trenton, New Jersey","Longitude":-74.7594,"Latitude":40.2179}],"OrganizationName":"Transportation + Security Administration","DepartmentName":"Department of Homeland Security","JobCategory":[{"Name":"Compliance + Inspection And Support","Code":"1802"}],"JobGrade":[{"Code":"SV"}],"PositionSchedule":[{"Name":"Part-Time","Code":"2"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"Applicants + must meet these qualifications in order to be further evaluated in the TSO + hiring process: Have a high school diploma, General Educational Development + (GED), High School Equivalency Test (HiSET), or Test Assessing Secondary Completion + (TASC) credential OR at least one year of full-time work experience in the + security industry, aviation screening, or as an X-ray technician Be proficient + in the English language (i.e., able to read, write, speak, and comprehend) + National Service Experience (i.e., volunteer experience): Experience refers + to paid and unpaid experience, including volunteer work done through National + Service programs (e.g., Peace Corps, AmeriCorps) and other organizations (e.g., + professional; philanthropic; religious; spiritual; community, student, social). + Volunteer work helps build critical competencies, knowledge, and skills and + can provide valuable training and experience that translates directly to paid + employment. You will receive credit for all qualifying experience, including + volunteer experience.","PositionRemuneration":[{"MinimumRange":"17.9","MaximumRange":"25.57","RateIntervalCode":"Per + Hour"}],"PositionStartDate":"2018-10-26","PositionEndDate":"2018-11-09","PublicationStartDate":"2018-10-26","ApplicationCloseDate":"2018-11-09","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"Any + offers of employment made pursuant to this announcement will be consistent + with all applicable authorities concerning, including Presidential Memoranda, + Executive Orders, interpretive U.S. Office of Management and Budget (OMB) + and U.S. Office of Personnel Management (OPM) guidance, and Office of Management + and Budget plans and policies concerning hiring. These authorities are subject + to change.","WhoMayApply":{"Name":"","Code":""},"LowGrade":"D","HighGrade":"D","PromotionPotential":"E","HiringPath":["public"],"AppointmentExplanationText":"Permanent","AgencyMarketingStatement":"","TravelCode":"1","ApplyOnlineUrl":"https://jobs-recruit.tsa.dhs.gov/tsa-tso/ros/rosDashboard.hms?O=1&J=1823","DetailStatusUrl":"https://jobs-recruit.tsa.dhs.gov/tsa-tso/ros/rosDashboard.hms?O=1&J=1823&S=1"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"507712200","MatchedObjectDescriptor":{"PositionID":"FMCS-10266155-18","PositionTitle":"Mediator + (Open Continuous)","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/507712200","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/507712200?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Multiple + Locations","PositionLocation":[{"LocationName":"Birmingham, Alabama","CountryCode":"United + States","CountrySubDivisionCode":"Alabama","CityName":"Birmingham, Alabama","Longitude":-86.8048553,"Latitude":33.52132},{"LocationName":"Phoenix, + Arizona","CountryCode":"United States","CountrySubDivisionCode":"Arizona","CityName":"Phoenix, + Arizona","Longitude":-112.069374,"Latitude":33.5128479},{"LocationName":"Anaheim, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Anaheim, + California","Longitude":-117.909248,"Latitude":33.82995},{"LocationName":"Bakersfield, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Bakersfield, + California","Longitude":-119.118912,"Latitude":35.394104},{"LocationName":"Glendale, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Glendale, + California","Longitude":-118.265152,"Latitude":34.1536369},{"LocationName":"Oakland, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Oakland, + California","Longitude":-122.273026,"Latitude":37.8050652},{"LocationName":"San + Diego, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"San + Diego, California","Longitude":-117.157288,"Latitude":32.7148361},{"LocationName":"Denver, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Denver, + Colorado","Longitude":-104.992256,"Latitude":39.74001},{"LocationName":"Hartford, + Connecticut","CountryCode":"United States","CountrySubDivisionCode":"Connecticut","CityName":"Hartford, + Connecticut","Longitude":-72.67407,"Latitude":41.7633247},{"LocationName":"District + of Columbia, District of Columbia","CountryCode":"United States","CountrySubDivisionCode":"District + of Columbia","CityName":"District of Columbia, District of Columbia","Longitude":-77.03196,"Latitude":38.89037},{"LocationName":"Miami + Lakes, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Miami + Lakes, Florida","Longitude":-80.3093262,"Latitude":25.9130211},{"LocationName":"Orlando, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Orlando, + Florida","Longitude":-81.24789,"Latitude":28.5921783},{"LocationName":"Atlanta, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Atlanta, + Georgia","Longitude":-84.38834,"Latitude":33.66042},{"LocationName":"Honolulu, + Hawaii","CountryCode":"United States","CountrySubDivisionCode":"Hawaii","CityName":"Honolulu, + Hawaii","Longitude":-157.863342,"Latitude":21.3022251},{"LocationName":"Cedar + Rapids, Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Cedar + Rapids, Iowa","Longitude":-91.66361,"Latitude":42.0299454},{"LocationName":"Des + Moines, Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Des + Moines, Iowa","Longitude":-93.62084,"Latitude":41.5863152},{"LocationName":"Chicago, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Chicago, + Illinois","Longitude":-87.63241,"Latitude":41.88415},{"LocationName":"Peoria, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Peoria, + Illinois","Longitude":-89.58776,"Latitude":40.69214},{"LocationName":"Rockford, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Rockford, + Illinois","Longitude":-89.00411,"Latitude":42.2868958},{"LocationName":"Indianapolis, + Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Indianapolis, + Indiana","Longitude":-86.14996,"Latitude":39.76691},{"LocationName":"South + Bend, Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"South + Bend, Indiana","Longitude":-86.2492,"Latitude":41.6673355},{"LocationName":"Wichita, + Kansas","CountryCode":"United States","CountrySubDivisionCode":"Kansas","CityName":"Wichita, + Kansas","Longitude":-97.33558,"Latitude":37.68698},{"LocationName":"Louisville, + Kentucky","CountryCode":"United States","CountrySubDivisionCode":"Kentucky","CityName":"Louisville, + Kentucky","Longitude":-85.74921,"Latitude":38.25365},{"LocationName":"New + Orleans, Louisiana","CountryCode":"United States","CountrySubDivisionCode":"Louisiana","CityName":"New + Orleans, Louisiana","Longitude":-90.2014,"Latitude":29.9536266},{"LocationName":"Boston, + Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"Boston, + Massachusetts","Longitude":-71.0567,"Latitude":42.3586349},{"LocationName":"Baltimore, + Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Baltimore, + Maryland","Longitude":-76.6096039,"Latitude":39.290554},{"LocationName":"Portland, + Maine","CountryCode":"United States","CountrySubDivisionCode":"Maine","CityName":"Portland, + Maine","Longitude":-70.2567,"Latitude":43.6591},{"LocationName":"Detroit, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Detroit, + Michigan","Longitude":-83.0479,"Latitude":42.3317},{"LocationName":"Grand + Rapids, Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Grand + Rapids, Michigan","Longitude":-85.67118,"Latitude":42.96641},{"LocationName":"Saginaw, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Saginaw, + Michigan","Longitude":-83.94668,"Latitude":43.419178},{"LocationName":"Duluth, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Duluth, + Minnesota","Longitude":-92.1101,"Latitude":46.76604},{"LocationName":"Minneapolis, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Minneapolis, + Minnesota","Longitude":-93.2405548,"Latitude":44.9965363},{"LocationName":"Kansas + City, Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Kansas + City, Missouri","Longitude":-94.584465,"Latitude":39.0799522},{"LocationName":"Saint + Louis, Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Saint + Louis, Missouri","Longitude":-90.19952,"Latitude":38.62774},{"LocationName":"Charlotte, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Charlotte, North Carolina","Longitude":-80.83754,"Latitude":35.2225},{"LocationName":"Omaha, + Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Omaha, + Nebraska","Longitude":-96.05259,"Latitude":41.3026848},{"LocationName":"Iselin, + New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New Jersey","CityName":"Iselin, + New Jersey","Longitude":-74.31446,"Latitude":40.57136},{"LocationName":"Trenton, + New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New Jersey","CityName":"Trenton, + New Jersey","Longitude":-74.7594,"Latitude":40.2179},{"LocationName":"Las + Vegas, Nevada","CountryCode":"United States","CountrySubDivisionCode":"Nevada","CityName":"Las + Vegas, Nevada","Longitude":-115.160027,"Latitude":36.1837273},{"LocationName":"Albany, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Albany, + New York","Longitude":-73.75527,"Latitude":42.6514549},{"LocationName":"Amherst, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Amherst, + New York","Longitude":-78.79142,"Latitude":42.97561},{"LocationName":"New + York, New York","CountryCode":"United States","CountrySubDivisionCode":"New + York","CityName":"New York, New York","Longitude":-74.0071,"Latitude":40.7146},{"LocationName":"Syracuse, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Syracuse, + New York","Longitude":-76.14739,"Latitude":43.04999},{"LocationName":"Cincinnati, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Cincinnati, + Ohio","Longitude":-84.5041,"Latitude":39.1071},{"LocationName":"Cleveland, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Cleveland, + Ohio","Longitude":-81.6905746,"Latitude":41.5044937},{"LocationName":"Columbus, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Columbus, + Ohio","Longitude":-83.00301,"Latitude":39.962},{"LocationName":"Dayton, Ohio","CountryCode":"United + States","CountrySubDivisionCode":"Ohio","CityName":"Dayton, Ohio","Longitude":-84.1944,"Latitude":39.7591},{"LocationName":"Toledo, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Toledo, + Ohio","Longitude":-83.53626,"Latitude":41.65381},{"LocationName":"Portland, + Oregon","CountryCode":"United States","CountrySubDivisionCode":"Oregon","CityName":"Portland, + Oregon","Longitude":-122.643242,"Latitude":45.54529},{"LocationName":"Erie, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Erie, + Pennsylvania","Longitude":-80.08524,"Latitude":42.1294441},{"LocationName":"Harrisburg, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Harrisburg, + Pennsylvania","Longitude":-76.882225,"Latitude":40.2598763},{"LocationName":"Philadelphia, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Philadelphia, + Pennsylvania","Longitude":-75.16237,"Latitude":39.95227},{"LocationName":"Pittsburgh, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Pittsburgh, + Pennsylvania","Longitude":-79.99746,"Latitude":40.43831},{"LocationName":"Providence, + Rhode Island","CountryCode":"United States","CountrySubDivisionCode":"Rhode + Island","CityName":"Providence, Rhode Island","Longitude":-71.4119949,"Latitude":41.8238754},{"LocationName":"Memphis, + Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Memphis, + Tennessee","Longitude":-89.84284,"Latitude":35.1276245},{"LocationName":"Smyrna, + Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Smyrna, + Tennessee","Longitude":-86.5121,"Latitude":35.9747},{"LocationName":"Dallas, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Dallas, + Texas","Longitude":-96.8046341,"Latitude":32.78109},{"LocationName":"Houston, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Houston, + Texas","Longitude":-95.36978,"Latitude":29.76045},{"LocationName":"San Antonio, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"San + Antonio, Texas","Longitude":-98.47718,"Latitude":29.5853729},{"LocationName":"Chesapeake, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Chesapeake, + Virginia","Longitude":-76.24785,"Latitude":36.7142944},{"LocationName":"Roanoke, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Roanoke, + Virginia","Longitude":-79.88848,"Latitude":37.2234},{"LocationName":"Seattle, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Seattle, + Washington","Longitude":-122.3467,"Latitude":47.6141663},{"LocationName":"Green + Bay, Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Green + Bay, Wisconsin","Longitude":-88.04971,"Latitude":44.54694},{"LocationName":"Milwaukee, + Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Milwaukee, + Wisconsin","Longitude":-87.9068451,"Latitude":43.04181},{"LocationName":"Charleston, + West Virginia","CountryCode":"United States","CountrySubDivisionCode":"West + Virginia","CityName":"Charleston, West Virginia","Longitude":-81.63893,"Latitude":38.3502159}],"OrganizationName":"Federal + Mediation and Conciliation Service","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"Mediation","Code":"0241"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Excepted + Service","Code":"15317"}],"QualificationSummary":"GS-11 MINIMUM QUALIFICATION + REQUIREMENT\nIn order to be considered minimally qualified for the FMCS Mediator, + GS-241-11 position; your resume must clearly reflect one (1) year of full-time + specialized experience utilizing the concepts and theories of collective bargaining, + alternative dispute resolution, negotiation, and/or conflict resolution. This + specialized experience MUST have been gained performing one or more of the + tasks listed below: Participating in the negotiation or mediation of labor + agreements or assisting in the resolution of workplace conflict issues; or + Being in an organizational position that involves identifying and solving + problems related to workplace relations and conflict resolution, drawing conclusions + and recommending appropriate courses of action; or Serving as a representative + of labor or management in a corporation, company or labor organization; or + Working for a Federal, state or local government entity in a capacity that + involves dealing with labor relations, collective bargaining, human resources, + workplace conflict resolution, and/or the interpretation or application of + labor laws and regulations; or Providing consultation, teaching, training, + making presentations, facilitating or leading groups on a variety of topics + including age discrimination, EEO complaints, labor relations, human resources, + alternative dispute resolution, conflict management, regulatory compliance, + or regulatory negotiations; or Adapting conflict management or ADR services + for delivery within various technology platforms, such as telephonic, video + and other online collaborative systems. -OR- Education Substitution: Undergraduate + degree in Labor Relations, Industrial Relations, Alternative Dispute Resolution, + Mediation, Conflict Management, Human Resources Development/Management, Organizational + Studies/Management/Behavior, Negotiations, Employee Relations, Organizational + Learning, Public Policy or a related field. Undergraduate degree must be from + an accredited college or university. Transcripts and references will be requested. + -OR- Combination of Education and Experience: A combination of two (2) full + years of education leading to an undergraduate degree in a field listed above + AND one (1) year of full-time practical experience, internships, or other + related specialized experience may be used to meet the qualification requirement. + GS-12 MINIMUM QUALIFICATION REQUIREMENT\nIn order to be considered minimally + qualified for the FMCS Mediator, GS-241-12 position; your resume must clearly + reflect two (2) years of full-time specialized experience utilizing the concepts + and theories of collective bargaining, alternative dispute resolution, negotiation, + and/or conflict resolution. This specialized experience MUST have been gained + performing one or more of the tasks listed below: Participating in the negotiation + or mediation of labor agreements or assisting in the resolution of workplace + conflict issues; or Being in an organizational position that involves identifying + and solving problems related to workplace relations and conflict resolution, + drawing conclusions and recommending appropriate courses of action; or Serving + as a representative of labor or management in a corporation, company or labor + organization; or Working for a Federal, state or local government entity in + a capacity that involves dealing with labor relations, collective bargaining, + human resources, workplace conflict resolution, and/or the interpretation + or application of labor laws and regulations; or Providing consultation, teaching, + training, making presentations, facilitating or leading groups on a variety + of topics including age discrimination, EEO complaints, labor relations, human + resources, alternative dispute resolution, conflict management, regulatory + compliance, or regulatory negotiations; or Adapting conflict management or + ADR services for delivery within various technology platforms, such as telephonic, + video and other online collaborative systems. -OR- Education Substitution: + Master''s or J.D. equivalent graduate degree in Labor Relations, Industrial + Relations, Alternative Dispute Resolution, Mediation, Conflict Management, + Human Resources Development/Management, Organizational Studies/Management/Behavior, + Negotiations, Employee Relations, Organizational Learning, Public Policy, + or a related field. Graduate degree must be from an accredited college or + university. Transcripts and references will be requested. -OR- Combination + of Education and Experience: A combination of two (2) full years of education + leading to a graduate degree in a field listed above AND one (1) year of full-time + practical experience, internships, or other related specialized experience + may be used to meet the qualification requirement. GS-13 MINIMUM QUALIFICATION + REQUIREMENT\nIn order to be considered minimally qualified for the FMCS Mediator, + GS-241-13 position; your resume MUST clearly reflect your full-time experience, + utilizing the concepts and theories of collective bargaining, alternative + dispute resolution, negotiation, and/or conflict resolution. This specialized + experience MUST have been gained serving in one (or more) of the roles listed + below assisting parties in the interpretation and negotiation of collective + bargaining (labor) agreements on matters such as wages, benefits, hours of + work, and working conditions or the handling of workplace conflict resolution. + Chief/Lead Spokesperson (representing labor or management); or Second Chair + (representing labor or management); or Benefits Expert (representing labor + or management); or Mediator; or Consultant; or Facilitator or Trainer In addition + to the qualifications listed above; your resume should indicate (if applicable): + years of experience, breadth of responsibilities, the complexity of bargaining + matters, knowledge of contract language, familiarity with a broad scope of + subjects, and knowledge of joint processes to improve labor-management relationships. + Part-time or unpaid experience: Credit will be given for appropriate unpaid + work on the same basis as for paid experience. Part-time experience will be + credited on the basis of time actually spent in appropriate activities. To + receive credit for such experience, you must indicate clearly the nature of + the duties and responsibilities in each position held and the number of hours + per week spent in such employment. Qualifications must be met by the Closing + Date: You must meet all qualification and eligibility requirements by 11:59 + pm EST on the closing date of this announcement.","PositionRemuneration":[{"MinimumRange":"53062.00","MaximumRange":"98317.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-08-14","PositionEndDate":"2019-08-13","PublicationStartDate":"2018-08-14","ApplicationCloseDate":"2019-08-13","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"11","HighGrade":"13","PromotionPotential":"14","HiringPath":["public"],"TotalOpenings":"Many","AgencyMarketingStatement":"The + Best Places to Work has ranked the Federal Mediation and Conciliation Service + (FMCS) #1 for Small Agencies in the Federal Government. The Best Places to + Work rankings are an important tool for ensuring that employee satisfaction + is a top priority for government managers and leaders. The FMCS promotes the + development of sound and stable labor-management relationships; prevents or + minimizes work stoppages by assisting labor and management to settle their + disputes through mediation; advocates collective bargaining, mediation and + voluntary arbitration as the preferred process for settling issues between + employers and representatives of employees; develops the art, science and + practice of conflict resolution; assists government agencies in the effective + use of alternative dispute resolution through support, training, and the provision + of neutrals; and fostering the establishment and maintenance of constructive + processes to improve labor-management relationships, employment security and + organizational effectiveness. Stationed in offices throughout the United States, + FMCS Mediators are full-time excepted service employees of the Federal government + that perform duties in five major areas: collective bargaining mediation; + grievance mediation; relationship development training; ADR services to government + entities. *****Please Sign Up for FMCS Updates (via email) for Career notifications, + to learn of application submission cut-off dates.*****","TravelCode":"7","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"508213700","MatchedObjectDescriptor":{"PositionID":"FSIS-2018-VMO-1031","PositionTitle":"Veterinary + Medical Officer (Public Health)","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/508213700","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/508213700?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Multiple + Locations","PositionLocation":[{"LocationName":"Anchorage, Alaska","CountryCode":"United + States","CountrySubDivisionCode":"Alaska","CityName":"Anchorage, Alaska","Longitude":-149.857742,"Latitude":61.21756},{"LocationName":"North + Pole, Alaska","CountryCode":"United States","CountrySubDivisionCode":"Alaska","CityName":"North + Pole, Alaska","Longitude":-147.352509,"Latitude":64.74878},{"LocationName":"Palmer, + Alaska","CountryCode":"United States","CountrySubDivisionCode":"Alaska","CityName":"Palmer, + Alaska","Longitude":-149.117371,"Latitude":61.59944},{"LocationName":"Abbeville, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Abbeville, + Alabama","Longitude":-85.25093,"Latitude":31.5716419},{"LocationName":"Albertville, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Albertville, + Alabama","Longitude":-86.2079,"Latitude":34.2695},{"LocationName":"Ashland, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Ashland, + Alabama","Longitude":-85.8354645,"Latitude":33.27431},{"LocationName":"Athens, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Athens, + Alabama","Longitude":-86.97215,"Latitude":34.80288},{"LocationName":"Baker + Hill, Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Baker + Hill, Alabama","Longitude":-85.30216,"Latitude":31.78127},{"LocationName":"Blountsville, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Blountsville, + Alabama","Longitude":-86.58949,"Latitude":34.0866165},{"LocationName":"Decatur, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Decatur, + Alabama","Longitude":-86.9798,"Latitude":34.6074},{"LocationName":"Dothan, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Dothan, + Alabama","Longitude":-85.3933,"Latitude":31.2232},{"LocationName":"Enterprise, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Enterprise, + Alabama","Longitude":-85.8547,"Latitude":31.3152},{"LocationName":"Gadsden, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Gadsden, + Alabama","Longitude":-86.0072,"Latitude":34.0148},{"LocationName":"Guntersville, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Guntersville, + Alabama","Longitude":-86.2992,"Latitude":34.3511},{"LocationName":"Jack, Alabama","CountryCode":"United + States","CountrySubDivisionCode":"Alabama","CityName":"Jack, Alabama","Longitude":-86.00083,"Latitude":31.58677},{"LocationName":"Mobile, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Mobile, + Alabama","Longitude":-88.0532,"Latitude":30.6864},{"LocationName":"Montgomery, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Montgomery, + Alabama","Longitude":-86.3006,"Latitude":32.3801},{"LocationName":"Russellville, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Russellville, + Alabama","Longitude":-87.72841,"Latitude":34.50743},{"LocationName":"Tuscaloosa, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Tuscaloosa, + Alabama","Longitude":-87.5658,"Latitude":33.2105},{"LocationName":"Union Springs, + Alabama","CountryCode":"United States","CountrySubDivisionCode":"Alabama","CityName":"Union + Springs, Alabama","Longitude":-85.71268,"Latitude":32.1461449},{"LocationName":"Batesville, + Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Batesville, + Arkansas","Longitude":-91.64998,"Latitude":35.7697754},{"LocationName":"Clarksville, + Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Clarksville, + Arkansas","Longitude":-93.46635,"Latitude":35.4717},{"LocationName":"Danville, + Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Danville, + Arkansas","Longitude":-93.3939056,"Latitude":35.0565147},{"LocationName":"Dardanelle, + Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Dardanelle, + Arkansas","Longitude":-93.15585,"Latitude":35.2237167},{"LocationName":"De + Queen, Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"De + Queen, Arkansas","Longitude":-94.33944,"Latitude":34.03677},{"LocationName":"Decatur, + Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Decatur, + Arkansas","Longitude":-94.46068,"Latitude":36.3369331},{"LocationName":"Fort + Smith, Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Fort + Smith, Arkansas","Longitude":-94.4213,"Latitude":35.3846},{"LocationName":"Grannis, + Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Grannis, + Arkansas","Longitude":-94.33438,"Latitude":34.2399559},{"LocationName":"Green + Forest, Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Green + Forest, Arkansas","Longitude":-93.43585,"Latitude":36.3354263},{"LocationName":"Hope, + Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Hope, + Arkansas","Longitude":-93.58978,"Latitude":33.66747},{"LocationName":"Huntsville, + Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Huntsville, + Arkansas","Longitude":-93.73689,"Latitude":36.08742},{"LocationName":"Nashville, + Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Nashville, + Arkansas","Longitude":-93.84702,"Latitude":33.94792},{"LocationName":"Ozark, + Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Ozark, + Arkansas","Longitude":-93.8312759,"Latitude":35.4873962},{"LocationName":"Pine + Bluff, Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Pine + Bluff, Arkansas","Longitude":-92.0034,"Latitude":34.2235336},{"LocationName":"Pocahontas, + Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Pocahontas, + Arkansas","Longitude":-90.94396,"Latitude":36.2833},{"LocationName":"Springdale, + Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Springdale, + Arkansas","Longitude":-94.13036,"Latitude":36.1850548},{"LocationName":"Waldron, + Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Waldron, + Arkansas","Longitude":-94.09109,"Latitude":34.89705},{"LocationName":"Warren, + Arkansas","CountryCode":"United States","CountrySubDivisionCode":"Arkansas","CityName":"Warren, + Arkansas","Longitude":-92.0643,"Latitude":33.6142},{"LocationName":"Tolleson, + Arizona","CountryCode":"United States","CountrySubDivisionCode":"Arizona","CityName":"Tolleson, + Arizona","Longitude":-112.264915,"Latitude":33.4502945},{"LocationName":"Tucson, + Arizona","CountryCode":"United States","CountrySubDivisionCode":"Arizona","CityName":"Tucson, + Arizona","Longitude":-110.969757,"Latitude":32.2215538},{"LocationName":"Brawley, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Brawley, + California","Longitude":-115.534607,"Latitude":32.97863},{"LocationName":"Chino, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Chino, + California","Longitude":-117.689331,"Latitude":34.01281},{"LocationName":"Creston, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Creston, + California","Longitude":-120.523758,"Latitude":35.51975},{"LocationName":"Dixon, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Dixon, + California","Longitude":-121.816109,"Latitude":38.4455},{"LocationName":"Eureka, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Eureka, + California","Longitude":-124.16,"Latitude":40.8033},{"LocationName":"Fresno, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Fresno, + California","Longitude":-119.785683,"Latitude":36.7406158},{"LocationName":"Hanford, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Hanford, + California","Longitude":-119.645805,"Latitude":36.3271751},{"LocationName":"Livingston, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Livingston, + California","Longitude":-120.7234,"Latitude":37.38073},{"LocationName":"Los + Angeles, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Los + Angeles, California","Longitude":-118.245,"Latitude":34.0535},{"LocationName":"Los + Banos, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Los + Banos, California","Longitude":-120.847565,"Latitude":37.0613937},{"LocationName":"Madera, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Madera, + California","Longitude":-120.063995,"Latitude":36.9620552},{"LocationName":"Merced, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Merced, + California","Longitude":-120.4862,"Latitude":37.30127},{"LocationName":"Modesto, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Modesto, + California","Longitude":-120.9996,"Latitude":37.6383},{"LocationName":"Newman, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Newman, + California","Longitude":-121.021828,"Latitude":37.3168449},{"LocationName":"Orland, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Orland, + California","Longitude":-122.194771,"Latitude":39.7473946},{"LocationName":"Petaluma, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Petaluma, + California","Longitude":-122.644455,"Latitude":38.2324677},{"LocationName":"Pico + Rivera, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Pico + Rivera, California","Longitude":-118.088036,"Latitude":33.9823456},{"LocationName":"Sacramento, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Sacramento, + California","Longitude":-121.491,"Latitude":38.57906},{"LocationName":"Sanger, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Sanger, + California","Longitude":-119.556351,"Latitude":36.7084846},{"LocationName":"Selma, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Selma, + California","Longitude":-119.610786,"Latitude":36.5675354},{"LocationName":"Sonora, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Sonora, + California","Longitude":-120.3822,"Latitude":37.9833},{"LocationName":"Stockton, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Stockton, + California","Longitude":-121.291,"Latitude":37.9536},{"LocationName":"Turlock, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Turlock, + California","Longitude":-120.84642,"Latitude":37.4950142},{"LocationName":"Vernon, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Vernon, + California","Longitude":-118.230247,"Latitude":34.0049934},{"LocationName":"Alamosa, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Alamosa, + Colorado","Longitude":-105.8736,"Latitude":37.46818},{"LocationName":"Boulder, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Boulder, + Colorado","Longitude":-105.279243,"Latitude":40.01574},{"LocationName":"Colorado + Springs, Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Colorado + Springs, Colorado","Longitude":-104.821732,"Latitude":38.83311},{"LocationName":"Craig, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Craig, + Colorado","Longitude":-107.547867,"Latitude":40.5142365},{"LocationName":"Delta, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Delta, + Colorado","Longitude":-108.070869,"Latitude":38.74479},{"LocationName":"Denver, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Denver, + Colorado","Longitude":-104.992256,"Latitude":39.74001},{"LocationName":"Durango, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Durango, + Colorado","Longitude":-107.8793,"Latitude":37.273674},{"LocationName":"Erie, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Erie, + Colorado","Longitude":-105.053322,"Latitude":40.0515137},{"LocationName":"Fort + Collins, Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Fort + Collins, Colorado","Longitude":-105.076263,"Latitude":40.5815048},{"LocationName":"Fort + Morgan, Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Fort + Morgan, Colorado","Longitude":-103.801483,"Latitude":40.25467},{"LocationName":"Grand + Junction, Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Grand + Junction, Colorado","Longitude":-108.564453,"Latitude":39.06879},{"LocationName":"Greeley, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Greeley, + Colorado","Longitude":-104.694466,"Latitude":40.42328},{"LocationName":"Lakewood, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Lakewood, + Colorado","Longitude":-105.082741,"Latitude":39.71095},{"LocationName":"Pierce, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Pierce, + Colorado","Longitude":-104.754,"Latitude":40.6349144},{"LocationName":"Sterling, + Colorado","CountryCode":"United States","CountrySubDivisionCode":"Colorado","CityName":"Sterling, + Colorado","Longitude":-103.206139,"Latitude":40.625946},{"LocationName":"Stafford + Springs, Connecticut","CountryCode":"United States","CountrySubDivisionCode":"Connecticut","CityName":"Stafford + Springs, Connecticut","Longitude":-72.31683,"Latitude":41.9532433},{"LocationName":"Waterbury, + Connecticut","CountryCode":"United States","CountrySubDivisionCode":"Connecticut","CityName":"Waterbury, + Connecticut","Longitude":-73.04615,"Latitude":41.5540733},{"LocationName":"Georgetown, + Delaware","CountryCode":"United States","CountrySubDivisionCode":"Delaware","CityName":"Georgetown, + Delaware","Longitude":-75.3867,"Latitude":38.6907},{"LocationName":"Harbeson, + Delaware","CountryCode":"United States","CountrySubDivisionCode":"Delaware","CityName":"Harbeson, + Delaware","Longitude":-75.2777,"Latitude":38.70546},{"LocationName":"Milford, + Delaware","CountryCode":"United States","CountrySubDivisionCode":"Delaware","CityName":"Milford, + Delaware","Longitude":-75.42854,"Latitude":38.9107056},{"LocationName":"Millsboro, + Delaware","CountryCode":"United States","CountrySubDivisionCode":"Delaware","CityName":"Millsboro, + Delaware","Longitude":-75.2942657,"Latitude":38.5870667},{"LocationName":"Selbyville, + Delaware","CountryCode":"United States","CountrySubDivisionCode":"Delaware","CityName":"Selbyville, + Delaware","Longitude":-75.23358,"Latitude":38.45691},{"LocationName":"Center + Hill, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Center + Hill, Florida","Longitude":-82.00725,"Latitude":28.649931},{"LocationName":"Century, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Century, + Florida","Longitude":-87.2657852,"Latitude":30.9727058},{"LocationName":"Clermont, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Clermont, + Florida","Longitude":-81.7663,"Latitude":28.5513},{"LocationName":"Gainesville, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Gainesville, + Florida","Longitude":-82.32319,"Latitude":29.65195},{"LocationName":"Live + Oak, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Live + Oak, Florida","Longitude":-82.9844742,"Latitude":30.2960148},{"LocationName":"Miami, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Miami, + Florida","Longitude":-80.23742,"Latitude":25.7289848},{"LocationName":"Moore + Haven, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Moore + Haven, Florida","Longitude":-81.09773,"Latitude":26.8336449},{"LocationName":"Orlando, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Orlando, + Florida","Longitude":-81.37739,"Latitude":28.5382347},{"LocationName":"Tallahassee, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Tallahassee, + Florida","Longitude":-84.28065,"Latitude":30.4397755},{"LocationName":"Tampa, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Tampa, + Florida","Longitude":-82.45927,"Latitude":27.94653},{"LocationName":"Wimauma, + Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Wimauma, + Florida","Longitude":-82.29624,"Latitude":27.7137241},{"LocationName":"Zolfo + Springs, Florida","CountryCode":"United States","CountrySubDivisionCode":"Florida","CityName":"Zolfo + Springs, Florida","Longitude":-81.79576,"Latitude":27.49346},{"LocationName":"Athens, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Athens, + Georgia","Longitude":-83.37325,"Latitude":33.9581337},{"LocationName":"Atlanta, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Atlanta, + Georgia","Longitude":-84.39111,"Latitude":33.7483139},{"LocationName":"Augusta, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Augusta, + Georgia","Longitude":-81.97531,"Latitude":33.47909},{"LocationName":"Bethlehem, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Bethlehem, + Georgia","Longitude":-83.71381,"Latitude":33.9320755},{"LocationName":"Camilla, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Camilla, + Georgia","Longitude":-84.20465,"Latitude":31.2311344},{"LocationName":"Canton, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Canton, + Georgia","Longitude":-84.4873,"Latitude":34.2363},{"LocationName":"Carrollton, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Carrollton, + Georgia","Longitude":-85.0784,"Latitude":33.5809},{"LocationName":"Claxton, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Claxton, + Georgia","Longitude":-81.90452,"Latitude":32.16129},{"LocationName":"Cornelia, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Cornelia, + Georgia","Longitude":-83.527565,"Latitude":34.51211},{"LocationName":"Cumming, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Cumming, + Georgia","Longitude":-84.1399,"Latitude":34.2036},{"LocationName":"Douglas, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Douglas, + Georgia","Longitude":-82.84957,"Latitude":31.5056744},{"LocationName":"Ellijay, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Ellijay, + Georgia","Longitude":-84.48291,"Latitude":34.6945076},{"LocationName":"Gainesville, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Gainesville, + Georgia","Longitude":-83.8255,"Latitude":34.2972755},{"LocationName":"Louisville, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Louisville, + Georgia","Longitude":-82.40527,"Latitude":33.0062561},{"LocationName":"Marietta, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Marietta, + Georgia","Longitude":-84.54588,"Latitude":33.9531937},{"LocationName":"Moultrie, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Moultrie, + Georgia","Longitude":-83.7887955,"Latitude":31.1804543},{"LocationName":"Murrayville, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Murrayville, + Georgia","Longitude":-83.90516,"Latitude":34.41749},{"LocationName":"Pendergrass, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Pendergrass, + Georgia","Longitude":-83.67875,"Latitude":34.16326},{"LocationName":"Perry, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Perry, + Georgia","Longitude":-83.73476,"Latitude":32.46087},{"LocationName":"Pine + Mountain Valley, Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Pine + Mountain Valley, Georgia","Longitude":-84.82543,"Latitude":32.7967758},{"LocationName":"Vienna, + Georgia","CountryCode":"United States","CountrySubDivisionCode":"Georgia","CityName":"Vienna, + Georgia","Longitude":-83.7952,"Latitude":32.0912971},{"LocationName":"Maite, + Guam","CountryCode":"United States","CountrySubDivisionCode":"Guam","CityName":"Maite, + Guam","Longitude":144.764,"Latitude":13.4747},{"LocationName":"Tamuning, Guam","CountryCode":"United + States","CountrySubDivisionCode":"Guam","CityName":"Tamuning, Guam","Longitude":144.7767,"Latitude":13.4839},{"LocationName":"Hilo, + Hawaii","CountryCode":"United States","CountrySubDivisionCode":"Hawaii","CityName":"Hilo, + Hawaii","Longitude":-155.081863,"Latitude":19.7192345},{"LocationName":"Honolulu, + Hawaii","CountryCode":"United States","CountrySubDivisionCode":"Hawaii","CityName":"Honolulu, + Hawaii","Longitude":-157.858,"Latitude":21.3047},{"LocationName":"Kalaheo, + Hawaii","CountryCode":"United States","CountrySubDivisionCode":"Hawaii","CityName":"Kalaheo, + Hawaii","Longitude":-159.531052,"Latitude":21.9255867},{"LocationName":"Ames, + Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Ames, + Iowa","Longitude":-93.6202,"Latitude":42.0253448},{"LocationName":"Charles + City, Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Charles + City, Iowa","Longitude":-92.674324,"Latitude":43.065773},{"LocationName":"Columbus + City, Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Columbus + City, Iowa","Longitude":-91.37443,"Latitude":41.2587357},{"LocationName":"Denison, + Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Denison, + Iowa","Longitude":-95.35453,"Latitude":42.0123444},{"LocationName":"Des Moines, + Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Des + Moines, Iowa","Longitude":-93.61568,"Latitude":41.5897865},{"LocationName":"Eagle + Grove, Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Eagle + Grove, Iowa","Longitude":-93.9044952,"Latitude":42.6646233},{"LocationName":"Estherville, + Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Estherville, + Iowa","Longitude":-94.83859,"Latitude":43.4019356},{"LocationName":"Hospers, + Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Hospers, + Iowa","Longitude":-95.9063,"Latitude":43.0725937},{"LocationName":"Iowa City, + Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Iowa + City, Iowa","Longitude":-91.526535,"Latitude":41.6578255},{"LocationName":"Jewell, + Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Jewell, + Iowa","Longitude":-93.64005,"Latitude":42.30746},{"LocationName":"Marshalltown, + Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Marshalltown, + Iowa","Longitude":-92.90803,"Latitude":42.04978},{"LocationName":"Ottumwa, + Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Ottumwa, + Iowa","Longitude":-92.4157,"Latitude":41.0201},{"LocationName":"Perry, Iowa","CountryCode":"United + States","CountrySubDivisionCode":"Iowa","CityName":"Perry, Iowa","Longitude":-94.10552,"Latitude":41.83855},{"LocationName":"Postville, + Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Postville, + Iowa","Longitude":-91.56935,"Latitude":43.0845871},{"LocationName":"Sigourney, + Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Sigourney, + Iowa","Longitude":-92.20517,"Latitude":41.3366852},{"LocationName":"Sioux + Center, Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Sioux + Center, Iowa","Longitude":-96.1754761,"Latitude":43.076786},{"LocationName":"Sioux + City, Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Sioux + City, Iowa","Longitude":-96.4209442,"Latitude":42.49981},{"LocationName":"Storm + Lake, Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Storm + Lake, Iowa","Longitude":-95.20139,"Latitude":42.6474762},{"LocationName":"Tama, + Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Tama, + Iowa","Longitude":-92.57683,"Latitude":41.9620667},{"LocationName":"Waterloo, + Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"Waterloo, + Iowa","Longitude":-92.3423157,"Latitude":42.4929543},{"LocationName":"West + Liberty, Iowa","CountryCode":"United States","CountrySubDivisionCode":"Iowa","CityName":"West + Liberty, Iowa","Longitude":-91.2608,"Latitude":41.5705},{"LocationName":"Boise, + Idaho","CountryCode":"United States","CountrySubDivisionCode":"Idaho","CityName":"Boise, + Idaho","Longitude":-116.193413,"Latitude":43.60698},{"LocationName":"Idaho + Falls, Idaho","CountryCode":"United States","CountrySubDivisionCode":"Idaho","CityName":"Idaho + Falls, Idaho","Longitude":-112.041992,"Latitude":43.492},{"LocationName":"Kuna, + Idaho","CountryCode":"United States","CountrySubDivisionCode":"Idaho","CityName":"Kuna, + Idaho","Longitude":-116.422661,"Latitude":43.48843},{"LocationName":"Nampa, + Idaho","CountryCode":"United States","CountrySubDivisionCode":"Idaho","CityName":"Nampa, + Idaho","Longitude":-116.569908,"Latitude":43.58283},{"LocationName":"Rigby, + Idaho","CountryCode":"United States","CountrySubDivisionCode":"Idaho","CityName":"Rigby, + Idaho","Longitude":-111.914375,"Latitude":43.67221},{"LocationName":"Twin + Falls, Idaho","CountryCode":"United States","CountrySubDivisionCode":"Idaho","CityName":"Twin + Falls, Idaho","Longitude":-114.469612,"Latitude":42.5562},{"LocationName":"Wendell, + Idaho","CountryCode":"United States","CountrySubDivisionCode":"Idaho","CityName":"Wendell, + Idaho","Longitude":-114.704773,"Latitude":42.77543},{"LocationName":"Beardstown, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Beardstown, + Illinois","Longitude":-90.43295,"Latitude":40.01549},{"LocationName":"Bolingbrook, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Bolingbrook, + Illinois","Longitude":-88.0812,"Latitude":41.6982},{"LocationName":"Chicago, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Chicago, + Illinois","Longitude":-87.63241,"Latitude":41.88415},{"LocationName":"De Kalb, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"De + Kalb, Illinois","Longitude":-88.74058,"Latitude":41.9325333},{"LocationName":"Elk + Grove Village, Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Elk + Grove Village, Illinois","Longitude":-88.00904,"Latitude":42.0028076},{"LocationName":"Hillsdale, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Hillsdale, + Illinois","Longitude":-90.1710358,"Latitude":41.6037827},{"LocationName":"Lombard, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Lombard, + Illinois","Longitude":-88.01168,"Latitude":41.8675461},{"LocationName":"Marengo, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Marengo, + Illinois","Longitude":-88.6075745,"Latitude":42.2499657},{"LocationName":"Millstadt, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Millstadt, + Illinois","Longitude":-90.0932159,"Latitude":38.458992},{"LocationName":"Momence, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Momence, + Illinois","Longitude":-87.66275,"Latitude":41.16357},{"LocationName":"Monmouth, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Monmouth, + Illinois","Longitude":-90.65017,"Latitude":40.9120865},{"LocationName":"Mount + Morris, Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Mount + Morris, Illinois","Longitude":-89.42351,"Latitude":42.0467758},{"LocationName":"North + Aurora, Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"North + Aurora, Illinois","Longitude":-88.32222,"Latitude":41.8077965},{"LocationName":"Peoria, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Peoria, + Illinois","Longitude":-89.58776,"Latitude":40.69214},{"LocationName":"Rantoul, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Rantoul, + Illinois","Longitude":-88.146225,"Latitude":40.3085},{"LocationName":"South + Holland, Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"South + Holland, Illinois","Longitude":-87.61001,"Latitude":41.5999146},{"LocationName":"Colfax, + Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Colfax, + Indiana","Longitude":-86.6642761,"Latitude":40.190136},{"LocationName":"Corydon, + Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Corydon, + Indiana","Longitude":-86.1186752,"Latitude":38.210434},{"LocationName":"Delphi, + Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Delphi, + Indiana","Longitude":-86.67216,"Latitude":40.58683},{"LocationName":"Elkhart, + Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Elkhart, + Indiana","Longitude":-85.97568,"Latitude":41.6867638},{"LocationName":"Hobart, + Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Hobart, + Indiana","Longitude":-87.25405,"Latitude":41.5307045},{"LocationName":"Huntingburg, + Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Huntingburg, + Indiana","Longitude":-86.9554443,"Latitude":38.2982559},{"LocationName":"La + Porte, Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"La + Porte, Indiana","Longitude":-86.72139,"Latitude":41.6095428},{"LocationName":"Lagrange, + Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Lagrange, + Indiana","Longitude":-85.41796,"Latitude":41.6444168},{"LocationName":"Logansport, + Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Logansport, + Indiana","Longitude":-86.3602142,"Latitude":40.7537537},{"LocationName":"Memphis, + Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Memphis, + Indiana","Longitude":-85.7627258,"Latitude":38.4854546},{"LocationName":"Mentone, + Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Mentone, + Indiana","Longitude":-86.03842,"Latitude":41.17332},{"LocationName":"Milford, + Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Milford, + Indiana","Longitude":-85.8457,"Latitude":41.4098},{"LocationName":"North Vernon, + Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"North + Vernon, Indiana","Longitude":-85.62403,"Latitude":39.0056953},{"LocationName":"Orland, + Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Orland, + Indiana","Longitude":-85.16968,"Latitude":41.73098},{"LocationName":"Vincennes, + Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Vincennes, + Indiana","Longitude":-87.53225,"Latitude":38.6781044},{"LocationName":"Washington, + Indiana","CountryCode":"United States","CountrySubDivisionCode":"Indiana","CityName":"Washington, + Indiana","Longitude":-87.17018,"Latitude":38.6573639},{"LocationName":"Arkansas + City, Kansas","CountryCode":"United States","CountrySubDivisionCode":"Kansas","CityName":"Arkansas + City, Kansas","Longitude":-97.03898,"Latitude":37.0558662},{"LocationName":"De + Soto, Kansas","CountryCode":"United States","CountrySubDivisionCode":"Kansas","CityName":"De + Soto, Kansas","Longitude":-94.96512,"Latitude":38.9774666},{"LocationName":"Dodge + City, Kansas","CountryCode":"United States","CountrySubDivisionCode":"Kansas","CityName":"Dodge + City, Kansas","Longitude":-100.0187,"Latitude":37.7526},{"LocationName":"Downs, + Kansas","CountryCode":"United States","CountrySubDivisionCode":"Kansas","CityName":"Downs, + Kansas","Longitude":-98.544426,"Latitude":39.50325},{"LocationName":"Holcomb, + Kansas","CountryCode":"United States","CountrySubDivisionCode":"Kansas","CityName":"Holcomb, + Kansas","Longitude":-100.987358,"Latitude":37.9891},{"LocationName":"Holton, + Kansas","CountryCode":"United States","CountrySubDivisionCode":"Kansas","CityName":"Holton, + Kansas","Longitude":-95.738,"Latitude":39.4634},{"LocationName":"Kingman, + Kansas","CountryCode":"United States","CountrySubDivisionCode":"Kansas","CityName":"Kingman, + Kansas","Longitude":-98.1132,"Latitude":37.6469536},{"LocationName":"Liberal, + Kansas","CountryCode":"United States","CountrySubDivisionCode":"Kansas","CityName":"Liberal, + Kansas","Longitude":-100.9252,"Latitude":37.0324},{"LocationName":"Wellington, + Kansas","CountryCode":"United States","CountrySubDivisionCode":"Kansas","CityName":"Wellington, + Kansas","Longitude":-97.40198,"Latitude":37.26821},{"LocationName":"Albany, + Kentucky","CountryCode":"United States","CountrySubDivisionCode":"Kentucky","CityName":"Albany, + Kentucky","Longitude":-85.1358643,"Latitude":36.6906},{"LocationName":"Alvaton, + Kentucky","CountryCode":"United States","CountrySubDivisionCode":"Kentucky","CityName":"Alvaton, + Kentucky","Longitude":-86.35193,"Latitude":36.8717},{"LocationName":"Benton, + Kentucky","CountryCode":"United States","CountrySubDivisionCode":"Kentucky","CityName":"Benton, + Kentucky","Longitude":-88.35075,"Latitude":36.85753},{"LocationName":"Bowling + Green, Kentucky","CountryCode":"United States","CountrySubDivisionCode":"Kentucky","CityName":"Bowling + Green, Kentucky","Longitude":-86.44559,"Latitude":36.9946251},{"LocationName":"Cromwell, + Kentucky","CountryCode":"United States","CountrySubDivisionCode":"Kentucky","CityName":"Cromwell, + Kentucky","Longitude":-86.78661,"Latitude":37.3395958},{"LocationName":"Hazel + Green, Kentucky","CountryCode":"United States","CountrySubDivisionCode":"Kentucky","CityName":"Hazel + Green, Kentucky","Longitude":-83.41615,"Latitude":37.79786},{"LocationName":"Hickory, + Kentucky","CountryCode":"United States","CountrySubDivisionCode":"Kentucky","CityName":"Hickory, + Kentucky","Longitude":-88.6502457,"Latitude":36.8182144},{"LocationName":"Lancaster, + Kentucky","CountryCode":"United States","CountrySubDivisionCode":"Kentucky","CityName":"Lancaster, + Kentucky","Longitude":-84.57874,"Latitude":37.6190453},{"LocationName":"Lexington, + Kentucky","CountryCode":"United States","CountrySubDivisionCode":"Kentucky","CityName":"Lexington, + Kentucky","Longitude":-84.50032,"Latitude":38.0485954},{"LocationName":"Louisville, + Kentucky","CountryCode":"United States","CountrySubDivisionCode":"Kentucky","CityName":"Louisville, + Kentucky","Longitude":-85.7664,"Latitude":38.25486},{"LocationName":"Monticello, + Kentucky","CountryCode":"United States","CountrySubDivisionCode":"Kentucky","CityName":"Monticello, + Kentucky","Longitude":-84.84956,"Latitude":36.82895},{"LocationName":"Robards, + Kentucky","CountryCode":"United States","CountrySubDivisionCode":"Kentucky","CityName":"Robards, + Kentucky","Longitude":-87.5461349,"Latitude":37.6744},{"LocationName":"Simpsonville, + Kentucky","CountryCode":"United States","CountrySubDivisionCode":"Kentucky","CityName":"Simpsonville, + Kentucky","Longitude":-85.35441,"Latitude":38.2223434},{"LocationName":"Taylorsville, + Kentucky","CountryCode":"United States","CountrySubDivisionCode":"Kentucky","CityName":"Taylorsville, + Kentucky","Longitude":-85.34124,"Latitude":38.03295},{"LocationName":"Arcadia, + Louisiana","CountryCode":"United States","CountrySubDivisionCode":"Louisiana","CityName":"Arcadia, + Louisiana","Longitude":-92.9212646,"Latitude":32.54943},{"LocationName":"Farmerville, + Louisiana","CountryCode":"United States","CountrySubDivisionCode":"Louisiana","CityName":"Farmerville, + Louisiana","Longitude":-92.40546,"Latitude":32.7796364},{"LocationName":"Hammond, + Louisiana","CountryCode":"United States","CountrySubDivisionCode":"Louisiana","CityName":"Hammond, + Louisiana","Longitude":-90.4584,"Latitude":30.50417},{"LocationName":"Natchitoches, + Louisiana","CountryCode":"United States","CountrySubDivisionCode":"Louisiana","CityName":"Natchitoches, + Louisiana","Longitude":-93.08698,"Latitude":31.7609558},{"LocationName":"West + Groton, Massachusetts","CountryCode":"United States","CountrySubDivisionCode":"Massachusetts","CityName":"West + Groton, Massachusetts","Longitude":-71.62729,"Latitude":42.60426},{"LocationName":"Catonsville, + Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Catonsville, + Maryland","Longitude":-76.73983,"Latitude":39.2702141},{"LocationName":"Hagerstown, + Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Hagerstown, + Maryland","Longitude":-77.7176,"Latitude":39.6425},{"LocationName":"Hurlock, + Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Hurlock, + Maryland","Longitude":-75.86157,"Latitude":38.6305542},{"LocationName":"Mount + Airy, Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Mount + Airy, Maryland","Longitude":-77.15992,"Latitude":39.375885},{"LocationName":"Mountain + Lake Park, Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Mountain + Lake Park, Maryland","Longitude":-79.3816147,"Latitude":39.3983841},{"LocationName":"Salisbury, + Maryland","CountryCode":"United States","CountrySubDivisionCode":"Maryland","CityName":"Salisbury, + Maryland","Longitude":-75.59532,"Latitude":38.3657341},{"LocationName":"Guilford, + Maine","CountryCode":"United States","CountrySubDivisionCode":"Maine","CityName":"Guilford, + Maine","Longitude":-69.3858261,"Latitude":45.16811},{"LocationName":"Windham, + Maine","CountryCode":"United States","CountrySubDivisionCode":"Maine","CityName":"Windham, + Maine","Longitude":-70.4092941,"Latitude":43.7921448},{"LocationName":"Buckley, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Buckley, + Michigan","Longitude":-85.67901,"Latitude":44.50438},{"LocationName":"Caledonia, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Caledonia, + Michigan","Longitude":-85.51179,"Latitude":42.7869072},{"LocationName":"Coopersville, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Coopersville, + Michigan","Longitude":-85.92715,"Latitude":43.074},{"LocationName":"Detroit, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Detroit, + Michigan","Longitude":-83.0479,"Latitude":42.3317},{"LocationName":"East Lansing, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"East + Lansing, Michigan","Longitude":-84.48384,"Latitude":42.7374954},{"LocationName":"Escanaba, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Escanaba, + Michigan","Longitude":-87.07976,"Latitude":45.7452164},{"LocationName":"Flint, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Flint, + Michigan","Longitude":-83.68602,"Latitude":43.010746},{"LocationName":"Grand + Rapids, Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Grand + Rapids, Michigan","Longitude":-85.67118,"Latitude":42.96641},{"LocationName":"Hillsdale, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Hillsdale, + Michigan","Longitude":-84.63184,"Latitude":41.9229164},{"LocationName":"Holland, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Holland, + Michigan","Longitude":-86.10175,"Latitude":42.77309},{"LocationName":"Hudsonville, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Hudsonville, + Michigan","Longitude":-85.86367,"Latitude":42.8659172},{"LocationName":"Kalamazoo, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Kalamazoo, + Michigan","Longitude":-85.60111,"Latitude":42.2924347},{"LocationName":"Middleville, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Middleville, + Michigan","Longitude":-85.47003,"Latitude":42.71056},{"LocationName":"Plainwell, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Plainwell, + Michigan","Longitude":-85.63988,"Latitude":42.4427948},{"LocationName":"Saranac, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Saranac, + Michigan","Longitude":-85.21192,"Latitude":42.93122},{"LocationName":"Union + City, Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Union + City, Michigan","Longitude":-85.1338959,"Latitude":42.0654449},{"LocationName":"Wyoming, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Wyoming, + Michigan","Longitude":-85.6933,"Latitude":42.9134},{"LocationName":"Yale, + Michigan","CountryCode":"United States","CountrySubDivisionCode":"Michigan","CityName":"Yale, + Michigan","Longitude":-82.79835,"Latitude":43.1308365},{"LocationName":"Austin, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Austin, + Minnesota","Longitude":-92.9723358,"Latitude":43.66659},{"LocationName":"Buffalo + Lake, Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Buffalo + Lake, Minnesota","Longitude":-94.61786,"Latitude":44.7332954},{"LocationName":"Butterfield, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Butterfield, + Minnesota","Longitude":-94.79647,"Latitude":43.9587135},{"LocationName":"Cannon + Falls, Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Cannon + Falls, Minnesota","Longitude":-92.90574,"Latitude":44.50763},{"LocationName":"Cold + Spring, Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Cold + Spring, Minnesota","Longitude":-94.429,"Latitude":45.4553},{"LocationName":"Dawson, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Dawson, + Minnesota","Longitude":-96.05467,"Latitude":44.9293861},{"LocationName":"Faribault, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Faribault, + Minnesota","Longitude":-93.27538,"Latitude":44.2946968},{"LocationName":"Frazee, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Frazee, + Minnesota","Longitude":-95.7000961,"Latitude":46.7284279},{"LocationName":"Glencoe, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Glencoe, + Minnesota","Longitude":-94.15379,"Latitude":44.77204},{"LocationName":"Lakeville, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Lakeville, + Minnesota","Longitude":-93.24274,"Latitude":44.6570168},{"LocationName":"Lindstrom, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Lindstrom, + Minnesota","Longitude":-92.84577,"Latitude":45.38981},{"LocationName":"Long + Prairie, Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Long + Prairie, Minnesota","Longitude":-94.8668,"Latitude":45.972},{"LocationName":"Marshall, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Marshall, + Minnesota","Longitude":-95.79167,"Latitude":44.4490128},{"LocationName":"Melrose, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Melrose, + Minnesota","Longitude":-94.81103,"Latitude":45.67488},{"LocationName":"Minneapolis, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Minneapolis, + Minnesota","Longitude":-93.26493,"Latitude":44.9790344},{"LocationName":"Northfield, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Northfield, + Minnesota","Longitude":-93.15376,"Latitude":44.4496},{"LocationName":"Pelican + Rapids, Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Pelican + Rapids, Minnesota","Longitude":-96.08355,"Latitude":46.57035},{"LocationName":"Rochester, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Rochester, + Minnesota","Longitude":-92.45977,"Latitude":44.01925},{"LocationName":"Roseville, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Roseville, + Minnesota","Longitude":-93.1483841,"Latitude":45.02146},{"LocationName":"Saint + Cloud, Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Saint + Cloud, Minnesota","Longitude":-94.1830139,"Latitude":45.5670662},{"LocationName":"South + Saint Paul, Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"South + Saint Paul, Minnesota","Longitude":-93.0417,"Latitude":44.8877335},{"LocationName":"Sturgeon + Lake, Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Sturgeon + Lake, Minnesota","Longitude":-92.822876,"Latitude":46.38134},{"LocationName":"Thief + River Falls, Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Thief + River Falls, Minnesota","Longitude":-96.1808,"Latitude":48.1191},{"LocationName":"Willmar, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Willmar, + Minnesota","Longitude":-95.0545,"Latitude":45.1206436},{"LocationName":"Windom, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Windom, + Minnesota","Longitude":-95.11492,"Latitude":43.8648262},{"LocationName":"Worthington, + Minnesota","CountryCode":"United States","CountrySubDivisionCode":"Minnesota","CityName":"Worthington, + Minnesota","Longitude":-95.61647,"Latitude":43.63103},{"LocationName":"Alma, + Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Alma, + Missouri","Longitude":-93.54973,"Latitude":39.10555},{"LocationName":"California, + Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"California, + Missouri","Longitude":-92.5663,"Latitude":38.63579},{"LocationName":"Carthage, + Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Carthage, + Missouri","Longitude":-94.314,"Latitude":37.17675},{"LocationName":"Cassville, + Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Cassville, + Missouri","Longitude":-93.86692,"Latitude":36.6812172},{"LocationName":"Chillicothe, + Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Chillicothe, + Missouri","Longitude":-93.55362,"Latitude":39.79022},{"LocationName":"Columbia, + Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Columbia, + Missouri","Longitude":-92.33416,"Latitude":38.9521751},{"LocationName":"Dexter, + Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Dexter, + Missouri","Longitude":-89.95835,"Latitude":36.7995949},{"LocationName":"Jackson, + Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Jackson, + Missouri","Longitude":-89.6673,"Latitude":37.3835},{"LocationName":"Macon, + Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Macon, + Missouri","Longitude":-92.4652557,"Latitude":39.74058},{"LocationName":"Milan, + Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Milan, + Missouri","Longitude":-93.12601,"Latitude":40.20209},{"LocationName":"Monett, + Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Monett, + Missouri","Longitude":-93.9276047,"Latitude":36.92048},{"LocationName":"Noel, + Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Noel, + Missouri","Longitude":-94.4835739,"Latitude":36.5448456},{"LocationName":"Poplar + Bluff, Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Poplar + Bluff, Missouri","Longitude":-90.39327,"Latitude":36.75698},{"LocationName":"Saint + Joseph, Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Saint + Joseph, Missouri","Longitude":-94.83068,"Latitude":39.7793732},{"LocationName":"Sedalia, + Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Sedalia, + Missouri","Longitude":-93.2281,"Latitude":38.7108},{"LocationName":"South + West City, Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"South + West City, Missouri","Longitude":-94.61143,"Latitude":36.51351},{"LocationName":"Springfield, + Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Springfield, + Missouri","Longitude":-93.2915649,"Latitude":37.2089767},{"LocationName":"Washington, + Missouri","CountryCode":"United States","CountrySubDivisionCode":"Missouri","CityName":"Washington, + Missouri","Longitude":-91.0011,"Latitude":38.5535},{"LocationName":"Saipan, + Mariana Island, Northern Mariana Islands","CountryCode":"United States","CountrySubDivisionCode":"Northern + Mariana Islands","CityName":"Saipan, Mariana Island, Northern Mariana Islands","Longitude":145.7641,"Latitude":15.192},{"LocationName":"Bay + Springs, Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Bay + Springs, Mississippi","Longitude":-89.28872,"Latitude":31.9828758},{"LocationName":"Canton, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Canton, + Mississippi","Longitude":-90.03478,"Latitude":32.6126},{"LocationName":"Carthage, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Carthage, + Mississippi","Longitude":-89.538,"Latitude":32.7455},{"LocationName":"Collins, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Collins, + Mississippi","Longitude":-89.55755,"Latitude":31.6433945},{"LocationName":"Forest, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Forest, + Mississippi","Longitude":-89.47541,"Latitude":32.36419},{"LocationName":"Hattiesburg, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Hattiesburg, + Mississippi","Longitude":-89.29072,"Latitude":31.3273582},{"LocationName":"Hazlehurst, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Hazlehurst, + Mississippi","Longitude":-90.394,"Latitude":31.8597546},{"LocationName":"Jackson, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Jackson, + Mississippi","Longitude":-90.18049,"Latitude":32.29869},{"LocationName":"Laurel, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Laurel, + Mississippi","Longitude":-89.13518,"Latitude":31.69679},{"LocationName":"Morton, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Morton, + Mississippi","Longitude":-89.65535,"Latitude":32.3524857},{"LocationName":"Moselle, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Moselle, + Mississippi","Longitude":-89.2789,"Latitude":31.50517},{"LocationName":"Ridgeland, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Ridgeland, + Mississippi","Longitude":-90.1411057,"Latitude":32.42756},{"LocationName":"Sebastopol, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Sebastopol, + Mississippi","Longitude":-89.33495,"Latitude":32.5728531},{"LocationName":"Summit, + Mississippi","CountryCode":"United States","CountrySubDivisionCode":"Mississippi","CityName":"Summit, + Mississippi","Longitude":-90.4681,"Latitude":31.2872},{"LocationName":"Belgrade, + Montana","CountryCode":"United States","CountrySubDivisionCode":"Montana","CityName":"Belgrade, + Montana","Longitude":-111.178,"Latitude":45.7765},{"LocationName":"Billings, + Montana","CountryCode":"United States","CountrySubDivisionCode":"Montana","CityName":"Billings, + Montana","Longitude":-108.505577,"Latitude":45.7837524},{"LocationName":"Butte, + Montana","CountryCode":"United States","CountrySubDivisionCode":"Montana","CityName":"Butte, + Montana","Longitude":-112.520889,"Latitude":46.0017548},{"LocationName":"Columbus, + Montana","CountryCode":"United States","CountrySubDivisionCode":"Montana","CityName":"Columbus, + Montana","Longitude":-109.24794,"Latitude":45.6363945},{"LocationName":"Great + Falls, Montana","CountryCode":"United States","CountrySubDivisionCode":"Montana","CityName":"Great + Falls, Montana","Longitude":-111.306076,"Latitude":47.5071449},{"LocationName":"Kalispell, + Montana","CountryCode":"United States","CountrySubDivisionCode":"Montana","CityName":"Kalispell, + Montana","Longitude":-114.3149,"Latitude":48.20164},{"LocationName":"Miles + City, Montana","CountryCode":"United States","CountrySubDivisionCode":"Montana","CityName":"Miles + City, Montana","Longitude":-105.848671,"Latitude":46.40672},{"LocationName":"Sweet + Grass, Montana","CountryCode":"United States","CountrySubDivisionCode":"Montana","CityName":"Sweet + Grass, Montana","Longitude":-111.961182,"Latitude":48.9943962},{"LocationName":"Asheboro, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Asheboro, North Carolina","Longitude":-79.81351,"Latitude":35.70861},{"LocationName":"Clinton, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Clinton, North Carolina","Longitude":-78.3222,"Latitude":34.9983},{"LocationName":"Dobson, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Dobson, North Carolina","Longitude":-80.7227859,"Latitude":36.39612},{"LocationName":"Dudley, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Dudley, North Carolina","Longitude":-78.0425,"Latitude":35.26646},{"LocationName":"Kinston, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Kinston, North Carolina","Longitude":-77.5818,"Latitude":35.2687},{"LocationName":"Lewiston, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Lewiston, North Carolina","Longitude":-77.1697,"Latitude":36.11484},{"LocationName":"Lumber + Bridge, North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Lumber Bridge, North Carolina","Longitude":-79.07211,"Latitude":34.88876},{"LocationName":"Marshville, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Marshville, North Carolina","Longitude":-80.36843,"Latitude":34.9876633},{"LocationName":"Monroe, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Monroe, North Carolina","Longitude":-80.5489,"Latitude":34.9826},{"LocationName":"Morganton, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Morganton, North Carolina","Longitude":-81.68586,"Latitude":35.7468},{"LocationName":"Mount + Olive, North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Mount Olive, North Carolina","Longitude":-78.06844,"Latitude":35.19132},{"LocationName":"Rockingham, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Rockingham, North Carolina","Longitude":-79.77406,"Latitude":34.93583},{"LocationName":"Rose + Hill, North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Rose Hill, North Carolina","Longitude":-78.02322,"Latitude":34.8287048},{"LocationName":"Saint + Pauls, North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Saint Pauls, North Carolina","Longitude":-78.9754,"Latitude":34.8092461},{"LocationName":"Sanford, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Sanford, North Carolina","Longitude":-79.1593246,"Latitude":35.4662552},{"LocationName":"Siler + City, North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Siler City, North Carolina","Longitude":-79.46249,"Latitude":35.7238541},{"LocationName":"Tar + Heel, North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Tar Heel, North Carolina","Longitude":-78.78964,"Latitude":34.73262},{"LocationName":"Teachey, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Teachey, North Carolina","Longitude":-78.00288,"Latitude":34.770443},{"LocationName":"Warsaw, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Warsaw, North Carolina","Longitude":-78.09252,"Latitude":34.9991035},{"LocationName":"Wilkesboro, + North Carolina","CountryCode":"United States","CountrySubDivisionCode":"North + Carolina","CityName":"Wilkesboro, North Carolina","Longitude":-81.15272,"Latitude":36.1481361},{"LocationName":"Bismarck, + North Dakota","CountryCode":"United States","CountrySubDivisionCode":"North + Dakota","CityName":"Bismarck, North Dakota","Longitude":-100.77932,"Latitude":46.80537},{"LocationName":"Fargo, + North Dakota","CountryCode":"United States","CountrySubDivisionCode":"North + Dakota","CityName":"Fargo, North Dakota","Longitude":-96.78177,"Latitude":46.87591},{"LocationName":"Luverne, + North Dakota","CountryCode":"United States","CountrySubDivisionCode":"North + Dakota","CityName":"Luverne, North Dakota","Longitude":-97.94015,"Latitude":47.2546},{"LocationName":"Minot, + North Dakota","CountryCode":"United States","CountrySubDivisionCode":"North + Dakota","CityName":"Minot, North Dakota","Longitude":-101.296,"Latitude":48.2361},{"LocationName":"New + Rockford, North Dakota","CountryCode":"United States","CountrySubDivisionCode":"North + Dakota","CityName":"New Rockford, North Dakota","Longitude":-99.12564,"Latitude":47.6806335},{"LocationName":"Columbus, + Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Columbus, + Nebraska","Longitude":-97.3718,"Latitude":41.4309349},{"LocationName":"Crete, + Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Crete, + Nebraska","Longitude":-96.96208,"Latitude":40.6252251},{"LocationName":"Dakota + City, Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Dakota + City, Nebraska","Longitude":-96.41941,"Latitude":42.41523},{"LocationName":"Fremont, + Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Fremont, + Nebraska","Longitude":-96.4985657,"Latitude":41.43441},{"LocationName":"Gibbon, + Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Gibbon, + Nebraska","Longitude":-98.84593,"Latitude":40.7489166},{"LocationName":"Gordon, + Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Gordon, + Nebraska","Longitude":-102.203178,"Latitude":42.81416},{"LocationName":"Grand + Island, Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Grand + Island, Nebraska","Longitude":-98.3399048,"Latitude":40.92474},{"LocationName":"Hastings, + Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Hastings, + Nebraska","Longitude":-98.39237,"Latitude":40.58565},{"LocationName":"Lexington, + Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Lexington, + Nebraska","Longitude":-99.73949,"Latitude":40.7777443},{"LocationName":"Lincoln, + Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Lincoln, + Nebraska","Longitude":-96.70774,"Latitude":40.81362},{"LocationName":"Madison, + Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Madison, + Nebraska","Longitude":-97.45502,"Latitude":41.8284149},{"LocationName":"Omaha, + Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Omaha, + Nebraska","Longitude":-95.94007,"Latitude":41.26067},{"LocationName":"Schuyler, + Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Schuyler, + Nebraska","Longitude":-97.05965,"Latitude":41.44684},{"LocationName":"Tecumseh, + Nebraska","CountryCode":"United States","CountrySubDivisionCode":"Nebraska","CityName":"Tecumseh, + Nebraska","Longitude":-96.19499,"Latitude":40.3681335},{"LocationName":"Madbury, + New Hampshire","CountryCode":"United States","CountrySubDivisionCode":"New + Hampshire","CityName":"Madbury, New Hampshire","Longitude":-70.96147,"Latitude":43.1789055},{"LocationName":"Manchester, + New Hampshire","CountryCode":"United States","CountrySubDivisionCode":"New + Hampshire","CityName":"Manchester, New Hampshire","Longitude":-71.46309,"Latitude":42.9911766},{"LocationName":"North + Haverhill, New Hampshire","CountryCode":"United States","CountrySubDivisionCode":"New + Hampshire","CityName":"North Haverhill, New Hampshire","Longitude":-72.0255,"Latitude":44.08646},{"LocationName":"Green + Village, New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New + Jersey","CityName":"Green Village, New Jersey","Longitude":-74.43915,"Latitude":40.7412071},{"LocationName":"Monroeville, + New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New Jersey","CityName":"Monroeville, + New Jersey","Longitude":-75.16963,"Latitude":39.6308556},{"LocationName":"Newark, + New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New Jersey","CityName":"Newark, + New Jersey","Longitude":-74.17419,"Latitude":40.73197},{"LocationName":"Newton, + New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New Jersey","CityName":"Newton, + New Jersey","Longitude":-74.7532043,"Latitude":41.058567},{"LocationName":"Norma, + New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New Jersey","CityName":"Norma, + New Jersey","Longitude":-75.08806,"Latitude":39.49542},{"LocationName":"Paterson, + New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New Jersey","CityName":"Paterson, + New Jersey","Longitude":-74.1711,"Latitude":40.9165},{"LocationName":"Trenton, + New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New Jersey","CityName":"Trenton, + New Jersey","Longitude":-74.7594,"Latitude":40.2179},{"LocationName":"Vineland, + New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New Jersey","CityName":"Vineland, + New Jersey","Longitude":-75.0261,"Latitude":39.4862},{"LocationName":"Moriarty, + New Mexico","CountryCode":"United States","CountrySubDivisionCode":"New Mexico","CityName":"Moriarty, + New Mexico","Longitude":-106.045151,"Latitude":35.0066528},{"LocationName":"Roswell, + New Mexico","CountryCode":"United States","CountrySubDivisionCode":"New Mexico","CityName":"Roswell, + New Mexico","Longitude":-104.522751,"Latitude":33.39482},{"LocationName":"Fallon, + Nevada","CountryCode":"United States","CountrySubDivisionCode":"Nevada","CityName":"Fallon, + Nevada","Longitude":-118.778,"Latitude":39.4749},{"LocationName":"Altamont, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Altamont, + New York","Longitude":-74.03386,"Latitude":42.70596},{"LocationName":"Argyle, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Argyle, + New York","Longitude":-73.49068,"Latitude":43.23541},{"LocationName":"Brasher + Falls, New York","CountryCode":"United States","CountrySubDivisionCode":"New + York","CityName":"Brasher Falls, New York","Longitude":-74.774826,"Latitude":44.8059578},{"LocationName":"Brightwaters, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Brightwaters, + New York","Longitude":-73.2702255,"Latitude":40.73035},{"LocationName":"Canaseraga, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Canaseraga, + New York","Longitude":-77.77841,"Latitude":42.46127},{"LocationName":"Croghan, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Croghan, + New York","Longitude":-75.39215,"Latitude":43.89675},{"LocationName":"Monroe, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Monroe, + New York","Longitude":-74.1871262,"Latitude":41.328125},{"LocationName":"New + York, New York","CountryCode":"United States","CountrySubDivisionCode":"New + York","CityName":"New York, New York","Longitude":-74.0071,"Latitude":40.7146},{"LocationName":"Newark + Valley, New York","CountryCode":"United States","CountrySubDivisionCode":"New + York","CityName":"Newark Valley, New York","Longitude":-76.1835,"Latitude":42.2241821},{"LocationName":"Ontario, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Ontario, + New York","Longitude":-77.289,"Latitude":43.2226},{"LocationName":"Rome, New + York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Rome, + New York","Longitude":-75.45336,"Latitude":43.215168},{"LocationName":"South + Fallsburg, New York","CountryCode":"United States","CountrySubDivisionCode":"New + York","CityName":"South Fallsburg, New York","Longitude":-74.63401,"Latitude":41.70651},{"LocationName":"Stone + Ridge, New York","CountryCode":"United States","CountrySubDivisionCode":"New + York","CityName":"Stone Ridge, New York","Longitude":-74.14095,"Latitude":41.85103},{"LocationName":"Strykersville, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Strykersville, + New York","Longitude":-78.4480057,"Latitude":42.70145},{"LocationName":"West + Valley, New York","CountryCode":"United States","CountrySubDivisionCode":"New + York","CityName":"West Valley, New York","Longitude":-78.61226,"Latitude":42.4046173},{"LocationName":"Whitehall, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Whitehall, + New York","Longitude":-73.4002,"Latitude":43.55003},{"LocationName":"Yaphank, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Yaphank, + New York","Longitude":-72.93421,"Latitude":40.8421631},{"LocationName":"Ashland, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Ashland, + Ohio","Longitude":-82.3153,"Latitude":40.8686},{"LocationName":"Bowling Green, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Bowling + Green, Ohio","Longitude":-83.65042,"Latitude":41.37546},{"LocationName":"Canton, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Canton, + Ohio","Longitude":-81.3716,"Latitude":40.7978},{"LocationName":"Cincinnati, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Cincinnati, + Ohio","Longitude":-84.5041,"Latitude":39.1071},{"LocationName":"Columbus, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Columbus, + Ohio","Longitude":-83.00301,"Latitude":39.962},{"LocationName":"Creston, Ohio","CountryCode":"United + States","CountrySubDivisionCode":"Ohio","CityName":"Creston, Ohio","Longitude":-81.89366,"Latitude":40.98653},{"LocationName":"Dayton, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Dayton, + Ohio","Longitude":-84.1944,"Latitude":39.7591},{"LocationName":"Kidron, Ohio","CountryCode":"United + States","CountrySubDivisionCode":"Ohio","CityName":"Kidron, Ohio","Longitude":-81.74422,"Latitude":40.7412148},{"LocationName":"Saint + Henry, Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Saint + Henry, Ohio","Longitude":-84.6403351,"Latitude":40.417038},{"LocationName":"Sandusky, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Sandusky, + Ohio","Longitude":-82.7073746,"Latitude":41.44876},{"LocationName":"Wapakoneta, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Wapakoneta, + Ohio","Longitude":-84.1945343,"Latitude":40.5678825},{"LocationName":"Winesburg, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Winesburg, + Ohio","Longitude":-81.6943359,"Latitude":40.6165962},{"LocationName":"Xenia, + Ohio","CountryCode":"United States","CountrySubDivisionCode":"Ohio","CityName":"Xenia, + Ohio","Longitude":-83.92817,"Latitude":39.6850967},{"LocationName":"Broken + Bow, Oklahoma","CountryCode":"United States","CountrySubDivisionCode":"Oklahoma","CityName":"Broken + Bow, Oklahoma","Longitude":-94.73954,"Latitude":34.027916},{"LocationName":"Guymon, + Oklahoma","CountryCode":"United States","CountrySubDivisionCode":"Oklahoma","CityName":"Guymon, + Oklahoma","Longitude":-101.481567,"Latitude":36.6813354},{"LocationName":"Heavener, + Oklahoma","CountryCode":"United States","CountrySubDivisionCode":"Oklahoma","CityName":"Heavener, + Oklahoma","Longitude":-94.60251,"Latitude":34.8892441},{"LocationName":"Jay, + Oklahoma","CountryCode":"United States","CountrySubDivisionCode":"Oklahoma","CityName":"Jay, + Oklahoma","Longitude":-94.7974,"Latitude":36.4214},{"LocationName":"Miami, + Oklahoma","CountryCode":"United States","CountrySubDivisionCode":"Oklahoma","CityName":"Miami, + Oklahoma","Longitude":-94.8775,"Latitude":36.8741},{"LocationName":"Stillwater, + Oklahoma","CountryCode":"United States","CountrySubDivisionCode":"Oklahoma","CityName":"Stillwater, + Oklahoma","Longitude":-97.05866,"Latitude":36.1162643},{"LocationName":"Dayton, + Oregon","CountryCode":"United States","CountrySubDivisionCode":"Oregon","CityName":"Dayton, + Oregon","Longitude":-123.077225,"Latitude":45.219902},{"LocationName":"Elgin, + Oregon","CountryCode":"United States","CountrySubDivisionCode":"Oregon","CityName":"Elgin, + Oregon","Longitude":-117.917343,"Latitude":45.56519},{"LocationName":"Eugene, + Oregon","CountryCode":"United States","CountrySubDivisionCode":"Oregon","CityName":"Eugene, + Oregon","Longitude":-123.088921,"Latitude":44.04991},{"LocationName":"Klamath + Falls, Oregon","CountryCode":"United States","CountrySubDivisionCode":"Oregon","CityName":"Klamath + Falls, Oregon","Longitude":-121.782066,"Latitude":42.2238846},{"LocationName":"Portland, + Oregon","CountryCode":"United States","CountrySubDivisionCode":"Oregon","CityName":"Portland, + Oregon","Longitude":-122.675629,"Latitude":45.511795},{"LocationName":"Springfield, + Oregon","CountryCode":"United States","CountrySubDivisionCode":"Oregon","CityName":"Springfield, + Oregon","Longitude":-123.019554,"Latitude":44.0473328},{"LocationName":"Birdsboro, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Birdsboro, + Pennsylvania","Longitude":-75.8081,"Latitude":40.2654457},{"LocationName":"Bradenville, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Bradenville, + Pennsylvania","Longitude":-79.33927,"Latitude":40.3209152},{"LocationName":"Charleroi, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Charleroi, + Pennsylvania","Longitude":-79.8966,"Latitude":40.13651},{"LocationName":"Claysburg, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Claysburg, + Pennsylvania","Longitude":-78.45507,"Latitude":40.2921333},{"LocationName":"Dillsburg, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Dillsburg, + Pennsylvania","Longitude":-77.03525,"Latitude":40.1093063},{"LocationName":"Fredericksburg, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Fredericksburg, + Pennsylvania","Longitude":-76.43223,"Latitude":40.4442673},{"LocationName":"Gilbert, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Gilbert, + Pennsylvania","Longitude":-75.44047,"Latitude":40.91565},{"LocationName":"Girard, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Girard, + Pennsylvania","Longitude":-80.31541,"Latitude":42.0018044},{"LocationName":"Hamburg, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Hamburg, + Pennsylvania","Longitude":-75.9827347,"Latitude":40.5561333},{"LocationName":"Hatfield, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Hatfield, + Pennsylvania","Longitude":-75.2951,"Latitude":40.2768},{"LocationName":"Hazleton, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Hazleton, + Pennsylvania","Longitude":-75.97627,"Latitude":40.95462},{"LocationName":"Hegins, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Hegins, + Pennsylvania","Longitude":-76.49973,"Latitude":40.6513634},{"LocationName":"Kossuth, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Kossuth, + Pennsylvania","Longitude":-79.5764,"Latitude":41.2858925},{"LocationName":"Loganton, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Loganton, + Pennsylvania","Longitude":-77.30722,"Latitude":41.0360146},{"LocationName":"Middleburg, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Middleburg, + Pennsylvania","Longitude":-77.0460052,"Latitude":40.7917862},{"LocationName":"Mifflintown, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Mifflintown, + Pennsylvania","Longitude":-77.39664,"Latitude":40.57003},{"LocationName":"Moosic, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Moosic, + Pennsylvania","Longitude":-75.72818,"Latitude":41.35325},{"LocationName":"New + Holland, Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"New + Holland, Pennsylvania","Longitude":-76.08585,"Latitude":40.1037941},{"LocationName":"New + Oxford, Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"New + Oxford, Pennsylvania","Longitude":-77.05673,"Latitude":39.86363},{"LocationName":"Philadelphia, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Philadelphia, + Pennsylvania","Longitude":-75.16237,"Latitude":39.95227},{"LocationName":"Reading, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Reading, + Pennsylvania","Longitude":-75.92784,"Latitude":40.336586},{"LocationName":"Richlandtown, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Richlandtown, + Pennsylvania","Longitude":-75.3210754,"Latitude":40.4690361},{"LocationName":"Saxonburg, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Saxonburg, + Pennsylvania","Longitude":-79.8169,"Latitude":40.7541},{"LocationName":"Scranton, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Scranton, + Pennsylvania","Longitude":-75.6608,"Latitude":41.4101334},{"LocationName":"Souderton, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Souderton, + Pennsylvania","Longitude":-75.32932,"Latitude":40.3131371},{"LocationName":"Stevens, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Stevens, + Pennsylvania","Longitude":-76.1277,"Latitude":40.2161},{"LocationName":"Sunbury, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Sunbury, + Pennsylvania","Longitude":-76.7962,"Latitude":40.8628},{"LocationName":"Uniontown, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Uniontown, + Pennsylvania","Longitude":-79.72418,"Latitude":39.9021},{"LocationName":"Wyalusing, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Wyalusing, + Pennsylvania","Longitude":-76.26311,"Latitude":41.6658},{"LocationName":"Zullinger, + Pennsylvania","CountryCode":"United States","CountrySubDivisionCode":"Pennsylvania","CityName":"Zullinger, + Pennsylvania","Longitude":-77.62971,"Latitude":39.77009},{"LocationName":"Aibonito, + Puerto Rico","CountryCode":"United States","CountrySubDivisionCode":"Puerto + Rico","CityName":"Aibonito, Puerto Rico","Longitude":-66.265686,"Latitude":18.1398849},{"LocationName":"Arecibo, + Puerto Rico","CountryCode":"United States","CountrySubDivisionCode":"Puerto + Rico","CityName":"Arecibo, Puerto Rico","Longitude":-66.7157,"Latitude":18.4722},{"LocationName":"Guaynabo, + Puerto Rico","CountryCode":"United States","CountrySubDivisionCode":"Puerto + Rico","CityName":"Guaynabo, Puerto Rico","Longitude":-66.1105,"Latitude":18.3597},{"LocationName":"Yauco, + Puerto Rico","CountryCode":"United States","CountrySubDivisionCode":"Puerto + Rico","CityName":"Yauco, Puerto Rico","Longitude":-66.84844,"Latitude":18.0334},{"LocationName":"Batesburg-Leesville, + South Carolina","CountryCode":"United States","CountrySubDivisionCode":"South + Carolina","CityName":"Batesburg-Leesville, South Carolina","Longitude":-81.54737,"Latitude":33.90723},{"LocationName":"Dillon, + South Carolina","CountryCode":"United States","CountrySubDivisionCode":"South + Carolina","CityName":"Dillon, South Carolina","Longitude":-79.3708038,"Latitude":34.41709},{"LocationName":"Gaffney, + South Carolina","CountryCode":"United States","CountrySubDivisionCode":"South + Carolina","CityName":"Gaffney, South Carolina","Longitude":-81.64867,"Latitude":35.0736237},{"LocationName":"Greenville, + South Carolina","CountryCode":"United States","CountrySubDivisionCode":"South + Carolina","CityName":"Greenville, South Carolina","Longitude":-82.40022,"Latitude":34.84802},{"LocationName":"Greenwood, + South Carolina","CountryCode":"United States","CountrySubDivisionCode":"South + Carolina","CityName":"Greenwood, South Carolina","Longitude":-82.16074,"Latitude":34.1910477},{"LocationName":"Newberry, + South Carolina","CountryCode":"United States","CountrySubDivisionCode":"South + Carolina","CityName":"Newberry, South Carolina","Longitude":-81.61925,"Latitude":34.2745552},{"LocationName":"Sumter, + South Carolina","CountryCode":"United States","CountrySubDivisionCode":"South + Carolina","CityName":"Sumter, South Carolina","Longitude":-80.34236,"Latitude":33.92434},{"LocationName":"Ward, + South Carolina","CountryCode":"United States","CountrySubDivisionCode":"South + Carolina","CityName":"Ward, South Carolina","Longitude":-81.73448,"Latitude":33.8569},{"LocationName":"West + Columbia, South Carolina","CountryCode":"United States","CountrySubDivisionCode":"South + Carolina","CityName":"West Columbia, South Carolina","Longitude":-81.07328,"Latitude":33.98897},{"LocationName":"Aberdeen, + South Dakota","CountryCode":"United States","CountrySubDivisionCode":"South + Dakota","CityName":"Aberdeen, South Dakota","Longitude":-98.48733,"Latitude":45.45909},{"LocationName":"Howard, + South Dakota","CountryCode":"United States","CountrySubDivisionCode":"South + Dakota","CityName":"Howard, South Dakota","Longitude":-97.52651,"Latitude":44.008},{"LocationName":"Huron, + South Dakota","CountryCode":"United States","CountrySubDivisionCode":"South + Dakota","CityName":"Huron, South Dakota","Longitude":-98.21414,"Latitude":44.36385},{"LocationName":"Marion, + South Dakota","CountryCode":"United States","CountrySubDivisionCode":"South + Dakota","CityName":"Marion, South Dakota","Longitude":-97.26071,"Latitude":43.4262543},{"LocationName":"Pierre, + South Dakota","CountryCode":"United States","CountrySubDivisionCode":"South + Dakota","CityName":"Pierre, South Dakota","Longitude":-100.35,"Latitude":44.3689},{"LocationName":"Rapid + City, South Dakota","CountryCode":"United States","CountrySubDivisionCode":"South + Dakota","CityName":"Rapid City, South Dakota","Longitude":-103.230888,"Latitude":44.0811653},{"LocationName":"Sioux + Falls, South Dakota","CountryCode":"United States","CountrySubDivisionCode":"South + Dakota","CityName":"Sioux Falls, South Dakota","Longitude":-96.7313,"Latitude":43.5453},{"LocationName":"Sturgis, + South Dakota","CountryCode":"United States","CountrySubDivisionCode":"South + Dakota","CityName":"Sturgis, South Dakota","Longitude":-103.509,"Latitude":44.4149},{"LocationName":"Yankton, + South Dakota","CountryCode":"United States","CountrySubDivisionCode":"South + Dakota","CityName":"Yankton, South Dakota","Longitude":-97.3971,"Latitude":42.8718},{"LocationName":"Brighton, + Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Brighton, + Tennessee","Longitude":-89.7324,"Latitude":35.4896},{"LocationName":"Chapel + Hill, Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Chapel + Hill, Tennessee","Longitude":-86.6919,"Latitude":35.6314},{"LocationName":"Chattanooga, + Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Chattanooga, + Tennessee","Longitude":-85.3094254,"Latitude":35.0464325},{"LocationName":"College + Grove, Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"College + Grove, Tennessee","Longitude":-86.66332,"Latitude":35.8027267},{"LocationName":"Cookeville, + Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Cookeville, + Tennessee","Longitude":-85.4998,"Latitude":36.16193},{"LocationName":"Greeneville, + Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Greeneville, + Tennessee","Longitude":-82.8312,"Latitude":36.1627},{"LocationName":"Kodak, + Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Kodak, + Tennessee","Longitude":-83.62647,"Latitude":35.97374},{"LocationName":"Lenoir + City, Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Lenoir + City, Tennessee","Longitude":-84.2653,"Latitude":35.7914},{"LocationName":"Memphis, + Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Memphis, + Tennessee","Longitude":-90.04893,"Latitude":35.14968},{"LocationName":"Morristown, + Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Morristown, + Tennessee","Longitude":-83.293045,"Latitude":36.21503},{"LocationName":"Nashville, + Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Nashville, + Tennessee","Longitude":-86.7783661,"Latitude":36.16778},{"LocationName":"Newbern, + Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Newbern, + Tennessee","Longitude":-89.26162,"Latitude":36.113224},{"LocationName":"Shelbyville, + Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Shelbyville, + Tennessee","Longitude":-86.45999,"Latitude":35.48303},{"LocationName":"Union + City, Tennessee","CountryCode":"United States","CountrySubDivisionCode":"Tennessee","CityName":"Union + City, Tennessee","Longitude":-89.05732,"Latitude":36.42378},{"LocationName":"Amarillo, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Amarillo, + Texas","Longitude":-101.833893,"Latitude":35.2072563},{"LocationName":"Austin, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Austin, + Texas","Longitude":-97.743,"Latitude":30.2676},{"LocationName":"Booker, Texas","CountryCode":"United + States","CountrySubDivisionCode":"Texas","CityName":"Booker, Texas","Longitude":-100.542046,"Latitude":36.4555359},{"LocationName":"Bryan, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Bryan, + Texas","Longitude":-96.3704,"Latitude":30.6709},{"LocationName":"Cactus, Texas","CountryCode":"United + States","CountrySubDivisionCode":"Texas","CityName":"Cactus, Texas","Longitude":-102.005241,"Latitude":36.0495148},{"LocationName":"Carthage, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Carthage, + Texas","Longitude":-94.3408661,"Latitude":32.16589},{"LocationName":"Center, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Center, + Texas","Longitude":-94.1797256,"Latitude":31.796133},{"LocationName":"College + Station, Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"College + Station, Texas","Longitude":-96.3259,"Latitude":30.6205},{"LocationName":"Corpus + Christi, Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Corpus + Christi, Texas","Longitude":-97.4035645,"Latitude":27.79635},{"LocationName":"Dallas, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Dallas, + Texas","Longitude":-96.7954,"Latitude":32.7781563},{"LocationName":"Del Rio, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Del + Rio, Texas","Longitude":-100.898,"Latitude":29.3662},{"LocationName":"Devine, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Devine, + Texas","Longitude":-98.90537,"Latitude":29.14072},{"LocationName":"Dublin, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Dublin, + Texas","Longitude":-98.34187,"Latitude":32.08507},{"LocationName":"El Paso, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"El + Paso, Texas","Longitude":-106.4874,"Latitude":31.7591},{"LocationName":"Fort + Hancock, Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Fort + Hancock, Texas","Longitude":-105.844,"Latitude":31.2999},{"LocationName":"Fort + Worth, Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Fort + Worth, Texas","Longitude":-97.32925,"Latitude":32.74863},{"LocationName":"Friona, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Friona, + Texas","Longitude":-102.724426,"Latitude":34.6420135},{"LocationName":"Goldthwaite, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Goldthwaite, + Texas","Longitude":-98.5680161,"Latitude":31.4508476},{"LocationName":"Hereford, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Hereford, + Texas","Longitude":-102.4057,"Latitude":34.8121},{"LocationName":"Houston, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Houston, + Texas","Longitude":-95.36978,"Latitude":29.76045},{"LocationName":"Lott, Texas","CountryCode":"United + States","CountrySubDivisionCode":"Texas","CityName":"Lott, Texas","Longitude":-97.0354843,"Latitude":31.2049675},{"LocationName":"Lubbock, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Lubbock, + Texas","Longitude":-101.855865,"Latitude":33.59233},{"LocationName":"Lufkin, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Lufkin, + Texas","Longitude":-94.7183,"Latitude":31.3424},{"LocationName":"Malone, Texas","CountryCode":"United + States","CountrySubDivisionCode":"Texas","CityName":"Malone, Texas","Longitude":-96.89609,"Latitude":31.9169655},{"LocationName":"Mineola, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Mineola, + Texas","Longitude":-95.48797,"Latitude":32.6638},{"LocationName":"Mount Pleasant, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Mount + Pleasant, Texas","Longitude":-94.9685,"Latitude":33.1571},{"LocationName":"Nacogdoches, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Nacogdoches, + Texas","Longitude":-94.6556,"Latitude":31.6035},{"LocationName":"Nixon, Texas","CountryCode":"United + States","CountrySubDivisionCode":"Texas","CityName":"Nixon, Texas","Longitude":-97.76404,"Latitude":29.2675552},{"LocationName":"Palestine, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Palestine, + Texas","Longitude":-95.632,"Latitude":31.7617},{"LocationName":"San Angelo, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"San + Angelo, Texas","Longitude":-100.442421,"Latitude":31.4615},{"LocationName":"Seguin, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Seguin, + Texas","Longitude":-97.9647,"Latitude":29.5693},{"LocationName":"Stephenville, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Stephenville, + Texas","Longitude":-98.202,"Latitude":32.2203},{"LocationName":"Tyler, Texas","CountryCode":"United + States","CountrySubDivisionCode":"Texas","CityName":"Tyler, Texas","Longitude":-95.2943,"Latitude":32.3474731},{"LocationName":"Waco, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Waco, + Texas","Longitude":-97.1495056,"Latitude":31.5718212},{"LocationName":"Draper, + Utah","CountryCode":"United States","CountrySubDivisionCode":"Utah","CityName":"Draper, + Utah","Longitude":-111.866272,"Latitude":40.52413},{"LocationName":"Hyrum, + Utah","CountryCode":"United States","CountrySubDivisionCode":"Utah","CityName":"Hyrum, + Utah","Longitude":-111.851013,"Latitude":41.6339722},{"LocationName":"Lewiston, + Utah","CountryCode":"United States","CountrySubDivisionCode":"Utah","CityName":"Lewiston, + Utah","Longitude":-111.848633,"Latitude":41.97595},{"LocationName":"Moroni, + Utah","CountryCode":"United States","CountrySubDivisionCode":"Utah","CityName":"Moroni, + Utah","Longitude":-111.582863,"Latitude":39.52492},{"LocationName":"Salt Lake + City, Utah","CountryCode":"United States","CountrySubDivisionCode":"Utah","CityName":"Salt + Lake City, Utah","Longitude":-111.888229,"Latitude":40.75952},{"LocationName":"Accomac, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Accomac, + Virginia","Longitude":-75.66984,"Latitude":37.7197227},{"LocationName":"Bealeton, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Bealeton, + Virginia","Longitude":-77.76452,"Latitude":38.57547},{"LocationName":"Crozet, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Crozet, + Virginia","Longitude":-78.70069,"Latitude":38.0696564},{"LocationName":"Dayton, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Dayton, + Virginia","Longitude":-78.93897,"Latitude":38.4145241},{"LocationName":"Edinburg, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Edinburg, + Virginia","Longitude":-78.56243,"Latitude":38.82136},{"LocationName":"Glen + Allen, Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Glen + Allen, Virginia","Longitude":-77.5041,"Latitude":37.6653},{"LocationName":"Harrisonburg, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Harrisonburg, + Virginia","Longitude":-78.869,"Latitude":38.4515},{"LocationName":"Hinton, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Hinton, + Virginia","Longitude":-78.97218,"Latitude":38.46586},{"LocationName":"New + Market, Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"New + Market, Virginia","Longitude":-78.67211,"Latitude":38.647274},{"LocationName":"Smithfield, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Smithfield, + Virginia","Longitude":-76.63392,"Latitude":36.9813347},{"LocationName":"Temperanceville, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Temperanceville, + Virginia","Longitude":-75.54879,"Latitude":37.89405},{"LocationName":"Timberville, + Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Timberville, + Virginia","Longitude":-78.77367,"Latitude":38.63708},{"LocationName":"Ferrisburg, + Vermont","CountryCode":"United States","CountrySubDivisionCode":"Vermont","CityName":"Ferrisburg, + Vermont","Longitude":-73.24718,"Latitude":44.20306},{"LocationName":"Blaine, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Blaine, + Washington","Longitude":-122.748886,"Latitude":48.9940453},{"LocationName":"Colville, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Colville, + Washington","Longitude":-117.9048,"Latitude":48.5466},{"LocationName":"Ferndale, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Ferndale, + Washington","Longitude":-122.593529,"Latitude":48.84757},{"LocationName":"Kelso, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Kelso, + Washington","Longitude":-122.898666,"Latitude":46.14428},{"LocationName":"Moses + Lake, Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Moses + Lake, Washington","Longitude":-119.277153,"Latitude":47.1319427},{"LocationName":"Mount + Vernon, Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Mount + Vernon, Washington","Longitude":-122.334633,"Latitude":48.41146},{"LocationName":"Olympia, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Olympia, + Washington","Longitude":-122.891434,"Latitude":47.0392265},{"LocationName":"Stanwood, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Stanwood, + Washington","Longitude":-122.372383,"Latitude":48.24159},{"LocationName":"Toppenish, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Toppenish, + Washington","Longitude":-120.313,"Latitude":46.3751},{"LocationName":"Wallula, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Wallula, + Washington","Longitude":-118.908539,"Latitude":46.08157},{"LocationName":"Woodland, + Washington","CountryCode":"United States","CountrySubDivisionCode":"Washington","CityName":"Woodland, + Washington","Longitude":-122.73983,"Latitude":45.9086456},{"LocationName":"Abbotsford, + Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Abbotsford, + Wisconsin","Longitude":-90.31913,"Latitude":44.94576},{"LocationName":"Arcadia, + Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Arcadia, + Wisconsin","Longitude":-91.49917,"Latitude":44.2523232},{"LocationName":"Barron, + Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Barron, + Wisconsin","Longitude":-91.84932,"Latitude":45.40135},{"LocationName":"Black + Earth, Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Black + Earth, Wisconsin","Longitude":-89.7479858,"Latitude":43.1378136},{"LocationName":"Curtiss, + Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Curtiss, + Wisconsin","Longitude":-90.43417,"Latitude":44.9539337},{"LocationName":"Eau + Claire, Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Eau + Claire, Wisconsin","Longitude":-91.501236,"Latitude":44.8165131},{"LocationName":"Endeavor, + Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Endeavor, + Wisconsin","Longitude":-89.4677353,"Latitude":43.7167625},{"LocationName":"Franklin, + Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Franklin, + Wisconsin","Longitude":-88.03116,"Latitude":42.89756},{"LocationName":"Green + Bay, Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Green + Bay, Wisconsin","Longitude":-88.01016,"Latitude":44.5127945},{"LocationName":"Madison, + Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Madison, + Wisconsin","Longitude":-89.38666,"Latitude":43.0729256},{"LocationName":"Milwaukee, + Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Milwaukee, + Wisconsin","Longitude":-87.9068451,"Latitude":43.04181},{"LocationName":"Norwalk, + Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Norwalk, + Wisconsin","Longitude":-90.62201,"Latitude":43.83033},{"LocationName":"Plover, + Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Plover, + Wisconsin","Longitude":-89.54411,"Latitude":44.45425},{"LocationName":"Watertown, + Wisconsin","CountryCode":"United States","CountrySubDivisionCode":"Wisconsin","CityName":"Watertown, + Wisconsin","Longitude":-88.72047,"Latitude":43.1973724},{"LocationName":"Bridgeport, + West Virginia","CountryCode":"United States","CountrySubDivisionCode":"West + Virginia","CityName":"Bridgeport, West Virginia","Longitude":-80.24889,"Latitude":39.2859726},{"LocationName":"Milton, + West Virginia","CountryCode":"United States","CountrySubDivisionCode":"West + Virginia","CityName":"Milton, West Virginia","Longitude":-82.13335,"Latitude":38.4345169},{"LocationName":"Moorefield, + West Virginia","CountryCode":"United States","CountrySubDivisionCode":"West + Virginia","CityName":"Moorefield, West Virginia","Longitude":-78.96894,"Latitude":39.0621452},{"LocationName":"Laramie + County, Wyoming","CountryCode":"United States","CountrySubDivisionCode":"Wyoming","CityName":"Laramie + County, Wyoming","Longitude":-104.6896,"Latitude":41.30707}],"OrganizationName":"Food + Safety and Inspection Service","DepartmentName":"Department of Agriculture","JobCategory":[{"Name":"Veterinary + Medical Science","Code":"0701"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"Please + reference the specific Office of Personnel Management (OPM) qualifications + standards for the 0701 Job Series.BASIC QUALIFICATION REQUIREMENT FOR THE + GS-11 GRADE LEVEL:\nDoctor of Veterinary Medicine (DVM) or equivalent degree, + i.e., Veterinary Medical Doctor (VMD), obtained at a school or college of + veterinary medicine accredited by the American Veterinary Medical Association + Council on Education (AVMA). The AVMA web site has a listing of all AVMA-accredited + veterinary medical schools.\nOR\nGraduates of foreign veterinary medical schools + that are not accredited by the AVMA Council on Education must meet one of + the following requirements and submit supporting documentation: Proof of certification + of their final transcript by the Educational Commission for Foreign Veterinary + Graduates (ECFVG) (Completion of ECFVG program)\nPossession of a permanent, + full, and unrestricted license to practice veterinary medicine in a State, + District of Columbia, the Commonwealth of Puerto Rico, or a territory of the + United States that includes successful completion of the North American Veterinary + Licensing Examination (NAVLE) or its predecessors, the National Board Examination + (NBE) and the Clinical Competency Test (CCT).\nProof that the education obtained + in a foreign veterinary medical program is equivalent to that gained in a + veterinary medical program that is accredited by the American Veterinary Medical + Association Council on Education. Under this provision, equivalency is established + only if an AVMA-accredited veterinary medical school or college accepts the + graduate’s final transcript from the foreign veterinary medical school + at full value for placement into an advanced degree, postgraduate educational + program, or training program (e.g. Residency or graduate program). Graduates + of foreign veterinary medical programs must also submit proof of proficiency + in the English language by successfully completing one of the nationally and + internationally recognized examinations that incorporate assessments of reading, + writing, listening, and speaking skills. Examples of examinations that assess + mastery of the English language are shown below: Test of English as a Foreign + Language (TOEFL) - Minimum scores for the TOEFL are 560 for the paper-based + version; 220 for the computer-based version; or overall score of 83 for the + internet-based version (including 26 or higher in speaking, 26 or higher in + listening, and 17 or higher in writing). For the computer-based and paper-based + test versions, applicants must also complete the Test of Spoken English (TSE) + and the Test of Written English (TWE). Minimum required scores are 55 for + the TSE and 5.5 for the TWE;\nAcademic tests (listening, writing, and speaking) + offered by the International English Language Testing System (IELTS). Applicants + must achieve a minimum overall band score of 7.0, with at least 7.0 in speaking, + 6.5 in listening, and 6.0 in writing; OR\nCanadian Academic English Language + Assessment (CAEL). Applicants must achieve a minimum overall band score of + 70, with at least 60 in speaking, 60 in listening, and 50 in writing. English + language proficiency assessments may also be waived for qualified job applicants + whose native language is English (i.e. the official or common language of + an individual''s country of birth is English) AND they submit a diploma or + other official documentation from the school as proof of graduation from a + high (secondary) school where the entire curriculum and educational programs + of the school are taught in the English language for the entire three or four + years of full-time attendance.\nBASIC QUALIFICATION REQUIREMENT FOR THE GS-12 + GRADE LEVEL - You must meet the basic requirements for the GS-11 grade level + to qualify for positions at the GS-12grade level.Qualification requirements + for the GS-12 grade leveland above are:\n1. EXPERIENCE: Mastery of clinical + medicine (veterinary practice experience); scientific presentations before + professional groups; publication of medical reports in professional journals + or publications; participation in seminars, advisory/working groups, and research + groups; or other related activities that contribute to the advancement of + veterinary medical science are positive indicators of the quality of an applicant''s + experience. However, articles on the care of pets would not be considered + professional publications or qualifying specialized experience.OR2. EDUCATION:Master’s + degree conferred from an accredited college, in an area of specialization; + or successfully completed two years of an internship, Residency program or + fellowship training program in a discipline related to this position. Area + of specialization, including but not limited to, animal science, avian medicine, + food safety, infectious diseases, veterinary clinical sciences, pathobiology, + biomedical sciences, veterinary anatomy, veterinary preventive medicine, comparative + biological sciences, epidemiology, veterinary parasitology, molecular veterinary + biosciences, public health, microbiology, pathology, immunology, laboratory + animal medicine, toxicology, wildlife, zoological animal medicine, or sciences + related to the work of a veterinary medical officer position.","PositionRemuneration":[{"MinimumRange":"61218.0","MaximumRange":"95388.0","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-08-17","PositionEndDate":"2019-08-16","PublicationStartDate":"2018-08-17","ApplicationCloseDate":"2019-08-16","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"11","HighGrade":"12","PromotionPotential":"12","HiringPath":["public"],"AgencyMarketingStatement":"The + Food Safety and Inspection Service (FSIS) is the agency in the U.S. Department + of Agriculture (USDA) responsible for protecting the public''s health by ensuring + the safety of the Nation''s commercial supply of meat, poultry, and processed + egg products.\nUSDA is a great place to start or continue your career.USDA + isranked as one of the top 10 \"Best Places to Work in the Federal Government\" + by the Partnership for Public Service. Rankings are based on employee feedback + regarding satisfaction with their work experience. For more information on + USDA and the Food Safety and Inspection Service, visit FSIS.","TravelCode":"1","ApplyOnlineUrl":"https://fsis.usda.ntis.gov/cp/?event=ros.incomingLinkSSO&jobAudienceTypeID=5F941EFC-6A61-2E29-4CDB-A4704711EC02&audienceTypeCode=EXT","DetailStatusUrl":"https://fsis.usda.ntis.gov/cp/?event=ros.incomingAppStatusLinkSSO&JobID=B8ADAF5D-69BE-4DB7-84EA-A93000DC01C6"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"515181800","MatchedObjectDescriptor":{"PositionID":"FAA-AHF-19-ATSS-59738","PositionTitle":"Airway + Transportation Systems Specialist (Electronics: Radar, Nav Aids or Communication)","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/515181800","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/515181800?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Trenton, + New Jersey","PositionLocation":[{"LocationName":"Trenton, New Jersey","CountryCode":"United + States","CountrySubDivisionCode":"New Jersey","CityName":"Trenton, New Jersey","Longitude":-74.7594,"Latitude":40.2179}],"OrganizationName":"Federal + Aviation Administration","DepartmentName":"Department of Transportation","JobCategory":[{"Name":"Transportation + Specialist","Code":"2101"}],"JobGrade":[{"Code":"FV"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"OPM + Group Coverage Qualification Standard for Administrative and Management Positions + in conjunction with the Individual Occupational Requirements for DOT/FAA Airway + Transportation Systems Specialist, FV-2101 FV-G: TO QUALIFY AT THE FV-G LEVEL + BASED ON SPECIALIZED EXPERIENCE: Applicants must document 1 year of specialized + work experience, equivalent to at least the next lower level, that demonstrates + an extensive knowledge of basic electricity and electronic theory; aptitude + for solving mathematical problems (algebra, trigonometry); knowledge and ability + to use tools, materials, and various types of specialized test equipment for + the maintenance, troubleshooting and repairing electronic equipment/systems + and experience in the technology, system interrelationships, and management + of civilian or military automated aviation, navigation, and electronics systems. + Applicants should include examples of specialized experience in their Work + History. Equivalent combinations of education and experience may be qualifying + for this position. TO QUALIFY AT THE FV-G LEVEL BASED ON EDUCATION: Applicants + must document one of the following:- 1) Ph.D. or equivalent doctoral degree; + OR 2) 3 full years of progressively higher level graduate education leading + to such a degree; OR 3) LL.M.; if related. Schools must be accredited by an + accrediting institution recognized by the U.S. Department of Education. If + qualifying based on education, applicants must submit a copy of the transcript + which includes the name of the institution, quarter or semester hours earned + and/or confer date. Valid Driver’s License is required.Upon successful + completion of training and facility certifications, candidate can be promoted + without further competition to the H band.","PositionRemuneration":[{"MinimumRange":"44524.0","MaximumRange":"69017.0","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-27","PositionEndDate":"2018-11-16","PublicationStartDate":"2018-10-27","ApplicationCloseDate":"2018-11-16","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"G","HighGrade":"G","PromotionPotential":"NA","HiringPath":["public","disability","vet","special-authorities"],"TotalOpenings":"2","AgencyMarketingStatement":"The + Department of Transportation (DOT) is ranked #4 in the 2017 best places to + work in the Federal Government!Thanks to the work of the Federal Aviation + Administration (FAA), over the past 50 years, aviation has become central + to the way we live and do business, linking people from coast to coast and + connecting America to the world. In fact, FAA has created the safest, most + reliable, most efficient, and most productive air transportation system in + the world.","TravelCode":"8","ApplyOnlineUrl":"https://jobs.faa.gov/AVIATOR/Login/apply.aspx","DetailStatusUrl":"https://jobs.faa.gov/AVIATOR/Login/apply.aspx?status=1"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"515190700","MatchedObjectDescriptor":{"PositionID":"HHS-OIG-IN-7/9-10343494","PositionTitle":"Student + Trainee (Program Analyst)","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/515190700","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/515190700?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Multiple + Locations","PositionLocation":[{"LocationName":"Los Angeles, California","CountryCode":"United + States","CountrySubDivisionCode":"California","CityName":"Los Angeles, California","Longitude":-118.245,"Latitude":34.0535},{"LocationName":"San + Francisco, California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"San + Francisco, California","Longitude":-122.4196,"Latitude":37.7771},{"LocationName":"District + of Columbia, District of Columbia","CountryCode":"United States","CountrySubDivisionCode":"District + of Columbia","CityName":"District of Columbia, District of Columbia","Longitude":-77.03196,"Latitude":38.89037},{"LocationName":"Baton + Rouge, Louisiana","CountryCode":"United States","CountrySubDivisionCode":"Louisiana","CityName":"Baton + Rouge, Louisiana","Longitude":-91.1868744,"Latitude":30.44342},{"LocationName":"Trenton, + New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New Jersey","CityName":"Trenton, + New Jersey","Longitude":-74.7594,"Latitude":40.2179},{"LocationName":"Albany, + New York","CountryCode":"United States","CountrySubDivisionCode":"New York","CityName":"Albany, + New York","Longitude":-73.75527,"Latitude":42.6514549},{"LocationName":"New + York, New York","CountryCode":"United States","CountrySubDivisionCode":"New + York","CityName":"New York, New York","Longitude":-74.0071,"Latitude":40.7146},{"LocationName":"San + Juan, Puerto Rico","CountryCode":"United States","CountrySubDivisionCode":"Puerto + Rico","CityName":"San Juan, Puerto Rico","Longitude":-66.1067,"Latitude":18.4662},{"LocationName":"Dallas, + Texas","CountryCode":"United States","CountrySubDivisionCode":"Texas","CityName":"Dallas, + Texas","Longitude":-96.7954,"Latitude":32.7781563}],"OrganizationName":"Office + of Inspector General","DepartmentName":"Department of Health And Human Services","JobCategory":[{"Name":"Administration + And Office Support Student Trainee","Code":"0399"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"NTE + 9/27/2019","Code":"15323"}],"QualificationSummary":"These positions are in + the Office of Audit Services (OAS), in OIG/HHS. OAS examines the performance + of HHS programs and/or HHS grantees and contractors in implementing their + responsibilities and provides independent assessments of HHS programs and + operations. These assessments help reduce waste, abuse, and mismanagement + and promote economy and efficiency throughout HHS. OAS conducts audits using + its own resources and oversees audit work done by others. It conducts its + work in accordance with Government Auditing Standards issued by the Comptroller + General of the United States; the Single Audit Act Amendments of 1996; applicable + Office of Management and Budget circulars; and other legal, regulatory, and + administrative requirements. You must meet all eligibility requirements for + the OIG Internship Program and all qualifications requirements by the closing + date of this announcement. Internship Eligibility Requirements: Individuals + accepted for enrollment (must provide an acceptance letter from the academic + institution on letterhead) or students enrolled (you must provide academic + transcripts) in an accredited high school, college (including 4-year colleges/universities, + community colleges, and junior colleges); professional, technical, vocational, + and trade school; advanced degree programs; or other qualifying educational + institution pursuing a qualifying degree or certificate. Note: You must provide + an unofficial academic transcript that reflects your current enrollment and + a verification of Spring 2019 enrollment. If you have been accepted for enrollment + at a qualifying academic institution, you must submit an acceptance letter + from the academic institution on the institution''s letterhead. For Summer + 2019 or Fall 2019 enrollment, you must provide sufficient proof of acceptance. + Minimum Qualifications To qualify for the GS-07 grade level, the applicant + must have 1 year of graduate level education or superior academic achievement; + OR 1 year of specialized experience at the GS-05 grade level or equivalent + level. Specialized Experience includes conducting program evaluation; experience + requires familiarity with a variety of research methodologies and sources; + and experience conducting quantitative and qualitative analysis of data; OR + Combination of education and specialized experience as described above. *One + year of full-time academic study is defined as 30 semester hours, 45 quarter + hours, or the equivalent in a college or university, or at least 20 hours + of classroom instruction per week for approximately 36 weeks. To determine + if you qualify based on a combination of education and experience, first determine + your education as a percentage (e.g., 30 semester hours divided by 60 equals + 50%); then determine your experience as a percentage (e.g., 6 months general + experience divided by 12 equals 50%); finally, add the two percentages and + if the total equals 100% or more, you qualify (e.g., 50% + 50% = 100%). Note: + Superior Academic Achievement (SAA), may be substituted to meet the specialized + experience requirement. Superior Academic Achievement (SAA) allows applicants + to apply for certain positions at the GS-7 level if they have a Bachelors + degree in a qualifying field of study and they meet one of the following requirements: + class standing (upper 1/3 graduating class), G.P.A. is 3.0 or higher, or if + applicant was a member in a National Scholastic Honor Society. To qualify + for the GS-09 grade level the applicant must have 2 years of progressively + higher level graduate education leading to a master''s degree or master''s + or equivalent graduate degree; OR 1 year of specialized experience at the + GS-07 grade level or equivalent level. Specialized Experience includes conducting + program evaluation; experience requires working knowledge of a variety of + research methodologies and sources; and experience conducting quantitative + and qualitative analysis of data;\nCombination of education and specialized + experience as described above; OR Combination of education and specialized + experience as described above. Experience must be sufficient to demonstrate + that the applicant possesses the knowledge, skills, and abilities required + to perform the work. If you fail to submit sufficient academic documentation + necessary to demonstrate that you meet the eligibility and minimum qualification + requirements described in this announcement, you will be deemed ineligible + for further consideration for this vacancy.","PositionRemuneration":[{"MinimumRange":"19.82","MaximumRange":"29.27","RateIntervalCode":"Per + Hour"}],"PositionStartDate":"2018-10-29","PositionEndDate":"2018-11-02","PublicationStartDate":"2018-10-29","ApplicationCloseDate":"2018-11-02","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"7","HighGrade":"9","PromotionPotential":"None","HiringPath":["student"],"TotalOpenings":"Few","AgencyMarketingStatement":"The + HHS Office of Inspector General (OIG) has been recognized as one of the Federal + Government''s best places to work. HHS OIG ranked in the top 11% of agency + subcomponents (#37 of 339) in the Partnership for Public Service''s \"The + Best Places to Work in the Federal Government\" 2017 ratings. For more information, + see www.bestplacestowork.org.","TravelCode":"0","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"514554600","MatchedObjectDescriptor":{"PositionID":"RCC2020NY-2019-0051","PositionTitle":"Partnership + Specialist GG-0301-09/11/12- Census-EXT-JAB","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/514554600","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/514554600?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Multiple + Locations","PositionLocation":[{"LocationName":"Hunterdon County, New Jersey","CountryCode":"United + States","CountrySubDivisionCode":"New Jersey","CityName":"Hunterdon County, + New Jersey","Longitude":-74.9123,"Latitude":40.5673},{"LocationName":"Somerset + County, New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New + Jersey","CityName":"Somerset County, New Jersey","Longitude":-74.6163,"Latitude":40.5636}],"OrganizationName":"U.S. + Census Bureau","DepartmentName":"Department of Commerce","JobCategory":[{"Name":"Miscellaneous + Administration And Program","Code":"0301"}],"JobGrade":[{"Code":"GG"}],"PositionSchedule":[{"Name":"The + work schedule for this position is Mixed Tour. With a Mixed Tour work schedule, + an employee may be changed between full-time, part-time and intermittent work + schedules to accommodate fluctuating workloads and is subject to a signed + agreement.","Code":"1"}],"PositionOfferingType":[{"Name":"Time Limited Appointment, + initial appointment is not to exceed (NTE) 2 years. This appointment may be + extended 2 additional years at management''s discretion.","Code":"15319"}],"QualificationSummary":"Applicants + are responsible for insuring that the application submitted clearly indicates + that they meet the qualifications listed below. To be eligible for this position, + you must have the specialized experience, education, or a combination as indicated + below.Experience refers to paid and unpaid experience, including volunteer + work done through National Service programs (e.g., Peace Corps, AmeriCorps) + and other organizations (e.g., professional; philanthropic; religious; spiritual; + community, student, social). Volunteer work helps build critical competencies, + knowledge, and skills and can provide valuable training and experience that + translates directly to paid employment. You will receive credit for all qualifying + experience, including volunteer experience.\nIf you are relying on your education + to meet qualification requirements:Education must be accredited by an accrediting + institution recognized by the U.S. Department of Education in order for it + to be credited towards qualifications. Therefore, provide only the attendance + and/or degrees from schools accredited by accrediting institutions recognized + by the U.S. Department of Education.\nGG-0301-09 EXPERIENCE: You must have + one year of specialized experience equivalent to the grade 07 level in the + Federal service. Specialized experience is work experience applying communication + principles, methods, techniques for the development of campaigns OR work experience + in editing technical material for targeted audience OR work experience interacting + and dealing with the public including media, state, and local government officials, + community, businesses, and organization program officers.OREDUCATION: Two + full years of graduate education or master’s degree directly related + to the position that provided knowledge of broadcast journalism; print journalism; + creative writing; public administration; advertising; composition; mass communication + or mass media; public relations techniques; or radio, television, and film + production.GG-0301-11EXPERIENCE: You must have one year of specialized experience + equivalent to the grade 09 level in the Federal service. Specialized experience + is work experience applying analytical techniques and interpersonal relations + in dealing effectively with targeted audience; and analyzing the views and + opinions from organizations and developing recommendations for stimulating + interest in activities.OREDUCATION: Three full years of graduate education + or the Ph.D., directly related to the position that provided the knowledge + of speech communication; broadcast journalism; creative writing; public administration; + advertising; mass communication or mass media; public relations techniques; + or radio, television, and film production.GG-0301-12 EXPERIENCE: You must + have one year of specialized experience equivalent to the grade 11 level in + the Federal service. Specialized experience is work experience conducting + public affairs programs involving public information community relations activities + and seeking cooperation; and presenting information to internal and external + groups to inform them of program objectives and activities; and (2) ability + to present information to the public including media, state, and local government + officials, community businesses, and organization program officers.EDUCATION: + No substitution of education for experience is permitted.","PositionRemuneration":[{"MinimumRange":"57948.0","MaximumRange":"109245.0","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-25","PositionEndDate":"2018-11-07","PublicationStartDate":"2018-10-25","ApplicationCloseDate":"2018-11-07","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"This + is a Work at Home (WAH) position. The Duty Station will be the selectee''s + home address.Selected candidate(s) must reside in one of the followingNew + Jersey Counties:\nHunterdon County (NJ)\nSomerset County (NJ)\nRelocation + will not be paid.","WhoMayApply":{"Name":"","Code":""},"LowGrade":"09","HighGrade":"12","PromotionPotential":"12","HiringPath":["public"],"TotalOpenings":"FEW","AppointmentExplanationText":"Term + appt, NTE 2 yrs","AgencyMarketingStatement":"","TravelCode":"5","ApplyOnlineUrl":"https://careerconnector.jobs.treas.gov/doc/ros/rosDashboard.hms?O=3&J=119563","DetailStatusUrl":"https://careerconnector.jobs.treas.gov/doc/ros/rosDashboard.hms?O=3&J=119563&S=1"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"514578900","MatchedObjectDescriptor":{"PositionID":"RCC2020NY-2019-0069","PositionTitle":"Partnership + Specialist, GG-0301-09/11/12- Census-EXT-SC","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/514578900","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/514578900?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Multiple + Locations","PositionLocation":[{"LocationName":"Middlesex County, New Jersey","CountryCode":"United + States","CountrySubDivisionCode":"New Jersey","CityName":"Middlesex County, + New Jersey","Longitude":-74.409,"Latitude":40.4398},{"LocationName":"Monmouth + County, New Jersey","CountryCode":"United States","CountrySubDivisionCode":"New + Jersey","CityName":"Monmouth County, New Jersey","Longitude":-74.1525,"Latitude":40.2891}],"OrganizationName":"U.S. + Census Bureau","DepartmentName":"Department of Commerce","JobCategory":[{"Name":"Miscellaneous + Administration And Program","Code":"0301"}],"JobGrade":[{"Code":"GG"}],"PositionSchedule":[{"Name":"The + work schedule for this position is Mixed Tour. With a Mixed Tour work schedule, + an employee may be changed between full-time, part-time and intermittent work + schedules to accommodate fluctuating workloads and is subject to a signed + agreement.","Code":"1"}],"PositionOfferingType":[{"Name":"This is a Time Limited + Appointment, initial appointment is not to exceed (NTE) 2 years. This appointment + may be extended at management''s discretion.","Code":"15319"}],"QualificationSummary":"Applicants + are responsible for insuring that the application submitted clearly indicates + that they meet the qualifications listed below. To be eligible for this position, + you must have the specialized experience, education, or a combination as indicated + below.Experience refers to paid and unpaid experience, including volunteer + work done through National Service programs (e.g., Peace Corps, AmeriCorps) + and other organizations (e.g., professional; philanthropic; religious; spiritual; + community, student, social). Volunteer work helps build critical competencies, + knowledge, and skills and can provide valuable training and experience that + translates directly to paid employment. You will receive credit for all qualifying + experience, including volunteer experienceGG-0301-09: EXPERIENCE: You must + have one year of specialized experience equivalent to the grade 07 level in + the Federal service. Specialized experience is work experience applying communication + principles, methods, techniques for the development of campaigns OR work experience + in editing technical material for targeted audience OR work experience interacting + and dealing with the public including media, state, and local government officials, + community, businesses, and organization program officers.OREDUCATION: Two + full years of graduate education or master’s degree directly related + to the position that provided knowledge of broadcast journalism; print journalism; + creative writing; public administration; advertising; composition; mass communication + or mass media; public relations techniques; or radio, television, and film + production.GG-0301-11:EXPERIENCE: You must have one year of specialized experience + equivalent to the grade 09 level in the Federal service. Specialized experience + is work experience applying analytical techniques and interpersonal relations + in dealing effectively with targeted audience; and analyzing the views and + opinions from organizations and developing recommendations for stimulating + interest in activities.OREDUCATION: Three full years of graduate education + or the Ph.D., directly related to the position that provided the knowledge + of speech communication; broadcast journalism; creative writing; public administration; + advertising; mass communication or mass media; public relations techniques; + or radio, television, and film production.GG-0301-12: EXPERIENCE: You must + have one year of specialized experience equivalent to the grade 11 level in + the Federal service. Specialized experience is work experience conducting + public affairs programs involving public information community relations activities + and seeking cooperation; and presenting information to internal and external + groups to inform them of program objectives and activities; and ability to + present information to the public including media, state, and local government + officials, community businesses, and organization program officers.EDUCATION: + No substitution of education for experience is permitted.","PositionRemuneration":[{"MinimumRange":"57948.0","MaximumRange":"109245.0","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-25","PositionEndDate":"2018-11-07","PublicationStartDate":"2018-10-25","ApplicationCloseDate":"2018-11-07","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"This + is a Work at Home (WAH) position. The Duty Station will be the selectee''s + home address.\nIn order to be considered, all applicants must reside in one + of the following New Jerseycounties:Middlesex or Monmouth.\nA trial period + may be required.\nRelocation willNOT be paid.","WhoMayApply":{"Name":"","Code":""},"LowGrade":"09","HighGrade":"12","PromotionPotential":"12","HiringPath":["public"],"TotalOpenings":"FEW","AppointmentExplanationText":"Term + appt, NTE 2 yrs","AgencyMarketingStatement":"","TravelCode":"5","ApplyOnlineUrl":"https://careerconnector.jobs.treas.gov/doc/ros/rosDashboard.hms?O=3&J=119595","DetailStatusUrl":"https://careerconnector.jobs.treas.gov/doc/ros/rosDashboard.hms?O=3&J=119595&S=1"},"IsRadialSearch":false}},"RelevanceRank":0.0}],"UserArea":{"NumberOfPages":"2","IsRadialSearch":true}}}' + http_version: + recorded_at: Tue, 30 Oct 2018 20:22:56 GMT +recorded_with: VCR 4.0.0 diff --git a/spec/vcr_cassettes/jobs/search_options_.yml b/spec/vcr_cassettes/jobs/search_options_.yml new file mode 100644 index 0000000000..fbb3b75d8f --- /dev/null +++ b/spec/vcr_cassettes/jobs/search_options_.yml @@ -0,0 +1,562 @@ +--- +http_interactions: +- request: + method: get + uri: https://data.usajobs.gov/api/search?Keyword=jobs + body: + encoding: US-ASCII + string: '' + headers: + Authorization-Key: + - "" + User-Agent: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Connection: + - keep-alive + Keep-Alive: + - '30' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/hr+json + Expires: + - "-1" + Server: + - Microsoft-IIS/10.0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Vary: + - Accept-Encoding + Date: + - Wed, 31 Oct 2018 01:43:02 GMT + Transfer-Encoding: + - chunked + Connection: + - Transfer-Encoding + - keep-alive + Set-Cookie: + - akavpau_DATA_USAJ=1540950482~id=e88f65f618aa454884b8d4ac2dd7444a; Domain=data.usajobs.gov; + Path=/; Secure + body: + encoding: UTF-8 + string: '{"LanguageCode":"EN","SearchParameters":{},"SearchResult":{"SearchResultCount":10,"SearchResultCountAll":757,"SearchResultItems":[{"MatchedObjectId":"510075500","MatchedObjectDescriptor":{"PositionID":"VA-18-15717","PositionTitle":"Banquet + Wait Staff","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/510075500","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/510075500?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Naval + Shipyard, Portsmouth, Virginia","PositionLocation":[{"LocationName":"Naval + Shipyard, Portsmouth, Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Naval + Shipyard, Portsmouth, Virginia","Longitude":-76.29812,"Latitude":36.8030968}],"OrganizationName":"Commander, + Navy Installations","DepartmentName":"Department of the Navy","JobCategory":[{"Name":"Waiter","Code":"7420"}],"JobGrade":[{"Code":"NA"}],"PositionSchedule":[{"Name":"Flexible","Code":"4"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"Specialized + experience must demonstrate the following: Must possess working knowledge + of sanitation practices and procedures. Knowledge of proper food handling + techniques such as the correct sides to serve and remove from. A minimum of + six months experience is strongly preferred. You will receive credit for all + qualifying experience, including volunteer and part time experience. You must + clearly identify the duties and responsibilities in each position held and + the total number of hours per week. Experience refers to paid and unpaid experience, + including volunteer work done through National Service programs (e.g., professional, + philanthropic, religious, spiritual, community, student, social). Volunteer + work helps build critical competencies, knowledge, and skills and can provide + valuable training and experience that translates directly to paid employment. + As part of the application process, you must complete and submit an occupational + questionnaire. Please follow all instructions carefully. Errors or omissions + may affect your rating and/or appointment eligibility. Work is primarily performed + indoors in a club/bar setting with adequate air conditioning, heating, and + lighting. Occasionally, work may be performed outdoors with exposure to a + variety of weather conditions. This positon is subject to prolonged standing, + walking, talking, bending, reaching, stooping and lifting of heavy trays or + objects weighing less than 45 pounds without assistance. May be exposed to + loud music, cigarette smoke, “rough” language, wet, slippery floors, + cuts, burns and bruises. As a condition of employment, the employee must be + able to obtain a Health Card prior to first day of work. Afterwards, must + be able to successfully pass a Food Handlers Sanitation course, thereafter + to be updated and maintained annually. Additionally, the employee must successfully + complete an annual CARE/TIPS training course. A valid driver’s license + is strongly preferred, as travel to and from club facilities may be required + in the performance of duties. This position is subject to an irregular tour, + which includes nights, weekends and/or holiday work to cover all operational + hours and special events.","PositionRemuneration":[{"MinimumRange":"8.13","MaximumRange":"8.13","RateIntervalCode":"Per + Hour"}],"PositionStartDate":"2018-09-06","PositionEndDate":"2018-11-06","PublicationStartDate":"2018-09-06","ApplicationCloseDate":"2018-11-06","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"1","HighGrade":"1","PromotionPotential":"01","HiringPath":["public"],"AgencyMarketingStatement":"Advertisement: + Discover MWR, USA JOBS, CNIC HQ","TravelCode":"0","ApplyOnlineUrl":"https://fhrnavigator.com/usajobs/apply"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"510077700","MatchedObjectDescriptor":{"PositionID":"CBCW-10302940-FY18-SB","PositionTitle":"Psychologist","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/510077700","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/510077700?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Multiple + Locations","PositionLocation":[{"LocationName":"Danville, Illinois","CountryCode":"United + States","CountrySubDivisionCode":"Illinois","CityName":"Danville, Illinois","Longitude":-87.63043,"Latitude":40.1594658},{"LocationName":"Springfield, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Springfield, + Illinois","Longitude":-89.64361,"Latitude":39.8010559}],"OrganizationName":"Veterans + Affairs, Veterans Health Administration","DepartmentName":"Department of Veterans + Affairs","JobCategory":[{"Name":"Psychology","Code":"0180"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"Basic + Requirements:\nUnited States Citizenship - Non-citizens may only be appointed + when it is not possible to recruit qualified citizens in accordance with VA + Policy.\nEnglish Language Proficiency Requirement - Per VA Handbook 5005, + Part II, Chapter 3, Section A, Paragraph 3j: No person will be appointed under + authority of 38 U.S.C., chapter 73 or 74, to serve in a direct patient-care + capacity in VHA who is not proficient in written and spoken English.\nEducation + Requirement - You must have a doctoral degree in psychology from a graduate + program in psychology accredited by the American Psychological Association + (APA), the Psychological Clinical Science Accreditation System (PCSAS), or + the Canadian Psychological Association (CPA) at the time the program was completed. + The specialty area of the degree must be consistent with the assignment for + which the applicant is to be employed. OR, have a doctoral degree in any area + of psychology and, in addition, successfully completed a respecialization + program meeting both of the following conditions: a) the respecialization + program must be completed in an APA or a CPA accredited doctoral program; + and b) the specialty in which you were retrained is consistent with the assignment + you are am applying for; OR, have a doctoral degree awarded between 1951 and + 1978 from a regionally-accredited institution, with a dissertation primarily + psychological in nature.\nInternship Requirement - You must have successfully + completed a professional psychology internship training program that was accredited + by APA or CPA at the time the program was completed and that is consistent + with the assignment for which the applicant is to be employed; OR, New VHA + psychology internship programs that are in the process of applying for APA + accreditation are acceptable in fulfillment of the internship requirement, + provided that such programs were sanctioned by the VHA Central Office Program + Director for Psychology and the VHA Office of Academic Affiliations at the + time that the individual was an intern; OR, VHA facilities that offered full-time, + one-year pre-doctoral internships prior to PL 96-151 (pre-1979) are considered + to be acceptable in fulfillment of the internship requirement; OR, Applicants + who completed an internship that was not accredited by APA or CPA at the time + the program was completed may be considered eligible for hire only if they + are currently board certified by the American Board of Professional Psychology + in a specialty area that is consistent with the assignment for which the applicant + is to be employed. (NOTE: Once board certified, the employee is required to + maintain board certification). NOTE: Applicants who have a doctoral degree + awarded between 1951 and 1978 from a regionally-accredited institution with + a dissertation primarily psychological in nature may fulfill this internship + requirement by having the equivalent of a one-year supervised internship experience + in a site specifically acceptable to the candidate''s doctoral program. If + the internship experience is not noted on the applicant''s official transcript, + the applicant must provide a statement from the doctoral program verifying + that the equivalent of a one-year supervised internship experience was completed + in a site acceptable to the doctoral program.\nLicensure: Candidates must + hold a full, current, and unrestricted license to practice psychology at the + doctoral level in a State, Territory or Commonwealth of the United States, + or the District of Columbia. Exception: Non-licensed applicants who otherwise + meet the eligibility requirements may be given a temporary appointment as + a \"graduate psychologist\" at the GS-11 or GS-12 grade under the authority + of 38 U.S.C. 7405 (c)(2)(B) for a period not to exceed two years from the + date of employment on the condition that such a psychologist provide care + only under the supervision of a psychologist who is licensed. Failure to obtain + licensure during that period is justification for termination of the temporary + appointment.\nExperience: In additional to meeting the basic requirements + as stated above, you must have the following: GS-11 Level: no additional experience + beyond the basic requirement\nGS-12 Level: at least 1 full year of experience + as a professional psychologist equivalent to the GS-11 level, and are able + to demonstrate the following knowledge, skills and abilities: Knowledge of + and ability to apply a wide range of professional psychological treatments + or assessment methods to a variety of patient populations. Ability to design + and implement effective treatment strategies. Ability to incorporate new clinical + procedures. Ability to conduct research activities, such as designing and + implementing clinical research projects (staff psychologists with specified + research job duties). Ability to perform basic research tasks of scholarship + and research execution within the context of an established research team, + including research participant relations, research documentation, data acquisition, + maintenance, and collaboration. GS-13 Level: at least 2 addition years of + experience, with at least one year equivalent to the GS-12 level, as a professional + psychologist that was obtained through employment as a psychologist or through + participating in a supervised post-doctoral psychology training program that + demonstrates 1) active professional practice that was paid/non-paid employment + and/or 2) a full, current and unrestricted license. To be creditable, the + experience must have required the use of knowledge, skills, abilities and + other characteristics associated with current psychology practice: Knowledge + of, and ability to apply, professional psychological treatments to a full + range of patient populations. Ability to provide professional advice and consultation + in areas related to professional psychology and behavioral health. Knowledge + of clinical research literature.*Experience is only creditable if it is post-doctoral + degree experience as a professional psychologist directly related to the duties + performed. Preferred Experience: Experience as a Psychologist in a clinical + setting. Reference: VA Regulations, specifically VA Handbook 5005, Part II, + Appendix G18 Psychologist Qualification Standard. This can be found in the + local Human Resources Office. Physical Requirements: This position requires + minimal physical exertion, light lifting (under 15 lbs), light carrying (under + 15 lbs.), working closely with others and working alone. The employee works + mostly from a seated position, conducting psychological assessments and providing + psychotherapeutic services for patients. The employee will use a computer + to access the medical record for entry and retrieval of information. The employee + will need to be able to hear conversational speech. hearing aid permitted. + The employee will be expected to move around the patient care environment.","PositionRemuneration":[{"MinimumRange":"61218.00","MaximumRange":"113428.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-09-06","PositionEndDate":"2018-10-31","PublicationStartDate":"2018-09-06","ApplicationCloseDate":"2018-10-31","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"11","HighGrade":"13","PromotionPotential":"13","HiringPath":["public"],"TotalOpenings":"5","AgencyMarketingStatement":"Learn + more about what it''s like to work at Veterans Affairs, Veterans Health Administration, + what the agency does, and about the types of careers this agency offers.https://www.va.gov/jobs//","TravelCode":"0","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"512261500","MatchedObjectDescriptor":{"PositionID":"Legal + Intern-18-SMF","PositionTitle":"Legal Affairs Internship","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/512261500","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/512261500?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Washington + DC, District of Columbia","PositionLocation":[{"LocationName":"Washington + DC, District of Columbia","CountryCode":"United States","CountrySubDivisionCode":"District + of Columbia","CityName":"Washington DC, District of Columbia","Longitude":-77.0213852,"Latitude":38.95269}],"OrganizationName":"Overseas + Private Investment Corporation","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"Legal Occupations Student Trainee","Code":"0999"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Multiple + Schedules","Code":"6"}],"PositionOfferingType":[{"Name":"Internships","Code":"15328"}],"QualificationSummary":"Applicants + must be U.S. citizens enrolled in an accredited law school with a cumulative + GPA of 3.0 or higher, and remain enrolled during the term of the internship. + Successful completion of a background investigation is also required.","PositionRemuneration":[{"MinimumRange":"0.00","MaximumRange":"0.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-03","PositionEndDate":"2019-04-26","PublicationStartDate":"2018-10-03","ApplicationCloseDate":"2019-04-26","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"00","HighGrade":"00","PromotionPotential":"None","HiringPath":["student"],"TotalOpenings":"Many","AgencyMarketingStatement":"Become + part of the Overseas Private Investment Corporation (OPIC), ranked fifth among + small agencies in the Best Places to Work in the Federal Government! OPIC + mobilizes foreign capital to help solve critical development challenges and + in doing so, advances U.S. foreign policy and national security priorities. + Because OPIC works with the U.S. private sector, it helps U.S. businesses + gain footholds in emerging markets, catalyzing revenues, jobs and growth opportunities + both at home and abroad.","TravelCode":"0"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"513746700","MatchedObjectDescriptor":{"PositionID":"18-384-SH-DEU","PositionTitle":"Loan + Specialist (Commercial)","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/513746700","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/513746700?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Citrus + Heights, California","PositionLocation":[{"LocationName":"Citrus Heights, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Citrus + Heights, California","Longitude":-121.272,"Latitude":38.6978}],"OrganizationName":"Small + Business Administration","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"Loan Specialist","Code":"1165"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"GS-12: + One year of specialized experience, equivalent to the GS-11 grade level in + the Federal service, obtained in either the private or public sector: as a + loan processor, underwriter, financial analyst, portfolio manager, or other + like position with responsibility for making repayment and other eligibility + determinations about the loan application package; utilizing automated systems + including the data entry, tracking and processing of loan applications with + attendant documents such as credit reports, appraisals, business valuations, + environmental reviews or franchise agreements pertaining to a commercial loan. + These qualifications must be clearly referenced in your resume. Additional + information on the qualification requirements is outlined in the OPM Qualifications + Standards Handbook of General Schedule Positions. It is available for your + review on OPM''s Qualifications web site. Experience refers to paid and unpaid + experience, including volunteer work done through National Service programs + (e.g. Peace Corps, AmeriCorps) and other organizations (e.g. professional; + philanthropic; religious; spiritual; community, student, social). Volunteer + work helps build critical competencies, knowledge, and skills and can provide + valuable training and experience that translates directly to paid employment. + You will receive credit for all qualifying experience, including volunteer + experience. All qualification requirements must be met by 11:59 pm (Eastern + Time) on the closing date of this vacancy announcement.","PositionRemuneration":[{"MinimumRange":"79411.00","MaximumRange":"103234.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-24","PositionEndDate":"2018-10-30","PublicationStartDate":"2018-10-24","ApplicationCloseDate":"2018-10-30","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"12","HighGrade":"12","PromotionPotential":"12","HiringPath":["public"],"TotalOpenings":"2","AgencyMarketingStatement":"Are + you excited by the idea of helping to support $39 billion in small business + financing and setting proper conditions to stimulate America''s economic growth? + SBA has been a leader in small business development for more than 60 years. + In an increasingly globalized economy, we tackle challenges confronted by + the small business community across geographic boundaries. Although times + have changed since the SBA was founded in 1953, the Agency''s mission-to promote + the growth of small business-has not. Today, SBA is more vital than ever. + We work in collaboration with partner organizations and using cutting-edge + technologies and well-tested best practices to multiply our impact on small + businesses. America''s 28 million small businesses are the engine of job creation + and economic growth in this country, creating nearly two out of every three + new jobs in the United States and employing over half the nation''s workforce. + SBA ensures that these businesses have the tools and resources required to + start and expand their operations, and create jobs that support a growing + economy and strengthen America''s middle class. The SBA and entrepreneurs + drive American competitiveness and help grow the economy. Picture yourself + at SBA.","TravelCode":"1","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"514368500","MatchedObjectDescriptor":{"PositionID":"DE-19-003-HQ-10332434","PositionTitle":"Administrative + Officer","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/514368500","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/514368500?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"District + of Columbia, District of Columbia","PositionLocation":[{"LocationName":"District + of Columbia, District of Columbia","CountryCode":"United States","CountrySubDivisionCode":"District + of Columbia","CityName":"District of Columbia, District of Columbia","Longitude":-77.03196,"Latitude":38.89037}],"OrganizationName":"Small + Business Administration","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"Administrative Officer","Code":"0341"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Cadre--See + definition under Important Notes","Code":"15327"}],"QualificationSummary":"Generally, + time in Non-Pay status is not creditable towards the specialized experience + requirement listed below.\nYou must meet all qualification requirements by + the closing date of this announcement. Experience: To receive credit, you + must indicate the month and year as well as the average hours worked per week + for each employer. Average work hours must be stated on the resume to quantify + each period of work experience or that experience will not be credited toward + meeting the specialized experience requirement.\nYou must address the specific + specialized experience required for each grade level of this position on your + resume or application or you will be rated \"Ineligible\" for that grade level. + GS-13: To qualify you must have at least 1 full year (52 weeks) of specialized + experience equivalent in difficulty and complexity to the GS-12 level in the + Federal service that has equipped you with the particular knowledge, skill, + and ability to perform successfully in this position. This experience may + have been gained in a Non-Federal service position. In addition, this Specialized + Experience must demonstrate the following: *Overseeing, managing, or directing + the day-to-day administrative functions of an organization to meet program + goals in the areas of payroll/budget, travel. and accountability property/procurement.\n* + Gathering and analyzing pertinent administrative data for various administrative + support functions, such as payroll, budget, travel, records management, accountable + property and procurement;\n* Interpreting and applying Federal Acquisition + Regulations (FAR) and Federal Travel Regulations (FTR); and\n*Communicating + orally and in writing to various levels of internal and external customers + to accomplish program goals GS-14: To qualify you must have at least 1 full + year (52 weeks) of specialized experience equivalent in difficulty and complexity + to the GS-13 level in the Federal service that has equipped you with the particular + knowledge, skill, and ability to perform successfully in this position. This + experience may have been gained in a Non-Federal service position. In addition, + this Specialized Experience must demonstrate the following: *Overseeing, managing, + or directing the day-to-day administrative functions of an organization to + meet program goals in the areas of payroll/budget, travel. and accountability + property/procurement.\n* Gathering and analyzing pertinent administrative + data and recommending improvements for various administrative support functions, + such as payroll, budget, travel, records management, accountable property + and procurement;\n* Interpreting and applying Federal Acquisition Regulations + (FAR) and Federal Travel Regulations (FTR);\n*Communicating orally and in + writing to various levels of internal and external customers to accomplish + program goals; and\n* Leading or supervising employees or projects.","PositionRemuneration":[{"MinimumRange":"96970.00","MaximumRange":"148967.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-19","PositionEndDate":"2018-11-02","PublicationStartDate":"2018-10-19","ApplicationCloseDate":"2018-11-02","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"13","HighGrade":"14","PromotionPotential":"14","HiringPath":["public"],"AgencyMarketingStatement":"Are + you excited by the idea of helping to support $39 billion in small business + financing and setting proper conditions to stimulate America''s economic growth? + SBA has been a leader in small business development for more than 60 years. + In an increasingly globalized economy, we tackle challenges confronted by + the small business community across geographic boundaries. Although times + have changed since the SBA was founded in 1953, the Agency''s mission - to + promote the growth of small business - has not. Today, SBA is more vital than + ever. We work in collaboration with partner organizations and use cutting-edge + technologies and well-tested best practices to multiply our impact on small + businesses. America''s 28 million small businesses are the engine of job creation + and economic growth in this country, creating nearly two out of every three + new jobs in the United States and employing over half the nation''s workforce. + SBA ensures that these businesses have the tools and resources required to + start and expand their operations, and create jobs that support a growing + economy and strengthen America''s middle class.","TravelCode":"1","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"514440600","MatchedObjectDescriptor":{"PositionID":"19-006-CS-DEU","PositionTitle":"Lender + Relations Specialist","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/514440600","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/514440600?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Wichita, + Kansas","PositionLocation":[{"LocationName":"Wichita, Kansas","CountryCode":"United + States","CountrySubDivisionCode":"Kansas","CityName":"Wichita, Kansas","Longitude":-97.33558,"Latitude":37.68698}],"OrganizationName":"Small + Business Administration","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"General Business And Industry","Code":"1101"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"GS-11: + One year of specialized experience, equivalent to the GS-09 grade level in + the Federal service, obtained in either the private or public sector performing + the following duties with minimal supervision: assisting in commercial or + business loan proposal development, packaging, and structuring; and assisting + with marketing lending programs and services to external customers through + outreach activities; and assisting with conducting formal training or professional + development; commercial lending experience; and assisting with the growth + and development of a customer base; and using a variety of software applications + and technologies in all aspects of the job. These qualifications must be clearly + referenced in your resume. GS-12: One year of specialized experience, equivalent + to the GS-11 grade level in the Federal service, obtained in either the private + or public sector performing the following duties independently: commercial + or business loan proposal development, packaging, and structuring; and marketing + lending programs and services to external customers through outreach activities; + and conducting formal training or professional development; and in the growth + and development of a customer base; commercial lending experience; and using + a variety of software applications and technologies in all aspects of the + job. These qualifications must be clearly referenced in your resume.\nAdditional + information on the qualification requirements is outlined in the OPM Qualifications + Standards Handbook of General Schedule Positions. It is available for your + review on OPM''s Qualifications web site. Experience refers to paid and unpaid + experience, including volunteer work done through National Service programs + (e.g. Peace Corps, AmeriCorps) and other organizations (e.g. professional; + philanthropic; religious; spiritual; community, student, social). Volunteer + work helps build critical competencies, knowledge, and skills and can provide + valuable training and experience that translates directly to paid employment. + You will receive credit for all qualifying experience, including volunteer + experience. All qualification requirements must be met by 11:59 pm (Eastern + Time) on the closing date of this vacancy announcement.","PositionRemuneration":[{"MinimumRange":"61218.00","MaximumRange":"95388.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-19","PositionEndDate":"2018-11-02","PublicationStartDate":"2018-10-19","ApplicationCloseDate":"2018-11-02","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"11","HighGrade":"12","PromotionPotential":"12","HiringPath":["public"],"TotalOpenings":"1","AgencyMarketingStatement":"Are + you excited by the idea of helping to support $39 billion in small business + financing and setting proper conditions to stimulate America''s economic growth? + SBA has been a leader in small business development for more than 60 years. + In an increasingly globalized economy, we tackle challenges confronted by + the small business community across geographic boundaries. Although times + have changed since the SBA was founded in 1953, the Agency''s mission-to promote + the growth of small business-has not. Today, SBA is more vital than ever. + We work in collaboration with partner organizations and using cutting-edge + technologies and well-tested best practices to multiply our impact on small + businesses. America''s 28 million small businesses are the engine of job creation + and economic growth in this country, creating nearly two out of every three + new jobs in the United States and employing over half the nation''s workforce. + SBA ensures that these businesses have the tools and resources required to + start and expand their operations, and create jobs that support a growing + economy and strengthen America''s middle class. The SBA and entrepreneurs + drive American competitiveness and help grow the economy. Picture yourself + at SBA.","TravelCode":"2","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"514446500","MatchedObjectDescriptor":{"PositionID":"DE-10338309-19-MLJ","PositionTitle":"Student + Trainee (Investigations)","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/514446500","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/514446500?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Houston, + Texas","PositionLocation":[{"LocationName":"Houston, Texas","CountryCode":"United + States","CountrySubDivisionCode":"Texas","CityName":"Houston, Texas","Longitude":-95.36978,"Latitude":29.76045}],"OrganizationName":"Small + Business Administration","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"Investigation Student Trainee","Code":"1899"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"One + year","Code":"15318"}],"QualificationSummary":"GS-1899-03: Completion of 1 + full academic year of post-high school study OR Successful completion of the + requirements for an Associate''s degree (please verify by attaching a copy + of your transcripts). GS-1899-04: Completion of 2 academic years of post-high + school study OR Successful completion of the requirements for an Associate''s + degree (please verify by attaching a copy of your college transcripts). Academic + year of undergraduate education (post-high school study): A minimum of 30 + semester or 45 quarter hours at an accredited college or university; or\nA + minimum of 36 weeks at an accredited business, technical, vocational, or qualifying + educational institution for at least 20 classroom hours per week. Additional + information on the qualification requirements is outlined in the OPM Qualifications + Standards Handbook of General Schedule Positions. It is available for your + review on OPM''s Qualifications web site. All qualification requirements must + be met by 11:59 pm (Eastern Time) on the closing date of this vacancy announcement.","PositionRemuneration":[{"MinimumRange":"30359.00","MaximumRange":"44303.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-19","PositionEndDate":"2018-11-02","PublicationStartDate":"2018-10-19","ApplicationCloseDate":"2018-11-02","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"3","HighGrade":"4","PromotionPotential":"None","HiringPath":["student"],"TotalOpenings":"1","AgencyMarketingStatement":"Are + you excited by the idea of helping to support $39 billion in small business + financing and setting proper conditions to stimulate America''s economic growth? + SBA has been a leader in small business development for more than 60 years. + In an increasingly globalized economy, we tackle challenges confronted by + the small business community across geographic boundaries. Although times + have changed since the SBA was founded in 1953, the Agency''s mission-to promote + the growth of small business-has not. Today, SBA is more vital than ever. + We work in collaboration with partner organizations and using cutting-edge + technologies and well-tested best practices to multiply our impact on small + businesses. America''s 28 million small businesses are the engine of job creation + and economic growth in this country, creating nearly two out of every three + new jobs in the United States and employing over half the nation''s workforce. + SBA ensures that these businesses have the tools and resources required to + start and expand their operations, and create jobs that support a growing + economy and strengthen America''s middle class. The SBA and entrepreneurs + drive American competitiveness and help grow the economy. Picture yourself + at SBA.","TravelCode":"0","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"514452800","MatchedObjectDescriptor":{"PositionID":"DE-019-004-HQ-10336385","PositionTitle":"Supervisory + Public Affairs Specialist","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/514452800","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/514452800?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Washington + DC, District of Columbia","PositionLocation":[{"LocationName":"Washington + DC, District of Columbia","CountryCode":"United States","CountrySubDivisionCode":"District + of Columbia","CityName":"Washington DC, District of Columbia","Longitude":-77.032,"Latitude":38.8904}],"OrganizationName":"Small + Business Administration","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"Public Affairs","Code":"1035"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"Generally, + time in Non-Pay status is not creditable towards the specialized experience + requirement listed below.\nYou must meet all qualification requirements by + the closing date of this announcement. Experience: To receive credit, you + must indicate the month and year as well as the average hours worked per week + for each employer. Average work hours must be stated on the resume to quantify + each period of work experience or that experience will not be credited toward + meeting the specialized experience requirement.\nYou must address the specific + specialized experience required for each grade level of this position on your + resume or application or you will be rated \"Ineligible\" for that grade level. + GS-15: To qualify you must have at least 1 full year (52 weeks) of specialized + experience equivalent in difficulty and complexity to the GS-14 level in the + Federal service that has equipped you with the particular knowledge, skill, + and ability to perform successfully in this position. This experience may + have been gained in a Non-Federal service position. In addition, this Specialized + Experience must demonstrate the following: *Leading or supervising employees + or projects in a disaster or emergency relief organization/program. (This + experience must involve activities pertaining to planning, socializing, and + maintaining preparedness for disasters or emergencies.)\n*Performing outreach + and coordination activities involving multiple agencies or organizations.\n*Reviewing/approving + or preparing press or news releases, speeches or talking points, and feature + and photo material for the media or public appearances; and\n*Acting as the + spokesperson for an organization or program.\n*Evaluating a program to identify + strengths, monitor progress, and make recommendations for improvement","PositionRemuneration":[{"MinimumRange":"134789.00","MaximumRange":"164200.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-19","PositionEndDate":"2018-11-02","PublicationStartDate":"2018-10-19","ApplicationCloseDate":"2018-11-02","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"15","HighGrade":"15","PromotionPotential":"15","HiringPath":["public"],"AgencyMarketingStatement":"Are + you excited by the idea of helping to support $39 billion in small business + financing and setting proper conditions to stimulate America''s economic growth? + SBA has been a leader in small business development for more than 60 years. + In an increasingly globalized economy, we tackle challenges confronted by + the small business community across geographic boundaries. Although times + have changed since the SBA was founded in 1953, the Agency''s mission - to + promote the growth of small business - has not. Today, SBA is more vital than + ever. We work in collaboration with partner organizations and use cutting-edge + technologies and well-tested best practices to multiply our impact on small + businesses. America''s 28 million small businesses are the engine of job creation + and economic growth in this country, creating nearly two out of every three + new jobs in the United States and employing over half the nation''s workforce. + SBA ensures that these businesses have the tools and resources required to + start and expand their operations, and create jobs that support a growing + economy and strengthen America''s middle class.","TravelCode":"1","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"514603500","MatchedObjectDescriptor":{"PositionID":"18-388D-LAC-DEU + (10339547)","PositionTitle":"Program Analyst","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/514603500","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/514603500?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Washington + DC, District of Columbia","PositionLocation":[{"LocationName":"Washington + DC, District of Columbia","CountryCode":"United States","CountrySubDivisionCode":"District + of Columbia","CityName":"Washington DC, District of Columbia","Longitude":-77.032,"Latitude":38.8904}],"OrganizationName":"Small + Business Administration","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"Management And Program Analysis","Code":"0343"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"MINIMUM + QUALIFICATIONS: To be considered minimally qualified for this position, you + must demonstrate that you have the required specialized experience and/or + education for the respective grade level in which you are applying. This experience + must be clearly articulated in your resume. GS-09: Specialized Experience: + One year of specialized experience (equivalent to the GS-7 grade level in + the Federal service) obtained in either the private or public sector that + includes: assisting in reading and writing SQL queries for assigned program + areas; AND assisting in manipulating large data sets, using data analytic + tools and reporting applications such as relational databases, MS Access and + MS Excel (to include Excel Pivot Tables), Tableau, SharePoint, Microsoft Reporting + Services; AND assisting in designing or developing reporting and dashboards + to be used for research in the examination of program office related activities; + AND evaluating, analyzing or financial interpreting data from various database + systems to determine program effectiveness. OR Education: Successful completion + of at least a Master''s or equivalent graduate degree or (2) full years of + progressively higher level graduate education leading to such a degree in + a field which demonstrates the knowledge, skills, and abilities necessary + to do the work of the position or LL.B. or J.D. , if related. You must include + transcripts. OR Combination of Education and Experience: A combination of + education and experience may be used to qualify for this position. To combine + education and experience, first divide your semester hours of graduate education + beyond 18 semester hours by 18. (If your education is currently described + in quarter hours, convert them to semester hours by dividing by 1.5). Then + divide your total months of qualifying specialized experience by 12. Finally, + add the two percentages together. The total percentage must equal at least + 100 percent to qualify. You must include transcripts. Additional information + on the qualification requirements is outlined in the OPM Qualifications Standards + Handbook of General Schedule Positions. It is available for your review on + OPM''s Qualifications web site. Experience refers to paid and unpaid experience, + including volunteer work done through National Service programs (e.g. Peace + Corps, AmeriCorps) and other organizations (e.g. professional; philanthropic; + religious; spiritual; community, student, social). Volunteer work helps build + critical competencies, knowledge, and skills and can provide valuable training + and experience that translates directly to paid employment. You will receive + credit for all qualifying experience, including volunteer experience. All + qualification requirements must be met by 11:59 pm (Eastern Time) on the closing + date of this vacancy announcement.","PositionRemuneration":[{"MinimumRange":"56233.00","MaximumRange":"106012.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-24","PositionEndDate":"2018-11-06","PublicationStartDate":"2018-10-24","ApplicationCloseDate":"2018-11-06","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"9","HighGrade":"9","PromotionPotential":"12","HiringPath":["public"],"TotalOpenings":"1","AgencyMarketingStatement":"Are + you excited by the idea of helping to support $39 billion in small business + financing and setting proper conditions to stimulate America''s economic growth? + SBA has been a leader in small business development for more than 60 years. + In an increasingly globalized economy, we tackle challenges confronted by + the small business community across geographic boundaries. Although times + have changed since the SBA was founded in 1953, the Agency''s mission-to promote + the growth of small business-has not. Today, SBA is more vital than ever. + We work in collaboration with partner organizations and using cutting-edge + technologies and well-tested best practices to multiply our impact on small + businesses. America''s 28 million small businesses are the engine of job creation + and economic growth in this country, creating nearly two out of every three + new jobs in the United States and employing over half the nation''s workforce. + SBA ensures that these businesses have the tools and resources required to + start and expand their operations, and create jobs that support a growing + economy and strengthen America''s middle class. The SBA and entrepreneurs + drive American competitiveness and help grow the economy. Picture yourself + at SBA.","TravelCode":"1","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"515174200","MatchedObjectDescriptor":{"PositionID":"19-014-CL-DEU","PositionTitle":"General + Attorney","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/515174200","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/515174200?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Hato + Rey, Puerto Rico","PositionLocation":[{"LocationName":"Hato Rey, Puerto Rico","CountryCode":"United + States","CountrySubDivisionCode":"Puerto Rico","CityName":"Hato Rey, Puerto + Rico","Longitude":-66.05612,"Latitude":18.42488}],"OrganizationName":"Small + Business Administration","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"Attorney","Code":"0905"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"GS-13: + Four or more years of professional legal experience, equivalent to the GS-12 + grade level in the Federal service, obtained in either the private or public + sector in one or more of the following area: government-guaranteed lending, + banking and financial law, litigation and bankruptcy and real estate law and + closings, administrative law and ethics. Additional information on the qualification + requirements is outlined in the OPM Qualifications Standards Handbook of General + Schedule Positions. It is available for your review on OPM''s Qualifications + web site. Experience refers to paid and unpaid experience, including volunteer + work done through National Service programs (e.g. Peace Corps, AmeriCorps) + and other organizations (e.g. professional; philanthropic; religious; spiritual; + community, student, social). Volunteer work helps build critical competencies, + knowledge, and skills and can provide valuable training and experience that + translates directly to paid employment. You will receive credit for all qualifying + experience, including volunteer experience. Selective Placement Factors: This + position requires a special qualification that has been determined to be essential + to perform the duties and will be used as a screen out element. Those who + do not provide evidence they possess the following selective factor(s) will + be rated not qualified. Active member of the Federal bar\nAdmitted to the + Bar of the U.S. District Court for the District of Puerto Rico\nObtained notarial + license for Puerto Rico All qualification requirements must be met by 11:59 + pm (Eastern Time) on the closing date of this vacancy announcement.","PositionRemuneration":[{"MinimumRange":"87252.00","MaximumRange":"113428.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-29","PositionEndDate":"2018-11-09","PublicationStartDate":"2018-10-29","ApplicationCloseDate":"2018-11-09","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"13","HighGrade":"13","PromotionPotential":"13","HiringPath":["public"],"TotalOpenings":"1","AgencyMarketingStatement":"Are + you excited by the idea of helping to support $39 billion in small business + financing and setting proper conditions to stimulate America''s economic growth? + SBA has been a leader in small business development for more than 60 years. + In an increasingly globalized economy, we tackle challenges confronted by + the small business community across geographic boundaries. Although times + have changed since the SBA was founded in 1953, the Agency''s mission-to promote + the growth of small business-has not. Today, SBA is more vital than ever. + We work in collaboration with partner organizations and using cutting-edge + technologies and well-tested best practices to multiply our impact on small + businesses. America''s 28 million small businesses are the engine of job creation + and economic growth in this country, creating nearly two out of every three + new jobs in the United States and employing over half the nation''s workforce. + SBA ensures that these businesses have the tools and resources required to + start and expand their operations, and create jobs that support a growing + economy and strengthen America''s middle class. The SBA and entrepreneurs + drive American competitiveness and help grow the economy. Picture yourself + at SBA.","TravelCode":"2","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0}],"UserArea":{"NumberOfPages":"76","IsRadialSearch":false}}}' + http_version: + recorded_at: Wed, 31 Oct 2018 01:43:02 GMT +recorded_with: VCR 4.0.0 diff --git a/spec/vcr_cassettes/jobs/search_options_/when_there_is_some_problem.yml b/spec/vcr_cassettes/jobs/search_options_/when_there_is_some_problem.yml new file mode 100644 index 0000000000..8abd1e5b6c --- /dev/null +++ b/spec/vcr_cassettes/jobs/search_options_/when_there_is_some_problem.yml @@ -0,0 +1,607 @@ +--- +http_interactions: +- request: + method: get + uri: https://data.usajobs.gov/api/search?Keyword=jobs + body: + encoding: US-ASCII + string: '' + headers: + Authorization-Key: + - "" + User-Agent: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Connection: + - keep-alive + Keep-Alive: + - '30' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/hr+json + Expires: + - "-1" + Server: + - Microsoft-IIS/10.0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Vary: + - Accept-Encoding + Date: + - Wed, 31 Oct 2018 01:28:01 GMT + Transfer-Encoding: + - chunked + Connection: + - Transfer-Encoding + - keep-alive + Set-Cookie: + - akavpau_DATA_USAJ=1540949581~id=eceb6854df5c2fd46ad004d0d9af051d; Domain=data.usajobs.gov; + Path=/; Secure + body: + encoding: UTF-8 + string: '{"LanguageCode":"EN","SearchParameters":{},"SearchResult":{"SearchResultCount":10,"SearchResultCountAll":757,"SearchResultItems":[{"MatchedObjectId":"510075500","MatchedObjectDescriptor":{"PositionID":"VA-18-15717","PositionTitle":"Banquet + Wait Staff","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/510075500","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/510075500?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Naval + Shipyard, Portsmouth, Virginia","PositionLocation":[{"LocationName":"Naval + Shipyard, Portsmouth, Virginia","CountryCode":"United States","CountrySubDivisionCode":"Virginia","CityName":"Naval + Shipyard, Portsmouth, Virginia","Longitude":-76.29812,"Latitude":36.8030968}],"OrganizationName":"Commander, + Navy Installations","DepartmentName":"Department of the Navy","JobCategory":[{"Name":"Waiter","Code":"7420"}],"JobGrade":[{"Code":"NA"}],"PositionSchedule":[{"Name":"Flexible","Code":"4"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"Specialized + experience must demonstrate the following: Must possess working knowledge + of sanitation practices and procedures. Knowledge of proper food handling + techniques such as the correct sides to serve and remove from. A minimum of + six months experience is strongly preferred. You will receive credit for all + qualifying experience, including volunteer and part time experience. You must + clearly identify the duties and responsibilities in each position held and + the total number of hours per week. Experience refers to paid and unpaid experience, + including volunteer work done through National Service programs (e.g., professional, + philanthropic, religious, spiritual, community, student, social). Volunteer + work helps build critical competencies, knowledge, and skills and can provide + valuable training and experience that translates directly to paid employment. + As part of the application process, you must complete and submit an occupational + questionnaire. Please follow all instructions carefully. Errors or omissions + may affect your rating and/or appointment eligibility. Work is primarily performed + indoors in a club/bar setting with adequate air conditioning, heating, and + lighting. Occasionally, work may be performed outdoors with exposure to a + variety of weather conditions. This positon is subject to prolonged standing, + walking, talking, bending, reaching, stooping and lifting of heavy trays or + objects weighing less than 45 pounds without assistance. May be exposed to + loud music, cigarette smoke, “rough” language, wet, slippery floors, + cuts, burns and bruises. As a condition of employment, the employee must be + able to obtain a Health Card prior to first day of work. Afterwards, must + be able to successfully pass a Food Handlers Sanitation course, thereafter + to be updated and maintained annually. Additionally, the employee must successfully + complete an annual CARE/TIPS training course. A valid driver’s license + is strongly preferred, as travel to and from club facilities may be required + in the performance of duties. This position is subject to an irregular tour, + which includes nights, weekends and/or holiday work to cover all operational + hours and special events.","PositionRemuneration":[{"MinimumRange":"8.13","MaximumRange":"8.13","RateIntervalCode":"Per + Hour"}],"PositionStartDate":"2018-09-06","PositionEndDate":"2018-11-06","PublicationStartDate":"2018-09-06","ApplicationCloseDate":"2018-11-06","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"1","HighGrade":"1","PromotionPotential":"01","HiringPath":["public"],"AgencyMarketingStatement":"Advertisement: + Discover MWR, USA JOBS, CNIC HQ","TravelCode":"0","ApplyOnlineUrl":"https://fhrnavigator.com/usajobs/apply"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"510077700","MatchedObjectDescriptor":{"PositionID":"CBCW-10302940-FY18-SB","PositionTitle":"Psychologist","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/510077700","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/510077700?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Multiple + Locations","PositionLocation":[{"LocationName":"Danville, Illinois","CountryCode":"United + States","CountrySubDivisionCode":"Illinois","CityName":"Danville, Illinois","Longitude":-87.63043,"Latitude":40.1594658},{"LocationName":"Springfield, + Illinois","CountryCode":"United States","CountrySubDivisionCode":"Illinois","CityName":"Springfield, + Illinois","Longitude":-89.64361,"Latitude":39.8010559}],"OrganizationName":"Veterans + Affairs, Veterans Health Administration","DepartmentName":"Department of Veterans + Affairs","JobCategory":[{"Name":"Psychology","Code":"0180"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"Basic + Requirements:\nUnited States Citizenship - Non-citizens may only be appointed + when it is not possible to recruit qualified citizens in accordance with VA + Policy.\nEnglish Language Proficiency Requirement - Per VA Handbook 5005, + Part II, Chapter 3, Section A, Paragraph 3j: No person will be appointed under + authority of 38 U.S.C., chapter 73 or 74, to serve in a direct patient-care + capacity in VHA who is not proficient in written and spoken English.\nEducation + Requirement - You must have a doctoral degree in psychology from a graduate + program in psychology accredited by the American Psychological Association + (APA), the Psychological Clinical Science Accreditation System (PCSAS), or + the Canadian Psychological Association (CPA) at the time the program was completed. + The specialty area of the degree must be consistent with the assignment for + which the applicant is to be employed. OR, have a doctoral degree in any area + of psychology and, in addition, successfully completed a respecialization + program meeting both of the following conditions: a) the respecialization + program must be completed in an APA or a CPA accredited doctoral program; + and b) the specialty in which you were retrained is consistent with the assignment + you are am applying for; OR, have a doctoral degree awarded between 1951 and + 1978 from a regionally-accredited institution, with a dissertation primarily + psychological in nature.\nInternship Requirement - You must have successfully + completed a professional psychology internship training program that was accredited + by APA or CPA at the time the program was completed and that is consistent + with the assignment for which the applicant is to be employed; OR, New VHA + psychology internship programs that are in the process of applying for APA + accreditation are acceptable in fulfillment of the internship requirement, + provided that such programs were sanctioned by the VHA Central Office Program + Director for Psychology and the VHA Office of Academic Affiliations at the + time that the individual was an intern; OR, VHA facilities that offered full-time, + one-year pre-doctoral internships prior to PL 96-151 (pre-1979) are considered + to be acceptable in fulfillment of the internship requirement; OR, Applicants + who completed an internship that was not accredited by APA or CPA at the time + the program was completed may be considered eligible for hire only if they + are currently board certified by the American Board of Professional Psychology + in a specialty area that is consistent with the assignment for which the applicant + is to be employed. (NOTE: Once board certified, the employee is required to + maintain board certification). NOTE: Applicants who have a doctoral degree + awarded between 1951 and 1978 from a regionally-accredited institution with + a dissertation primarily psychological in nature may fulfill this internship + requirement by having the equivalent of a one-year supervised internship experience + in a site specifically acceptable to the candidate''s doctoral program. If + the internship experience is not noted on the applicant''s official transcript, + the applicant must provide a statement from the doctoral program verifying + that the equivalent of a one-year supervised internship experience was completed + in a site acceptable to the doctoral program.\nLicensure: Candidates must + hold a full, current, and unrestricted license to practice psychology at the + doctoral level in a State, Territory or Commonwealth of the United States, + or the District of Columbia. Exception: Non-licensed applicants who otherwise + meet the eligibility requirements may be given a temporary appointment as + a \"graduate psychologist\" at the GS-11 or GS-12 grade under the authority + of 38 U.S.C. 7405 (c)(2)(B) for a period not to exceed two years from the + date of employment on the condition that such a psychologist provide care + only under the supervision of a psychologist who is licensed. Failure to obtain + licensure during that period is justification for termination of the temporary + appointment.\nExperience: In additional to meeting the basic requirements + as stated above, you must have the following: GS-11 Level: no additional experience + beyond the basic requirement\nGS-12 Level: at least 1 full year of experience + as a professional psychologist equivalent to the GS-11 level, and are able + to demonstrate the following knowledge, skills and abilities: Knowledge of + and ability to apply a wide range of professional psychological treatments + or assessment methods to a variety of patient populations. Ability to design + and implement effective treatment strategies. Ability to incorporate new clinical + procedures. Ability to conduct research activities, such as designing and + implementing clinical research projects (staff psychologists with specified + research job duties). Ability to perform basic research tasks of scholarship + and research execution within the context of an established research team, + including research participant relations, research documentation, data acquisition, + maintenance, and collaboration. GS-13 Level: at least 2 addition years of + experience, with at least one year equivalent to the GS-12 level, as a professional + psychologist that was obtained through employment as a psychologist or through + participating in a supervised post-doctoral psychology training program that + demonstrates 1) active professional practice that was paid/non-paid employment + and/or 2) a full, current and unrestricted license. To be creditable, the + experience must have required the use of knowledge, skills, abilities and + other characteristics associated with current psychology practice: Knowledge + of, and ability to apply, professional psychological treatments to a full + range of patient populations. Ability to provide professional advice and consultation + in areas related to professional psychology and behavioral health. Knowledge + of clinical research literature.*Experience is only creditable if it is post-doctoral + degree experience as a professional psychologist directly related to the duties + performed. Preferred Experience: Experience as a Psychologist in a clinical + setting. Reference: VA Regulations, specifically VA Handbook 5005, Part II, + Appendix G18 Psychologist Qualification Standard. This can be found in the + local Human Resources Office. Physical Requirements: This position requires + minimal physical exertion, light lifting (under 15 lbs), light carrying (under + 15 lbs.), working closely with others and working alone. The employee works + mostly from a seated position, conducting psychological assessments and providing + psychotherapeutic services for patients. The employee will use a computer + to access the medical record for entry and retrieval of information. The employee + will need to be able to hear conversational speech. hearing aid permitted. + The employee will be expected to move around the patient care environment.","PositionRemuneration":[{"MinimumRange":"61218.00","MaximumRange":"113428.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-09-06","PositionEndDate":"2018-10-31","PublicationStartDate":"2018-09-06","ApplicationCloseDate":"2018-10-31","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"11","HighGrade":"13","PromotionPotential":"13","HiringPath":["public"],"TotalOpenings":"5","AgencyMarketingStatement":"Learn + more about what it''s like to work at Veterans Affairs, Veterans Health Administration, + what the agency does, and about the types of careers this agency offers.https://www.va.gov/jobs//","TravelCode":"0","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"512261500","MatchedObjectDescriptor":{"PositionID":"Legal + Intern-18-SMF","PositionTitle":"Legal Affairs Internship","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/512261500","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/512261500?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Washington + DC, District of Columbia","PositionLocation":[{"LocationName":"Washington + DC, District of Columbia","CountryCode":"United States","CountrySubDivisionCode":"District + of Columbia","CityName":"Washington DC, District of Columbia","Longitude":-77.0213852,"Latitude":38.95269}],"OrganizationName":"Overseas + Private Investment Corporation","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"Legal Occupations Student Trainee","Code":"0999"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Multiple + Schedules","Code":"6"}],"PositionOfferingType":[{"Name":"Internships","Code":"15328"}],"QualificationSummary":"Applicants + must be U.S. citizens enrolled in an accredited law school with a cumulative + GPA of 3.0 or higher, and remain enrolled during the term of the internship. + Successful completion of a background investigation is also required.","PositionRemuneration":[{"MinimumRange":"0.00","MaximumRange":"0.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-03","PositionEndDate":"2019-04-26","PublicationStartDate":"2018-10-03","ApplicationCloseDate":"2019-04-26","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"00","HighGrade":"00","PromotionPotential":"None","HiringPath":["student"],"TotalOpenings":"Many","AgencyMarketingStatement":"Become + part of the Overseas Private Investment Corporation (OPIC), ranked fifth among + small agencies in the Best Places to Work in the Federal Government! OPIC + mobilizes foreign capital to help solve critical development challenges and + in doing so, advances U.S. foreign policy and national security priorities. + Because OPIC works with the U.S. private sector, it helps U.S. businesses + gain footholds in emerging markets, catalyzing revenues, jobs and growth opportunities + both at home and abroad.","TravelCode":"0"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"513746700","MatchedObjectDescriptor":{"PositionID":"18-384-SH-DEU","PositionTitle":"Loan + Specialist (Commercial)","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/513746700","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/513746700?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Citrus + Heights, California","PositionLocation":[{"LocationName":"Citrus Heights, + California","CountryCode":"United States","CountrySubDivisionCode":"California","CityName":"Citrus + Heights, California","Longitude":-121.272,"Latitude":38.6978}],"OrganizationName":"Small + Business Administration","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"Loan Specialist","Code":"1165"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"GS-12: + One year of specialized experience, equivalent to the GS-11 grade level in + the Federal service, obtained in either the private or public sector: as a + loan processor, underwriter, financial analyst, portfolio manager, or other + like position with responsibility for making repayment and other eligibility + determinations about the loan application package; utilizing automated systems + including the data entry, tracking and processing of loan applications with + attendant documents such as credit reports, appraisals, business valuations, + environmental reviews or franchise agreements pertaining to a commercial loan. + These qualifications must be clearly referenced in your resume. Additional + information on the qualification requirements is outlined in the OPM Qualifications + Standards Handbook of General Schedule Positions. It is available for your + review on OPM''s Qualifications web site. Experience refers to paid and unpaid + experience, including volunteer work done through National Service programs + (e.g. Peace Corps, AmeriCorps) and other organizations (e.g. professional; + philanthropic; religious; spiritual; community, student, social). Volunteer + work helps build critical competencies, knowledge, and skills and can provide + valuable training and experience that translates directly to paid employment. + You will receive credit for all qualifying experience, including volunteer + experience. All qualification requirements must be met by 11:59 pm (Eastern + Time) on the closing date of this vacancy announcement.","PositionRemuneration":[{"MinimumRange":"79411.00","MaximumRange":"103234.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-24","PositionEndDate":"2018-10-30","PublicationStartDate":"2018-10-24","ApplicationCloseDate":"2018-10-30","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"12","HighGrade":"12","PromotionPotential":"12","HiringPath":["public"],"TotalOpenings":"2","AgencyMarketingStatement":"Are + you excited by the idea of helping to support $39 billion in small business + financing and setting proper conditions to stimulate America''s economic growth? + SBA has been a leader in small business development for more than 60 years. + In an increasingly globalized economy, we tackle challenges confronted by + the small business community across geographic boundaries. Although times + have changed since the SBA was founded in 1953, the Agency''s mission-to promote + the growth of small business-has not. Today, SBA is more vital than ever. + We work in collaboration with partner organizations and using cutting-edge + technologies and well-tested best practices to multiply our impact on small + businesses. America''s 28 million small businesses are the engine of job creation + and economic growth in this country, creating nearly two out of every three + new jobs in the United States and employing over half the nation''s workforce. + SBA ensures that these businesses have the tools and resources required to + start and expand their operations, and create jobs that support a growing + economy and strengthen America''s middle class. The SBA and entrepreneurs + drive American competitiveness and help grow the economy. Picture yourself + at SBA.","TravelCode":"1","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"514368500","MatchedObjectDescriptor":{"PositionID":"DE-19-003-HQ-10332434","PositionTitle":"Administrative + Officer","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/514368500","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/514368500?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"District + of Columbia, District of Columbia","PositionLocation":[{"LocationName":"District + of Columbia, District of Columbia","CountryCode":"United States","CountrySubDivisionCode":"District + of Columbia","CityName":"District of Columbia, District of Columbia","Longitude":-77.03196,"Latitude":38.89037}],"OrganizationName":"Small + Business Administration","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"Administrative Officer","Code":"0341"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Cadre--See + definition under Important Notes","Code":"15327"}],"QualificationSummary":"Generally, + time in Non-Pay status is not creditable towards the specialized experience + requirement listed below.\nYou must meet all qualification requirements by + the closing date of this announcement. Experience: To receive credit, you + must indicate the month and year as well as the average hours worked per week + for each employer. Average work hours must be stated on the resume to quantify + each period of work experience or that experience will not be credited toward + meeting the specialized experience requirement.\nYou must address the specific + specialized experience required for each grade level of this position on your + resume or application or you will be rated \"Ineligible\" for that grade level. + GS-13: To qualify you must have at least 1 full year (52 weeks) of specialized + experience equivalent in difficulty and complexity to the GS-12 level in the + Federal service that has equipped you with the particular knowledge, skill, + and ability to perform successfully in this position. This experience may + have been gained in a Non-Federal service position. In addition, this Specialized + Experience must demonstrate the following: *Overseeing, managing, or directing + the day-to-day administrative functions of an organization to meet program + goals in the areas of payroll/budget, travel. and accountability property/procurement.\n* + Gathering and analyzing pertinent administrative data for various administrative + support functions, such as payroll, budget, travel, records management, accountable + property and procurement;\n* Interpreting and applying Federal Acquisition + Regulations (FAR) and Federal Travel Regulations (FTR); and\n*Communicating + orally and in writing to various levels of internal and external customers + to accomplish program goals GS-14: To qualify you must have at least 1 full + year (52 weeks) of specialized experience equivalent in difficulty and complexity + to the GS-13 level in the Federal service that has equipped you with the particular + knowledge, skill, and ability to perform successfully in this position. This + experience may have been gained in a Non-Federal service position. In addition, + this Specialized Experience must demonstrate the following: *Overseeing, managing, + or directing the day-to-day administrative functions of an organization to + meet program goals in the areas of payroll/budget, travel. and accountability + property/procurement.\n* Gathering and analyzing pertinent administrative + data and recommending improvements for various administrative support functions, + such as payroll, budget, travel, records management, accountable property + and procurement;\n* Interpreting and applying Federal Acquisition Regulations + (FAR) and Federal Travel Regulations (FTR);\n*Communicating orally and in + writing to various levels of internal and external customers to accomplish + program goals; and\n* Leading or supervising employees or projects.","PositionRemuneration":[{"MinimumRange":"96970.00","MaximumRange":"148967.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-19","PositionEndDate":"2018-11-02","PublicationStartDate":"2018-10-19","ApplicationCloseDate":"2018-11-02","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"13","HighGrade":"14","PromotionPotential":"14","HiringPath":["public"],"AgencyMarketingStatement":"Are + you excited by the idea of helping to support $39 billion in small business + financing and setting proper conditions to stimulate America''s economic growth? + SBA has been a leader in small business development for more than 60 years. + In an increasingly globalized economy, we tackle challenges confronted by + the small business community across geographic boundaries. Although times + have changed since the SBA was founded in 1953, the Agency''s mission - to + promote the growth of small business - has not. Today, SBA is more vital than + ever. We work in collaboration with partner organizations and use cutting-edge + technologies and well-tested best practices to multiply our impact on small + businesses. America''s 28 million small businesses are the engine of job creation + and economic growth in this country, creating nearly two out of every three + new jobs in the United States and employing over half the nation''s workforce. + SBA ensures that these businesses have the tools and resources required to + start and expand their operations, and create jobs that support a growing + economy and strengthen America''s middle class.","TravelCode":"1","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"514440600","MatchedObjectDescriptor":{"PositionID":"19-006-CS-DEU","PositionTitle":"Lender + Relations Specialist","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/514440600","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/514440600?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Wichita, + Kansas","PositionLocation":[{"LocationName":"Wichita, Kansas","CountryCode":"United + States","CountrySubDivisionCode":"Kansas","CityName":"Wichita, Kansas","Longitude":-97.33558,"Latitude":37.68698}],"OrganizationName":"Small + Business Administration","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"General Business And Industry","Code":"1101"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"GS-11: + One year of specialized experience, equivalent to the GS-09 grade level in + the Federal service, obtained in either the private or public sector performing + the following duties with minimal supervision: assisting in commercial or + business loan proposal development, packaging, and structuring; and assisting + with marketing lending programs and services to external customers through + outreach activities; and assisting with conducting formal training or professional + development; commercial lending experience; and assisting with the growth + and development of a customer base; and using a variety of software applications + and technologies in all aspects of the job. These qualifications must be clearly + referenced in your resume. GS-12: One year of specialized experience, equivalent + to the GS-11 grade level in the Federal service, obtained in either the private + or public sector performing the following duties independently: commercial + or business loan proposal development, packaging, and structuring; and marketing + lending programs and services to external customers through outreach activities; + and conducting formal training or professional development; and in the growth + and development of a customer base; commercial lending experience; and using + a variety of software applications and technologies in all aspects of the + job. These qualifications must be clearly referenced in your resume.\nAdditional + information on the qualification requirements is outlined in the OPM Qualifications + Standards Handbook of General Schedule Positions. It is available for your + review on OPM''s Qualifications web site. Experience refers to paid and unpaid + experience, including volunteer work done through National Service programs + (e.g. Peace Corps, AmeriCorps) and other organizations (e.g. professional; + philanthropic; religious; spiritual; community, student, social). Volunteer + work helps build critical competencies, knowledge, and skills and can provide + valuable training and experience that translates directly to paid employment. + You will receive credit for all qualifying experience, including volunteer + experience. All qualification requirements must be met by 11:59 pm (Eastern + Time) on the closing date of this vacancy announcement.","PositionRemuneration":[{"MinimumRange":"61218.00","MaximumRange":"95388.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-19","PositionEndDate":"2018-11-02","PublicationStartDate":"2018-10-19","ApplicationCloseDate":"2018-11-02","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"11","HighGrade":"12","PromotionPotential":"12","HiringPath":["public"],"TotalOpenings":"1","AgencyMarketingStatement":"Are + you excited by the idea of helping to support $39 billion in small business + financing and setting proper conditions to stimulate America''s economic growth? + SBA has been a leader in small business development for more than 60 years. + In an increasingly globalized economy, we tackle challenges confronted by + the small business community across geographic boundaries. Although times + have changed since the SBA was founded in 1953, the Agency''s mission-to promote + the growth of small business-has not. Today, SBA is more vital than ever. + We work in collaboration with partner organizations and using cutting-edge + technologies and well-tested best practices to multiply our impact on small + businesses. America''s 28 million small businesses are the engine of job creation + and economic growth in this country, creating nearly two out of every three + new jobs in the United States and employing over half the nation''s workforce. + SBA ensures that these businesses have the tools and resources required to + start and expand their operations, and create jobs that support a growing + economy and strengthen America''s middle class. The SBA and entrepreneurs + drive American competitiveness and help grow the economy. Picture yourself + at SBA.","TravelCode":"2","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"514446500","MatchedObjectDescriptor":{"PositionID":"DE-10338309-19-MLJ","PositionTitle":"Student + Trainee (Investigations)","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/514446500","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/514446500?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Houston, + Texas","PositionLocation":[{"LocationName":"Houston, Texas","CountryCode":"United + States","CountrySubDivisionCode":"Texas","CityName":"Houston, Texas","Longitude":-95.36978,"Latitude":29.76045}],"OrganizationName":"Small + Business Administration","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"Investigation Student Trainee","Code":"1899"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"One + year","Code":"15318"}],"QualificationSummary":"GS-1899-03: Completion of 1 + full academic year of post-high school study OR Successful completion of the + requirements for an Associate''s degree (please verify by attaching a copy + of your transcripts). GS-1899-04: Completion of 2 academic years of post-high + school study OR Successful completion of the requirements for an Associate''s + degree (please verify by attaching a copy of your college transcripts). Academic + year of undergraduate education (post-high school study): A minimum of 30 + semester or 45 quarter hours at an accredited college or university; or\nA + minimum of 36 weeks at an accredited business, technical, vocational, or qualifying + educational institution for at least 20 classroom hours per week. Additional + information on the qualification requirements is outlined in the OPM Qualifications + Standards Handbook of General Schedule Positions. It is available for your + review on OPM''s Qualifications web site. All qualification requirements must + be met by 11:59 pm (Eastern Time) on the closing date of this vacancy announcement.","PositionRemuneration":[{"MinimumRange":"30359.00","MaximumRange":"44303.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-19","PositionEndDate":"2018-11-02","PublicationStartDate":"2018-10-19","ApplicationCloseDate":"2018-11-02","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"3","HighGrade":"4","PromotionPotential":"None","HiringPath":["student"],"TotalOpenings":"1","AgencyMarketingStatement":"Are + you excited by the idea of helping to support $39 billion in small business + financing and setting proper conditions to stimulate America''s economic growth? + SBA has been a leader in small business development for more than 60 years. + In an increasingly globalized economy, we tackle challenges confronted by + the small business community across geographic boundaries. Although times + have changed since the SBA was founded in 1953, the Agency''s mission-to promote + the growth of small business-has not. Today, SBA is more vital than ever. + We work in collaboration with partner organizations and using cutting-edge + technologies and well-tested best practices to multiply our impact on small + businesses. America''s 28 million small businesses are the engine of job creation + and economic growth in this country, creating nearly two out of every three + new jobs in the United States and employing over half the nation''s workforce. + SBA ensures that these businesses have the tools and resources required to + start and expand their operations, and create jobs that support a growing + economy and strengthen America''s middle class. The SBA and entrepreneurs + drive American competitiveness and help grow the economy. Picture yourself + at SBA.","TravelCode":"0","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"514452800","MatchedObjectDescriptor":{"PositionID":"DE-019-004-HQ-10336385","PositionTitle":"Supervisory + Public Affairs Specialist","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/514452800","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/514452800?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Washington + DC, District of Columbia","PositionLocation":[{"LocationName":"Washington + DC, District of Columbia","CountryCode":"United States","CountrySubDivisionCode":"District + of Columbia","CityName":"Washington DC, District of Columbia","Longitude":-77.032,"Latitude":38.8904}],"OrganizationName":"Small + Business Administration","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"Public Affairs","Code":"1035"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"Generally, + time in Non-Pay status is not creditable towards the specialized experience + requirement listed below.\nYou must meet all qualification requirements by + the closing date of this announcement. Experience: To receive credit, you + must indicate the month and year as well as the average hours worked per week + for each employer. Average work hours must be stated on the resume to quantify + each period of work experience or that experience will not be credited toward + meeting the specialized experience requirement.\nYou must address the specific + specialized experience required for each grade level of this position on your + resume or application or you will be rated \"Ineligible\" for that grade level. + GS-15: To qualify you must have at least 1 full year (52 weeks) of specialized + experience equivalent in difficulty and complexity to the GS-14 level in the + Federal service that has equipped you with the particular knowledge, skill, + and ability to perform successfully in this position. This experience may + have been gained in a Non-Federal service position. In addition, this Specialized + Experience must demonstrate the following: *Leading or supervising employees + or projects in a disaster or emergency relief organization/program. (This + experience must involve activities pertaining to planning, socializing, and + maintaining preparedness for disasters or emergencies.)\n*Performing outreach + and coordination activities involving multiple agencies or organizations.\n*Reviewing/approving + or preparing press or news releases, speeches or talking points, and feature + and photo material for the media or public appearances; and\n*Acting as the + spokesperson for an organization or program.\n*Evaluating a program to identify + strengths, monitor progress, and make recommendations for improvement","PositionRemuneration":[{"MinimumRange":"134789.00","MaximumRange":"164200.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-19","PositionEndDate":"2018-11-02","PublicationStartDate":"2018-10-19","ApplicationCloseDate":"2018-11-02","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"15","HighGrade":"15","PromotionPotential":"15","HiringPath":["public"],"AgencyMarketingStatement":"Are + you excited by the idea of helping to support $39 billion in small business + financing and setting proper conditions to stimulate America''s economic growth? + SBA has been a leader in small business development for more than 60 years. + In an increasingly globalized economy, we tackle challenges confronted by + the small business community across geographic boundaries. Although times + have changed since the SBA was founded in 1953, the Agency''s mission - to + promote the growth of small business - has not. Today, SBA is more vital than + ever. We work in collaboration with partner organizations and use cutting-edge + technologies and well-tested best practices to multiply our impact on small + businesses. America''s 28 million small businesses are the engine of job creation + and economic growth in this country, creating nearly two out of every three + new jobs in the United States and employing over half the nation''s workforce. + SBA ensures that these businesses have the tools and resources required to + start and expand their operations, and create jobs that support a growing + economy and strengthen America''s middle class.","TravelCode":"1","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"514603500","MatchedObjectDescriptor":{"PositionID":"18-388D-LAC-DEU + (10339547)","PositionTitle":"Program Analyst","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/514603500","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/514603500?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Washington + DC, District of Columbia","PositionLocation":[{"LocationName":"Washington + DC, District of Columbia","CountryCode":"United States","CountrySubDivisionCode":"District + of Columbia","CityName":"Washington DC, District of Columbia","Longitude":-77.032,"Latitude":38.8904}],"OrganizationName":"Small + Business Administration","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"Management And Program Analysis","Code":"0343"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"MINIMUM + QUALIFICATIONS: To be considered minimally qualified for this position, you + must demonstrate that you have the required specialized experience and/or + education for the respective grade level in which you are applying. This experience + must be clearly articulated in your resume. GS-09: Specialized Experience: + One year of specialized experience (equivalent to the GS-7 grade level in + the Federal service) obtained in either the private or public sector that + includes: assisting in reading and writing SQL queries for assigned program + areas; AND assisting in manipulating large data sets, using data analytic + tools and reporting applications such as relational databases, MS Access and + MS Excel (to include Excel Pivot Tables), Tableau, SharePoint, Microsoft Reporting + Services; AND assisting in designing or developing reporting and dashboards + to be used for research in the examination of program office related activities; + AND evaluating, analyzing or financial interpreting data from various database + systems to determine program effectiveness. OR Education: Successful completion + of at least a Master''s or equivalent graduate degree or (2) full years of + progressively higher level graduate education leading to such a degree in + a field which demonstrates the knowledge, skills, and abilities necessary + to do the work of the position or LL.B. or J.D. , if related. You must include + transcripts. OR Combination of Education and Experience: A combination of + education and experience may be used to qualify for this position. To combine + education and experience, first divide your semester hours of graduate education + beyond 18 semester hours by 18. (If your education is currently described + in quarter hours, convert them to semester hours by dividing by 1.5). Then + divide your total months of qualifying specialized experience by 12. Finally, + add the two percentages together. The total percentage must equal at least + 100 percent to qualify. You must include transcripts. Additional information + on the qualification requirements is outlined in the OPM Qualifications Standards + Handbook of General Schedule Positions. It is available for your review on + OPM''s Qualifications web site. Experience refers to paid and unpaid experience, + including volunteer work done through National Service programs (e.g. Peace + Corps, AmeriCorps) and other organizations (e.g. professional; philanthropic; + religious; spiritual; community, student, social). Volunteer work helps build + critical competencies, knowledge, and skills and can provide valuable training + and experience that translates directly to paid employment. You will receive + credit for all qualifying experience, including volunteer experience. All + qualification requirements must be met by 11:59 pm (Eastern Time) on the closing + date of this vacancy announcement.","PositionRemuneration":[{"MinimumRange":"56233.00","MaximumRange":"106012.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-24","PositionEndDate":"2018-11-06","PublicationStartDate":"2018-10-24","ApplicationCloseDate":"2018-11-06","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"9","HighGrade":"9","PromotionPotential":"12","HiringPath":["public"],"TotalOpenings":"1","AgencyMarketingStatement":"Are + you excited by the idea of helping to support $39 billion in small business + financing and setting proper conditions to stimulate America''s economic growth? + SBA has been a leader in small business development for more than 60 years. + In an increasingly globalized economy, we tackle challenges confronted by + the small business community across geographic boundaries. Although times + have changed since the SBA was founded in 1953, the Agency''s mission-to promote + the growth of small business-has not. Today, SBA is more vital than ever. + We work in collaboration with partner organizations and using cutting-edge + technologies and well-tested best practices to multiply our impact on small + businesses. America''s 28 million small businesses are the engine of job creation + and economic growth in this country, creating nearly two out of every three + new jobs in the United States and employing over half the nation''s workforce. + SBA ensures that these businesses have the tools and resources required to + start and expand their operations, and create jobs that support a growing + economy and strengthen America''s middle class. The SBA and entrepreneurs + drive American competitiveness and help grow the economy. Picture yourself + at SBA.","TravelCode":"1","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0},{"MatchedObjectId":"515174200","MatchedObjectDescriptor":{"PositionID":"19-014-CL-DEU","PositionTitle":"General + Attorney","PositionURI":"https://www.usajobs.gov:443/GetJob/ViewDetails/515174200","ApplyURI":["https://www.usajobs.gov:443/GetJob/ViewDetails/515174200?PostingChannelID=RESTAPI"],"PositionLocationDisplay":"Hato + Rey, Puerto Rico","PositionLocation":[{"LocationName":"Hato Rey, Puerto Rico","CountryCode":"United + States","CountrySubDivisionCode":"Puerto Rico","CityName":"Hato Rey, Puerto + Rico","Longitude":-66.05612,"Latitude":18.42488}],"OrganizationName":"Small + Business Administration","DepartmentName":"Other Agencies and Independent + Organizations","JobCategory":[{"Name":"Attorney","Code":"0905"}],"JobGrade":[{"Code":"GS"}],"PositionSchedule":[{"Name":"Full-Time","Code":"1"}],"PositionOfferingType":[{"Name":"Permanent","Code":"15317"}],"QualificationSummary":"GS-13: + Four or more years of professional legal experience, equivalent to the GS-12 + grade level in the Federal service, obtained in either the private or public + sector in one or more of the following area: government-guaranteed lending, + banking and financial law, litigation and bankruptcy and real estate law and + closings, administrative law and ethics. Additional information on the qualification + requirements is outlined in the OPM Qualifications Standards Handbook of General + Schedule Positions. It is available for your review on OPM''s Qualifications + web site. Experience refers to paid and unpaid experience, including volunteer + work done through National Service programs (e.g. Peace Corps, AmeriCorps) + and other organizations (e.g. professional; philanthropic; religious; spiritual; + community, student, social). Volunteer work helps build critical competencies, + knowledge, and skills and can provide valuable training and experience that + translates directly to paid employment. You will receive credit for all qualifying + experience, including volunteer experience. Selective Placement Factors: This + position requires a special qualification that has been determined to be essential + to perform the duties and will be used as a screen out element. Those who + do not provide evidence they possess the following selective factor(s) will + be rated not qualified. Active member of the Federal bar\nAdmitted to the + Bar of the U.S. District Court for the District of Puerto Rico\nObtained notarial + license for Puerto Rico All qualification requirements must be met by 11:59 + pm (Eastern Time) on the closing date of this vacancy announcement.","PositionRemuneration":[{"MinimumRange":"87252.00","MaximumRange":"113428.00","RateIntervalCode":"Per + Year"}],"PositionStartDate":"2018-10-29","PositionEndDate":"2018-11-09","PublicationStartDate":"2018-10-29","ApplicationCloseDate":"2018-11-09","PositionFormattedDescription":[{"Label":"Dynamic + Teaser","LabelDescription":"Hit highlighting for keyword searches."}],"UserArea":{"Details":{"JobSummary":"","WhoMayApply":{"Name":"","Code":""},"LowGrade":"13","HighGrade":"13","PromotionPotential":"13","HiringPath":["public"],"TotalOpenings":"1","AgencyMarketingStatement":"Are + you excited by the idea of helping to support $39 billion in small business + financing and setting proper conditions to stimulate America''s economic growth? + SBA has been a leader in small business development for more than 60 years. + In an increasingly globalized economy, we tackle challenges confronted by + the small business community across geographic boundaries. Although times + have changed since the SBA was founded in 1953, the Agency''s mission-to promote + the growth of small business-has not. Today, SBA is more vital than ever. + We work in collaboration with partner organizations and using cutting-edge + technologies and well-tested best practices to multiply our impact on small + businesses. America''s 28 million small businesses are the engine of job creation + and economic growth in this country, creating nearly two out of every three + new jobs in the United States and employing over half the nation''s workforce. + SBA ensures that these businesses have the tools and resources required to + start and expand their operations, and create jobs that support a growing + economy and strengthen America''s middle class. The SBA and entrepreneurs + drive American competitiveness and help grow the economy. Picture yourself + at SBA.","TravelCode":"2","ApplyOnlineUrl":"https://apply.usastaffing.gov/Application/Apply","DetailStatusUrl":"https://apply.usastaffing.gov/Application/ApplicationStatus"},"IsRadialSearch":false}},"RelevanceRank":0.0}],"UserArea":{"NumberOfPages":"76","IsRadialSearch":false}}}' + http_version: + recorded_at: Wed, 31 Oct 2018 01:28:01 GMT +- request: + method: get + uri: https://data.usajobs.gov/ + body: + encoding: US-ASCII + string: '' + headers: + Connection: + - close + Host: + - data.usajobs.gov + User-Agent: + - http.rb/1.0.4 + response: + status: + code: 302 + message: Found + headers: + Cache-Control: + - private + Content-Type: + - text/html; charset=utf-8 + Location: + - https://developer.usajobs.gov/ + Server: + - Microsoft-IIS/10.0 + X-Aspnetmvc-Version: + - '5.2' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Content-Length: + - '147' + Date: + - Wed, 31 Oct 2018 01:32:28 GMT + Connection: + - close + Set-Cookie: + - akavpau_DATA_USAJ=1540949848~id=5f438b939a2965b52d2652d72cd6d800; Domain=data.usajobs.gov; + Path=/; Secure + body: + encoding: UTF-8 + string: "Object moved\r\n

Object + moved to here.

\r\n\r\n" + http_version: + recorded_at: Wed, 31 Oct 2018 01:32:28 GMT +recorded_with: VCR 4.0.0 diff --git a/spec/vcr_cassettes/search/gov/tasks_searchgov_bulk_index.yml b/spec/vcr_cassettes/search/gov/tasks_searchgov_bulk_index.yml index e6cdd5c4e9..d82b48d27a 100644 --- a/spec/vcr_cassettes/search/gov/tasks_searchgov_bulk_index.yml +++ b/spec/vcr_cassettes/search/gov/tasks_searchgov_bulk_index.yml @@ -1809,7 +1809,7 @@ http_interactions: 1 } }).x === 1\"),eval(\"({ set x(v){ value = v; } }).x = 1\"),setter=1===value,eval(\"obj = ({ if: 1 })\"),reservedWords=1===obj[\"if\"],zeroWidthChars=eval(\"_‌‍ = true\"),stringAccess&&getter&&setter&&reservedWords&&zeroWidthChars}catch(e){return!1}}),Modernizr.addTest(\"es5undefined\",function(){var - e,t;try{t=window.undefined,window.undefined=12345,e=void 0===window.undefined,window.undefined=t}catch(e){return!1}return + e,t;try{t=window.undefined,window.undefined=,e=void 0===window.undefined,window.undefined=t}catch(e){return!1}return e}),Modernizr.addTest(\"es5\",function(){return!!(Modernizr.es5array&&Modernizr.es5date&&Modernizr.es5function&&Modernizr.es5object&&Modernizr.strictmode&&Modernizr.es5string&&Modernizr.json&&Modernizr.es5syntax&&Modernizr.es5undefined)}),testRunner(),setClasses(classes),delete ModernizrProto.addTest,delete ModernizrProto.addAsyncTest;for(var i=0;i\n\n\n\n\n\n" http_version: recorded_at: Sat, 09 Jun 2018 18:54:31 GMT +- request: + method: get + uri: http://www.consumerfinance.gov/robots.txt + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - usasearch + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 301 + message: Moved Permanently + headers: + Server: + - AkamaiGHost + Content-Length: + - '0' + Location: + - https://www.consumerfinance.gov/robots.txt + Date: + - Wed, 31 Oct 2018 01:09:10 GMT + Connection: + - keep-alive + body: + encoding: UTF-8 + string: '' + http_version: + recorded_at: Wed, 31 Oct 2018 01:09:10 GMT +- request: + method: get + uri: https://www.consumerfinance.gov/robots.txt + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - usasearch + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/plain; charset=UTF-8 + Etag: + - '"125-5795e2c925641"' + Server: + - Apache + X-Frame-Options: + - SAMEORIGIN + X-Xss-Protection: + - 1; mode=block + X-Content-Type-Options: + - nosniff + Last-Modified: + - Mon, 29 Oct 2018 13:37:45 GMT + Access-Control-Allow-Origin: + - https://www.consumerfinance.gov + Vary: + - Accept-Encoding + Date: + - Wed, 31 Oct 2018 01:09:10 GMT + Content-Length: + - '293' + Connection: + - keep-alive + Strict-Transport-Security: + - max-age=31536000 + body: + encoding: UTF-8 + string: | + User-agent: * + Disallow: /save-hud-counselors-list + Disallow: /about-us/the-bureau/leadership-calendar/pdf + Disallow: /es/obtener-respuestas/*.imprimir.html + Disallow: /external-site + Disallow: /*?success + Disallow: *form-id=* + Disallow: /?page= + + sitemap: https://www.consumerfinance.gov/sitemap.xml + http_version: + recorded_at: Wed, 31 Oct 2018 01:09:10 GMT recorded_with: VCR 4.0.0 diff --git a/spec/vcr_cassettes/search/gov/tasks_searchgov_bulk_index_when_a_url_has_already_been_indexed.yml b/spec/vcr_cassettes/search/gov/tasks_searchgov_bulk_index_when_a_url_has_already_been_indexed.yml index f02a4971cb..8f2b9312d0 100644 --- a/spec/vcr_cassettes/search/gov/tasks_searchgov_bulk_index_when_a_url_has_already_been_indexed.yml +++ b/spec/vcr_cassettes/search/gov/tasks_searchgov_bulk_index_when_a_url_has_already_been_indexed.yml @@ -1809,7 +1809,7 @@ http_interactions: 1 } }).x === 1\"),eval(\"({ set x(v){ value = v; } }).x = 1\"),setter=1===value,eval(\"obj = ({ if: 1 })\"),reservedWords=1===obj[\"if\"],zeroWidthChars=eval(\"_‌‍ = true\"),stringAccess&&getter&&setter&&reservedWords&&zeroWidthChars}catch(e){return!1}}),Modernizr.addTest(\"es5undefined\",function(){var - e,t;try{t=window.undefined,window.undefined=12345,e=void 0===window.undefined,window.undefined=t}catch(e){return!1}return + e,t;try{t=window.undefined,window.undefined=,e=void 0===window.undefined,window.undefined=t}catch(e){return!1}return e}),Modernizr.addTest(\"es5\",function(){return!!(Modernizr.es5array&&Modernizr.es5date&&Modernizr.es5function&&Modernizr.es5object&&Modernizr.strictmode&&Modernizr.es5string&&Modernizr.json&&Modernizr.es5syntax&&Modernizr.es5undefined)}),testRunner(),setClasses(classes),delete ModernizrProto.addTest,delete ModernizrProto.addAsyncTest;for(var i=0;i\n\n\n\n\n\n" http_version: recorded_at: Sat, 09 Jun 2018 18:54:31 GMT +- request: + method: get + uri: http://www.consumerfinance.gov/robots.txt + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - usasearch + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 301 + message: Moved Permanently + headers: + Server: + - AkamaiGHost + Content-Length: + - '0' + Location: + - https://www.consumerfinance.gov/robots.txt + Date: + - Wed, 31 Oct 2018 01:09:10 GMT + Connection: + - keep-alive + body: + encoding: UTF-8 + string: '' + http_version: + recorded_at: Wed, 31 Oct 2018 01:09:10 GMT +- request: + method: get + uri: https://www.consumerfinance.gov/robots.txt + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - usasearch + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/plain; charset=UTF-8 + Etag: + - '"125-5795e2c925641"' + Server: + - Apache + X-Frame-Options: + - SAMEORIGIN + X-Xss-Protection: + - 1; mode=block + X-Content-Type-Options: + - nosniff + Last-Modified: + - Mon, 29 Oct 2018 13:37:45 GMT + Access-Control-Allow-Origin: + - https://www.consumerfinance.gov + Vary: + - Accept-Encoding + Date: + - Wed, 31 Oct 2018 01:09:10 GMT + Content-Length: + - '293' + Connection: + - keep-alive + Strict-Transport-Security: + - max-age=31536000 + body: + encoding: UTF-8 + string: | + User-agent: * + Disallow: /save-hud-counselors-list + Disallow: /about-us/the-bureau/leadership-calendar/pdf + Disallow: /es/obtener-respuestas/*.imprimir.html + Disallow: /external-site + Disallow: /*?success + Disallow: *form-id=* + Disallow: /?page= + + sitemap: https://www.consumerfinance.gov/sitemap.xml + http_version: + recorded_at: Wed, 31 Oct 2018 01:09:10 GMT recorded_with: VCR 4.0.0 diff --git a/spec/vcr_cassettes/search/gov/tasks_searchgov_promote.yml b/spec/vcr_cassettes/search/gov/tasks_searchgov_promote.yml index 1d7a881068..d884b1735d 100644 --- a/spec/vcr_cassettes/search/gov/tasks_searchgov_promote.yml +++ b/spec/vcr_cassettes/search/gov/tasks_searchgov_promote.yml @@ -269,7 +269,7 @@ http_interactions: 1 } }).x === 1\"),eval(\"({ set x(v){ value = v; } }).x = 1\"),setter=1===value,eval(\"obj = ({ if: 1 })\"),reservedWords=1===obj[\"if\"],zeroWidthChars=eval(\"_‌‍ = true\"),stringAccess&&getter&&setter&&reservedWords&&zeroWidthChars}catch(e){return!1}}),Modernizr.addTest(\"es5undefined\",function(){var - e,t;try{t=window.undefined,window.undefined=12345,e=void 0===window.undefined,window.undefined=t}catch(e){return!1}return + e,t;try{t=window.undefined,window.undefined=,e=void 0===window.undefined,window.undefined=t}catch(e){return!1}return e}),Modernizr.addTest(\"es5\",function(){return!!(Modernizr.es5array&&Modernizr.es5date&&Modernizr.es5function&&Modernizr.es5object&&Modernizr.strictmode&&Modernizr.es5string&&Modernizr.json&&Modernizr.es5syntax&&Modernizr.es5undefined)}),testRunner(),setClasses(classes),delete ModernizrProto.addTest,delete ModernizrProto.addAsyncTest;for(var i=0;i,e=void 0===window.undefined,window.undefined=t}catch(e){return!1}return e}),Modernizr.addTest(\"es5\",function(){return!!(Modernizr.es5array&&Modernizr.es5date&&Modernizr.es5function&&Modernizr.es5object&&Modernizr.strictmode&&Modernizr.es5string&&Modernizr.json&&Modernizr.es5syntax&&Modernizr.es5undefined)}),testRunner(),setClasses(classes),delete ModernizrProto.addTest,delete ModernizrProto.addAsyncTest;for(var i=0;i,e=void 0===window.undefined,window.undefined=t}catch(e){return!1}return e}),Modernizr.addTest(\"es5\",function(){return!!(Modernizr.es5array&&Modernizr.es5date&&Modernizr.es5function&&Modernizr.es5object&&Modernizr.strictmode&&Modernizr.es5string&&Modernizr.json&&Modernizr.es5syntax&&Modernizr.es5undefined)}),testRunner(),setClasses(classes),delete ModernizrProto.addTest,delete ModernizrProto.addAsyncTest;for(var i=0;i\n\n\n\n\n\n" http_version: recorded_at: Sat, 09 Jun 2018 18:54:32 GMT +- request: + method: get + uri: http://www.consumerfinance.gov/robots.txt + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - usasearch + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 301 + message: Moved Permanently + headers: + Server: + - AkamaiGHost + Content-Length: + - '0' + Location: + - https://www.consumerfinance.gov/robots.txt + Date: + - Wed, 31 Oct 2018 01:09:12 GMT + Connection: + - keep-alive + body: + encoding: UTF-8 + string: '' + http_version: + recorded_at: Wed, 31 Oct 2018 01:09:11 GMT +- request: + method: get + uri: https://www.consumerfinance.gov/robots.txt + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - usasearch + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/plain; charset=UTF-8 + Etag: + - '"125-5795e2c925641"' + Server: + - Apache + X-Frame-Options: + - SAMEORIGIN + X-Xss-Protection: + - 1; mode=block + X-Content-Type-Options: + - nosniff + Last-Modified: + - Mon, 29 Oct 2018 13:37:45 GMT + Access-Control-Allow-Origin: + - https://www.consumerfinance.gov + Vary: + - Accept-Encoding + Date: + - Wed, 31 Oct 2018 01:09:12 GMT + Content-Length: + - '293' + Connection: + - keep-alive + Strict-Transport-Security: + - max-age=31536000 + body: + encoding: UTF-8 + string: | + User-agent: * + Disallow: /save-hud-counselors-list + Disallow: /about-us/the-bureau/leadership-calendar/pdf + Disallow: /es/obtener-respuestas/*.imprimir.html + Disallow: /external-site + Disallow: /*?success + Disallow: *form-id=* + Disallow: /?page= + + sitemap: https://www.consumerfinance.gov/sitemap.xml + http_version: + recorded_at: Wed, 31 Oct 2018 01:09:12 GMT recorded_with: VCR 4.0.0 diff --git a/spec/vcr_cassettes/searchgov_url_fetch/when_the_url_points_to_a_pdf.yml b/spec/vcr_cassettes/searchgov_url_fetch/when_the_url_points_to_a_pdf.yml index fafbcf37e1..336f6edd48 100644 --- a/spec/vcr_cassettes/searchgov_url_fetch/when_the_url_points_to_a_pdf.yml +++ b/spec/vcr_cassettes/searchgov_url_fetch/when_the_url_points_to_a_pdf.yml @@ -655,4 +655,60 @@ http_interactions: description","title":"My Title","xmp:CreatorTool":"Writer","xmpTPg:NPages":"1"}]' http_version: recorded_at: Thu, 26 Apr 2018 23:55:47 GMT +- request: + method: post + uri: http://localhost:8081/api/v1/documents + body: + encoding: UTF-8 + string: '{"document_id":"6045ee8ed3584feb6ce9fd3f3bc3008907d99e356c247a8eb94d1a688677b53a","title":"My + Title","path":"https://www.irs.gov/test.pdf","created":"2017-09-07T23:26:04Z","description":"My + description","content":"My Title This is my headline. This is my content. + This is a test PDF file, we are use it to test our PDF parsing technology. + We want it to be at least 250 characters long so that we can test the description + generator and see that it cuts off the description, meaning truncates it, + in the right location. It should truncate the text and cut off the following: + truncate me. It includes some special characters to test our parsing: m–dash, + “curly quotes”, a’postrophe, paragraph: ¶","changed":"2017-09-07T23:26:04Z","language":"en","tags":"this, + that"}' + headers: + Authorization: + - Basic c2VhcmNoZ292OnNlYXJjaGdvdl90b2tlbg== + User-Agent: + - Faraday v0.9.2 + Content-Type: + - application/json + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + Connection: + - keep-alive + Keep-Alive: + - '30' + response: + status: + code: 400 + message: Bad Request + headers: + Content-Type: + - application/json + Content-Length: + - '49' + Cache-Control: + - no-cache + X-Request-Id: + - c3c3fde9-73ef-4885-b36e-9a9113d936d2 + X-Runtime: + - '1.908724' + Vary: + - Origin + Connection: + - keep-alive + Server: + - thin + body: + encoding: UTF-8 + string: '{"developer_message":"Unauthorized","status":400}' + http_version: + recorded_at: Wed, 31 Oct 2018 01:07:44 GMT recorded_with: VCR 4.0.0 diff --git a/spec/views/searches/index.html.haml_spec.rb b/spec/views/searches/index.html.haml_spec.rb index 17239f617a..040621d15c 100644 --- a/spec/views/searches/index.html.haml_spec.rb +++ b/spec/views/searches/index.html.haml_spec.rb @@ -129,16 +129,16 @@ allow(@affiliate).to receive(:jobs_enabled?).and_return(true) json = [ {"id" => "usajobs:328437200", "position_title" => "Research Biologist/Research Nutritionist (Postdoctoral Research Affiliate)", - "organization_name" => "Agricultural Research Service", "rate_interval_code" => "PA", "minimum" => 51871, "maximum" => 67427, "start_date" => "2012-10-10", "end_date" => "2023-10-12", "locations" => ["Boston, MA"], + "organization_name" => "Agricultural Research Service", "rate_interval_code" => "Per Year", "minimum" => 51871, "maximum" => 67427, "start_date" => "2012-10-10", "application_close_date" => "2023-10-12", "locations" => ["Boston, MA"], "url" => "https://www.usajobs.gov/GetJob/ViewDetails/328437200"}, {"id" => "usajobs:328437201", "position_title" => "Some Research Job", - "organization_name" => "Some Research Service", "rate_interval_code" => "PH", "minimum" => 24, "maximum" => 24, "start_date" => "2012-10-10", "end_date" => "2023-10-13", "locations" => ["Boston, MA", "Cohasset, MA"], + "organization_name" => "Some Research Service", "rate_interval_code" => "Per Hour", "minimum" => 24, "maximum" => 24, "start_date" => "2012-10-10", "application_close_date" => "2023-10-13", "locations" => ["Boston, MA", "Cohasset, MA"], "url" => "https://www.usajobs.gov/GetJob/ViewDetails/328437201"}, {"id" => "usajobs:328437202", "position_title" => "Bi-Weekly Research Job", - "organization_name" => "BW Research Service", "rate_interval_code" => "BW", "minimum" => 240, "maximum" => 260, "start_date" => "2012-10-10", "end_date" => "2023-10-15", "locations" => ["Hello, MA"], + "organization_name" => "BW Research Service", "rate_interval_code" => "Bi-Weekly", "minimum" => 240, "maximum" => 260, "start_date" => "2012-10-10", "application_close_date" => "2023-10-15", "locations" => ["Hello, MA"], "url" => "https://www.usajobs.gov/GetJob/ViewDetails/328437202"}, {"id" => "usajobs:328437203", "position_title" => "Zero Money Research Job", - "organization_name" => "Some Poor Research Service", "rate_interval_code" => "WC", "minimum" => 0, "maximum" => 0, "start_date" => "2012-10-10", "end_date" => "2023-10-14", "locations" => ["Washington Metro Area, DC"], + "organization_name" => "Some Poor Research Service", "rate_interval_code" => "Without Compensation", "minimum" => 0, "maximum" => 0, "start_date" => "2012-10-10", "application_close_date" => "2023-10-14", "locations" => ["Washington Metro Area, DC"], "url" => "https://www.usajobs.gov/GetJob/ViewDetails/328437203"} ] mashies = json.collect { |x| Hashie::Mash.new(x) } @@ -227,44 +227,6 @@ end - context 'when neogov jobs results are available' do - before do - allow(@affiliate).to receive(:jobs_enabled?).and_return(true) - json = [ - {"id" => "ng:michigan:328437200", "position_title" => "Research Biologist/Research Nutritionist (Postdoctoral Research Affiliate)", - "organization_name" => "Agricultural Research Service", "rate_interval_code" => "PA", "minimum" => 51871, "maximum" => 67427, "start_date" => "2012-10-10", "end_date" => "2023-10-12", "locations" => ["Boston, MA"], - "url" => "http://agency.governmentjobs.com/michigan/default.cfm?action=viewjob&jobid=328437200"}] - mashies = json.collect { |x| Hashie::Mash.new(x) } - allow(@search).to receive(:query).and_return "research jobs" - @search_result = {'title' => "This is about research jobs", - 'unescapedUrl' => "http://www.cdc.gov/jobs", - 'content' => "Research jobs don't pay well", - 'cacheUrl' => "http://www.cached.com/url"} - @search_results = [@search_result] - allow(@search_results).to receive(:total_pages).and_return 1 - allow(@search).to receive(:results).and_return @search_results - allow(@search).to receive(:jobs).and_return mashies - end - - context 'when there is an agency associated with the affiliate' do - before do - agency = Agency.create!({:name => 'State of Michigan', - :abbreviation => 'SOM'}) - AgencyOrganizationCode.create!(organization_code: "USMI", agency: agency) - allow(@affiliate).to receive(:agency).and_return(agency) - end - - it "should show the neogov links" do - render - expect(rendered).to have_content('Job Openings at SOM') - expect(rendered).to have_selector('a[href="http://agency.governmentjobs.com/michigan/default.cfm?action=viewjob&jobid=328437200"]', - text: 'Research Biologist/Research Nutritionist (Postdoctoral Research Affiliate)') - expect(rendered).to have_selector('a[href="http://agency.governmentjobs.com/michigan/default.cfm"]', - text: 'More SOM job openings') - end - end - end - context "when a med topic record matches the query" do fixtures :med_topics before do