samwise 0.2.7 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a2ca088ec51febc2528f8c85bd8def3f12916bcf
4
- data.tar.gz: 30d7eefed09aa261d36f52fd9c1c78ac41cf050b
3
+ metadata.gz: e3d140a73ec93dea97ceec0cc507149f4b3c8948
4
+ data.tar.gz: 4ef7219dc67b322cf0031736992a029d2ac85cc7
5
5
  SHA512:
6
- metadata.gz: 97eecd5982d49f78a088753e3ca05f8f043f96b45d3789e635c9b40d2260265fb27c140b36daf97efed3294f4841339a9035405889648fe99b96ff7465e75311
7
- data.tar.gz: 17e4d853e602d24e94eea6176072a3c15b603a42290d7cc8897fa66c2da0717783c75208f0ec1cd66718aa792ef8f87a385cc213e9f0acb6cb52055d7739874d
6
+ metadata.gz: bf7ecd00e1863cda3c4a3572316f3565f24bf674d849c2360ca4ac646b0ef6ba6a1e8e2d661c07e614d5c5a36ec14256e2ea89de951447d19856ae19dd80aa5b
7
+ data.tar.gz: c88f5d609f6d203fc3392ebe7efcea5e4f192d94861775b88f5b4c9db97e314fd14c12900904fb90b659afd39d89573f509c52cefea56047a330c19885472af8
data/README.md CHANGED
@@ -29,6 +29,21 @@ client = Samwise::Client.new(api_key: 'my key ...')
29
29
  client = Samwise::Client.new
30
30
  ```
31
31
 
32
+ ### Get summary info in a single request
33
+
34
+ ```ruby
35
+ client.get_vendor_summary(duns: '080037478')
36
+ #=>
37
+ {
38
+ in_sam: true,
39
+ small_business: true
40
+ }
41
+ ```
42
+
43
+ Note: the definition of `small_business` is IT-centric.
44
+
45
+ See `Verify Vendor is a small business` for the list of NAICS codes uses to check if some a vendor is a small business.
46
+
32
47
  ### Verify DUNS number is in SAM.gov
33
48
 
34
49
  ```ruby
@@ -46,10 +61,26 @@ client.excluded?(duns: '080037478')
46
61
  ### Verify Vendor is a small business
47
62
 
48
63
  ```ruby
49
- client.small_business?(duns: '080037478', naicsCode: 541511)
64
+ client.small_business?(duns: '080037478')
50
65
  #=> false
51
66
  ```
52
67
 
68
+ This method checks against the following NAICS codes:
69
+
70
+ - 511210
71
+ - 541511
72
+ - 541512
73
+ - 541519
74
+ - 334614
75
+
76
+ What is a NAICS code?
77
+
78
+ > The North American Industry Classification System (NAICS) is used by businesses and governments to classify and measure economic activity in the United States, Canada, and Mexico. NAICS is 6-digit code system that is currently the standard used by federal statistical agencies in classifying business establishments.
79
+
80
+ (source: http://siccode.com/en/pages/what-is-a-naics-code)
81
+
82
+ The whitelisted NAICS codes classify companies that offer IT or related services.
83
+
53
84
  ### Get DUNS info
54
85
 
55
86
  ```ruby
@@ -14,10 +14,18 @@ module Samwise
14
14
  JSON.parse(response.body)
15
15
  end
16
16
 
17
- def duns_is_in_sam?(duns: nil, delay: 1)
18
- sleep(delay)
17
+ def get_vendor_summary(duns: nil)
19
18
  response = lookup_duns(duns: duns)
20
- response.status == 200
19
+
20
+ {
21
+ in_sam: parse_response_for_sam_status(response),
22
+ small_business: parse_response_for_small_business(response)
23
+ }
24
+ end
25
+
26
+ def duns_is_in_sam?(duns: nil)
27
+ response = lookup_duns(duns: duns)
28
+ parse_response_for_sam_status(response)
21
29
  end
22
30
 
23
31
  def get_sam_status(duns: nil)
@@ -30,33 +38,38 @@ module Samwise
30
38
  JSON.parse(response.body)["hasKnownExclusion"] == false
31
39
  end
32
40
 
33
- def small_business?(duns: nil, naicsCode: nil)
41
+ def small_business?(duns: nil)
34
42
  response = lookup_duns(duns: duns)
43
+ parse_response_for_small_business(response)
44
+ end
45
+
46
+ private
47
+
48
+ def parse_response_for_sam_status(response)
49
+ response.status == 200
50
+ end
51
+
52
+ def parse_response_for_small_business(response)
53
+ return false if response.code != 200
54
+
35
55
  data = JSON.parse(response.body)["sam_data"]["registration"]
36
56
 
37
- if data["certifications"] == nil
38
- return false
39
- end
40
- data = data["certifications"]["farResponses"]
41
- small_biz_array = data.find{|far|far["id"]=="FAR 52.219-1"}["answers"].find{"naics"}["naics"]
42
-
43
- # Allows for exact matches of a NAICS Code *or* NAICS code that starts with the argument.
44
- # E.g., 541511 matches, but 54151 also matches
45
- if small_biz_array.class == Array
46
- naics = small_biz_array.find{|naics|naics["naicsCode"].to_s.start_with?(naicsCode.to_s)}
47
- else
48
- naics = small_biz_array
57
+ far_responses = data['certifications']['farResponses']
58
+ response_to_small_biz = far_responses.find do |response|
59
+ response['id'] == Samwise::Protocol::FAR_SMALL_BIZ_CITATION
49
60
  end
50
61
 
51
- # Check for the NAICS Code and, if found, check whether it's a small
52
- if naics == nil
53
- false
54
- else
55
- naics["isSmallBusiness"] == "Y"
62
+ answers = response_to_small_biz['answers']
63
+
64
+ naics_answers = answers.find {|answer| answer.has_key?('naics')}['naics']
65
+ small_business_naics_answers = naics_answers.select do |answer|
66
+ Samwise::Protocol::NAICS_WHITELIST.include?(answer['naicsCode'])
56
67
  end
57
- end
58
68
 
59
- private
69
+ !small_business_naics_answers.detect do |answer|
70
+ answer['isSmallBusiness'] == 'Y'
71
+ end.nil?
72
+ end
60
73
 
61
74
  def lookup_duns(duns: nil)
62
75
  duns = Samwise::Util.format_duns(duns: duns)
@@ -4,6 +4,8 @@ module Samwise
4
4
  SAM_API_API_VERSION = 'v4'
5
5
  SAM_STATUS_URL = 'https://www.sam.gov/samdata/registrations/trackProgress'
6
6
  SAM_STATUS_KEY = '1452031543862'
7
+ NAICS_WHITELIST = [511210, 541511, 541512, 541519, 334614]
8
+ FAR_SMALL_BIZ_CITATION = 'FAR 52.219-1'
7
9
 
8
10
  def self.duns_url(duns: nil, api_key: nil)
9
11
  fail Samwise::Error::ArgumentMissing, 'DUNS number is missing' if duns.nil?
@@ -1,3 +1,3 @@
1
1
  module Samwise
2
- VERSION = '0.2.7'
2
+ VERSION = '0.3.0'
3
3
  end
data/spec/client_spec.rb CHANGED
@@ -25,6 +25,47 @@ describe Samwise::Client, vcr: { cassette_name: "Samwise::Client", record: :new_
25
25
  ]
26
26
  end
27
27
 
28
+ describe '#get_vendor_summary' do
29
+ it 'returns a hash containing in_sam and small_business keys' do
30
+ response = client.get_vendor_summary(duns: nine_duns)
31
+
32
+ expect(response).to have_key(:in_sam)
33
+ expect(response).to have_key(:small_business)
34
+ end
35
+
36
+ context 'when the DUNS belongs to a small business' do
37
+ it 'has small_business set to true' do
38
+ response = client.get_vendor_summary(duns: nine_duns)
39
+
40
+ expect(response[:small_business]).to eq(true)
41
+ end
42
+ end
43
+
44
+ context 'when the DUNS belongs to a big business' do
45
+ it 'has small_business set to false' do
46
+ response = client.get_vendor_summary(duns: big_biz_duns)
47
+
48
+ expect(response[:small_business]).to eq(false)
49
+ end
50
+ end
51
+
52
+ context 'when the DUNS is in SAM' do
53
+ it 'has in_sam set to true' do
54
+ response = client.get_vendor_summary(duns: nine_duns)
55
+
56
+ expect(response[:in_sam]).to eq(true)
57
+ end
58
+ end
59
+
60
+ context 'when the DUNS is not in SAM' do
61
+ it 'has in_sam set to false' do
62
+ response = client.get_vendor_summary(duns: non_existent_duns)
63
+
64
+ expect(response[:in_sam]).to eq(false)
65
+ end
66
+ end
67
+ end
68
+
28
69
  context '#get_sam_status' do
29
70
  it 'should return a Hash given a valid DUNS number' do
30
71
  skip 'until SSL issues can be addressed'
@@ -126,19 +167,18 @@ describe Samwise::Client, vcr: { cassette_name: "Samwise::Client", record: :new_
126
167
  end
127
168
 
128
169
  context '#small_business?' do
129
- it "should verify that vendor in the system is a small business with 5-digit naics code" do
130
- response = client.small_business?(duns: nine_duns, naicsCode: naics_code)
131
- expect(response).to be(true)
132
- end
133
-
134
- it "should verify that vendor in the system is a small business with full 6-digit naics code" do
135
- response = client.small_business?(duns: nine_duns, naicsCode: full_naics_code)
136
- expect(response).to be(true)
170
+ context 'the DUNS belongs to a big business' do
171
+ it 'should return false' do
172
+ response = client.small_business?(duns: big_biz_duns)
173
+ expect(response).to be(false)
174
+ end
137
175
  end
138
176
 
139
- it "should verify that vendor in the system is not a small business" do
140
- response = client.small_business?(duns: big_biz_duns, naicsCode: naics_code)
141
- expect(response).to be(false)
177
+ context 'the DUNS belongs to a small business' do
178
+ it 'should return true' do
179
+ response = client.small_business?(duns: nine_duns)
180
+ expect(response).to be(true)
181
+ end
142
182
  end
143
183
  end
144
184
  end
data/spec/spec_helper.rb CHANGED
@@ -4,6 +4,7 @@ require 'rspec/expectations'
4
4
  require 'uri'
5
5
  require 'vcr'
6
6
  require 'webmock/rspec'
7
+ require 'pry'
7
8
 
8
9
 
9
10
  include Samwise
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://api.data.gov/sam/v1/registrations/8091025070000?api_key=<data_dot_gov_api_key>
5
+ uri: https://api.data.gov/sam/v4/registrations/8091025070000?api_key=<data_dot_gov_api_key>
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: ''
@@ -12,221 +12,111 @@ http_interactions:
12
12
  Accept:
13
13
  - "*/*"
14
14
  Date:
15
- - Wed, 06 Jan 2016 20:01:33 GMT
15
+ - Tue, 24 May 2016 20:30:27 GMT
16
16
  response:
17
17
  status:
18
18
  code: 200
19
19
  message: OK
20
20
  headers:
21
- Age:
22
- - '0'
23
- Content-Type:
24
- - application/json
25
- Date:
26
- - Wed, 06 Jan 2016 20:01:15 GMT
27
21
  Server:
28
22
  - openresty
29
- Vary:
30
- - Accept-Encoding
31
- - Accept-Encoding
32
- Via:
33
- - http/1.1 api-umbrella (ApacheTrafficServer [cMsSf ])
34
- X-Cache:
35
- - MISS
36
- X-Ratelimit-Limit:
37
- - '5000'
38
- X-Ratelimit-Remaining:
39
- - '4989'
23
+ Date:
24
+ - Tue, 24 May 2016 20:30:21 GMT
25
+ Content-Type:
26
+ - application/json
40
27
  Transfer-Encoding:
41
28
  - chunked
42
29
  Connection:
43
30
  - keep-alive
44
- body:
45
- encoding: UTF-8
46
- string: '{"sam_data":{"registration":{"govtBusinessPoc":{"lastName":"GOSWAMI","fax":"8665667533","address":{"Line1":"14608
47
- Pebble Hill Lane","Zip":"20878","Country":"USA","City":"North Potomac","stateorProvince":"MD"},"email":"VIJAY@XFINION.COM","usPhone":"3018014897","firstName":"VIJAY"},"disasterRelief":{"type":"ANY"},"dunsPlus4":"0000","activationDate":"2015-11-27
48
- 08:50:04.0","fiscalYearEndCloseDate":"12/31","businessTypes":["QZ","XS","VW","2X","27","23","A620240406"],"pastPerformancePoc":{"lastName":"MECCIA","address":{"Line1":"600
49
- 19th St NW","Zip":"20431","Country":"USA","City":"Washington","stateorProvince":"DC"},"email":"MECCIAMJ@STATE.GOV","usPhone":"2024857820","firstName":"MICHAEL"},"registrationDate":"2008-08-17
50
- 00:00:00.0","certificationsURL":{"pdfUrl":"https://www.sam.gov/SAMPortal/filedownload?reportType=2&orgId=Zy7Pcr575TOozBfu0s2bViB2r%2Fqmw9Wg4JnFzpkZdsJ0HdXjYehmDrcFO9RnNaRq&pitId=xoejtS%2BtlcEa10di8z3oi0tTzy27POa44TCS3cahAyXpyvmNc6Euwh%2FQtanSvmjHs7s5dvrvXmi9%0Ayo6oUedZdg%3D%3D&requestId=oPCyK98P2qU08Ci"},"hasDelinquentFederalDebt":false,"duns":"809102507","altElectronicBusinessPoc":{"lastName":"GOSWAMI","fax":"8665667533","address":{"Line1":"14608
51
- Pebble Hill Lnae","Zip":"20878","Country":"USA","City":"North Potomac","stateorProvince":"MD"},"email":"NILAM@XFINION.COM","usPhone":"3013286579","firstName":"NILAM"},"cage":"561R4","hasKnownExclusion":false,"publicDisplay":true,"expirationDate":"2016-11-25
52
- 18:48:10.0","altPastPerformancePoc":{"lastName":"KAUL","address":{"Line1":"1801
53
- North Lynn Street","Zip":"22209","Country":"USA","City":"Rosslyn","stateorProvince":"VA"},"email":"KAULN@STATE.GOV","usPhone":"5713459854","firstName":"NISHA"},"status":"ACTIVE","corporateStructureCode":"2L","corporateStructureName":"Corporate
54
- Entity (Not Tax Exempt)","stateOfIncorporation":"MD","legalBusinessName":"XFINION
55
- INC.","congressionalDistrict":"MD 06","businessStartDate":"2005-09-16","lastUpdateDate":"2015-11-27
56
- 08:50:04.0","statusMessage":"Active","samAddress":{"Zip4":"6933","Line1":"7800
57
- LONESOME PINE LN","Zip":"20817","Country":"USA","City":"BETHESDA","stateorProvince":"MD"},"submissionDate":"2015-11-26
58
- 18:48:10.0","naics":[{"isPrimary":false,"naicsCode":"541519","naicsName":"OTHER
59
- COMPUTER RELATED SERVICES"},{"isPrimary":false,"naicsCode":"511210","naicsName":"SOFTWARE
60
- PUBLISHERS"},{"isPrimary":true,"naicsCode":"541511","naicsName":"CUSTOM COMPUTER
61
- PROGRAMMING SERVICES"},{"isPrimary":false,"naicsCode":"518210","naicsName":"DATA
62
- PROCESSING, HOSTING, AND RELATED SERVICES"},{"isPrimary":false,"naicsCode":"541512","naicsName":"COMPUTER
63
- SYSTEMS DESIGN SERVICES"}],"corporateUrl":"http://www.XFinion.com","altGovtBusinessPoc":{"lastName":"GOSWAMI","fax":"8665667533","address":{"Line1":"14608
64
- Pebble Hill Lane","Zip":"20878","Country":"USA","City":"North Potomac","stateorProvince":"MD"},"email":"NILAM@XFINION.COM","usPhone":"3013286579","firstName":"NILAM"},"creditCardUsage":true,"countryOfIncorporation":"USA","divisionNumber":"XFinion","electronicBusinessPoc":{"lastName":"GOSWAMI","fax":"8665667533","address":{"Line1":"14608
65
- Pebble Hill Lane","Zip":"20878","Country":"USA","City":"North Potomac","stateorProvince":"MD"},"email":"VIJAY@XFINION.COM","usPhone":"3018014897","firstName":"VIJAY"},"mailingAddress":{"Line1":"7800
66
- lonesome pine ln","Zip":"20817","Country":"USA","City":"Bethesda","stateorProvince":"MD"},"purposeOfRegistration":"ALL_AWARDS"}}}'
67
- http_version:
68
- recorded_at: Wed, 06 Jan 2016 20:01:34 GMT
69
- - request:
70
- method: get
71
- uri: https://api.data.gov/sam/v1/registrations/0783270180000?api_key=<data_dot_gov_api_key>
72
- body:
73
- encoding: UTF-8
74
- string: ''
75
- headers:
76
- User-Agent:
77
- - HTTPClient/1.0 (2.7.1, ruby 2.1.5 (2014-11-13))
78
- Accept:
79
- - "*/*"
80
- Date:
81
- - Wed, 06 Jan 2016 20:01:34 GMT
82
- response:
83
- status:
84
- code: 200
85
- message: OK
86
- headers:
87
- Age:
88
- - '0'
89
- Content-Type:
90
- - application/json
91
- Date:
92
- - Wed, 06 Jan 2016 20:01:15 GMT
93
- Server:
94
- - openresty
95
31
  Vary:
96
32
  - Accept-Encoding
97
33
  - Accept-Encoding
98
- Via:
99
- - http/1.1 api-umbrella (ApacheTrafficServer [cMsSf ])
100
- X-Cache:
101
- - MISS
102
34
  X-Ratelimit-Limit:
103
- - '5000'
35
+ - '25'
104
36
  X-Ratelimit-Remaining:
105
- - '4988'
106
- Content-Length:
107
- - '3299'
108
- Connection:
109
- - keep-alive
110
- body:
111
- encoding: UTF-8
112
- string: '{"sam_data":{"registration":{"govtBusinessPoc":{"lastName":"REYNOLDS","title":"CHIEF
113
- ENGINEER","fax":"9787766968","address":{"Zip4":"2799","Line1":"328 VIRGINIA
114
- ROAD","Zip":"01742","Country":"USA","City":"CONCORD","stateorProvince":"MA"},"email":"MCR@ISLANDPEAKSOFTWARE.COM","middleInitial":"C","usPhone":"9783418385","firstName":"MARK"},"dunsPlus4":"0000","activationDate":"2015-03-29
115
- 15:45:03.0","fiscalYearEndCloseDate":"12/31","businessTypes":["LJ","VW","2X"],"registrationDate":"2011-12-27
116
- 00:00:00.0","certificationsURL":{"pdfUrl":"https://www.sam.gov/SAMPortal/filedownload?reportType=2&orgId=CfE3psUYW8AzBIo9heITds3s6uj94i4CpullWZgrnbXddF3C%2FdGuyS9YM7WmhMlG&pitId=0IE%2BOsh06%2BYELonwrXcthhdZyC9BxTkLT5yI0lhUz%2FmN%2BZrVPnRSXCuwxdmpz2NSnC%2BnPDNPQIgF%0AixZvwSdNnw%3D%3D&requestId=47sK8ymUj43UF54"},"pscCodes":[{"pscName":"R&D-
117
- GENERAL SCIENCE/TECHNOLOGY: MATHEMATICAL/COMPUTER SCIENCES (BASIC RESEARCH)","pscCode":"AJ21"},{"pscName":"R&D-
118
- GENERAL SCIENCE/TECHNOLOGY: MATHEMATICAL/COMPUTER SCIENCES (APPLIED RESEARCH/EXPLORATORY
119
- DEVELOPMENT)","pscCode":"AJ22"},{"pscName":"R&D- GENERAL SCIENCE/TECHNOLOGY:
120
- MATHEMATICAL/COMPUTER SCIENCES (ADVANCED DEVELOPMENT)","pscCode":"AJ23"}],"hasDelinquentFederalDebt":false,"duns":"078327018","cage":"6M6Y4","altElectronicBusinessPoc":{"lastName":"REYNOLDS","title":"CHIEF
121
- ENGINEER","fax":"9783710046","address":{"Zip4":"2799","Line1":"328 VIRGINIA
122
- ROAD","Zip":"01742","Country":"USA","City":"CONCORD","stateorProvince":"MA"},"email":"MARKCREYNOLDS@COMCAST.NET","middleInitial":"C","usPhone":"9783710046","firstName":"MARK"},"hasKnownExclusion":false,"publicDisplay":true,"expirationDate":"2016-03-28
123
- 15:35:18.0","status":"ACTIVE","corporateStructureCode":"2K","stateOfIncorporation":"MA","corporateStructureName":"Partnership
124
- or Limited Liability Partnership","legalBusinessName":"ISLAND PEAK SOFTWARE
125
- LLC","congressionalDistrict":"MA 03","businessStartDate":"2011-11-30","statusMessage":"Active","lastUpdateDate":"2015-03-30
126
- 16:16:49.0","samAddress":{"Zip4":"2799","Line1":"328 VIRGINIA RD","Zip":"01742","Country":"USA","City":"CONCORD","stateorProvince":"MA"},"submissionDate":"2015-03-29
127
- 15:35:18.0","naics":[{"isPrimary":false,"naicsCode":"541511","naicsName":"CUSTOM
128
- COMPUTER PROGRAMMING SERVICES"},{"isPrimary":true,"naicsCode":"541712","naicsName":"RESEARCH
129
- AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY)"}],"corporateUrl":"www.islandpeaksoftware.com","altGovtBusinessPoc":{"lastName":"REYNOLDS","title":"CHIEF
130
- ENGINEER","fax":"9783710046","address":{"Zip4":"2799","Line1":"328 VIRGINIA
131
- ROAD","Zip":"01742","Country":"USA","City":"CONCORD","stateorProvince":"MA"},"email":"MARKCREYNOLDS@COMCAST.NET","middleInitial":"C","usPhone":"9783710046","firstName":"MARK"},"creditCardUsage":false,"countryOfIncorporation":"USA","electronicBusinessPoc":{"lastName":"REYNOLDS","title":"CHIEF
132
- ENGINEER","fax":"9787766968","address":{"Zip4":"2799","Line1":"328 VIRGINIA
133
- ROAD","Zip":"01742","Country":"USA","City":"CONCORD","stateorProvince":"MA"},"email":"MCR@ISLANDPEAKSOFTWARE.COM","middleInitial":"C","usPhone":"9783418385","firstName":"MARK"},"mailingAddress":{"Zip4":"2799","Line1":"328
134
- VIRGINIA ROAD","Zip":"01742","Country":"USA","City":"CONCORD","stateorProvince":"MA"},"purposeOfRegistration":"ALL_AWARDS"}}}'
135
- http_version:
136
- recorded_at: Wed, 06 Jan 2016 20:01:34 GMT
137
- - request:
138
- method: get
139
- uri: https://api.data.gov/sam/v1/registrations/0223841150000?api_key=<data_dot_gov_api_key>
140
- body:
141
- encoding: UTF-8
142
- string: ''
143
- headers:
144
- User-Agent:
145
- - HTTPClient/1.0 (2.7.1, ruby 2.1.5 (2014-11-13))
146
- Accept:
147
- - "*/*"
148
- Date:
149
- - Wed, 06 Jan 2016 20:01:34 GMT
150
- response:
151
- status:
152
- code: 200
153
- message: OK
154
- headers:
37
+ - '24'
155
38
  Age:
156
- - '1'
157
- Content-Type:
158
- - application/json
159
- Date:
160
- - Wed, 06 Jan 2016 20:01:16 GMT
161
- Server:
162
- - openresty
163
- Vary:
164
- - Accept-Encoding
165
- - Accept-Encoding
39
+ - '0'
166
40
  Via:
167
41
  - http/1.1 api-umbrella (ApacheTrafficServer [cMsSf ])
168
42
  X-Cache:
169
43
  - MISS
170
- X-Ratelimit-Limit:
171
- - '5000'
172
- X-Ratelimit-Remaining:
173
- - '4988'
174
- Content-Length:
175
- - '5615'
176
- Connection:
177
- - keep-alive
178
44
  body:
179
45
  encoding: UTF-8
180
- string: '{"sam_data":{"registration":{"govtBusinessPoc":{"lastName":"GREMILLION","usPhoneExt":"1112","fax":"5048311901","address":{"Line2":"STE.
181
- 1600","Zip4":"3044","Line1":"111 VETERANS BLVD.","Zip":"70005","Country":"USA","City":"METAIRIE","stateorProvince":"LA"},"email":"RICK.GREMILLION@GEOCENT.COM","usPhone":"5048311900","firstName":"RICHARD"},"dunsPlus4":"0000","activationDate":"2015-08-06
182
- 09:31:21.0","fiscalYearEndCloseDate":"12/31","businessTypes":["LJ","VW","2X"],"registrationDate":"2009-09-02
183
- 00:00:00.0","certificationsURL":{"pdfUrl":"https://www.sam.gov/SAMPortal/filedownload?reportType=2&orgId=A%2FGzJar8p9bfsUBQbehJcLa5Xg4YWxVDtDV4tT%2B3N0nDLP2sfKFewpoROGej2Das&pitId=94DUQxnau2ECyduTU9pec1ucWn25Y%2FDgj6qQOedZqs8cX1KMQ3L8LSXLHy4xkEcv&requestId=Fe7lHI9N0YwQ850"},"pscCodes":[{"pscName":"SUPPORT-
184
- PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT","pscCode":"R408"},{"pscName":"SUPPORT-
185
- PROFESSIONAL: PERSONAL SERVICES CONTRACTS","pscCode":"R497"},{"pscName":"SUPPORT-
186
- PROFESSIONAL: TECHNOLOGY SHARING/UTILIZATION","pscCode":"R415"},{"pscName":"SUPPORT-
187
- PROFESSIONAL: ENGINEERING/TECHNICAL","pscCode":"R425"},{"pscName":"SUPPORT-
188
- PROFESSIONAL: OTHER","pscCode":"R499"}],"hasDelinquentFederalDebt":false,"duns":"022384115","cage":"5NYU1","altElectronicBusinessPoc":{"lastName":"TOMENY","usPhoneExt":"1150","fax":"5048311901","address":{"Line2":"STE.
189
- 1600","Zip4":"3044","Line1":"111 VETERANS BLVD.","Zip":"70005","Country":"USA","City":"METAIRIE","stateorProvince":"LA"},"email":"JEFF.TOMENY@GEOCENT.COM","usPhone":"5048311900","firstName":"JEFF"},"hasKnownExclusion":false,"publicDisplay":true,"expirationDate":"2016-08-05
190
- 09:20:57.0","status":"ACTIVE","corporateStructureCode":"2K","stateOfIncorporation":"LA","corporateStructureName":"Partnership
191
- or Limited Liability Partnership","legalBusinessName":"Geocent, L.L.C. ","congressionalDistrict":"LA
192
- 01","businessStartDate":"2008-03-31","statusMessage":"Active","lastUpdateDate":"2015-08-06
193
- 09:31:21.0","samAddress":{"Zip4":"3044","Line1":"111 Veterans Memorial Blvd
194
- Ste 1600 ","Zip":"70005","Country":"USA","City":"Metairie","stateorProvince":"LA"},"submissionDate":"2015-08-06
195
- 09:20:57.0","naics":[{"isPrimary":false,"naicsCode":"811212","naicsName":"COMPUTER
196
- AND OFFICE MACHINE REPAIR AND MAINTENANCE"},{"isPrimary":false,"naicsCode":"541614","naicsName":"PROCESS,
197
- PHYSICAL DISTRIBUTION, AND LOGISTICS CONSULTING SERVICES"},{"isPrimary":false,"naicsCode":"541511","naicsName":"CUSTOM
198
- COMPUTER PROGRAMMING SERVICES"},{"isPrimary":false,"naicsCode":"541519","naicsName":"OTHER
199
- COMPUTER RELATED SERVICES"},{"isPrimary":false,"naicsCode":"927110","naicsName":"SPACE
200
- RESEARCH AND TECHNOLOGY"},{"isPrimary":false,"naicsCode":"336415","naicsName":"GUIDED
201
- MISSILE AND SPACE VEHICLE PROPULSION UNIT AND PROPULSION UNIT PARTS MANUFACTURING"},{"isPrimary":false,"naicsCode":"611420","naicsName":"COMPUTER
202
- TRAINING"},{"isPrimary":false,"naicsCode":"517110","naicsName":"WIRED TELECOMMUNICATIONS
203
- CARRIERS"},{"isPrimary":false,"naicsCode":"541612","naicsName":"HUMAN RESOURCES
204
- CONSULTING SERVICES"},{"isPrimary":false,"naicsCode":"511210","naicsName":"SOFTWARE
205
- PUBLISHERS"},{"isPrimary":false,"naicsCode":"541611","naicsName":"ADMINISTRATIVE
206
- MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES"},{"isPrimary":false,"naicsCode":"541513","naicsName":"COMPUTER
207
- FACILITIES MANAGEMENT SERVICES"},{"isPrimary":false,"naicsCode":"541720","naicsName":"RESEARCH
208
- AND DEVELOPMENT IN THE SOCIAL SCIENCES AND HUMANITIES"},{"isPrimary":false,"naicsCode":"561110","naicsName":"OFFICE
209
- ADMINISTRATIVE SERVICES"},{"isPrimary":false,"naicsCode":"561621","naicsName":"SECURITY
210
- SYSTEMS SERVICES (EXCEPT LOCKSMITHS)"},{"isPrimary":false,"naicsCode":"541712","naicsName":"RESEARCH
211
- AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY)"},{"isPrimary":false,"naicsCode":"561330","naicsName":"PROFESSIONAL
212
- EMPLOYER ORGANIZATIONS"},{"isPrimary":false,"naicsCode":"611430","naicsName":"PROFESSIONAL
213
- AND MANAGEMENT DEVELOPMENT TRAINING"},{"isPrimary":false,"naicsCode":"561210","naicsName":"FACILITIES
214
- SUPPORT SERVICES"},{"isPrimary":false,"naicsCode":"561311","naicsName":"EMPLOYMENT
215
- PLACEMENT AGENCIES"},{"isPrimary":false,"naicsCode":"541430","naicsName":"GRAPHIC
216
- DESIGN SERVICES"},{"isPrimary":false,"naicsCode":"519130","naicsName":"INTERNET
217
- PUBLISHING AND BROADCASTING AND WEB SEARCH PORTALS"},{"isPrimary":true,"naicsCode":"541330","naicsName":"ENGINEERING
218
- SERVICES"},{"isPrimary":false,"naicsCode":"332312","naicsName":"FABRICATED
219
- STRUCTURAL METAL MANUFACTURING"},{"isPrimary":false,"naicsCode":"541512","naicsName":"COMPUTER
220
- SYSTEMS DESIGN SERVICES"},{"isPrimary":false,"naicsCode":"561320","naicsName":"TEMPORARY
221
- HELP SERVICES"}],"corporateUrl":"www.geocent.com","altGovtBusinessPoc":{"lastName":"LAMOTTA","usPhoneExt":"1179","fax":"5048311901","address":{"Line2":"STE.
222
- 1600","Zip4":"3044","Line1":"111 VETERANS BLVD.","Zip":"70005","Country":"USA","City":"METAIRIE","stateorProvince":"LA"},"email":"LORENA.LAMOTTA@GEOCENT.COM","usPhone":"5048311900","firstName":"LORENA"},"creditCardUsage":false,"countryOfIncorporation":"USA","electronicBusinessPoc":{"lastName":"MURRAY","usPhoneExt":"1142","fax":"5048311901","address":{"Line2":"STE.
223
- 1600","Zip4":"3044","Line1":"111 VETERANS BLVD.","Zip":"70005","Country":"USA","City":"METAIRIE","stateorProvince":"LA"},"email":"CONTRACTS@GEOCENT.COM","middleInitial":"S.","usPhone":"5048311900","firstName":"CATHERINE"},"mailingAddress":{"Line2":"Suite
224
- 1600","Zip4":"3044","Line1":"111 VETERANS MEMORIAL BLVD","Zip":"70005","Country":"USA","City":"METAIRIE","stateorProvince":"LA"},"purposeOfRegistration":"ALL_AWARDS"}}}'
46
+ string: '{"sam_data":{"registration":{"govtBusinessPoc":{"lastName":"GOSWAMI","fax":"8665667533","address":{"zip":"20878","countryCode":"USA","line1":"14608
47
+ Pebble Hill Lane","stateorProvince":"MD","city":"North Potomac"},"email":"VIJAY@XFINION.COM","usPhone":"3018014897","firstName":"VIJAY"},"disasterRelief":{"type":"ANY"},"qualifications":{},"dunsPlus4":"0000","activationDate":"2015-11-27
48
+ 08:50:04.0","fiscalYearEndCloseDate":"12/31","businessTypes":["QZ","XS","VW","2X","27","23","A620240406"],"pastPerformancePoc":{"lastName":"MECCIA","address":{"zip":"20431","countryCode":"USA","line1":"600
49
+ 19th St NW","stateorProvince":"DC","city":"Washington"},"email":"MECCIAMJ@STATE.GOV","usPhone":"2024857820","firstName":"MICHAEL"},"registrationDate":"2008-08-17
50
+ 00:00:00.0","certificationsURL":{"pdfUrl":"https://www.sam.gov/SAMPortal/filedownload?reportType=2&orgId=7XSJiyJCAgoH4l%2FvaJm8Rkp3Yntmxz0MJZ2uoipQZ8DWMmld7Qk5l1hKhCxCP6Vo&pitId=YhJgbYtAO%2BHEPgDqw3VUY8YePz%2FfvQ6o1yMiHpMKjjZvbWe2ElHYRdkMGDmYM%2FDE&requestId=X8Pgh1WmTVs9YGZ"},"hasDelinquentFederalDebt":false,"duns":"809102507","altElectronicBusinessPoc":{"lastName":"GOSWAMI","fax":"8665667533","address":{"zip":"20878","countryCode":"USA","line1":"14608
51
+ Pebble Hill Lnae","stateorProvince":"MD","city":"North Potomac"},"email":"NILAM@XFINION.COM","usPhone":"3013286579","firstName":"NILAM"},"cage":"561R4","hasKnownExclusion":false,"publicDisplay":true,"expirationDate":"2016-11-25
52
+ 18:48:10.0","altPastPerformancePoc":{"lastName":"KAUL","address":{"zip":"22209","countryCode":"USA","line1":"1801
53
+ North Lynn Street","stateorProvince":"VA","city":"Rosslyn"},"email":"KAULN@STATE.GOV","usPhone":"5713459854","firstName":"NISHA"},"status":"ACTIVE","corporateStructureCode":"2L","corporateStructureName":"Corporate
54
+ Entity (Not Tax Exempt)","stateOfIncorporation":"MD","legalBusinessName":"XFINION
55
+ INC.","congressionalDistrict":"MD 06","bondingInformation":{},"businessStartDate":"2005-09-16","lastUpdateDate":"2015-11-27
56
+ 08:50:04.0","statusMessage":"Active","samAddress":{"zipPlus4":"6933","zip":"20817","countryCode":"USA","line1":"7800
57
+ LONESOME PINE LN","stateorProvince":"MD","city":"BETHESDA"},"submissionDate":"2015-11-26
58
+ 18:48:10.0","naics":[{"isPrimary":false,"naicsCode":"541519","naicsName":"OTHER
59
+ COMPUTER RELATED SERVICES"},{"isPrimary":false,"naicsCode":"511210","naicsName":"SOFTWARE
60
+ PUBLISHERS"},{"isPrimary":true,"naicsCode":"541511","naicsName":"CUSTOM COMPUTER
61
+ PROGRAMMING SERVICES"},{"isPrimary":false,"naicsCode":"518210","naicsName":"DATA
62
+ PROCESSING, HOSTING, AND RELATED SERVICES"},{"isPrimary":false,"naicsCode":"541512","naicsName":"COMPUTER
63
+ SYSTEMS DESIGN SERVICES"}],"certifications":{"farResponses":[{"id":"FAR 52.209-2","answers":[{"answerText":"No","section":"52.209-2.c.1"},{"answerText":"No","section":"52.209-2.c.2"}]},{"id":"FAR
64
+ 52.209-5","answers":[{"answerText":"No","section":"52.209-5.a.1.i.A"},{"answerText":"No","section":"52.209-5.a.1.i.B"},{"answerText":"No","section":"52.209-5.a.1.i.D"},{"answerText":"No","section":"52.209-5.a.1.i.C"},{"answerText":"No","section":"52.209-5.a.1.ii"}]},{"id":"FAR
65
+ 52.203-2","answers":{"section":"52.203-2.b.2.i","SamPointOfContact":{"lastName":"Goswami","title":"Principal","firstName":"Vijaykumar"}}},{"id":"FAR
66
+ 52.215-6","answers":{"answerText":"No","section":"52.215-6.a"}},{"id":"FAR
67
+ 52.214-14","answers":{"answerText":"No","section":"52.214-14.a"}},{"id":"FAR
68
+ 52.223-4","answers":{"answerText":"No","section":"52.223-4"}},{"id":"FAR 52.223-9","answers":{"answerText":"No","section":"52.223-9"}},{"id":"FAR
69
+ 52.219-2","answers":{"answerText":"No","section":"52.219-2.a"}},{"id":"FAR
70
+ 52.204-3","answers":[{"answerText":"TIN ON FILE","section":"52.204-3.d"},{"answerText":"No","section":"52.204-3.f"}]},{"id":"FAR
71
+ 52.212-3","answers":[{"naics":[{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541519,"ExcpCounter":1,"naicsName":"Other
72
+ Computer Related Services"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541519,"ExcpCounter":2,"naicsName":"Information
73
+ Technology Value Added Resellers18"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":518210,"naicsName":"DATA
74
+ PROCESSING, HOSTING, AND RELATED SERVICES"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541512,"naicsName":"COMPUTER
75
+ SYSTEMS DESIGN SERVICES"},{"isSmallBusiness":"Y","isPrimary":true,"naicsCode":541511,"naicsName":"CUSTOM
76
+ COMPUTER PROGRAMMING SERVICES"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":511210,"naicsName":"SOFTWARE
77
+ PUBLISHERS"}],"section":"52.212-3.c"},{"answerText":"Yes","section":"52.212-3.c.1"},{"answerText":"Yes","section":"52.212-3.c.4"},{"answerText":"No","section":"52.212-3.c.5"},{"answerText":"No","section":"52.212-3.c.6.i"},{"answerText":"No","section":"52.212-3.c.6.ii"},{"answerText":"No","section":"52.212-3.c.7.i"},{"answerText":"No","section":"52.212-3.c.7.ii"},{"answerText":"No","section":"52.212-3.c.10.i.A"},{"answerText":"No","section":"52.212-3.c.10.i.B"},{"answerText":"No","section":"52.212-3.c.10.ii"},{"answerText":"No","section":"52.212-3.c.11.ii"},{"answerText":"No","section":"52.212-3.d.1.i"},{"answerText":"Yes","section":"52.212-3.d.1.ii"},{"answerText":"XFINION
78
+ INC. has not had previous contracts subject to written affirmative action
79
+ programs requirements from Secretary of Labor regulations.","section":"52.212-3.d.2.i"},{"answerText":"No","section":"52.212-3.f"},{"answerText":"No","section":"52.212-3.h.1"},{"answerText":"No","section":"52.212-3.h.2"},{"answerText":"No","section":"52.212-3.h.4"},{"answerText":"No","section":"52.212-3.h.3"},{"answerText":"No","section":"52.212-3.h.5"},{"answerText":"No","section":"52.212-3.i.2.i"},{"section":"52.212-3.j"},{"answerText":"Vendor
80
+ will provide information with specific offers to the Government","section":"52.212-3.k.1.2.i"},{"answerText":"Vendor
81
+ will provide information with specific offers to the Government","section":"52.212-3.k.2.2"},{"answerText":"No","section":"52.212-3.l.5"},{"answerText":"No","section":"52.212-3.n.2.i"},{"answerText":"No","section":"52.212-3.n.2.ii"},{"answerText":"No","section":"52.226-2.b.1"},{"answerText":"No","section":"52.226-2.b.2"}]},{"id":"FAR
82
+ 52.219-1","answers":[{"naics":[{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541519,"ExcpCounter":1,"naicsName":"Other
83
+ Computer Related Services"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541519,"ExcpCounter":2,"naicsName":"Information
84
+ Technology Value Added Resellers18"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":518210,"naicsName":"DATA
85
+ PROCESSING, HOSTING, AND RELATED SERVICES"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541512,"naicsName":"COMPUTER
86
+ SYSTEMS DESIGN SERVICES"},{"isSmallBusiness":"Y","isPrimary":true,"naicsCode":541511,"naicsName":"CUSTOM
87
+ COMPUTER PROGRAMMING SERVICES"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":511210,"naicsName":"SOFTWARE
88
+ PUBLISHERS"}],"section":"52.219-1.b"},{"answerText":"Yes","section":"52.219-1.b.1"},{"answerText":"No","section":"52.219-1.b.3.1"},{"answerText":"No","section":"52.219-1.b.4.i"},{"answerText":"No","section":"52.219-1.b.4.ii"},{"answerText":"No","section":"52.219-1.b.5.i"},{"answerText":"No","section":"52.219-1.b.5.ii"},{"answerText":"No","section":"52.219-1.b.6"},{"answerText":"No","section":"52.219-1.b.7"},{"answerText":"No","section":"52.219-1.b.8.i"},{"answerText":"No","section":"52.219-1.b.8.ii"},{"answerText":"Yes","section":"52.219-1.b.9.5"}]},{"id":"FAR
89
+ 52.219-22","answers":[{"naics":[{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541519,"ExcpCounter":1,"naicsName":"Other
90
+ Computer Related Services"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541519,"ExcpCounter":2,"naicsName":"Information
91
+ Technology Value Added Resellers18"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":518210,"naicsName":"DATA
92
+ PROCESSING, HOSTING, AND RELATED SERVICES"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541512,"naicsName":"COMPUTER
93
+ SYSTEMS DESIGN SERVICES"},{"isSmallBusiness":"Y","isPrimary":true,"naicsCode":541511,"naicsName":"CUSTOM
94
+ COMPUTER PROGRAMMING SERVICES"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":511210,"naicsName":"SOFTWARE
95
+ PUBLISHERS"}],"section":"52.219-22.b"},{"answerText":"No","section":"52.219-22.b.2.1"},{"answerText":"Yes","section":"52.219-22.b.1.ii"}]},{"id":"FAR
96
+ 52.227-15","answers":{"answerText":"No","section":"52.227-15.b.2"}},{"id":"FAR
97
+ 52.204-17","answers":{"answerText":"No","section":"52.204-17.b"}},{"id":"FAR
98
+ 52.222-18","answers":{"answerText":"No","section":"52.222-18.c.1"}},{"id":"FAR
99
+ 52.222-22","answers":[{"answerText":"No","section":"52.222-22.a"},{"answerText":"Yes","section":"52.222-22.b"}]},{"id":"FAR
100
+ 52.222-25","answers":{"answerText":"XFINION INC. has not had previous contracts
101
+ subject to written affirmative action programs requirements from Secretary
102
+ of Labor regulations.","section":"52.222-25"}},{"id":"FAR 52.225-2","answers":{"answerText":"No","section":"52.225-2.a"}},{"id":"FAR
103
+ 52.225-4","answers":{"answerText":"No","section":"52.225-4.a"}},{"id":"FAR
104
+ 52.225-6","answers":{"answerText":"No","section":"52.225-6.a"}},{"id":"FAR
105
+ 52.222-48","answers":{"answerText":"Vendor will provide information with specific
106
+ offers to the Government","section":"52.222-48.a.1"}},{"id":"FAR 52.222-52","answers":{"answerText":"Vendor
107
+ will provide information with specific offers to the Government","section":"52.222-52.a.1.1"}}],"pdfUrl":"https://www.sam.gov/SAMPortal/filedownload?reportType=2&orgId=oJzAkkf8Kepf889cerKMZIArft9S7T3cB8UWbSlIdEwo4zGi4dFE%2Bz7rlpNo9IQd&pitId=w1kCvDnCHvGiqmD7nhUHDWs7Ds4FZmb%2BG%2BnjU0Sa8S0SUdDJba1z3lgClDxBq5%2BUaVnX7SmVjIS5%0AlEINb8Ciiw%3D%3D&requestId=IyP0V2rk57bF5Uu","dfarResponses":[{"id":"DFAR252.247-7022","answers":{"answerText":"No","section":"252.247-7022.b"}},{"id":"DFAR252.216-7008","answers":{"answerText":"No","section":"DFAR252.216-7008.a"}},{"id":"DFAR252.209-7002","answers":{"answerText":"No","section":"DFAR252.209-7002.1"}},{"id":"DFAR
108
+ 252.225-7000","answers":{"answerText":"No","section":"252.225-7000.c.1"}},{"id":"DFAR
109
+ 252.225-7020","answers":{"answerText":"No","section":"252.225-7020.c.1"}},{"id":"DFAR
110
+ 252.225-7022","answers":{"answerText":"No","section":"252.225-7022.c.1"}},{"id":"DFAR
111
+ 252.225-7035","answers":{"answerText":"No","section":"252.225-7035.c.1"}},{"id":"DFAR252.247-7049","answers":[{"answerText":"No","section":"252.247-7049.1"},{"answerText":"No","section":"252.247-7049.2"},{"answerText":"No","section":"252.247-7049.3"},{"answerText":"No","section":"252.247-7049.4"}]}]},"corporateUrl":"http://www.XFinion.com","altGovtBusinessPoc":{"lastName":"GOSWAMI","fax":"8665667533","address":{"zip":"20878","countryCode":"USA","line1":"14608
112
+ Pebble Hill Lane","stateorProvince":"MD","city":"North Potomac"},"email":"NILAM@XFINION.COM","usPhone":"3013286579","firstName":"NILAM"},"creditCardUsage":true,"countryOfIncorporation":"USA","divisionNumber":"XFinion","electronicBusinessPoc":{"lastName":"GOSWAMI","fax":"8665667533","address":{"zip":"20878","countryCode":"USA","line1":"14608
113
+ Pebble Hill Lane","stateorProvince":"MD","city":"North Potomac"},"email":"VIJAY@XFINION.COM","usPhone":"3018014897","firstName":"VIJAY"},"mailingAddress":{"zip":"20817","countryCode":"USA","line1":"7800
114
+ lonesome pine ln","stateorProvince":"MD","city":"Bethesda"},"purposeOfRegistration":"ALL_AWARDS"}}}'
225
115
  http_version:
226
- recorded_at: Wed, 06 Jan 2016 20:01:34 GMT
116
+ recorded_at: Tue, 24 May 2016 20:30:28 GMT
227
117
  - request:
228
118
  method: get
229
- uri: https://api.data.gov/sam/v1/registrations/0000001000000?api_key=<data_dot_gov_api_key>
119
+ uri: https://api.data.gov/sam/v4/registrations/0123456780002?api_key=<data_dot_gov_api_key>
230
120
  body:
231
121
  encoding: UTF-8
232
122
  string: ''
@@ -236,168 +126,63 @@ http_interactions:
236
126
  Accept:
237
127
  - "*/*"
238
128
  Date:
239
- - Wed, 06 Jan 2016 20:01:34 GMT
129
+ - Tue, 24 May 2016 20:30:28 GMT
240
130
  response:
241
131
  status:
242
132
  code: 404
243
133
  message: Not Found
244
134
  headers:
245
- Age:
246
- - '0'
247
- Content-Type:
248
- - application/json
249
- Date:
250
- - Wed, 06 Jan 2016 20:01:16 GMT
251
135
  Server:
252
136
  - openresty
253
- Vary:
254
- - Accept-Encoding
255
- - Accept-Encoding
256
- Via:
257
- - http/1.1 api-umbrella (ApacheTrafficServer [cMsSf ])
258
- X-Cache:
259
- - MISS
260
- X-Ratelimit-Limit:
261
- - '5000'
262
- X-Ratelimit-Remaining:
263
- - '4986'
264
- Content-Length:
265
- - '80'
266
- Connection:
267
- - keep-alive
268
- body:
269
- encoding: UTF-8
270
- string: '{"Message":"The registration could not be found","Code":404,"Error":"Not
271
- Found"}'
272
- http_version:
273
- recorded_at: Wed, 06 Jan 2016 20:01:34 GMT
274
- - request:
275
- method: get
276
- uri: https://api.data.gov/sam/v1/registrations/0800374780000?api_key=<data_dot_gov_api_key>
277
- body:
278
- encoding: UTF-8
279
- string: ''
280
- headers:
281
- User-Agent:
282
- - HTTPClient/1.0 (2.7.1, ruby 2.2.1 (2015-02-26))
283
- Accept:
284
- - "*/*"
285
137
  Date:
286
- - Tue, 02 Feb 2016 16:57:46 GMT
287
- response:
288
- status:
289
- code: 200
290
- message: OK
291
- headers:
292
- Age:
293
- - '1'
138
+ - Tue, 24 May 2016 20:30:22 GMT
294
139
  Content-Type:
295
140
  - application/json
296
- Date:
297
- - Tue, 02 Feb 2016 16:57:10 GMT
298
- Server:
299
- - openresty
141
+ Transfer-Encoding:
142
+ - chunked
143
+ Connection:
144
+ - keep-alive
300
145
  Vary:
301
146
  - Accept-Encoding
302
147
  - Accept-Encoding
303
- Via:
304
- - http/1.1 api-umbrella (ApacheTrafficServer [cMsSf ])
305
- X-Cache:
306
- - MISS
307
148
  X-Ratelimit-Limit:
308
- - '5000'
149
+ - '25'
309
150
  X-Ratelimit-Remaining:
310
- - '4999'
311
- Content-Length:
312
- - '2014'
313
- Connection:
314
- - keep-alive
315
- body:
316
- encoding: UTF-8
317
- string: '{"sam_data":{"registration":{"govtBusinessPoc":{"lastName":"SUDOL","address":{"Line1":"4301
318
- N HENDERSON RD APT 408","Zip":"22203","Country":"USA","City":"Arlington","stateorProvince":"VA"},"email":"BRENDANSUDOL@GMAIL.COM","usPhone":"5404218332","firstName":"BRENDAN"},"dunsPlus4":"0000","activationDate":"2015-10-30
319
- 11:42:30.0","fiscalYearEndCloseDate":"12/31","businessTypes":["VW","2X","27"],"registrationDate":"2015-10-28
320
- 00:00:00.0","certificationsURL":{"pdfUrl":"https://www.sam.gov/SAMPortal/filedownload?reportType=1&orgId=2YwXIMQ2w3Yx23Ejm0exX4pxPe2o%2F9MeQB%2FXr%2FC2oKNpR2F8NYUeTRH39Ahlh%2BE0&pitId=BzydZ47zRiwj1pHfMuqedwfSbzCYxqAOWJNFPP0wembXj4S4%2BrvkVhaHidTnJQlb&requestId=cImW4Nv5BfFQ74o"},"hasDelinquentFederalDebt":false,"duns":"080037478","cage":"7H1Y7","hasKnownExclusion":false,"publicDisplay":true,"expirationDate":"2016-10-27
321
- 10:53:02.0","status":"ACTIVE","corporateStructureCode":"2J","stateOfIncorporation":"VA","corporateStructureName":"Sole
322
- Proprietorship","legalBusinessName":"Sudol, Brendan","congressionalDistrict":"VA
323
- 08","businessStartDate":"2015-10-28","statusMessage":"Active","lastUpdateDate":"2015-11-02
324
- 17:36:23.0","submissionDate":"2015-10-28 10:53:02.0","samAddress":{"Zip4":"2511","Line1":"4301
325
- N Henderson Rd Apt 408","Zip":"22203","Country":"USA","City":"Arlington","stateorProvince":"VA"},"naics":[{"isPrimary":false,"naicsCode":"518210","naicsName":"DATA
326
- PROCESSING, HOSTING, AND RELATED SERVICES"},{"isPrimary":true,"naicsCode":"541511","naicsName":"CUSTOM
327
- COMPUTER PROGRAMMING SERVICES"}],"creditCardUsage":true,"countryOfIncorporation":"USA","electronicBusinessPoc":{"lastName":"SUDOL","address":{"Line1":"4301
328
- N HENDERSON RD APT 408","Zip":"22203","Country":"USA","City":"Arlington","stateorProvince":"VA"},"email":"BRENDANSUDOL@GMAIL.COM","usPhone":"5404218332","firstName":"BRENDAN"},"mailingAddress":{"Zip4":"2511","Line1":"4301
329
- N Henderson Rd Apt 408","Zip":"22203","Country":"USA","City":"Arlington","stateorProvince":"VA"},"purposeOfRegistration":"ALL_AWARDS"}}}'
330
- http_version:
331
- recorded_at: Tue, 02 Feb 2016 16:57:46 GMT
332
- - request:
333
- method: get
334
- uri: https://api.data.gov/sam/v1/registrations/0800314780000?api_key=<data_dot_gov_api_key>
335
- body:
336
- encoding: UTF-8
337
- string: ''
338
- headers:
339
- User-Agent:
340
- - HTTPClient/1.0 (2.7.1, ruby 2.2.1 (2015-02-26))
341
- Accept:
342
- - "*/*"
343
- Date:
344
- - Tue, 02 Feb 2016 16:57:46 GMT
345
- response:
346
- status:
347
- code: 404
348
- message: Not Found
349
- headers:
151
+ - '24'
350
152
  Age:
351
153
  - '0'
352
- Content-Type:
353
- - application/json
354
- Date:
355
- - Tue, 02 Feb 2016 16:57:10 GMT
356
- Server:
357
- - openresty
358
- Vary:
359
- - Accept-Encoding
360
- - Accept-Encoding
361
154
  Via:
362
- - http/1.1 api-umbrella (ApacheTrafficServer [cMsSf ])
363
- X-Cache:
364
- - MISS
365
- X-Ratelimit-Limit:
366
- - '5000'
367
- X-Ratelimit-Remaining:
368
- - '4998'
369
- Content-Length:
370
- - '80'
371
- Connection:
372
- - keep-alive
155
+ - http/1.1 api-umbrella (ApacheTrafficServer [cMsSf ])
156
+ X-Cache:
157
+ - MISS
373
158
  body:
374
159
  encoding: UTF-8
375
160
  string: '{"Message":"The registration could not be found","Code":404,"Error":"Not
376
161
  Found"}'
377
162
  http_version:
378
- recorded_at: Tue, 02 Feb 2016 16:57:46 GMT
163
+ recorded_at: Tue, 24 May 2016 20:30:28 GMT
379
164
  - request:
380
165
  method: get
381
- uri: https://api.data.gov/sam/v4/registrations/8091025070000?api_key=<data_dot_gov_api_key>
166
+ uri: https://api.data.gov/sam/v4/registrations/0000001000000?api_key=<data_dot_gov_api_key>
382
167
  body:
383
168
  encoding: UTF-8
384
169
  string: ''
385
170
  headers:
386
171
  User-Agent:
387
- - HTTPClient/1.0 (2.8.0, ruby 2.2.0 (2014-12-25))
172
+ - HTTPClient/1.0 (2.7.1, ruby 2.1.5 (2014-11-13))
388
173
  Accept:
389
174
  - "*/*"
390
175
  Date:
391
- - Sun, 24 Apr 2016 15:19:36 GMT
176
+ - Tue, 24 May 2016 20:30:28 GMT
392
177
  response:
393
178
  status:
394
- code: 200
395
- message: OK
179
+ code: 404
180
+ message: Not Found
396
181
  headers:
397
182
  Server:
398
183
  - openresty
399
184
  Date:
400
- - Sun, 24 Apr 2016 15:19:36 GMT
185
+ - Tue, 24 May 2016 20:30:22 GMT
401
186
  Content-Type:
402
187
  - application/json
403
188
  Transfer-Encoding:
@@ -408,9 +193,9 @@ http_interactions:
408
193
  - Accept-Encoding
409
194
  - Accept-Encoding
410
195
  X-Ratelimit-Limit:
411
- - '5000'
196
+ - '25'
412
197
  X-Ratelimit-Remaining:
413
- - '4992'
198
+ - '24'
414
199
  Age:
415
200
  - '0'
416
201
  Via:
@@ -419,77 +204,10 @@ http_interactions:
419
204
  - MISS
420
205
  body:
421
206
  encoding: UTF-8
422
- string: '{"sam_data":{"registration":{"govtBusinessPoc":{"lastName":"GOSWAMI","fax":"8665667533","address":{"zip":"20878","countryCode":"USA","line1":"14608
423
- Pebble Hill Lane","stateorProvince":"MD","city":"North Potomac"},"email":"VIJAY@XFINION.COM","usPhone":"3018014897","firstName":"VIJAY"},"disasterRelief":{"type":"ANY"},"qualifications":{},"dunsPlus4":"0000","activationDate":"2015-11-27
424
- 08:50:04.0","fiscalYearEndCloseDate":"12/31","businessTypes":["QZ","XS","VW","2X","27","23","A620240406"],"pastPerformancePoc":{"lastName":"MECCIA","address":{"zip":"20431","countryCode":"USA","line1":"600
425
- 19th St NW","stateorProvince":"DC","city":"Washington"},"email":"MECCIAMJ@STATE.GOV","usPhone":"2024857820","firstName":"MICHAEL"},"registrationDate":"2008-08-17
426
- 00:00:00.0","certificationsURL":{"pdfUrl":"https://www.sam.gov/SAMPortal/filedownload?reportType=2&orgId=i8XthpVk2q7dnzomL7CyRId1Qld3Yk1kbM9oGo4xG1zAsssG%2F87hnnXskmAT13rU&pitId=gRR8yRrsWChfe951P8%2F1dtj1s32pTkfA8n1axbFg0juY4rtDTijuELpJIVMvdJFM&requestId=2W4PGK5t8zHu168"},"hasDelinquentFederalDebt":false,"duns":"809102507","altElectronicBusinessPoc":{"lastName":"GOSWAMI","fax":"8665667533","address":{"zip":"20878","countryCode":"USA","line1":"14608
427
- Pebble Hill Lnae","stateorProvince":"MD","city":"North Potomac"},"email":"NILAM@XFINION.COM","usPhone":"3013286579","firstName":"NILAM"},"cage":"561R4","hasKnownExclusion":false,"publicDisplay":true,"expirationDate":"2016-11-25
428
- 18:48:10.0","altPastPerformancePoc":{"lastName":"KAUL","address":{"zip":"22209","countryCode":"USA","line1":"1801
429
- North Lynn Street","stateorProvince":"VA","city":"Rosslyn"},"email":"KAULN@STATE.GOV","usPhone":"5713459854","firstName":"NISHA"},"status":"ACTIVE","corporateStructureCode":"2L","corporateStructureName":"Corporate
430
- Entity (Not Tax Exempt)","stateOfIncorporation":"MD","legalBusinessName":"XFINION
431
- INC.","congressionalDistrict":"MD 06","bondingInformation":{},"businessStartDate":"2005-09-16","lastUpdateDate":"2015-11-27
432
- 08:50:04.0","statusMessage":"Active","samAddress":{"zipPlus4":"6933","zip":"20817","countryCode":"USA","line1":"7800
433
- LONESOME PINE LN","stateorProvince":"MD","city":"BETHESDA"},"submissionDate":"2015-11-26
434
- 18:48:10.0","naics":[{"isPrimary":false,"naicsCode":"541519","naicsName":"OTHER
435
- COMPUTER RELATED SERVICES"},{"isPrimary":false,"naicsCode":"511210","naicsName":"SOFTWARE
436
- PUBLISHERS"},{"isPrimary":true,"naicsCode":"541511","naicsName":"CUSTOM COMPUTER
437
- PROGRAMMING SERVICES"},{"isPrimary":false,"naicsCode":"518210","naicsName":"DATA
438
- PROCESSING, HOSTING, AND RELATED SERVICES"},{"isPrimary":false,"naicsCode":"541512","naicsName":"COMPUTER
439
- SYSTEMS DESIGN SERVICES"}],"certifications":{"farResponses":[{"id":"FAR 52.209-2","answers":[{"answerText":"No","section":"52.209-2.c.1"},{"answerText":"No","section":"52.209-2.c.2"}]},{"id":"FAR
440
- 52.209-5","answers":[{"answerText":"No","section":"52.209-5.a.1.i.A"},{"answerText":"No","section":"52.209-5.a.1.i.B"},{"answerText":"No","section":"52.209-5.a.1.i.D"},{"answerText":"No","section":"52.209-5.a.1.i.C"},{"answerText":"No","section":"52.209-5.a.1.ii"}]},{"id":"FAR
441
- 52.203-2","answers":{"section":"52.203-2.b.2.i","SamPointOfContact":{"lastName":"Goswami","title":"Principal","firstName":"Vijaykumar"}}},{"id":"FAR
442
- 52.215-6","answers":{"answerText":"No","section":"52.215-6.a"}},{"id":"FAR
443
- 52.214-14","answers":{"answerText":"No","section":"52.214-14.a"}},{"id":"FAR
444
- 52.223-4","answers":{"answerText":"No","section":"52.223-4"}},{"id":"FAR 52.223-9","answers":{"answerText":"No","section":"52.223-9"}},{"id":"FAR
445
- 52.219-2","answers":{"answerText":"No","section":"52.219-2.a"}},{"id":"FAR
446
- 52.204-3","answers":[{"answerText":"TIN ON FILE","section":"52.204-3.d"},{"answerText":"No","section":"52.204-3.f"}]},{"id":"FAR
447
- 52.212-3","answers":[{"naics":[{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541519,"ExcpCounter":1,"naicsName":"Other
448
- Computer Related Services"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541519,"ExcpCounter":2,"naicsName":"Information
449
- Technology Value Added Resellers18"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":518210,"naicsName":"DATA
450
- PROCESSING, HOSTING, AND RELATED SERVICES"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541512,"naicsName":"COMPUTER
451
- SYSTEMS DESIGN SERVICES"},{"isSmallBusiness":"Y","isPrimary":true,"naicsCode":541511,"naicsName":"CUSTOM
452
- COMPUTER PROGRAMMING SERVICES"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":511210,"naicsName":"SOFTWARE
453
- PUBLISHERS"}],"section":"52.212-3.c"},{"answerText":"Yes","section":"52.212-3.c.1"},{"answerText":"Yes","section":"52.212-3.c.4"},{"answerText":"No","section":"52.212-3.c.5"},{"answerText":"No","section":"52.212-3.c.6.i"},{"answerText":"No","section":"52.212-3.c.6.ii"},{"answerText":"No","section":"52.212-3.c.7.i"},{"answerText":"No","section":"52.212-3.c.7.ii"},{"answerText":"No","section":"52.212-3.c.10.i.A"},{"answerText":"No","section":"52.212-3.c.10.i.B"},{"answerText":"No","section":"52.212-3.c.10.ii"},{"answerText":"No","section":"52.212-3.c.11.ii"},{"answerText":"No","section":"52.212-3.d.1.i"},{"answerText":"Yes","section":"52.212-3.d.1.ii"},{"answerText":"XFINION
454
- INC. has not had previous contracts subject to written affirmative action
455
- programs requirements from Secretary of Labor regulations.","section":"52.212-3.d.2.i"},{"answerText":"No","section":"52.212-3.f"},{"answerText":"No","section":"52.212-3.h.1"},{"answerText":"No","section":"52.212-3.h.2"},{"answerText":"No","section":"52.212-3.h.4"},{"answerText":"No","section":"52.212-3.h.3"},{"answerText":"No","section":"52.212-3.h.5"},{"answerText":"No","section":"52.212-3.i.2.i"},{"section":"52.212-3.j"},{"answerText":"Vendor
456
- will provide information with specific offers to the Government","section":"52.212-3.k.1.2.i"},{"answerText":"Vendor
457
- will provide information with specific offers to the Government","section":"52.212-3.k.2.2"},{"answerText":"No","section":"52.212-3.l.5"},{"answerText":"No","section":"52.212-3.n.2.i"},{"answerText":"No","section":"52.212-3.n.2.ii"},{"answerText":"No","section":"52.226-2.b.1"},{"answerText":"No","section":"52.226-2.b.2"}]},{"id":"FAR
458
- 52.219-1","answers":[{"naics":[{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541519,"ExcpCounter":1,"naicsName":"Other
459
- Computer Related Services"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541519,"ExcpCounter":2,"naicsName":"Information
460
- Technology Value Added Resellers18"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":518210,"naicsName":"DATA
461
- PROCESSING, HOSTING, AND RELATED SERVICES"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541512,"naicsName":"COMPUTER
462
- SYSTEMS DESIGN SERVICES"},{"isSmallBusiness":"Y","isPrimary":true,"naicsCode":541511,"naicsName":"CUSTOM
463
- COMPUTER PROGRAMMING SERVICES"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":511210,"naicsName":"SOFTWARE
464
- PUBLISHERS"}],"section":"52.219-1.b"},{"answerText":"Yes","section":"52.219-1.b.1"},{"answerText":"No","section":"52.219-1.b.3.1"},{"answerText":"No","section":"52.219-1.b.4.i"},{"answerText":"No","section":"52.219-1.b.4.ii"},{"answerText":"No","section":"52.219-1.b.5.i"},{"answerText":"No","section":"52.219-1.b.5.ii"},{"answerText":"No","section":"52.219-1.b.6"},{"answerText":"No","section":"52.219-1.b.7"},{"answerText":"No","section":"52.219-1.b.8.i"},{"answerText":"No","section":"52.219-1.b.8.ii"},{"answerText":"Yes","section":"52.219-1.b.9.5"}]},{"id":"FAR
465
- 52.219-22","answers":[{"naics":[{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541519,"ExcpCounter":1,"naicsName":"Other
466
- Computer Related Services"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541519,"ExcpCounter":2,"naicsName":"Information
467
- Technology Value Added Resellers18"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":518210,"naicsName":"DATA
468
- PROCESSING, HOSTING, AND RELATED SERVICES"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541512,"naicsName":"COMPUTER
469
- SYSTEMS DESIGN SERVICES"},{"isSmallBusiness":"Y","isPrimary":true,"naicsCode":541511,"naicsName":"CUSTOM
470
- COMPUTER PROGRAMMING SERVICES"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":511210,"naicsName":"SOFTWARE
471
- PUBLISHERS"}],"section":"52.219-22.b"},{"answerText":"No","section":"52.219-22.b.2.1"},{"answerText":"Yes","section":"52.219-22.b.1.ii"}]},{"id":"FAR
472
- 52.227-15","answers":{"answerText":"No","section":"52.227-15.b.2"}},{"id":"FAR
473
- 52.204-17","answers":{"answerText":"No","section":"52.204-17.b"}},{"id":"FAR
474
- 52.222-18","answers":{"answerText":"No","section":"52.222-18.c.1"}},{"id":"FAR
475
- 52.222-22","answers":[{"answerText":"No","section":"52.222-22.a"},{"answerText":"Yes","section":"52.222-22.b"}]},{"id":"FAR
476
- 52.222-25","answers":{"answerText":"XFINION INC. has not had previous contracts
477
- subject to written affirmative action programs requirements from Secretary
478
- of Labor regulations.","section":"52.222-25"}},{"id":"FAR 52.225-2","answers":{"answerText":"No","section":"52.225-2.a"}},{"id":"FAR
479
- 52.225-4","answers":{"answerText":"No","section":"52.225-4.a"}},{"id":"FAR
480
- 52.225-6","answers":{"answerText":"No","section":"52.225-6.a"}},{"id":"FAR
481
- 52.222-48","answers":{"answerText":"Vendor will provide information with specific
482
- offers to the Government","section":"52.222-48.a.1"}},{"id":"FAR 52.222-52","answers":{"answerText":"Vendor
483
- will provide information with specific offers to the Government","section":"52.222-52.a.1.1"}}],"pdfUrl":"https://www.sam.gov/SAMPortal/filedownload?reportType=2&orgId=ep462n2HMql7v7t7UGvrVJ%2BrCeDN7ltCRj5%2BlsACjH009ozkDbq7TUQMhP%2FRdljN&pitId=KjDU2ERl%2Bqp6DTasy%2FaV83XmxAQZ5LnXcpAUqcyF3pZ9FKPV4KFWvFNHqRkND2Kf&requestId=w9V21Xi7UwKbc0W","dfarResponses":[{"id":"DFAR252.247-7022","answers":{"answerText":"No","section":"252.247-7022.b"}},{"id":"DFAR252.216-7008","answers":{"answerText":"No","section":"DFAR252.216-7008.a"}},{"id":"DFAR252.209-7002","answers":{"answerText":"No","section":"DFAR252.209-7002.1"}},{"id":"DFAR
484
- 252.225-7000","answers":{"answerText":"No","section":"252.225-7000.c.1"}},{"id":"DFAR
485
- 252.225-7020","answers":{"answerText":"No","section":"252.225-7020.c.1"}},{"id":"DFAR
486
- 252.225-7022","answers":{"answerText":"No","section":"252.225-7022.c.1"}},{"id":"DFAR
487
- 252.225-7035","answers":{"answerText":"No","section":"252.225-7035.c.1"}},{"id":"DFAR252.247-7049","answers":[{"answerText":"No","section":"252.247-7049.1"},{"answerText":"No","section":"252.247-7049.2"},{"answerText":"No","section":"252.247-7049.3"},{"answerText":"No","section":"252.247-7049.4"}]}]},"corporateUrl":"http://www.XFinion.com","altGovtBusinessPoc":{"lastName":"GOSWAMI","fax":"8665667533","address":{"zip":"20878","countryCode":"USA","line1":"14608
488
- Pebble Hill Lane","stateorProvince":"MD","city":"North Potomac"},"email":"NILAM@XFINION.COM","usPhone":"3013286579","firstName":"NILAM"},"creditCardUsage":true,"countryOfIncorporation":"USA","divisionNumber":"XFinion","electronicBusinessPoc":{"lastName":"GOSWAMI","fax":"8665667533","address":{"zip":"20878","countryCode":"USA","line1":"14608
489
- Pebble Hill Lane","stateorProvince":"MD","city":"North Potomac"},"email":"VIJAY@XFINION.COM","usPhone":"3018014897","firstName":"VIJAY"},"mailingAddress":{"zip":"20817","countryCode":"USA","line1":"7800
490
- lonesome pine ln","stateorProvince":"MD","city":"Bethesda"},"purposeOfRegistration":"ALL_AWARDS"}}}'
207
+ string: '{"Message":"The registration could not be found","Code":404,"Error":"Not
208
+ Found"}'
491
209
  http_version:
492
- recorded_at: Sun, 24 Apr 2016 15:19:36 GMT
210
+ recorded_at: Tue, 24 May 2016 20:30:29 GMT
493
211
  - request:
494
212
  method: get
495
213
  uri: https://api.data.gov/sam/v4/registrations/0783270180000?api_key=<data_dot_gov_api_key>
@@ -498,11 +216,11 @@ http_interactions:
498
216
  string: ''
499
217
  headers:
500
218
  User-Agent:
501
- - HTTPClient/1.0 (2.8.0, ruby 2.2.0 (2014-12-25))
219
+ - HTTPClient/1.0 (2.7.1, ruby 2.1.5 (2014-11-13))
502
220
  Accept:
503
221
  - "*/*"
504
222
  Date:
505
- - Sun, 24 Apr 2016 15:19:36 GMT
223
+ - Tue, 24 May 2016 20:30:29 GMT
506
224
  response:
507
225
  status:
508
226
  code: 200
@@ -511,7 +229,7 @@ http_interactions:
511
229
  Server:
512
230
  - openresty
513
231
  Date:
514
- - Sun, 24 Apr 2016 15:19:36 GMT
232
+ - Tue, 24 May 2016 20:30:22 GMT
515
233
  Content-Type:
516
234
  - application/json
517
235
  Transfer-Encoding:
@@ -522,9 +240,9 @@ http_interactions:
522
240
  - Accept-Encoding
523
241
  - Accept-Encoding
524
242
  X-Ratelimit-Limit:
525
- - '5000'
243
+ - '25'
526
244
  X-Ratelimit-Remaining:
527
- - '4996'
245
+ - '23'
528
246
  Age:
529
247
  - '0'
530
248
  Via:
@@ -537,7 +255,7 @@ http_interactions:
537
255
  ENGINEER","fax":"9784055109","address":{"zipPlus4":"2799","zip":"01742","countryCode":"USA","line1":"328
538
256
  VIRGINIA ROAD","stateorProvince":"MA","city":"CONCORD"},"email":"MCR@ISLANDPEAKSOFTWARE.COM","middleInitial":"C","usPhone":"9783418385","firstName":"MARK"},"qualifications":{},"dunsPlus4":"0000","activationDate":"2016-03-28
539
257
  10:14:38.0","fiscalYearEndCloseDate":"12/31","businessTypes":["LJ","VW","2X"],"registrationDate":"2011-12-27
540
- 00:00:00.0","certificationsURL":{"pdfUrl":"https://www.sam.gov/SAMPortal/filedownload?reportType=2&orgId=9syqOQYvA1rjJ6LEUn21rWIotRmGEOAVPn1svpmiNsK6%2F8VSyWtqTPHGejCGzXpC&pitId=C3ZTIzJgzfyAgXjL958UbwhrYn4IQtIlw2oW9pNk%2Fg2s6R%2FF98pu3XeHPiPOTULeJg7ESS9ELDYS%0AtQrSN8rC%2Bw%3D%3D&requestId=3355hKpQX2BkuZ7"},"pscCodes":[{"pscName":"R&D-
258
+ 00:00:00.0","certificationsURL":{"pdfUrl":"https://www.sam.gov/SAMPortal/filedownload?reportType=2&orgId=0VocQSIo565AfpNPbIMORbOtcoqJjjoK6ZYLBfRgy14db5eRyn4fDkpkhphvfu8w&pitId=I%2FHTb4OrGHUwBvgjTvHIMnwx9pU4xMfoQs44HUZ1tjIJzUcGjLTCjllI2wKgMNqQ&requestId=zZkl7Z0Xi4G7L32"},"pscCodes":[{"pscName":"R&D-
541
259
  GENERAL SCIENCE/TECHNOLOGY: MATHEMATICAL/COMPUTER SCIENCES (APPLIED RESEARCH/EXPLORATORY
542
260
  DEVELOPMENT)","pscCode":"AJ22"},{"pscName":"R&D- GENERAL SCIENCE/TECHNOLOGY:
543
261
  MATHEMATICAL/COMPUTER SCIENCES (BASIC RESEARCH)","pscCode":"AJ21"},{"pscName":"R&D-
@@ -591,7 +309,7 @@ http_interactions:
591
309
  52.225-4","answers":{"answerText":"No","section":"52.225-4.a"}},{"id":"FAR
592
310
  52.225-6","answers":{"answerText":"No","section":"52.225-6.a"}},{"id":"FAR
593
311
  52.222-48","answers":{"answerText":"No","section":"52.222-48.a.1"}},{"id":"FAR
594
- 52.222-52","answers":{"answerText":"No","section":"52.222-52.a.1.1"}}],"pdfUrl":"https://www.sam.gov/SAMPortal/filedownload?reportType=2&orgId=yAU%2F9WZjb7LkrJApdak3lQAfnZT8jHLysiT%2Fq6P8C6JDq%2B0AFvbMLXGF0w7WWvvg&pitId=M8vRJ%2FtiCGRBj35Iy8k%2B7V%2BI5lNsCZmx6No%2BRomm0uDVzvUT5wQMkuTPhQEqBZPh&requestId=fgCFkZ8VnQ534yC","dfarResponses":[{"id":"DFAR252.247-7022","answers":{"answerText":"No","section":"252.247-7022.b"}},{"id":"DFAR252.216-7008","answers":{"answerText":"No","section":"DFAR252.216-7008.a"}},{"id":"DFAR252.209-7002","answers":{"answerText":"No","section":"DFAR252.209-7002.1"}},{"id":"DFAR
312
+ 52.222-52","answers":{"answerText":"No","section":"52.222-52.a.1.1"}}],"pdfUrl":"https://www.sam.gov/SAMPortal/filedownload?reportType=2&orgId=W8%2BrZF4X0bFuuOVOXbugLJjCWEAVhWTS4Bnzy0c03R9Um%2B0ctz5HIsbTeJCKZEAo&pitId=xYLEtbYCokVwjlRuhopTZwrxvqFsXVG2QjiMQLWHw%2FMnyNFhCfRE%2B5%2BKwSFa9U3SbC2PDN5C8435%0A8Yg2EjW5yA%3D%3D&requestId=SGtWCD7V3Aj0ZaF","dfarResponses":[{"id":"DFAR252.247-7022","answers":{"answerText":"No","section":"252.247-7022.b"}},{"id":"DFAR252.216-7008","answers":{"answerText":"No","section":"DFAR252.216-7008.a"}},{"id":"DFAR252.209-7002","answers":{"answerText":"No","section":"DFAR252.209-7002.1"}},{"id":"DFAR
595
313
  252.225-7000","answers":{"answerText":"No","section":"252.225-7000.c.1"}},{"id":"DFAR
596
314
  252.225-7020","answers":{"answerText":"No","section":"252.225-7020.c.1"}},{"id":"DFAR
597
315
  252.225-7022","answers":{"answerText":"No","section":"252.225-7022.c.1"}},{"id":"DFAR
@@ -602,7 +320,7 @@ http_interactions:
602
320
  VIRGINIA ROAD","stateorProvince":"MA","city":"CONCORD"},"email":"MCR@ISLANDPEAKSOFTWARE.COM","middleInitial":"C","usPhone":"9783418385","firstName":"MARK"},"mailingAddress":{"zipPlus4":"2799","zip":"01742","countryCode":"USA","line1":"328
603
321
  VIRGINIA ROAD","stateorProvince":"MA","city":"CONCORD"},"purposeOfRegistration":"ALL_AWARDS"}}}'
604
322
  http_version:
605
- recorded_at: Sun, 24 Apr 2016 15:19:37 GMT
323
+ recorded_at: Tue, 24 May 2016 20:30:29 GMT
606
324
  - request:
607
325
  method: get
608
326
  uri: https://api.data.gov/sam/v4/registrations/0223841150000?api_key=<data_dot_gov_api_key>
@@ -611,11 +329,11 @@ http_interactions:
611
329
  string: ''
612
330
  headers:
613
331
  User-Agent:
614
- - HTTPClient/1.0 (2.8.0, ruby 2.2.0 (2014-12-25))
332
+ - HTTPClient/1.0 (2.7.1, ruby 2.1.5 (2014-11-13))
615
333
  Accept:
616
334
  - "*/*"
617
335
  Date:
618
- - Sun, 24 Apr 2016 15:19:37 GMT
336
+ - Tue, 24 May 2016 20:30:29 GMT
619
337
  response:
620
338
  status:
621
339
  code: 200
@@ -624,7 +342,7 @@ http_interactions:
624
342
  Server:
625
343
  - openresty
626
344
  Date:
627
- - Sun, 24 Apr 2016 15:19:37 GMT
345
+ - Tue, 24 May 2016 20:30:22 GMT
628
346
  Content-Type:
629
347
  - application/json
630
348
  Transfer-Encoding:
@@ -635,11 +353,11 @@ http_interactions:
635
353
  - Accept-Encoding
636
354
  - Accept-Encoding
637
355
  X-Ratelimit-Limit:
638
- - '5000'
356
+ - '25'
639
357
  X-Ratelimit-Remaining:
640
- - '4989'
358
+ - '23'
641
359
  Age:
642
- - '1'
360
+ - '0'
643
361
  Via:
644
362
  - http/1.1 api-umbrella (ApacheTrafficServer [cMsSf ])
645
363
  X-Cache:
@@ -649,7 +367,7 @@ http_interactions:
649
367
  string: '{"sam_data":{"registration":{"govtBusinessPoc":{"lastName":"GREMILLION","usPhoneExt":"1112","fax":"5048311901","address":{"zipPlus4":"3044","zip":"70005","countryCode":"USA","line1":"111
650
368
  VETERANS BLVD.","stateorProvince":"LA","line2":"STE. 1600","city":"METAIRIE"},"email":"RICK.GREMILLION@GEOCENT.COM","usPhone":"5048311900","firstName":"RICHARD"},"qualifications":{"acass":{"id":"SF330","answers":{"answerText":"No","section":"SF330.1"}}},"dunsPlus4":"0000","activationDate":"2015-08-06
651
369
  09:31:21.0","fiscalYearEndCloseDate":"12/31","businessTypes":["LJ","VW","2X"],"registrationDate":"2009-09-02
652
- 00:00:00.0","certificationsURL":{"pdfUrl":"https://www.sam.gov/SAMPortal/filedownload?reportType=2&orgId=71SDUByil3UweHOzGmhcAciHyO4gWLsN4TQoWeslkMDNDu5ffM%2FO%2BaaThT4bRy34&pitId=AdieorTezP0J2uFM0EEyCyabej2CLFqx2IXBjtFVAtpb6unNhlQTim%2BRECrx1jGYjSJEtEPlo3SU%0Az8yds8kx3w%3D%3D&requestId=CzI1yor42abeY8o"},"pscCodes":[{"pscName":"SUPPORT-
370
+ 00:00:00.0","certificationsURL":{"pdfUrl":"https://www.sam.gov/SAMPortal/filedownload?reportType=2&orgId=%2FDfzk3q2kq8nQD7%2FQCckufEV2ctjlobGnFLlScNUfeAMxFIigNs3RzZiFhoSSNz9&pitId=RhC3Ct07GBf9xGMnl%2BNYowZp2VuWD2uHjQcJ9AlrH%2FPUm%2FnWpn%2FXxjAT474FwNS9&requestId=4S2U5F3cWeiEgCR"},"pscCodes":[{"pscName":"SUPPORT-
653
371
  PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT","pscCode":"R408"},{"pscName":"SUPPORT-
654
372
  PROFESSIONAL: PERSONAL SERVICES CONTRACTS","pscCode":"R497"},{"pscName":"SUPPORT-
655
373
  PROFESSIONAL: TECHNOLOGY SHARING/UTILIZATION","pscCode":"R415"},{"pscName":"SUPPORT-
@@ -877,7 +595,7 @@ http_interactions:
877
595
  52.225-4","answers":{"answerText":"No","section":"52.225-4.a"}},{"id":"FAR
878
596
  52.225-6","answers":{"answerText":"No","section":"52.225-6.a"}},{"id":"FAR
879
597
  52.222-48","answers":{"answerText":"No","section":"52.222-48.a.1"}},{"id":"FAR
880
- 52.222-52","answers":{"answerText":"No","section":"52.222-52.a.1.1"}},{"id":"SF330","answers":{"answerText":"No","section":"SF330.1"}}],"pdfUrl":"https://www.sam.gov/SAMPortal/filedownload?reportType=2&orgId=AVD3g6RyR9tixGQ35clQ1e7K0LFJKn3elpw4KuYOyrakPfyUhSKmoIDveIWbg%2Bil&pitId=%2BdKybOx%2Br2sCaPohaHKRyfRXSFCkpigmLixLK7NbisGGAFy3v8u0l35IiDL80dq2zyem%2FyZypFNk%0AGX40ZtFNsw%3D%3D&requestId=2A4SGx6BGwD6NGy","dfarResponses":[{"id":"DFAR252.247-7022","answers":{"answerText":"No","section":"252.247-7022.b"}},{"id":"DFAR252.216-7008","answers":{"answerText":"No","section":"DFAR252.216-7008.a"}},{"id":"DFAR252.209-7002","answers":{"answerText":"No","section":"DFAR252.209-7002.1"}},{"id":"DFAR
598
+ 52.222-52","answers":{"answerText":"No","section":"52.222-52.a.1.1"}},{"id":"SF330","answers":{"answerText":"No","section":"SF330.1"}}],"pdfUrl":"https://www.sam.gov/SAMPortal/filedownload?reportType=2&orgId=grrSwpW57oGl9qSZSRrN9LWVukkPG%2Bb%2BYZWGO1tbgsLWPZpJF1pOFHhn6G1clOhq&pitId=rRIVdpjcFoUNU%2F87sKTDkzhHFck9zdtLq6pJGYmBgmlYgm6mU1o7FZQqaJ1UbGp1EzO535Vdgm%2B%2F%0ADQI27lH8DA%3D%3D&requestId=QlMgtcPOEJAvu5z","dfarResponses":[{"id":"DFAR252.247-7022","answers":{"answerText":"No","section":"252.247-7022.b"}},{"id":"DFAR252.216-7008","answers":{"answerText":"No","section":"DFAR252.216-7008.a"}},{"id":"DFAR252.209-7002","answers":{"answerText":"No","section":"DFAR252.209-7002.1"}},{"id":"DFAR
881
599
  252.225-7000","answers":{"answerText":"No","section":"252.225-7000.c.1"}},{"id":"DFAR
882
600
  252.225-7020","answers":{"answerText":"No","section":"252.225-7020.c.1"}},{"id":"DFAR
883
601
  252.225-7022","answers":{"answerText":"No","section":"252.225-7022.c.1"}},{"id":"DFAR
@@ -886,168 +604,7 @@ http_interactions:
886
604
  VETERANS BLVD.","stateorProvince":"LA","line2":"STE. 1600","city":"METAIRIE"},"email":"CONTRACTS@GEOCENT.COM","middleInitial":"S.","usPhone":"5048311900","firstName":"CATHERINE","notes":"CONTRACTS@GEOCENT.COM"},"mailingAddress":{"zipPlus4":"3044","zip":"70005","countryCode":"USA","line1":"111
887
605
  VETERANS MEMORIAL BLVD","stateorProvince":"LA","line2":"Suite 1600","city":"METAIRIE"},"purposeOfRegistration":"ALL_AWARDS"}}}'
888
606
  http_version:
889
- recorded_at: Sun, 24 Apr 2016 15:19:37 GMT
890
- - request:
891
- method: get
892
- uri: https://api.data.gov/sam/v4/registrations/0000001000000?api_key=<data_dot_gov_api_key>
893
- body:
894
- encoding: UTF-8
895
- string: ''
896
- headers:
897
- User-Agent:
898
- - HTTPClient/1.0 (2.8.0, ruby 2.2.0 (2014-12-25))
899
- Accept:
900
- - "*/*"
901
- Date:
902
- - Sun, 24 Apr 2016 15:19:37 GMT
903
- response:
904
- status:
905
- code: 404
906
- message: Not Found
907
- headers:
908
- Server:
909
- - openresty
910
- Date:
911
- - Sun, 24 Apr 2016 15:19:37 GMT
912
- Content-Type:
913
- - application/json
914
- Transfer-Encoding:
915
- - chunked
916
- Connection:
917
- - keep-alive
918
- Vary:
919
- - Accept-Encoding
920
- - Accept-Encoding
921
- X-Ratelimit-Limit:
922
- - '5000'
923
- X-Ratelimit-Remaining:
924
- - '4994'
925
- Age:
926
- - '0'
927
- Via:
928
- - http/1.1 api-umbrella (ApacheTrafficServer [cMsSf ])
929
- X-Cache:
930
- - MISS
931
- body:
932
- encoding: UTF-8
933
- string: '{"Message":"The registration could not be found","Code":404,"Error":"Not
934
- Found"}'
935
- http_version:
936
- recorded_at: Sun, 24 Apr 2016 15:19:37 GMT
937
- - request:
938
- method: get
939
- uri: https://api.data.gov/sam/v4/registrations/8091025070000?api_key=<data_dot_gov_api_key>
940
- body:
941
- encoding: UTF-8
942
- string: ''
943
- headers:
944
- User-Agent:
945
- - HTTPClient/1.0 (2.8.0, ruby 2.2.0 (2014-12-25))
946
- Accept:
947
- - "*/*"
948
- Date:
949
- - Sun, 24 Apr 2016 15:32:10 GMT
950
- response:
951
- status:
952
- code: 200
953
- message: OK
954
- headers:
955
- Server:
956
- - openresty
957
- Date:
958
- - Sun, 24 Apr 2016 15:32:11 GMT
959
- Content-Type:
960
- - application/json
961
- Transfer-Encoding:
962
- - chunked
963
- Connection:
964
- - keep-alive
965
- Vary:
966
- - Accept-Encoding
967
- - Accept-Encoding
968
- X-Ratelimit-Limit:
969
- - '5000'
970
- X-Ratelimit-Remaining:
971
- - '4993'
972
- Age:
973
- - '0'
974
- Via:
975
- - http/1.1 api-umbrella (ApacheTrafficServer [cMsSf ])
976
- X-Cache:
977
- - MISS
978
- body:
979
- encoding: UTF-8
980
- string: '{"sam_data":{"registration":{"govtBusinessPoc":{"lastName":"GOSWAMI","fax":"8665667533","address":{"zip":"20878","countryCode":"USA","line1":"14608
981
- Pebble Hill Lane","stateorProvince":"MD","city":"North Potomac"},"email":"VIJAY@XFINION.COM","usPhone":"3018014897","firstName":"VIJAY"},"disasterRelief":{"type":"ANY"},"qualifications":{},"dunsPlus4":"0000","activationDate":"2015-11-27
982
- 08:50:04.0","fiscalYearEndCloseDate":"12/31","businessTypes":["QZ","XS","VW","2X","27","23","A620240406"],"pastPerformancePoc":{"lastName":"MECCIA","address":{"zip":"20431","countryCode":"USA","line1":"600
983
- 19th St NW","stateorProvince":"DC","city":"Washington"},"email":"MECCIAMJ@STATE.GOV","usPhone":"2024857820","firstName":"MICHAEL"},"registrationDate":"2008-08-17
984
- 00:00:00.0","certificationsURL":{"pdfUrl":"https://www.sam.gov/SAMPortal/filedownload?reportType=2&orgId=okxwzVSDsfiniCB%2Bp92gQ4Pv%2Fb2ZcZ4RVR4tS6Nz%2Bj%2F5CUvIZq4TpYgz6m1W6FDF&pitId=mt5W8ijTdlt%2FN%2BMffVT3102bbeVzeUc7JTvcAozmclg7FENfalXRYygxmGJbZ22e&requestId=P5X7Wgm4C5c25f6"},"hasDelinquentFederalDebt":false,"duns":"809102507","altElectronicBusinessPoc":{"lastName":"GOSWAMI","fax":"8665667533","address":{"zip":"20878","countryCode":"USA","line1":"14608
985
- Pebble Hill Lnae","stateorProvince":"MD","city":"North Potomac"},"email":"NILAM@XFINION.COM","usPhone":"3013286579","firstName":"NILAM"},"cage":"561R4","hasKnownExclusion":false,"publicDisplay":true,"expirationDate":"2016-11-25
986
- 18:48:10.0","altPastPerformancePoc":{"lastName":"KAUL","address":{"zip":"22209","countryCode":"USA","line1":"1801
987
- North Lynn Street","stateorProvince":"VA","city":"Rosslyn"},"email":"KAULN@STATE.GOV","usPhone":"5713459854","firstName":"NISHA"},"status":"ACTIVE","corporateStructureCode":"2L","corporateStructureName":"Corporate
988
- Entity (Not Tax Exempt)","stateOfIncorporation":"MD","legalBusinessName":"XFINION
989
- INC.","congressionalDistrict":"MD 06","bondingInformation":{},"businessStartDate":"2005-09-16","lastUpdateDate":"2015-11-27
990
- 08:50:04.0","statusMessage":"Active","samAddress":{"zipPlus4":"6933","zip":"20817","countryCode":"USA","line1":"7800
991
- LONESOME PINE LN","stateorProvince":"MD","city":"BETHESDA"},"submissionDate":"2015-11-26
992
- 18:48:10.0","naics":[{"isPrimary":false,"naicsCode":"541519","naicsName":"OTHER
993
- COMPUTER RELATED SERVICES"},{"isPrimary":false,"naicsCode":"511210","naicsName":"SOFTWARE
994
- PUBLISHERS"},{"isPrimary":true,"naicsCode":"541511","naicsName":"CUSTOM COMPUTER
995
- PROGRAMMING SERVICES"},{"isPrimary":false,"naicsCode":"518210","naicsName":"DATA
996
- PROCESSING, HOSTING, AND RELATED SERVICES"},{"isPrimary":false,"naicsCode":"541512","naicsName":"COMPUTER
997
- SYSTEMS DESIGN SERVICES"}],"certifications":{"farResponses":[{"id":"FAR 52.209-2","answers":[{"answerText":"No","section":"52.209-2.c.1"},{"answerText":"No","section":"52.209-2.c.2"}]},{"id":"FAR
998
- 52.209-5","answers":[{"answerText":"No","section":"52.209-5.a.1.i.A"},{"answerText":"No","section":"52.209-5.a.1.i.B"},{"answerText":"No","section":"52.209-5.a.1.i.D"},{"answerText":"No","section":"52.209-5.a.1.i.C"},{"answerText":"No","section":"52.209-5.a.1.ii"}]},{"id":"FAR
999
- 52.203-2","answers":{"section":"52.203-2.b.2.i","SamPointOfContact":{"lastName":"Goswami","title":"Principal","firstName":"Vijaykumar"}}},{"id":"FAR
1000
- 52.215-6","answers":{"answerText":"No","section":"52.215-6.a"}},{"id":"FAR
1001
- 52.214-14","answers":{"answerText":"No","section":"52.214-14.a"}},{"id":"FAR
1002
- 52.223-4","answers":{"answerText":"No","section":"52.223-4"}},{"id":"FAR 52.223-9","answers":{"answerText":"No","section":"52.223-9"}},{"id":"FAR
1003
- 52.219-2","answers":{"answerText":"No","section":"52.219-2.a"}},{"id":"FAR
1004
- 52.204-3","answers":[{"answerText":"TIN ON FILE","section":"52.204-3.d"},{"answerText":"No","section":"52.204-3.f"}]},{"id":"FAR
1005
- 52.212-3","answers":[{"naics":[{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541519,"ExcpCounter":1,"naicsName":"Other
1006
- Computer Related Services"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541519,"ExcpCounter":2,"naicsName":"Information
1007
- Technology Value Added Resellers18"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":518210,"naicsName":"DATA
1008
- PROCESSING, HOSTING, AND RELATED SERVICES"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541512,"naicsName":"COMPUTER
1009
- SYSTEMS DESIGN SERVICES"},{"isSmallBusiness":"Y","isPrimary":true,"naicsCode":541511,"naicsName":"CUSTOM
1010
- COMPUTER PROGRAMMING SERVICES"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":511210,"naicsName":"SOFTWARE
1011
- PUBLISHERS"}],"section":"52.212-3.c"},{"answerText":"Yes","section":"52.212-3.c.1"},{"answerText":"Yes","section":"52.212-3.c.4"},{"answerText":"No","section":"52.212-3.c.5"},{"answerText":"No","section":"52.212-3.c.6.i"},{"answerText":"No","section":"52.212-3.c.6.ii"},{"answerText":"No","section":"52.212-3.c.7.i"},{"answerText":"No","section":"52.212-3.c.7.ii"},{"answerText":"No","section":"52.212-3.c.10.i.A"},{"answerText":"No","section":"52.212-3.c.10.i.B"},{"answerText":"No","section":"52.212-3.c.10.ii"},{"answerText":"No","section":"52.212-3.c.11.ii"},{"answerText":"No","section":"52.212-3.d.1.i"},{"answerText":"Yes","section":"52.212-3.d.1.ii"},{"answerText":"XFINION
1012
- INC. has not had previous contracts subject to written affirmative action
1013
- programs requirements from Secretary of Labor regulations.","section":"52.212-3.d.2.i"},{"answerText":"No","section":"52.212-3.f"},{"answerText":"No","section":"52.212-3.h.1"},{"answerText":"No","section":"52.212-3.h.2"},{"answerText":"No","section":"52.212-3.h.4"},{"answerText":"No","section":"52.212-3.h.3"},{"answerText":"No","section":"52.212-3.h.5"},{"answerText":"No","section":"52.212-3.i.2.i"},{"section":"52.212-3.j"},{"answerText":"Vendor
1014
- will provide information with specific offers to the Government","section":"52.212-3.k.1.2.i"},{"answerText":"Vendor
1015
- will provide information with specific offers to the Government","section":"52.212-3.k.2.2"},{"answerText":"No","section":"52.212-3.l.5"},{"answerText":"No","section":"52.212-3.n.2.i"},{"answerText":"No","section":"52.212-3.n.2.ii"},{"answerText":"No","section":"52.226-2.b.1"},{"answerText":"No","section":"52.226-2.b.2"}]},{"id":"FAR
1016
- 52.219-1","answers":[{"naics":[{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541519,"ExcpCounter":1,"naicsName":"Other
1017
- Computer Related Services"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541519,"ExcpCounter":2,"naicsName":"Information
1018
- Technology Value Added Resellers18"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":518210,"naicsName":"DATA
1019
- PROCESSING, HOSTING, AND RELATED SERVICES"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541512,"naicsName":"COMPUTER
1020
- SYSTEMS DESIGN SERVICES"},{"isSmallBusiness":"Y","isPrimary":true,"naicsCode":541511,"naicsName":"CUSTOM
1021
- COMPUTER PROGRAMMING SERVICES"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":511210,"naicsName":"SOFTWARE
1022
- PUBLISHERS"}],"section":"52.219-1.b"},{"answerText":"Yes","section":"52.219-1.b.1"},{"answerText":"No","section":"52.219-1.b.3.1"},{"answerText":"No","section":"52.219-1.b.4.i"},{"answerText":"No","section":"52.219-1.b.4.ii"},{"answerText":"No","section":"52.219-1.b.5.i"},{"answerText":"No","section":"52.219-1.b.5.ii"},{"answerText":"No","section":"52.219-1.b.6"},{"answerText":"No","section":"52.219-1.b.7"},{"answerText":"No","section":"52.219-1.b.8.i"},{"answerText":"No","section":"52.219-1.b.8.ii"},{"answerText":"Yes","section":"52.219-1.b.9.5"}]},{"id":"FAR
1023
- 52.219-22","answers":[{"naics":[{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541519,"ExcpCounter":1,"naicsName":"Other
1024
- Computer Related Services"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541519,"ExcpCounter":2,"naicsName":"Information
1025
- Technology Value Added Resellers18"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":518210,"naicsName":"DATA
1026
- PROCESSING, HOSTING, AND RELATED SERVICES"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":541512,"naicsName":"COMPUTER
1027
- SYSTEMS DESIGN SERVICES"},{"isSmallBusiness":"Y","isPrimary":true,"naicsCode":541511,"naicsName":"CUSTOM
1028
- COMPUTER PROGRAMMING SERVICES"},{"isSmallBusiness":"Y","isPrimary":false,"naicsCode":511210,"naicsName":"SOFTWARE
1029
- PUBLISHERS"}],"section":"52.219-22.b"},{"answerText":"No","section":"52.219-22.b.2.1"},{"answerText":"Yes","section":"52.219-22.b.1.ii"}]},{"id":"FAR
1030
- 52.227-15","answers":{"answerText":"No","section":"52.227-15.b.2"}},{"id":"FAR
1031
- 52.204-17","answers":{"answerText":"No","section":"52.204-17.b"}},{"id":"FAR
1032
- 52.222-18","answers":{"answerText":"No","section":"52.222-18.c.1"}},{"id":"FAR
1033
- 52.222-22","answers":[{"answerText":"No","section":"52.222-22.a"},{"answerText":"Yes","section":"52.222-22.b"}]},{"id":"FAR
1034
- 52.222-25","answers":{"answerText":"XFINION INC. has not had previous contracts
1035
- subject to written affirmative action programs requirements from Secretary
1036
- of Labor regulations.","section":"52.222-25"}},{"id":"FAR 52.225-2","answers":{"answerText":"No","section":"52.225-2.a"}},{"id":"FAR
1037
- 52.225-4","answers":{"answerText":"No","section":"52.225-4.a"}},{"id":"FAR
1038
- 52.225-6","answers":{"answerText":"No","section":"52.225-6.a"}},{"id":"FAR
1039
- 52.222-48","answers":{"answerText":"Vendor will provide information with specific
1040
- offers to the Government","section":"52.222-48.a.1"}},{"id":"FAR 52.222-52","answers":{"answerText":"Vendor
1041
- will provide information with specific offers to the Government","section":"52.222-52.a.1.1"}}],"pdfUrl":"https://www.sam.gov/SAMPortal/filedownload?reportType=2&orgId=qyZOq6sB7LyKg9N5OghGnzGwlGnXHxySB3zGSbam7h4Pu%2Bzp167brvcue4QtWvoN&pitId=GmSb4SZ2dgxeWqzrT75KfiwC6n96ApnoLbohGtsTgJm3hdki%2FGkcgAhKpLsWLdMF&requestId=S0yZ1k9wls69F2o","dfarResponses":[{"id":"DFAR252.247-7022","answers":{"answerText":"No","section":"252.247-7022.b"}},{"id":"DFAR252.216-7008","answers":{"answerText":"No","section":"DFAR252.216-7008.a"}},{"id":"DFAR252.209-7002","answers":{"answerText":"No","section":"DFAR252.209-7002.1"}},{"id":"DFAR
1042
- 252.225-7000","answers":{"answerText":"No","section":"252.225-7000.c.1"}},{"id":"DFAR
1043
- 252.225-7020","answers":{"answerText":"No","section":"252.225-7020.c.1"}},{"id":"DFAR
1044
- 252.225-7022","answers":{"answerText":"No","section":"252.225-7022.c.1"}},{"id":"DFAR
1045
- 252.225-7035","answers":{"answerText":"No","section":"252.225-7035.c.1"}},{"id":"DFAR252.247-7049","answers":[{"answerText":"No","section":"252.247-7049.1"},{"answerText":"No","section":"252.247-7049.2"},{"answerText":"No","section":"252.247-7049.3"},{"answerText":"No","section":"252.247-7049.4"}]}]},"corporateUrl":"http://www.XFinion.com","altGovtBusinessPoc":{"lastName":"GOSWAMI","fax":"8665667533","address":{"zip":"20878","countryCode":"USA","line1":"14608
1046
- Pebble Hill Lane","stateorProvince":"MD","city":"North Potomac"},"email":"NILAM@XFINION.COM","usPhone":"3013286579","firstName":"NILAM"},"creditCardUsage":true,"countryOfIncorporation":"USA","divisionNumber":"XFinion","electronicBusinessPoc":{"lastName":"GOSWAMI","fax":"8665667533","address":{"zip":"20878","countryCode":"USA","line1":"14608
1047
- Pebble Hill Lane","stateorProvince":"MD","city":"North Potomac"},"email":"VIJAY@XFINION.COM","usPhone":"3018014897","firstName":"VIJAY"},"mailingAddress":{"zip":"20817","countryCode":"USA","line1":"7800
1048
- lonesome pine ln","stateorProvince":"MD","city":"Bethesda"},"purposeOfRegistration":"ALL_AWARDS"}}}'
1049
- http_version:
1050
- recorded_at: Sun, 24 Apr 2016 15:32:11 GMT
607
+ recorded_at: Tue, 24 May 2016 20:30:29 GMT
1051
608
  - request:
1052
609
  method: get
1053
610
  uri: https://api.data.gov/sam/v4/registrations/1459697830000?api_key=<data_dot_gov_api_key>
@@ -1056,11 +613,11 @@ http_interactions:
1056
613
  string: ''
1057
614
  headers:
1058
615
  User-Agent:
1059
- - HTTPClient/1.0 (2.8.0, ruby 2.2.0 (2014-12-25))
616
+ - HTTPClient/1.0 (2.7.1, ruby 2.1.5 (2014-11-13))
1060
617
  Accept:
1061
618
  - "*/*"
1062
619
  Date:
1063
- - Sun, 24 Apr 2016 16:05:22 GMT
620
+ - Tue, 24 May 2016 20:30:29 GMT
1064
621
  response:
1065
622
  status:
1066
623
  code: 200
@@ -1069,7 +626,7 @@ http_interactions:
1069
626
  Server:
1070
627
  - openresty
1071
628
  Date:
1072
- - Sun, 24 Apr 2016 16:05:23 GMT
629
+ - Tue, 24 May 2016 20:30:23 GMT
1073
630
  Content-Type:
1074
631
  - application/json
1075
632
  Transfer-Encoding:
@@ -1080,9 +637,9 @@ http_interactions:
1080
637
  - Accept-Encoding
1081
638
  - Accept-Encoding
1082
639
  X-Ratelimit-Limit:
1083
- - '5000'
640
+ - '25'
1084
641
  X-Ratelimit-Remaining:
1085
- - '4992'
642
+ - '24'
1086
643
  Age:
1087
644
  - '0'
1088
645
  Via:
@@ -1093,44 +650,45 @@ http_interactions:
1093
650
  encoding: UTF-8
1094
651
  string: '{"sam_data":{"registration":{"govtBusinessPoc":{"lastName":"YOUTZY","fax":"7032277477","address":{"zip":"22033","countryCode":"USA","line1":"12601
1095
652
  FAIR LAKES CIRCLE","stateorProvince":"VA","city":"FAIRFAX"},"email":"SAM.CGIFEDERAL@CGIFEDERAL.COM","usPhone":"7032276000","firstName":"KIM"},"qualifications":{"acass":{"id":"SF330","answers":{"answerText":"Vendor
1096
- will provide information with specific offers to the Government","section":"SF330.1"}}},"dunsPlus4":"0000","activationDate":"2016-02-09
1097
- 13:45:12.0","fiscalYearEndCloseDate":"09/30","businessTypes":["VW","2X"],"pastPerformancePoc":{"lastName":"CARLSON","fax":"7032277477","address":{"zip":"22033","countryCode":"USA","line1":"12601
653
+ will provide information with specific offers to the Government","section":"SF330.1"}}},"dunsPlus4":"0000","activationDate":"2016-05-12
654
+ 15:45:34.0","fiscalYearEndCloseDate":"09/30","businessTypes":["VW","2X"],"pastPerformancePoc":{"lastName":"CARLSON","fax":"7032277477","address":{"zip":"22033","countryCode":"USA","line1":"12601
1098
655
  FAIR LAKES CIRCLE","stateorProvince":"VA","city":"FAIRFAX"},"email":"SAM.CGIFEDERAL@CGIFEDERAL.COM","usPhone":"7032276000","firstName":"PEGGY"},"registrationDate":"2004-07-29
1099
- 00:00:00.0","certificationsURL":{"pdfUrl":"https://www.sam.gov/SAMPortal/filedownload?reportType=2&orgId=tTRaxUCmxkIQW%2BCpgxYZKeHRP%2BIN4jmv9t8z9kaLpKG0GRxnQFcy18fhGIBHDVk1&pitId=rQvN7o0j%2FsZCVTTT9jbuQwcAejhrJMa8ln9LONPiVrNj0v3Z2hP7%2F3WHeezBTi8vSUjT6qMNmkFi%0A8j2AcOPQbw%3D%3D&requestId=mgzV8NB3CRiUC1L"},"hasDelinquentFederalDebt":false,"duns":"145969783","altElectronicBusinessPoc":{"lastName":"CARLSON","fax":"7032277477","address":{"zip":"22030","countryCode":"USA","line1":"12601
1100
- FAIR LAKES CIRCLE","stateorProvince":"VA","city":"Fairfax"},"email":"SAM.CGIFEDERAL@CGIFEDERAL.COM","usPhone":"7032276000","firstName":"PEGGY"},"cage":"3YVK7","hasKnownExclusion":false,"publicDisplay":true,"expirationDate":"2017-02-08
1101
- 13:26:39.0","status":"ACTIVE","corporateStructureCode":"2L","stateOfIncorporation":"DE","corporateStructureName":"Corporate
656
+ 00:00:00.0","certificationsURL":{"pdfUrl":"https://www.sam.gov/SAMPortal/filedownload?reportType=2&orgId=OoFrMmaTb5%2BG0FLl8M4WdORgd1ewrbmZJceYMe6P5S9TOpHPfpxoO7NxgfpbbCQr&pitId=3HgTdOs37%2BywTU%2F%2B3Vu6CyUgnr4K%2BrxsV7oEvV338DEqmMIDsotr5WhWEVmFY%2Fk2%2BKK%2BPS3N3dgC%0AjqZPo57wzQ%3D%3D&requestId=ZE11EV397NNqXLq"},"hasDelinquentFederalDebt":false,"duns":"145969783","altElectronicBusinessPoc":{"lastName":"CARLSON","fax":"7032277477","address":{"zip":"22030","countryCode":"USA","line1":"12601
657
+ FAIR LAKES CIRCLE","stateorProvince":"VA","city":"Fairfax"},"email":"SAM.CGIFEDERAL@CGIFEDERAL.COM","usPhone":"7032276000","firstName":"PEGGY"},"cage":"3YVK7","hasKnownExclusion":false,"publicDisplay":true,"expirationDate":"2017-05-12
658
+ 15:34:37.0","status":"ACTIVE","corporateStructureCode":"2L","stateOfIncorporation":"DE","corporateStructureName":"Corporate
1102
659
  Entity (Not Tax Exempt)","legalBusinessName":"CGI FEDERAL INC.","congressionalDistrict":"VA
1103
- 11","companyDivision":"SUBSIDIARY OF CGI TECHNOLOGIES AND SOLUTIONS INC.","bondingInformation":{},"businessStartDate":"2004-05-01","lastUpdateDate":"2016-02-09
1104
- 13:45:12.0","statusMessage":"Active","samAddress":{"zipPlus4":"4902","zip":"22033","countryCode":"USA","line1":"12601
1105
- FAIR LAKES CIR","stateorProvince":"VA","city":"FAIRFAX"},"submissionDate":"2016-02-09
1106
- 13:26:39.0","naics":[{"isPrimary":false,"naicsCode":"925110","naicsName":"ADMINISTRATION
1107
- OF HOUSING PROGRAMS"},{"isPrimary":false,"naicsCode":"541712","naicsName":"RESEARCH
1108
- AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY)"},{"isPrimary":false,"naicsCode":"561440","naicsName":"COLLECTION
1109
- AGENCIES"},{"isPrimary":false,"naicsCode":"611420","naicsName":"COMPUTER TRAINING"},{"isPrimary":false,"naicsCode":"541330","naicsName":"ENGINEERING
1110
- SERVICES"},{"isPrimary":false,"naicsCode":"541611","naicsName":"ADMINISTRATIVE
1111
- MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES"},{"isPrimary":false,"naicsCode":"541512","naicsName":"COMPUTER
1112
- SYSTEMS DESIGN SERVICES"},{"isPrimary":false,"naicsCode":"561110","naicsName":"OFFICE
1113
- ADMINISTRATIVE SERVICES"},{"isPrimary":false,"naicsCode":"541690","naicsName":"OTHER
1114
- SCIENTIFIC AND TECHNICAL CONSULTING SERVICES"},{"isPrimary":false,"naicsCode":"518210","naicsName":"DATA
1115
- PROCESSING, HOSTING, AND RELATED SERVICES"},{"isPrimary":false,"naicsCode":"541513","naicsName":"COMPUTER
1116
- FACILITIES MANAGEMENT SERVICES"},{"isPrimary":false,"naicsCode":"624310","naicsName":"VOCATIONAL
1117
- REHABILITATION SERVICES"},{"isPrimary":false,"naicsCode":"541990","naicsName":"ALL
1118
- OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES"},{"isPrimary":false,"naicsCode":"519190","naicsName":"ALL
1119
- OTHER INFORMATION SERVICES"},{"isPrimary":false,"naicsCode":"334511","naicsName":"SEARCH,
660
+ 11","companyDivision":"SUBSIDIARY OF CGI TECHNOLOGIES AND SOLUTIONS INC.","bondingInformation":{},"businessStartDate":"2004-05-01","lastUpdateDate":"2016-05-12
661
+ 15:45:34.0","statusMessage":"Active","samAddress":{"zipPlus4":"4902","zip":"22033","countryCode":"USA","line1":"12601
662
+ FAIR LAKES CIR","stateorProvince":"VA","city":"FAIRFAX"},"submissionDate":"2016-05-12
663
+ 15:34:37.0","naics":[{"isPrimary":false,"naicsCode":"611430","naicsName":"PROFESSIONAL
664
+ AND MANAGEMENT DEVELOPMENT TRAINING"},{"isPrimary":false,"naicsCode":"541611","naicsName":"ADMINISTRATIVE
665
+ MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES"},{"isPrimary":false,"naicsCode":"541330","naicsName":"ENGINEERING
666
+ SERVICES"},{"isPrimary":false,"naicsCode":"561611","naicsName":"INVESTIGATION
667
+ SERVICES"},{"isPrimary":false,"naicsCode":"611420","naicsName":"COMPUTER TRAINING"},{"isPrimary":false,"naicsCode":"541614","naicsName":"PROCESS,
668
+ PHYSICAL DISTRIBUTION, AND LOGISTICS CONSULTING SERVICES"},{"isPrimary":false,"naicsCode":"541219","naicsName":"OTHER
669
+ ACCOUNTING SERVICES"},{"isPrimary":false,"naicsCode":"519190","naicsName":"ALL
670
+ OTHER INFORMATION SERVICES"},{"isPrimary":true,"naicsCode":"541519","naicsName":"OTHER
671
+ COMPUTER RELATED SERVICES"},{"isPrimary":false,"naicsCode":"541712","naicsName":"RESEARCH
672
+ AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY)"},{"isPrimary":false,"naicsCode":"511210","naicsName":"SOFTWARE
673
+ PUBLISHERS"},{"isPrimary":false,"naicsCode":"611699","naicsName":"ALL OTHER
674
+ MISCELLANEOUS SCHOOLS AND INSTRUCTION"},{"isPrimary":false,"naicsCode":"541990","naicsName":"ALL
675
+ OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES"},{"isPrimary":false,"naicsCode":"541513","naicsName":"COMPUTER
676
+ FACILITIES MANAGEMENT SERVICES"},{"isPrimary":false,"naicsCode":"334511","naicsName":"SEARCH,
1120
677
  DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT
1121
- MANUFACTURING"},{"isPrimary":false,"naicsCode":"541614","naicsName":"PROCESS,
1122
- PHYSICAL DISTRIBUTION, AND LOGISTICS CONSULTING SERVICES"},{"isPrimary":false,"naicsCode":"561611","naicsName":"INVESTIGATION
1123
- SERVICES"},{"isPrimary":true,"naicsCode":"541519","naicsName":"OTHER COMPUTER
1124
- RELATED SERVICES"},{"isPrimary":false,"naicsCode":"811111","naicsName":"GENERAL
1125
- AUTOMOTIVE REPAIR"},{"isPrimary":false,"naicsCode":"334111","naicsName":"ELECTRONIC
1126
- COMPUTER MANUFACTURING"},{"isPrimary":false,"naicsCode":"611699","naicsName":"ALL
1127
- OTHER MISCELLANEOUS SCHOOLS AND INSTRUCTION"},{"isPrimary":false,"naicsCode":"611430","naicsName":"PROFESSIONAL
1128
- AND MANAGEMENT DEVELOPMENT TRAINING"},{"isPrimary":false,"naicsCode":"561210","naicsName":"FACILITIES
1129
- SUPPORT SERVICES"},{"isPrimary":false,"naicsCode":"541618","naicsName":"OTHER
1130
- MANAGEMENT CONSULTING SERVICES"},{"isPrimary":false,"naicsCode":"511210","naicsName":"SOFTWARE
1131
- PUBLISHERS"},{"isPrimary":false,"naicsCode":"541219","naicsName":"OTHER ACCOUNTING
1132
- SERVICES"},{"isPrimary":false,"naicsCode":"541511","naicsName":"CUSTOM COMPUTER
1133
- PROGRAMMING SERVICES"}],"certifications":{"farResponses":[{"id":"FAR 52.209-2","answers":[{"answerText":"No","section":"52.209-2.c.1"},{"answerText":"No","section":"52.209-2.c.2"}]},{"id":"FAR
678
+ MANUFACTURING"},{"isPrimary":false,"naicsCode":"541690","naicsName":"OTHER
679
+ SCIENTIFIC AND TECHNICAL CONSULTING SERVICES"},{"isPrimary":false,"naicsCode":"541512","naicsName":"COMPUTER
680
+ SYSTEMS DESIGN SERVICES"},{"isPrimary":false,"naicsCode":"561210","naicsName":"FACILITIES
681
+ SUPPORT SERVICES"},{"isPrimary":false,"naicsCode":"561440","naicsName":"COLLECTION
682
+ AGENCIES"},{"isPrimary":false,"naicsCode":"811111","naicsName":"GENERAL AUTOMOTIVE
683
+ REPAIR"},{"isPrimary":false,"naicsCode":"518210","naicsName":"DATA PROCESSING,
684
+ HOSTING, AND RELATED SERVICES"},{"isPrimary":false,"naicsCode":"624310","naicsName":"VOCATIONAL
685
+ REHABILITATION SERVICES"},{"isPrimary":false,"naicsCode":"334111","naicsName":"ELECTRONIC
686
+ COMPUTER MANUFACTURING"},{"isPrimary":false,"naicsCode":"925110","naicsName":"ADMINISTRATION
687
+ OF HOUSING PROGRAMS"},{"isPrimary":false,"naicsCode":"561110","naicsName":"OFFICE
688
+ ADMINISTRATIVE SERVICES"},{"isPrimary":false,"naicsCode":"541618","naicsName":"OTHER
689
+ MANAGEMENT CONSULTING SERVICES"},{"isPrimary":false,"naicsCode":"541511","naicsName":"CUSTOM
690
+ COMPUTER PROGRAMMING SERVICES"}],"certifications":{"farResponses":[{"id":"FAR
691
+ 52.209-2","answers":[{"answerText":"No","section":"52.209-2.c.1"},{"answerText":"No","section":"52.209-2.c.2"}]},{"id":"FAR
1134
692
  52.209-5","answers":[{"answerText":"No","section":"52.209-5.a.1.i.A"},{"answerText":"No","section":"52.209-5.a.1.i.B"},{"answerText":"No","section":"52.209-5.a.1.i.D"},{"answerText":"No","section":"52.209-5.a.1.i.C"},{"answerText":"No","section":"52.209-5.a.1.ii"}]},{"id":"FAR
1135
693
  52.203-2","answers":{"section":"52.203-2.b.2.i","SamPointOfContact":{"lastName":"Hargis","title":"Pricing
1136
694
  Director","firstName":"Jack"}}},{"id":"FAR 52.215-6","answers":[{"answerText":"Yes","section":"52.215-6.a"},{"samFacility":[{"ownerName":"CGI
@@ -1152,6 +710,8 @@ http_interactions:
1152
710
  Capital Court","city":"Manassas"},"ownerAddress":{"zip":22033,"countryCode":"USA","stateOrProvince":"VA","line1":"12601
1153
711
  Fair Lakes Circle","city":"Fairfax"}},{"ownerName":"CGI Federal","plantAddress":{"zip":73501,"countryCode":"USA","stateOrProvince":"OK","line1":"1224
1154
712
  SW Rex Madeira Road","city":"Lawton"},"ownerAddress":{"zip":22033,"countryCode":"USA","stateOrProvince":"VA","line1":"12601
713
+ Fair Lakes Circle","city":"Fairfax"}},{"ownerName":"CGI Federal","plantAddress":{"zip":92108,"countryCode":"USA","stateOrProvince":"CA","line1":"7480
714
+ Mission Valley Road, Suite 100","city":"San Diego"},"ownerAddress":{"zip":22033,"countryCode":"USA","stateOrProvince":"VA","line1":"12601
1155
715
  Fair Lakes Circle","city":"Fairfax"}}],"section":"52.215-6.b"}]},{"id":"FAR
1156
716
  52.214-14","answers":[{"answerText":"Yes","section":"52.214-14.a"},{"samFacility":[{"ownerName":"CGI
1157
717
  Federal","plantAddress":{"zip":43215,"countryCode":"USA","stateOrProvince":"OH","line1":"88
@@ -1172,6 +732,8 @@ http_interactions:
1172
732
  Capital Court","city":"Manassas"},"ownerAddress":{"zip":22033,"countryCode":"USA","stateOrProvince":"VA","line1":"12601
1173
733
  Fair Lakes Circle","city":"Fairfax"}},{"ownerName":"CGI Federal","plantAddress":{"zip":73501,"countryCode":"USA","stateOrProvince":"OK","line1":"1224
1174
734
  SW Rex Madeira Road","city":"Lawton"},"ownerAddress":{"zip":22033,"countryCode":"USA","stateOrProvince":"VA","line1":"12601
735
+ Fair Lakes Circle","city":"Fairfax"}},{"ownerName":"CGI Federal","plantAddress":{"zip":92108,"countryCode":"USA","stateOrProvince":"CA","line1":"7480
736
+ Mission Valley Road, Suite 100","city":"San Diego"},"ownerAddress":{"zip":22033,"countryCode":"USA","stateOrProvince":"VA","line1":"12601
1175
737
  Fair Lakes Circle","city":"Fairfax"}}],"section":"52.214-14.b"}]},{"id":"FAR
1176
738
  52.223-4","answers":{"answerText":"Vendor will provide information with specific
1177
739
  offers to the Government","section":"52.223-4"}},{"id":"FAR 52.223-9","answers":{"answerText":"Vendor
@@ -1180,20 +742,18 @@ http_interactions:
1180
742
  52.204-3","answers":[{"answerText":"TIN ON FILE","section":"52.204-3.d"},{"answerText":"Yes","section":"52.204-3.f"},{"Company":{"name":"The
1181
743
  CGI Group Holding Corp","tin":"TIN ON FILE"},"section":"52.204-3.f.3"}]},{"id":"FAR
1182
744
  52.212-3","answers":[{"naics":[{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541712,"ExcpCounter":1,"naicsName":"Research
1183
- and Development in the Physical, Engineering, and Life Sciences (except Biotechnology)
1184
- 11"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":1,"naicsName":"Research
1185
- and Development in the Physical, Engineering, and Life Sciences (except Biotechnology)
1186
- 11"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541712,"ExcpCounter":2,"naicsName":"Aircraft"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":2,"naicsName":"Aircraft"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541712,"ExcpCounter":3,"naicsName":"Aircraft
1187
- Parts, and Auxiliary Equipment, and Aircraft Engine Parts"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":3,"naicsName":"Aircraft
1188
- Parts, and Auxiliary Equipment, and Aircraft Engine Parts"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541712,"ExcpCounter":4,"naicsName":"Space
1189
- Vehicles and Guided Missiles, their Propulsion Units, their Propulsion Units
1190
- Parts, and their Auxiliary Equipment and Parts"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":4,"naicsName":"Space
1191
- Vehicles and Guided Missiles, their Propulsion Units, their Propulsion Units
1192
- Parts, and their Auxiliary Equipment and Parts"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541519,"ExcpCounter":1,"naicsName":"Other
745
+ and Development in the Physical, Engineering, and Life Sciences (except Biotechnology)"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":1,"naicsName":"Research
746
+ and Development in the Physical, Engineering, and Life Sciences (except Biotechnology)"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541712,"ExcpCounter":2,"naicsName":"Aircraft
747
+ Engine and Engine Parts"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":2,"naicsName":"Aircraft
748
+ Engine and Engine Parts"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541712,"ExcpCounter":3,"naicsName":"Other
749
+ Aircraft Parts and Auxiliary Equipment"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":3,"naicsName":"Other
750
+ Aircraft Parts and Auxiliary Equipment"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541712,"ExcpCounter":4,"naicsName":"Guided
751
+ Missiles and Space Vehicles, Their Propulsion Units and Propulsion Parts"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":4,"naicsName":"Guided
752
+ Missiles and Space Vehicles, Their Propulsion Units and Propulsion Parts"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541519,"ExcpCounter":1,"naicsName":"Other
1193
753
  Computer Related Services"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541519,"ExcpCounter":1,"naicsName":"Other
1194
754
  Computer Related Services"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541519,"ExcpCounter":2,"naicsName":"Information
1195
- Technology Value Added Resellers18"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541519,"ExcpCounter":2,"naicsName":"Information
1196
- Technology Value Added Resellers18"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541330,"ExcpCounter":1,"naicsName":"Engineering
755
+ Technology Value Added Resellers"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541519,"ExcpCounter":2,"naicsName":"Information
756
+ Technology Value Added Resellers"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541330,"ExcpCounter":1,"naicsName":"Engineering
1197
757
  Services"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541330,"ExcpCounter":1,"naicsName":"Engineering
1198
758
  Services"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541330,"ExcpCounter":2,"naicsName":"Military
1199
759
  and Aerospace Equipment and Military Weapons"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541330,"ExcpCounter":2,"naicsName":"Military
@@ -1205,27 +765,27 @@ http_interactions:
1205
765
  Engineering and Naval Architecture"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541330,"ExcpCounter":4,"naicsName":"Marine
1206
766
  Engineering and Naval Architecture"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":561440,"naicsName":"COLLECTION
1207
767
  AGENCIES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541618,"naicsName":"OTHER
1208
- MANAGEMENT CONSULTING SERVICES"},{"isPrimary":false,"naicsCode":925110,"naicsName":"ADMINISTRATION
1209
- OF HOUSING PROGRAMS"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541611,"naicsName":"ADMINISTRATIVE
1210
- MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541513,"naicsName":"COMPUTER
1211
- FACILITIES MANAGEMENT SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":561611,"naicsName":"INVESTIGATION
1212
- SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":611430,"naicsName":"PROFESSIONAL
1213
- AND MANAGEMENT DEVELOPMENT TRAINING"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541511,"naicsName":"CUSTOM
768
+ MANAGEMENT CONSULTING SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":611430,"naicsName":"PROFESSIONAL
769
+ AND MANAGEMENT DEVELOPMENT TRAINING"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541611,"naicsName":"ADMINISTRATIVE
770
+ MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":561611,"naicsName":"INVESTIGATION
771
+ SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541513,"naicsName":"COMPUTER
772
+ FACILITIES MANAGEMENT SERVICES"},{"isPrimary":false,"naicsCode":925110,"naicsName":"ADMINISTRATION
773
+ OF HOUSING PROGRAMS"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541511,"naicsName":"CUSTOM
1214
774
  COMPUTER PROGRAMMING SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":611420,"naicsName":"COMPUTER
1215
- TRAINING"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":518210,"naicsName":"DATA
1216
- PROCESSING, HOSTING, AND RELATED SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541990,"naicsName":"ALL
1217
- OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":511210,"naicsName":"SOFTWARE
1218
- PUBLISHERS"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":561110,"naicsName":"OFFICE
1219
- ADMINISTRATIVE SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":519190,"naicsName":"ALL
1220
- OTHER INFORMATION SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":334111,"naicsName":"ELECTRONIC
1221
- COMPUTER MANUFACTURING"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":561210,"naicsName":"FACILITIES
1222
- SUPPORT SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541512,"naicsName":"COMPUTER
775
+ TRAINING"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":511210,"naicsName":"SOFTWARE
776
+ PUBLISHERS"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541990,"naicsName":"ALL
777
+ OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":518210,"naicsName":"DATA
778
+ PROCESSING, HOSTING, AND RELATED SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":519190,"naicsName":"ALL
779
+ OTHER INFORMATION SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":561210,"naicsName":"FACILITIES
780
+ SUPPORT SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":334111,"naicsName":"ELECTRONIC
781
+ COMPUTER MANUFACTURING"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":561110,"naicsName":"OFFICE
782
+ ADMINISTRATIVE SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541512,"naicsName":"COMPUTER
1223
783
  SYSTEMS DESIGN SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":624310,"naicsName":"VOCATIONAL
1224
- REHABILITATION SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":334511,"naicsName":"SEARCH,
784
+ REHABILITATION SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":611699,"naicsName":"ALL
785
+ OTHER MISCELLANEOUS SCHOOLS AND INSTRUCTION"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":334511,"naicsName":"SEARCH,
1225
786
  DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT
1226
787
  MANUFACTURING"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":811111,"naicsName":"GENERAL
1227
- AUTOMOTIVE REPAIR"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":611699,"naicsName":"ALL
1228
- OTHER MISCELLANEOUS SCHOOLS AND INSTRUCTION"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541690,"naicsName":"OTHER
788
+ AUTOMOTIVE REPAIR"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541690,"naicsName":"OTHER
1229
789
  SCIENTIFIC AND TECHNICAL CONSULTING SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541614,"naicsName":"PROCESS,
1230
790
  PHYSICAL DISTRIBUTION, AND LOGISTICS CONSULTING SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541219,"naicsName":"OTHER
1231
791
  ACCOUNTING SERVICES"}],"section":"52.212-3.c"},{"answerText":"No","section":"52.212-3.c.4"},{"answerText":"No","section":"52.212-3.c.10.ii"},{"answerText":"No","section":"52.212-3.c.11.ii"},{"answerText":"Yes","section":"52.212-3.d.1.i"},{"answerText":"Yes","section":"52.212-3.d.1.ii"},{"answerText":"CGI
@@ -1234,20 +794,18 @@ http_interactions:
1234
794
  will provide information with specific offers to the Government","section":"52.212-3.f"},{"answerText":"No","section":"52.212-3.h.1"},{"answerText":"No","section":"52.212-3.h.2"},{"answerText":"No","section":"52.212-3.h.4"},{"answerText":"No","section":"52.212-3.h.3"},{"answerText":"No","section":"52.212-3.h.5"},{"answerText":"No","section":"52.212-3.i.2.i"},{"section":"52.212-3.j"},{"answerText":"No","section":"52.212-3.k.1.2.i"},{"answerText":"No","section":"52.212-3.k.2.2"},{"answerText":"Yes","section":"52.212-3.l.5"},{"Company":{"name":"The
1235
795
  CGI Group Holding Corp","tin":"TIN ON FILE"},"section":"52.212-3.l.5.3"},{"answerText":"No","section":"52.212-3.n.2.i"},{"answerText":"No","section":"52.212-3.n.2.ii"},{"answerText":"No","section":"52.226-2.b.1"},{"answerText":"No","section":"52.226-2.b.2"}]},{"id":"FAR
1236
796
  52.219-1","answers":[{"naics":[{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541712,"ExcpCounter":1,"naicsName":"Research
1237
- and Development in the Physical, Engineering, and Life Sciences (except Biotechnology)
1238
- 11"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":1,"naicsName":"Research
1239
- and Development in the Physical, Engineering, and Life Sciences (except Biotechnology)
1240
- 11"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541712,"ExcpCounter":2,"naicsName":"Aircraft"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":2,"naicsName":"Aircraft"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541712,"ExcpCounter":3,"naicsName":"Aircraft
1241
- Parts, and Auxiliary Equipment, and Aircraft Engine Parts"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":3,"naicsName":"Aircraft
1242
- Parts, and Auxiliary Equipment, and Aircraft Engine Parts"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541712,"ExcpCounter":4,"naicsName":"Space
1243
- Vehicles and Guided Missiles, their Propulsion Units, their Propulsion Units
1244
- Parts, and their Auxiliary Equipment and Parts"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":4,"naicsName":"Space
1245
- Vehicles and Guided Missiles, their Propulsion Units, their Propulsion Units
1246
- Parts, and their Auxiliary Equipment and Parts"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541519,"ExcpCounter":1,"naicsName":"Other
797
+ and Development in the Physical, Engineering, and Life Sciences (except Biotechnology)"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":1,"naicsName":"Research
798
+ and Development in the Physical, Engineering, and Life Sciences (except Biotechnology)"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541712,"ExcpCounter":2,"naicsName":"Aircraft
799
+ Engine and Engine Parts"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":2,"naicsName":"Aircraft
800
+ Engine and Engine Parts"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541712,"ExcpCounter":3,"naicsName":"Other
801
+ Aircraft Parts and Auxiliary Equipment"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":3,"naicsName":"Other
802
+ Aircraft Parts and Auxiliary Equipment"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541712,"ExcpCounter":4,"naicsName":"Guided
803
+ Missiles and Space Vehicles, Their Propulsion Units and Propulsion Parts"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":4,"naicsName":"Guided
804
+ Missiles and Space Vehicles, Their Propulsion Units and Propulsion Parts"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541519,"ExcpCounter":1,"naicsName":"Other
1247
805
  Computer Related Services"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541519,"ExcpCounter":1,"naicsName":"Other
1248
806
  Computer Related Services"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541519,"ExcpCounter":2,"naicsName":"Information
1249
- Technology Value Added Resellers18"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541519,"ExcpCounter":2,"naicsName":"Information
1250
- Technology Value Added Resellers18"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541330,"ExcpCounter":1,"naicsName":"Engineering
807
+ Technology Value Added Resellers"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541519,"ExcpCounter":2,"naicsName":"Information
808
+ Technology Value Added Resellers"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541330,"ExcpCounter":1,"naicsName":"Engineering
1251
809
  Services"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541330,"ExcpCounter":1,"naicsName":"Engineering
1252
810
  Services"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541330,"ExcpCounter":2,"naicsName":"Military
1253
811
  and Aerospace Equipment and Military Weapons"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541330,"ExcpCounter":2,"naicsName":"Military
@@ -1259,45 +817,43 @@ http_interactions:
1259
817
  Engineering and Naval Architecture"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541330,"ExcpCounter":4,"naicsName":"Marine
1260
818
  Engineering and Naval Architecture"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":561440,"naicsName":"COLLECTION
1261
819
  AGENCIES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541618,"naicsName":"OTHER
1262
- MANAGEMENT CONSULTING SERVICES"},{"isPrimary":false,"naicsCode":925110,"naicsName":"ADMINISTRATION
1263
- OF HOUSING PROGRAMS"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541611,"naicsName":"ADMINISTRATIVE
1264
- MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541513,"naicsName":"COMPUTER
1265
- FACILITIES MANAGEMENT SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":561611,"naicsName":"INVESTIGATION
1266
- SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":611430,"naicsName":"PROFESSIONAL
1267
- AND MANAGEMENT DEVELOPMENT TRAINING"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541511,"naicsName":"CUSTOM
820
+ MANAGEMENT CONSULTING SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":611430,"naicsName":"PROFESSIONAL
821
+ AND MANAGEMENT DEVELOPMENT TRAINING"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541611,"naicsName":"ADMINISTRATIVE
822
+ MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":561611,"naicsName":"INVESTIGATION
823
+ SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541513,"naicsName":"COMPUTER
824
+ FACILITIES MANAGEMENT SERVICES"},{"isPrimary":false,"naicsCode":925110,"naicsName":"ADMINISTRATION
825
+ OF HOUSING PROGRAMS"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541511,"naicsName":"CUSTOM
1268
826
  COMPUTER PROGRAMMING SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":611420,"naicsName":"COMPUTER
1269
- TRAINING"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":518210,"naicsName":"DATA
1270
- PROCESSING, HOSTING, AND RELATED SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541990,"naicsName":"ALL
1271
- OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":511210,"naicsName":"SOFTWARE
1272
- PUBLISHERS"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":561110,"naicsName":"OFFICE
1273
- ADMINISTRATIVE SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":519190,"naicsName":"ALL
1274
- OTHER INFORMATION SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":334111,"naicsName":"ELECTRONIC
1275
- COMPUTER MANUFACTURING"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":561210,"naicsName":"FACILITIES
1276
- SUPPORT SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541512,"naicsName":"COMPUTER
827
+ TRAINING"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":511210,"naicsName":"SOFTWARE
828
+ PUBLISHERS"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541990,"naicsName":"ALL
829
+ OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":518210,"naicsName":"DATA
830
+ PROCESSING, HOSTING, AND RELATED SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":519190,"naicsName":"ALL
831
+ OTHER INFORMATION SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":561210,"naicsName":"FACILITIES
832
+ SUPPORT SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":334111,"naicsName":"ELECTRONIC
833
+ COMPUTER MANUFACTURING"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":561110,"naicsName":"OFFICE
834
+ ADMINISTRATIVE SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541512,"naicsName":"COMPUTER
1277
835
  SYSTEMS DESIGN SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":624310,"naicsName":"VOCATIONAL
1278
- REHABILITATION SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":334511,"naicsName":"SEARCH,
836
+ REHABILITATION SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":611699,"naicsName":"ALL
837
+ OTHER MISCELLANEOUS SCHOOLS AND INSTRUCTION"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":334511,"naicsName":"SEARCH,
1279
838
  DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT
1280
839
  MANUFACTURING"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":811111,"naicsName":"GENERAL
1281
- AUTOMOTIVE REPAIR"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":611699,"naicsName":"ALL
1282
- OTHER MISCELLANEOUS SCHOOLS AND INSTRUCTION"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541690,"naicsName":"OTHER
840
+ AUTOMOTIVE REPAIR"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541690,"naicsName":"OTHER
1283
841
  SCIENTIFIC AND TECHNICAL CONSULTING SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541614,"naicsName":"PROCESS,
1284
842
  PHYSICAL DISTRIBUTION, AND LOGISTICS CONSULTING SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541219,"naicsName":"OTHER
1285
843
  ACCOUNTING SERVICES"}],"section":"52.219-1.b"},{"answerText":"No","section":"52.219-1.b.8.ii"}]},{"id":"FAR
1286
844
  52.219-22","answers":[{"naics":[{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541712,"ExcpCounter":1,"naicsName":"Research
1287
- and Development in the Physical, Engineering, and Life Sciences (except Biotechnology)
1288
- 11"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":1,"naicsName":"Research
1289
- and Development in the Physical, Engineering, and Life Sciences (except Biotechnology)
1290
- 11"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541712,"ExcpCounter":2,"naicsName":"Aircraft"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":2,"naicsName":"Aircraft"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541712,"ExcpCounter":3,"naicsName":"Aircraft
1291
- Parts, and Auxiliary Equipment, and Aircraft Engine Parts"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":3,"naicsName":"Aircraft
1292
- Parts, and Auxiliary Equipment, and Aircraft Engine Parts"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541712,"ExcpCounter":4,"naicsName":"Space
1293
- Vehicles and Guided Missiles, their Propulsion Units, their Propulsion Units
1294
- Parts, and their Auxiliary Equipment and Parts"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":4,"naicsName":"Space
1295
- Vehicles and Guided Missiles, their Propulsion Units, their Propulsion Units
1296
- Parts, and their Auxiliary Equipment and Parts"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541519,"ExcpCounter":1,"naicsName":"Other
845
+ and Development in the Physical, Engineering, and Life Sciences (except Biotechnology)"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":1,"naicsName":"Research
846
+ and Development in the Physical, Engineering, and Life Sciences (except Biotechnology)"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541712,"ExcpCounter":2,"naicsName":"Aircraft
847
+ Engine and Engine Parts"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":2,"naicsName":"Aircraft
848
+ Engine and Engine Parts"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541712,"ExcpCounter":3,"naicsName":"Other
849
+ Aircraft Parts and Auxiliary Equipment"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":3,"naicsName":"Other
850
+ Aircraft Parts and Auxiliary Equipment"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541712,"ExcpCounter":4,"naicsName":"Guided
851
+ Missiles and Space Vehicles, Their Propulsion Units and Propulsion Parts"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541712,"ExcpCounter":4,"naicsName":"Guided
852
+ Missiles and Space Vehicles, Their Propulsion Units and Propulsion Parts"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541519,"ExcpCounter":1,"naicsName":"Other
1297
853
  Computer Related Services"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541519,"ExcpCounter":1,"naicsName":"Other
1298
854
  Computer Related Services"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541519,"ExcpCounter":2,"naicsName":"Information
1299
- Technology Value Added Resellers18"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541519,"ExcpCounter":2,"naicsName":"Information
1300
- Technology Value Added Resellers18"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541330,"ExcpCounter":1,"naicsName":"Engineering
855
+ Technology Value Added Resellers"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541519,"ExcpCounter":2,"naicsName":"Information
856
+ Technology Value Added Resellers"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541330,"ExcpCounter":1,"naicsName":"Engineering
1301
857
  Services"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541330,"ExcpCounter":1,"naicsName":"Engineering
1302
858
  Services"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541330,"ExcpCounter":2,"naicsName":"Military
1303
859
  and Aerospace Equipment and Military Weapons"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541330,"ExcpCounter":2,"naicsName":"Military
@@ -1309,27 +865,27 @@ http_interactions:
1309
865
  Engineering and Naval Architecture"},{"isSmallBusiness":"N","isPrimary":true,"naicsCode":541330,"ExcpCounter":4,"naicsName":"Marine
1310
866
  Engineering and Naval Architecture"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":561440,"naicsName":"COLLECTION
1311
867
  AGENCIES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541618,"naicsName":"OTHER
1312
- MANAGEMENT CONSULTING SERVICES"},{"isPrimary":false,"naicsCode":925110,"naicsName":"ADMINISTRATION
1313
- OF HOUSING PROGRAMS"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541611,"naicsName":"ADMINISTRATIVE
1314
- MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541513,"naicsName":"COMPUTER
1315
- FACILITIES MANAGEMENT SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":561611,"naicsName":"INVESTIGATION
1316
- SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":611430,"naicsName":"PROFESSIONAL
1317
- AND MANAGEMENT DEVELOPMENT TRAINING"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541511,"naicsName":"CUSTOM
868
+ MANAGEMENT CONSULTING SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":611430,"naicsName":"PROFESSIONAL
869
+ AND MANAGEMENT DEVELOPMENT TRAINING"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541611,"naicsName":"ADMINISTRATIVE
870
+ MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":561611,"naicsName":"INVESTIGATION
871
+ SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541513,"naicsName":"COMPUTER
872
+ FACILITIES MANAGEMENT SERVICES"},{"isPrimary":false,"naicsCode":925110,"naicsName":"ADMINISTRATION
873
+ OF HOUSING PROGRAMS"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541511,"naicsName":"CUSTOM
1318
874
  COMPUTER PROGRAMMING SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":611420,"naicsName":"COMPUTER
1319
- TRAINING"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":518210,"naicsName":"DATA
1320
- PROCESSING, HOSTING, AND RELATED SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541990,"naicsName":"ALL
1321
- OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":511210,"naicsName":"SOFTWARE
1322
- PUBLISHERS"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":561110,"naicsName":"OFFICE
1323
- ADMINISTRATIVE SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":519190,"naicsName":"ALL
1324
- OTHER INFORMATION SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":334111,"naicsName":"ELECTRONIC
1325
- COMPUTER MANUFACTURING"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":561210,"naicsName":"FACILITIES
1326
- SUPPORT SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541512,"naicsName":"COMPUTER
875
+ TRAINING"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":511210,"naicsName":"SOFTWARE
876
+ PUBLISHERS"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541990,"naicsName":"ALL
877
+ OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":518210,"naicsName":"DATA
878
+ PROCESSING, HOSTING, AND RELATED SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":519190,"naicsName":"ALL
879
+ OTHER INFORMATION SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":561210,"naicsName":"FACILITIES
880
+ SUPPORT SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":334111,"naicsName":"ELECTRONIC
881
+ COMPUTER MANUFACTURING"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":561110,"naicsName":"OFFICE
882
+ ADMINISTRATIVE SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541512,"naicsName":"COMPUTER
1327
883
  SYSTEMS DESIGN SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":624310,"naicsName":"VOCATIONAL
1328
- REHABILITATION SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":334511,"naicsName":"SEARCH,
884
+ REHABILITATION SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":611699,"naicsName":"ALL
885
+ OTHER MISCELLANEOUS SCHOOLS AND INSTRUCTION"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":334511,"naicsName":"SEARCH,
1329
886
  DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT
1330
887
  MANUFACTURING"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":811111,"naicsName":"GENERAL
1331
- AUTOMOTIVE REPAIR"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":611699,"naicsName":"ALL
1332
- OTHER MISCELLANEOUS SCHOOLS AND INSTRUCTION"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541690,"naicsName":"OTHER
888
+ AUTOMOTIVE REPAIR"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541690,"naicsName":"OTHER
1333
889
  SCIENTIFIC AND TECHNICAL CONSULTING SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541614,"naicsName":"PROCESS,
1334
890
  PHYSICAL DISTRIBUTION, AND LOGISTICS CONSULTING SERVICES"},{"isSmallBusiness":"N","isPrimary":false,"naicsCode":541219,"naicsName":"OTHER
1335
891
  ACCOUNTING SERVICES"}],"section":"52.219-22.b"},{"answerText":"No","section":"52.219-22.b.2.1"},{"answerText":"No","section":"52.219-22.b.1.ii"}]},{"id":"FAR
@@ -1346,7 +902,7 @@ http_interactions:
1346
902
  52.225-6","answers":{"answerText":"Vendor will provide information with specific
1347
903
  offers to the Government","section":"52.225-6.a"}},{"id":"FAR 52.222-48","answers":{"answerText":"No","section":"52.222-48.a.1"}},{"id":"FAR
1348
904
  52.222-52","answers":{"answerText":"No","section":"52.222-52.a.1.1"}},{"id":"SF330","answers":{"answerText":"Vendor
1349
- will provide information with specific offers to the Government","section":"SF330.1"}}],"pdfUrl":"https://www.sam.gov/SAMPortal/filedownload?reportType=2&orgId=Ajo0gier0q3Dqjv85vnGcatixcSU55loaOUrJ58ENixFbvhx2PMzQj9lgIhBaKyp&pitId=Am7u9enhER%2FItHbvdO%2FXd68YdlJSRw3DA1a6amEY3C7LHqvyAUu4jY%2FW%2FLbpllcz&requestId=76cV8fq4nP8yZsV","dfarResponses":[{"id":"DFAR252.247-7022","answers":{"answerText":"No","section":"252.247-7022.b"}},{"id":"DFAR252.216-7008","answers":{"answerText":"No","section":"DFAR252.216-7008.a"}},{"id":"DFAR252.209-7002","answers":{"answerText":"No","section":"DFAR252.209-7002.1"}},{"id":"DFAR
905
+ will provide information with specific offers to the Government","section":"SF330.1"}}],"pdfUrl":"https://www.sam.gov/SAMPortal/filedownload?reportType=2&orgId=pprvXwALE%2FmWxYO1ihaaaniO0jTZs3cYrpn0GIUNi2VJtmSix%2FxcpO4iv8egwoUr&pitId=ogMEeZYi5Z0pdGDTjpmmMKxIAk9YgiJRoJhqEVL0JvITuX%2FI7Z51uG076vnCxkQP&requestId=V5B0n5tODa7aQcl","dfarResponses":[{"id":"DFAR252.247-7022","answers":{"answerText":"No","section":"252.247-7022.b"}},{"id":"DFAR252.216-7008","answers":{"answerText":"No","section":"DFAR252.216-7008.a"}},{"id":"DFAR252.209-7002","answers":{"answerText":"No","section":"DFAR252.209-7002.1"}},{"id":"DFAR
1350
906
  252.225-7000","answers":{"answerText":"Vendor will provide information with
1351
907
  specific offers to the Government","section":"252.225-7000.c.1"}},{"id":"DFAR
1352
908
  252.225-7020","answers":{"answerText":"Vendor will provide information with
@@ -1358,5 +914,5 @@ http_interactions:
1358
914
  FAIR LAKES CIRCLE","stateorProvince":"VA","city":"FAIRFAX"},"email":"SAM.CGIFEDERAL@CGIFEDERAL.COM","usPhone":"7032276000","firstName":"KIM"},"mailingAddress":{"zipPlus4":"4902","zip":"22033","countryCode":"USA","line1":"12601
1359
915
  FAIR LAKES CIRCLE","stateorProvince":"VA","line2":"GWAC SOLUTIONS CENTER","city":"FAIRFAX"},"purposeOfRegistration":"ALL_AWARDS"}}}'
1360
916
  http_version:
1361
- recorded_at: Sun, 24 Apr 2016 16:05:23 GMT
1362
- recorded_with: VCR 3.0.1
917
+ recorded_at: Tue, 24 May 2016 20:30:30 GMT
918
+ recorded_with: VCR 2.9.3