index int64 0 0 | repo_id stringclasses 829
values | file_path stringlengths 34 254 | content stringlengths 6 5.38M |
|---|---|---|---|
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/json_marshal/marshaller_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'json_marshal/marshaller'
describe JsonMarshal::Marshaller do
subject { described_class }
describe '#dump' do
it 'returns a JSON string' do
expect(subject.dump({ 'foo' => 1 })).to eq({ 'foo' => 1 }.to_json)
end
end
describe '#load' d... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/bgsv2/form674_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'bgsv2/form674'
RSpec.describe BGSV2::Form674 do
let(:user_object) { create(:evss_user, :loa3) }
let(:all_flows_payload) { build(:form_686c_674_kitchen_sink) }
let(:all_flows_v2_payload) { build(:form686c_674_v2) }
let(:user_struct) { build(:user_st... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/bgsv2/disability_compensation_form_flashes_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'bgsv2/disability_compensation_form_flashes'
Rspec.describe BGSV2::DisabilityCompensationFormFlashes do
subject { described_class.new(user, form_content, disabilities) }
let(:form_content) do
JSON.parse(
File.read('spec/support/disability_com... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/bgsv2/children_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'bgsv2/children'
RSpec.describe BGSV2::Children do
let(:user_object) { create(:evss_user, :loa3) }
let(:proc_id) { '3828033' }
let(:all_flows_payload) { build(:form_686c_674_kitchen_sink) }
let(:all_flows_payload_v2) { build(:form686c_674_v2) }
c... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/bgsv2/student_school_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'bgsv2/student_school'
RSpec.describe BGSV2::StudentSchool do
let(:user_object) { create(:evss_user, :loa3) }
let(:proc_id) { '3829729' }
let(:vnp_participant_id) { '149471' }
let(:all_flows_payload) { build(:form_686c_674_kitchen_sink) }
let(:all... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/bgsv2/power_of_attorney_verifier_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'bgsv2/power_of_attorney_verifier'
describe BGSV2::PowerOfAttorneyVerifier do
let(:user) { create(:user, :loa3) }
let(:identity) { create(:user_identity) }
before do
external_key = user.common_name || user.email
allow(BGS::Services).to receiv... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/bgsv2/service_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'bgsv2/service'
RSpec.describe BGSV2::Service do
let(:user_object) { create(:evss_user, :loa3) }
let(:bgs_service) { BGSV2::Service.new(user_object) }
let(:proc_id) { '3829671' }
let(:participant_id) { '149456' }
let(:first_name) { 'abraham.lincol... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/bgsv2/form686c_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'bgsv2/form686c'
RSpec.describe BGSV2::Form686c do
let(:user_object) { create(:evss_user, :loa3) }
let(:user_struct) { build(:user_struct) }
let(:saved_claim) { create(:dependency_claim_no_vet_information) }
before do
allow(Flipper).to receive(... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/bgsv2/vnp_veteran_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'bgsv2/vnp_veteran'
RSpec.describe BGSV2::VnpVeteran do
let(:user_object) { create(:evss_user, :loa3) }
let(:all_flows_payload) { build(:form_686c_674_kitchen_sink) }
let(:all_flows_payload_v2) { build(:form686c_674_v2) }
let(:formatted_payload) do
... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/bgsv2/vnp_benefit_claim_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'bgsv2/vnp_benefit_claim'
RSpec.describe BGSV2::VnpBenefitClaim do
let(:user_object) { create(:evss_user, :loa3) }
let(:proc_id) { '3828033' }
let(:participant_id) { '146189' }
let(:veteran_hash) do
{
vnp_participant_id: participant_id,
... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/bgsv2/marriages_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'bgsv2/marriages'
RSpec.describe BGSV2::Marriages do
let(:user_object) { create(:evss_user, :loa3) }
let(:proc_id) { '3828033' }
let(:all_flows_payload) { build(:form_686c_674_kitchen_sink) }
let(:all_flows_payload_v2) { build(:form686c_674_v2) }
... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/bgsv2/benefit_claim_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'bgsv2/benefit_claim'
RSpec.describe BGSV2::BenefitClaim do
let(:user_object) { create(:evss_user, :loa3) }
let(:proc_id) { '3828033' }
let(:participant_id) { '146189' }
let(:vet_hash) do
{
file_number: user_object.ssn,
vnp_participa... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/bgsv2/dependents_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'bgsv2/dependents'
RSpec.describe BGSV2::Dependents do
let(:user_object) { create(:evss_user, :loa3) }
let(:proc_id) { '3828033' }
let(:all_flows_payload) { build(:form_686c_674_kitchen_sink) }
let(:all_flows_payload_v2) { build(:form686c_674_v2) }
... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/bgsv2/vnp_relationships_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'bgsv2/vnp_relationships'
RSpec.describe BGSV2::VnpRelationships do
let(:proc_id) { '3828033' }
let(:participant_id) { '146189' }
let(:veteran_hash) { { vnp_participant_id: '146189' } }
let(:user_object) { create(:evss_user, :loa3) }
let(:dependen... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/bgsv2/dependent_higher_ed_attendance_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'bgsv2/dependent_higher_ed_attendance'
RSpec.describe BGSV2::DependentHigherEdAttendance do
let(:user_object) { create(:evss_user, :loa3) }
let(:proc_id) { '3831414' }
let(:form_674_only) { build(:form_674_only) }
let(:form_674_only_v2) { build(:for... |
0 | code_files/vets-api-private/spec/lib/bgsv2 | code_files/vets-api-private/spec/lib/bgsv2/exceptions/bgs_errors_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'bgsv2/exceptions/bgs_errors'
RSpec.describe BGSV2::Exceptions::BGSErrors do
let(:dummy_class) do
Class.new do
include BGSV2::Exceptions::BGSErrors
attr_reader :user
end
end
let(:dummy_instance) { dummy_class.new }
describe '#no... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/pdf_info/metadata_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'pdf_info'
describe PdfInfo::Metadata do
let(:result) do
<<~STDOUT
Title:
Subject:
Author:
Creator:
Producer:
CreationDate:
Tagged: no
UserProperties: no
Suspects: no
Form: ... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/search_typeahead/configuration_spec.rb | # frozen_string_literal: true
require 'rails_helper'
describe SearchTypeahead::Configuration do
describe '#service_name' do
it 'has the expected service name' do
expect(described_class.instance.service_name).to eq('SearchTypeahead')
end
end
end
|
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/search_typeahead/service_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'search_typeahead/service'
# Re-recording VCR Cassettes
# 1. Replace TEST_KEY (`before` block) with Settings.search_typeahead.api_key from Staging
# 2. Delete exsiting cassette file
# 3. Re-run spec
# 4. **IMPORTANT** Replace the API Key with `TEST_KEY` in ... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/sftp_writer/factory_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'sftp_writer/factory'
RSpec.describe SFTPWriter::Factory, form: :education_benefits, type: :model do
subject { described_class }
it 'raises an error if in production but lacking auth keys' do
expect(Rails.env).to receive('development?').once.and_re... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/sftp_writer/remote_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'sftp_writer/remote'
RSpec.describe SFTPWriter::Remote do
describe '#close' do
it 'returns if sftp has not started' do
expect(described_class.new({}, logger: {}).close).to be_nil
end
end
describe '#sanitize' do
it 'returns a filenam... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/medical_records/client_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'medical_records/client'
require 'stringio'
describe MedicalRecords::Client do
context 'when a valid session exists', :vcr do
before do
allow(Flipper).to receive(:enabled?)
.with(:mhv_medical_records_support_new_model_allergy).and_return... |
0 | code_files/vets-api-private/spec/lib/medical_records | code_files/vets-api-private/spec/lib/medical_records/bb_internal/client_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'medical_records/bb_internal/client'
require 'stringio'
UUID_REGEX = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i
describe BBInternal::Client do
let(:client) { @client }
let(:icn) { '1012740022V620959' }
RSpec.shared_context 're... |
0 | code_files/vets-api-private/spec/lib/medical_records | code_files/vets-api-private/spec/lib/medical_records/user_eligibility/client_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'medical_records/user_eligibility/client'
describe UserEligibility::Client do
describe 'User eligibility operations', :vcr do
let(:icn) { '1000000000V000000' }
let(:user_id) { '10000000' }
let(:client) { UserEligibility::Client.new(user_id, ic... |
0 | code_files/vets-api-private/spec/lib/medical_records | code_files/vets-api-private/spec/lib/medical_records/phr_mgr/client_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'medical_records/phr_mgr/client'
describe PHRMgr::Client do
describe 'PHR operations', :vcr do
context 'when ICN is valid' do
let(:icn) { '1000000000V000000' }
let(:client) { PHRMgr::Client.new(icn) }
it 'performs a PHR refresh', :v... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/saml/post_url_service_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'support/saml/form_validation_helpers'
require 'saml/post_url_service'
RSpec.describe SAML::PostURLService do
include SAML::ValidationHelpers
let(:request_id) { SecureRandom.uuid }
context 'using ial/1 context' do
subject do
described_clas... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/saml/ssoe_settings_service_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'saml/ssoe_settings_service'
RSpec.describe SAML::SSOeSettingsService do
before do
allow(IdentitySettings.saml_ssoe)
.to receive(:idp_metadata_file).and_return(Rails.root.join('spec', 'support', 'saml', 'test_idp_metadata.xml'))
end
describ... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/saml/ssoe_user_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'support/saml/response_builder'
RSpec.describe SAML::User do
include SAML::ResponseBuilder
describe 'SSOe' do
subject { described_class.new(saml_response) }
let(:authn_context) { LOA::IDME_LOA1_VETS }
let(:highest_attained_loa) { '1' }
... |
0 | code_files/vets-api-private/spec/lib | code_files/vets-api-private/spec/lib/saml/url_service_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'saml/url_service'
require 'support/url_service_helpers'
RSpec.describe SAML::URLService do
context 'using loa/3/vets context' do
subject do
described_class.new(saml_settings, session:, user:, params:)
end
let(:user) { build(:user) }
... |
0 | code_files/vets-api-private/spec/lib/saml | code_files/vets-api-private/spec/lib/saml/responses/login_spec.rb | # frozen_string_literal: true
require 'rails_helper'
require 'support/saml/response_builder'
require 'saml/responses/login'
RSpec.describe SAML::Responses::Login do
include SAML::ResponseBuilder
status_detail = '<samlp:StatusCode Value="urn:oasis:names:tc:SAML:2.0:status:Responder"></samlp:StatusCode>' \
... |
0 | code_files/vets-api-private/spec/fixtures | code_files/vets-api-private/spec/fixtures/supplemental_claims/SC_4142_show_response_200.json | {
"data": {
"id": "180db896-2923-4483-93c6-17c864f8e723",
"type": "document_upload",
"attributes": {
"guid": "180db896-2923-4483-93c6-17c864f8e723",
"status": "vbms",
"code": null,
"detail": "",
"final_status": true,
"location": null,
"updated_at": "2024-10-25T17:39:58.166... |
0 | code_files/vets-api-private/spec/fixtures | code_files/vets-api-private/spec/fixtures/supplemental_claims/SC_upload_show_response_200.json | {
"data": {
"id": "55555555-6666-7777-8888-999999999999",
"type": "evidenceSubmission",
"attributes": {
"status": "vbms",
"code": null,
"detail": null,
"location": null,
"appealId": "00000000-1111-2222-3333-444444444444",
"appealType": "SupplementalClaim",
"create... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/10203/minimal.json | {
"veteranFullName": {
"first": "first",
"middle": "middle",
"last": "last"
},
"veteranSocialSecurityNumber": "111223333",
"benefit": "transferOfEntitlement",
"isEnrolledStem": true,
"benefitLeft": "none",
"degreeName": "Degree Name",
"schoolName": "School Name",
"schoolCity": "Test",
"schoolCountry": "... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/10203/kitchen_sink_stem_ad_with_poa.spl | *INIT*
FIRST
MIDDLE
LAST
111223333
111223333
10203DNY
SCHOOL NAME
CH33
*START*
VA Form 22-10203DNY
OMB Control #: 2900-0878
APPLICATION FOR EDITH NOURSE ROGERS STEM SCHOLARSHIP
----------------------------------------------------
APPLICANT INFORMATION
... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/10203/kitchen_sink.json | {
"veteranFullName": {
"first": "first",
"middle": "middle",
"last": "last"
},
"veteranSocialSecurityNumber": "111223333",
"benefit": "chapter33",
"isEnrolledStem": false,
"isPursuingTeachingCert": true,
"benefitLeft": "moreThanSixMonths",
"degreeName": "Degree Name",
"schoolName": "School... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/10203/minimal.spl | *INIT*
FIRST
MIDDLE
LAST
111223333
111223333
V10203
SCHOOL NAME
CH33
*START*
VA Form 22-10203
OMB Control #: 2900-0878
APPLICATION FOR EDITH NOURSE ROGERS STEM SCHOLARSHIP
----------------------------------------------------
APPLICANT INFORMATION
... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/10203/kitchen_sink_stem_ad_without_poa.spl | *INIT*
FIRST
MIDDLE
LAST
111223333
111223333
10203DNY
SCHOOL NAME
CH33
*START*
VA Form 22-10203DNY
OMB Control #: 2900-0878
APPLICATION FOR EDITH NOURSE ROGERS STEM SCHOLARSHIP
----------------------------------------------------
APPLICANT INFORMATION
... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/10203/kitchen_sink.spl | *INIT*
FIRST
MIDDLE
LAST
111223333
111223333
V10203
SCHOOL NAME
CH33
*START*
VA Form 22-10203
OMB Control #: 2900-0878
APPLICATION FOR EDITH NOURSE ROGERS STEM SCHOLARSHIP
----------------------------------------------------
APPLICANT INFORMATION
... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/5495/simple.json | {
"relativeFullName": {
"first": "Mark",
"last": "Olson"
},
"privacyAgreementAccepted": true
}
|
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/5495/kitchen_sink.json | {
"email": "a@a.com",
"serviceBranch": "army",
"currentlyActiveDuty": true,
"outstandingFelony": true,
"benefit": "chapter35",
"educationObjective": "bachelors",
"programName": "college",
"reasonForChange": "better school",
"remarks": "remarks",
"relativeFullName": {
"first": "Mark",
"last":... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/5495/kitchen_sink.spl | *INIT*
MARK
OLSON
111223334
111223333
V5495
SCHOOL NAME
CH35
*START*
VA Form 22-5495
DEC 2016
DEPENDENTS' REQUEST FOR CHANGE OF PROGRAM OR PLACE OF TRAINING
(Under Provisions of Chapters 33 and 35, Title 38, U.S.C.)
-----------------------------------------------------------
... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/5495/simple.spl | *INIT*
MARK
OLSON
V5495
*START*
VA Form 22-5495
DEC 2016
DEPENDENTS' REQUEST FOR CHANGE OF PROGRAM OR PLACE OF TRAINING
(Under Provisions of Chapters 33 and 35, Title 38, U.S.C.)
-----------------------------------------------------------
APPLICANT INFORMATION
... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1919/minimal.json | {
"certifyingOfficial": {
"first": "John",
"last": "Doe",
"role": {
"level": "certifying official"
}
},
"aboutYourInstitution": true,
"institutionDetails": {
"facilityCode": "12345678",
"institutionName": "Test University",
"institutionAddress": {
"country": "USA",
... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/0839/minimal.json | {
"authorizedOfficial": {
"fullName": {
"first": "John",
"last": "Doe"
},
"title": "Captain",
"phoneNumber": "5551231234"
},
"agreementType": "startNewOpenEndedAgreement",
"yellowRibbonProgramTerms": {
"firstAcknowledgement": "AB",
"secondAcknowledgement": "AB",
"thirdAck... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/0839/overflow.json | {
"authorizedOfficial": {
"fullName": {
"first": "John",
"last": "Doe"
},
"title": "Captain",
"phoneNumber": "5551231234"
},
"agreementType": "startNewOpenEndedAgreement",
"yellowRibbonProgramTerms": {
"firstAcknowledgement": "AB",
"secondAcknowledgement": "AB",
"thirdAck... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/0839/unlimited.json | {
"authorizedOfficial": {
"fullName": {
"first": "John",
"last": "Doe"
},
"title": "Captain",
"phoneNumber": "5551231234"
},
"agreementType": "startNewOpenEndedAgreement",
"yellowRibbonProgramTerms": {
"firstAcknowledgement": "AB",
"secondAcknowledgement": "AB",
"thirdAck... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/0839/withdrawal.json | {
"authorizedOfficial": {
"fullName": {
"first": "John",
"last": "Doe"
},
"title": "Captain",
"phoneNumber": "5551231234"
},
"agreementType": "withdrawFromYellowRibbonProgram",
"yellowRibbonProgramTerms": {
"firstAcknowledgement": "AB",
"secondAcknowledgement": "AB",
"thi... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/toe_baf.json | {
"veteranFullName": {
"first": "Joe",
"last": "Tester2"
},
"veteranSocialSecurityNumber": "223334444",
"veteranAddress": {
"city": "Austin",
"country": "USA",
"postalCode": "73301",
"state": "TX",
"street": "1234 Test St"
},
"sponsorSocialSecurityNumber": "444433322",
"applica... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/minimal.json | {
"privacyAgreementAccepted": true,
"veteranFullName": {
"first": "Test",
"last": "Fake"
},
"vaFileNumber": "12345678",
"newSchool": {},
"oldSchool": {},
"preferredContactMethod": "mail",
"veteranAddress": {
"street": "123 Central St",
"city": "Baltimore",
"country": "USA",
"state": "MD",
"postalC... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch30.spl | *INIT*
JOE
TESTER
223334444
223334444
1995R
CH1606
*START*
VA Form 22-1995
OMB Control #: 2900-0074
REQUEST FOR CHANGE OF BENEFIT, PROGRAM OR PLACE OF TRAINING
FOR VETERANS, SERVICEPERSONS, DEPENDENTS & MEMBERS OF THE SELECTED RESERVE
-------------------------------------
... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch30_guardian_graduated_sponsor.json | {
"veteranFullName": {
"first": "Joe",
"last": "Tester"
},
"veteranSocialSecurityNumber": "223334444",
"veteranAddress": {
"city": "Austin",
"country": "USA",
"postalCode": "73301",
"state": "TX",
"street": "123 Test St"
},
"sponsorSocialSecurityNumber": "444433322",
"sponsorFu... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch30_guardian_graduated_sponsor.spl | *INIT*
JOE
TESTER
444433322
223334444
1995R
CH35
*START*
VA Form 22-1995
OMB Control #: 2900-0074
REQUEST FOR CHANGE OF BENEFIT, PROGRAM OR PLACE OF TRAINING
FOR VETERANS, SERVICEPERSONS, DEPENDENTS & MEMBERS OF THE SELECTED RESERVE
-------------------------------------
... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch1606.spl | *INIT*
JOE
TESTER2
223334444
223334444
1995R
CH30
*START*
VA Form 22-1995
OMB Control #: 2900-0074
REQUEST FOR CHANGE OF BENEFIT, PROGRAM OR PLACE OF TRAINING
FOR VETERANS, SERVICEPERSONS, DEPENDENTS & MEMBERS OF THE SELECTED RESERVE
-------------------------------------
... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/kitchen_sink.json | {
"veteranFullName": {
"first": "first",
"middle": "middle",
"last": "last"
},
"veteranSocialSecurityNumber": "223334444",
"newSchool": {
"name": "school name",
"address": {
"city": "Milwaukee",
"country": "USA",
"postalCode": "53135",
"state": "WI",
"street": "... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch33_fry_noncollege.json | {
"veteranFullName": {
"first": "first",
"middle": "middle",
"last": "last"
},
"veteranSocialSecurityNumber": "223334444",
"newSchool": {
"name": "school name",
"address": {
"city": "Milwaukee",
"country": "USA",
"postalCode": "53135",
"state": "WI",
"street": "... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch33_fry_baf.spl | *INIT*
FIRST
MIDDLE
LAST
223334444
223334444
1995R
SCHOOL NAME
CH33
*START*
VA Form 22-1995
OMB Control #: 2900-0074
REQUEST FOR CHANGE OF BENEFIT, PROGRAM OR PLACE OF TRAINING
FOR VETERANS, SERVICEPERSONS, DEPENDENTS & MEMBERS OF THE SELECTED RESERVE
-------------------------------------... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch1606_baf.spl | *INIT*
JOE
TESTER2
223334444
223334444
1995R
CH1606
*START*
VA Form 22-1995
OMB Control #: 2900-0074
REQUEST FOR CHANGE OF BENEFIT, PROGRAM OR PLACE OF TRAINING
FOR VETERANS, SERVICEPERSONS, DEPENDENTS & MEMBERS OF THE SELECTED RESERVE
-------------------------------------
... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch33_p911_to_fry.json | {
"veteranFullName": {
"first": "first",
"middle": "middle",
"last": "last"
},
"veteranSocialSecurityNumber": "223334444",
"newSchool": {
"name": "school name",
"address": {
"city": "Milwaukee",
"country": "USA",
"postalCode": "53135",
"state": "WI",
"street": "... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/kitchen_sink_blank_appliedfor_ch30.json | {
"veteranFullName": {
"first": "first",
"middle": "middle",
"last": "last"
},
"veteranSocialSecurityNumber": "223334444",
"newSchool": {
"name": "school name",
"address": {
"city": "Milwaukee",
"country": "USA",
"postalCode": "53135",
"state... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch33_post911.json | {
"veteranFullName": {
"first": "first",
"middle": "middle",
"last": "last"
},
"veteranSocialSecurityNumber": "223334444",
"newSchool": {
"name": "school name",
"address": {
"city": "Milwaukee",
"country": "USA",
"postalCode": "53135",
"state": "WI",
"street": "... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch33_fry_baf.json | {
"veteranFullName": {
"first": "first",
"middle": "middle",
"last": "last"
},
"veteranSocialSecurityNumber": "223334444",
"newSchool": {
"name": "school name",
"address": {
"city": "Milwaukee",
"country": "USA",
"postalCode": "53135",
"state": "WI",
"street": "... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/kitchen_sink_ch33_p911_baf.spl | *INIT*
FIRST
MIDDLE
LAST
223334444
223334444
V1995
SCHOOL NAME
CH33
*START*
VA Form 22-1995
OMB Control #: 2900-0074
REQUEST FOR CHANGE OF BENEFIT, PROGRAM OR PLACE OF TRAINING
FOR VETERANS, SERVICEPERSONS, DEPENDENTS & MEMBERS OF THE SELECTED RESERVE
-------------------------------------... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/kitchen_sink_blank_appliedfor_ch30.spl | *INIT*
FIRST
MIDDLE
LAST
223334444
223334444
V1995
SCHOOL NAME
CH30
*START*
VA Form 22-1995
OMB Control #: 2900-0074
REQUEST FOR CHANGE OF BENEFIT, PROGRAM OR PLACE OF TRAINING
FOR VETERANS, SERVICEPERSONS, DEPENDENTS & MEMBERS OF THE SELECTED RESERVE
-------------------------------------... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch33_p911_to_fry.spl | *INIT*
FIRST
MIDDLE
LAST
223334444
223334444
1995R
SCHOOL NAME
CH33
*START*
VA Form 22-1995
OMB Control #: 2900-0074
REQUEST FOR CHANGE OF BENEFIT, PROGRAM OR PLACE OF TRAINING
FOR VETERANS, SERVICEPERSONS, DEPENDENTS & MEMBERS OF THE SELECTED RESERVE
-------------------------------------... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch30_guardian_graduated.json | {
"veteranFullName": {
"first": "Joe",
"last": "Tester"
},
"veteranSocialSecurityNumber": "223334444",
"veteranAddress": {
"city": "Austin",
"country": "USA",
"postalCode": "73301",
"state": "TX",
"street": "123 Test St"
},
"sponsorSocialSecurityNumber": "444433322",
"vaFileNum... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/kitchen_sink_ch33_p911_baf.json | {
"veteranFullName": {
"first": "first",
"middle": "middle",
"last": "last"
},
"veteranSocialSecurityNumber": "223334444",
"newSchool": {
"name": "school name",
"address": {
"city": "Milwaukee",
"country": "USA",
"postalCode": "53135",
"state... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/kitchen_sink_ch35_ch33.spl | *INIT*
FIRST
MIDDLE
LAST
223334444
223334444
V1995
SCHOOL NAME
CH33
*START*
VA Form 22-1995
OMB Control #: 2900-0074
REQUEST FOR CHANGE OF BENEFIT, PROGRAM OR PLACE OF TRAINING
FOR VETERANS, SERVICEPERSONS, DEPENDENTS & MEMBERS OF THE SELECTED RESERVE
-------------------------------------... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/toe.json | {
"veteranFullName": {
"first": "Joe",
"last": "Tester2"
},
"veteranSocialSecurityNumber": "223334444",
"veteranAddress": {
"city": "Austin",
"country": "USA",
"postalCode": "73301",
"state": "TX",
"street": "1234 Test St"
},
"sponsorSocialSecurityNumber": "444433322",
"applica... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch33_fry.json | {
"veteranFullName": {
"first": "first",
"middle": "middle",
"last": "last"
},
"veteranSocialSecurityNumber": "223334444",
"newSchool": {
"name": "school name",
"address": {
"city": "Milwaukee",
"country": "USA",
"postalCode": "53135",
"state": "WI",
"street": "... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch30_mgi_bill.json | {
"veteranFullName": {
"first": "Joe",
"last": "Tester"
},
"veteranSocialSecurityNumber": "223334444",
"veteranAddress": {
"city": "Austin",
"country": "USA",
"postalCode": "73301",
"state": "TX",
"street": "123 Test St"
},
"applicantServed": "No",
"sponsorSocialSecurityNumber"... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/minimal.spl | *INIT*
TEST
FAKE
V1995
CH35
*START*
VA Form 22-1995
OMB Control #: 2900-0074
REQUEST FOR CHANGE OF BENEFIT, PROGRAM OR PLACE OF TRAINING
FOR VETERANS, SERVICEPERSONS, DEPENDENTS & MEMBERS OF THE SELECTED RESERVE
-------------------------------------
APPLIC... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch30_guardian_graduated.spl | *INIT*
JOE
TESTER
223334444
223334444
1995R
CH1606
*START*
VA Form 22-1995
OMB Control #: 2900-0074
REQUEST FOR CHANGE OF BENEFIT, PROGRAM OR PLACE OF TRAINING
FOR VETERANS, SERVICEPERSONS, DEPENDENTS & MEMBERS OF THE SELECTED RESERVE
-------------------------------------
... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/kitchen_sink_ch35_ch35.json | {
"veteranFullName": {
"first": "first",
"middle": "middle",
"last": "last"
},
"veteranSocialSecurityNumber": "223334444",
"newSchool": {
"name": "school name",
"address": {
"city": "Milwaukee",
"country": "USA",
"postalCode": "53135",
"state... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/kitchen_sink_blank_appliedfor.json | {
"veteranFullName": {
"first": "first",
"middle": "middle",
"last": "last"
},
"veteranSocialSecurityNumber": "223334444",
"newSchool": {
"name": "school name",
"address": {
"city": "Milwaukee",
"country": "USA",
"postalCode": "53135",
"state... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/kitchen_sink_ch35_ch35.spl | *INIT*
FIRST
MIDDLE
LAST
444433322
223334444
V1995
SCHOOL NAME
CH35
*START*
VA Form 22-1995
OMB Control #: 2900-0074
REQUEST FOR CHANGE OF BENEFIT, PROGRAM OR PLACE OF TRAINING
FOR VETERANS, SERVICEPERSONS, DEPENDENTS & MEMBERS OF THE SELECTED RESERVE
-------------------------------------... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch33_post911.spl | *INIT*
FIRST
MIDDLE
LAST
223334444
223334444
1995R
SCHOOL NAME
CH1606
*START*
VA Form 22-1995
OMB Control #: 2900-0074
REQUEST FOR CHANGE OF BENEFIT, PROGRAM OR PLACE OF TRAINING
FOR VETERANS, SERVICEPERSONS, DEPENDENTS & MEMBERS OF THE SELECTED RESERVE
-----------------------------------... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch30_mgi_bill.spl | *INIT*
JOE
TESTER
223334444
223334444
1995R
CH30
*START*
VA Form 22-1995
OMB Control #: 2900-0074
REQUEST FOR CHANGE OF BENEFIT, PROGRAM OR PLACE OF TRAINING
FOR VETERANS, SERVICEPERSONS, DEPENDENTS & MEMBERS OF THE SELECTED RESERVE
-------------------------------------
... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch33_fry.spl | *INIT*
FIRST
MIDDLE
LAST
223334444
223334444
1995R
SCHOOL NAME
CH1606
*START*
VA Form 22-1995
OMB Control #: 2900-0074
REQUEST FOR CHANGE OF BENEFIT, PROGRAM OR PLACE OF TRAINING
FOR VETERANS, SERVICEPERSONS, DEPENDENTS & MEMBERS OF THE SELECTED RESERVE
-----------------------------------... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch1606.json | {
"veteranFullName": {
"first": "Joe",
"last": "Tester2"
},
"veteranSocialSecurityNumber": "223334444",
"veteranAddress": {
"city": "Austin",
"country": "USA",
"postalCode": "73301",
"state": "TX",
"street": "1234 Test St"
},
"sponsorSocialSecurityNumber": "444433322",
"applica... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/kitchen_sink.spl | *INIT*
FIRST
MIDDLE
LAST
444433322
223334444
V1995
SCHOOL NAME
CH35
*START*
VA Form 22-1995
OMB Control #: 2900-0074
REQUEST FOR CHANGE OF BENEFIT, PROGRAM OR PLACE OF TRAINING
FOR VETERANS, SERVICEPERSONS, DEPENDENTS & MEMBERS OF THE SELECTED RESERVE
-------------------------------------... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch33_fry_noncollege.spl | *INIT*
FIRST
MIDDLE
LAST
223334444
223334444
1995R
SCHOOL NAME
CH1606
*START*
VA Form 22-1995
OMB Control #: 2900-0074
REQUEST FOR CHANGE OF BENEFIT, PROGRAM OR PLACE OF TRAINING
FOR VETERANS, SERVICEPERSONS, DEPENDENTS & MEMBERS OF THE SELECTED RESERVE
-----------------------------------... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch30.json | {
"veteranFullName": {
"first": "Joe",
"last": "Tester"
},
"veteranSocialSecurityNumber": "223334444",
"veteranAddress": {
"city": "Austin",
"country": "USA",
"postalCode": "73301",
"state": "TX",
"street": "123 Test St"
},
"applicantServed": "No",
"sponsorSocialSecurityNumber"... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/toe.spl | *INIT*
JOE
TESTER2
223334444
223334444
1995R
CH33
*START*
VA Form 22-1995
OMB Control #: 2900-0074
REQUEST FOR CHANGE OF BENEFIT, PROGRAM OR PLACE OF TRAINING
FOR VETERANS, SERVICEPERSONS, DEPENDENTS & MEMBERS OF THE SELECTED RESERVE
-------------------------------------
... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch30_guardian_not_graduated.json | {
"veteranFullName": {
"first": "Joe",
"last": "Tester"
},
"veteranSocialSecurityNumber": "223334444",
"veteranAddress": {
"city": "Austin",
"country": "USA",
"postalCode": "73301",
"state": "TX",
"street": "123 Test St"
},
"sponsorSocialSecurityNumber": "444433322",
"applicant... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/toe_baf.spl | *INIT*
JOE
TESTER2
223334444
223334444
1995R
CH33
*START*
VA Form 22-1995
OMB Control #: 2900-0074
REQUEST FOR CHANGE OF BENEFIT, PROGRAM OR PLACE OF TRAINING
FOR VETERANS, SERVICEPERSONS, DEPENDENTS & MEMBERS OF THE SELECTED RESERVE
-------------------------------------
... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/kitchen_sink_blank_appliedfor.spl | *INIT*
FIRST
MIDDLE
LAST
444433322
223334444
V1995
SCHOOL NAME
CH35
*START*
VA Form 22-1995
OMB Control #: 2900-0074
REQUEST FOR CHANGE OF BENEFIT, PROGRAM OR PLACE OF TRAINING
FOR VETERANS, SERVICEPERSONS, DEPENDENTS & MEMBERS OF THE SELECTED RESERVE
-------------------------------------... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch1606_baf.json | {
"veteranFullName": {
"first": "Joe",
"last": "Tester2"
},
"veteranSocialSecurityNumber": "223334444",
"veteranAddress": {
"city": "Austin",
"country": "USA",
"postalCode": "73301",
"state": "TX",
"street": "1234 Test St"
},
"sponsorSocialSecurityNumber": "444433322",
"applica... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/kitchen_sink_ch35_ch33.json | {
"veteranFullName": {
"first": "first",
"middle": "middle",
"last": "last"
},
"veteranSocialSecurityNumber": "223334444",
"newSchool": {
"name": "school name",
"address": {
"city": "Milwaukee",
"country": "USA",
"postalCode": "53135",
"state... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/1995/ch30_guardian_not_graduated.spl | *INIT*
JOE
TESTER
223334444
223334444
1995R
CH30
*START*
VA Form 22-1995
OMB Control #: 2900-0074
REQUEST FOR CHANGE OF BENEFIT, PROGRAM OR PLACE OF TRAINING
FOR VETERANS, SERVICEPERSONS, DEPENDENTS & MEMBERS OF THE SELECTED RESERVE
-------------------------------------
... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/10216/minimal.json | {
"institutionDetails": {
"institutionName": "University of Testing",
"facilityCode": "12345678",
"termStartDate": "2024-03-15"
},
"studentRatioCalcChapter": {
"beneficiaryStudent": 25,
"numOfStudent": 500,
"VaBeneficiaryStudentsPercentage": 5.0,
"dateOfCalculation"... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/0993/ssn.json | {
"claimantFullName": {
"first": "Mark",
"last": "Olson"
},
"claimantSocialSecurityNumber": "111223333",
"privacyAgreementAccepted": true
}
|
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/0993/va_file_number.spl | *INIT*
MARK
OLSON
OPTOUT
*START*
VA Form 22-0993
AUG 2018
REQUEST TO OPT-OUT OF INFORMATION SHARING WITH EDUCATIONAL INSTITUTIONS
-------------------------------------
APPLICANT INFORMATION
---------------------
SSN: N/A
VA File Numbe... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/0993/va_file_number.json | {
"claimantFullName": {
"first": "Mark",
"last": "Olson"
},
"vaFileNumber": "c12345678",
"privacyAgreementAccepted": true
}
|
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/0993/ssn.spl | *INIT*
MARK
OLSON
111223333
111223333
OPTOUT
*START*
VA Form 22-0993
AUG 2018
REQUEST TO OPT-OUT OF INFORMATION SHARING WITH EDUCATIONAL INSTITUTIONS
-------------------------------------
APPLICANT INFORMATION
---------------------
SSN:... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/0994/simple.json | {
"applicantFullName": {
"first": "Test",
"last": "Personage"
},
"applicantSocialSecurityNumber": "123456789",
"mailingAddress" :{
"street": "123 Test St",
"street2": "Apt B",
"city": "Test",
"state": "TN",
"postalCode": "12345",
"country": "USA"
},
"emailAddress": "test@test... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/0994/prefill.spl | *INIT*
TEST
PERSONAGE
123456789
123456789
V0994
VetTec
*START*
VA Form 22-0994
JAN 2019
APPLICATION FOR VETERAN EMPLOYMENT THROUGH TECHNOLOGY EDUCATION COURSES
(VET TEC) HIGH TECHNOLOGY PROGRAM
-------------------------------------------------------
APPLICANT INFO... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/0994/kitchen_sink.json | {
"applicantFullName": {
"first": "Test",
"last": "Personage"
},
"applicantSocialSecurityNumber": "123456789",
"mailingAddress": {
"street": "123 Test St",
"street2": "Apt B",
"street3": "and a half",
"city": "Test",
"state": "TN",
"postalCode": "12345",
"country": "USA"
},... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/0994/prefill.json | {
"applicantFullName": {
"first": "Test",
"last": "Personage"
},
"applicantSocialSecurityNumber": "123456789",
"mailingAddress": {
"street": "123 Test St",
"street2": "Apt B",
"city": "Test",
"state": "TN",
"postalCode": "12345",
"country": "USA"
},
"emailAddress": "test@test... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/0994/kitchen_sink_no_education_benefits.json | {
"applicantFullName": {
"first": "Test",
"last": "Personage"
},
"applicantSocialSecurityNumber": "123456789",
"mailingAddress": {
"street": "123 Test St",
"street2": "Apt B",
"street3": "and a half",
"city": "Test",
"state": "TN",
"postalCode": "12345",
"country": "USA"
},... |
0 | code_files/vets-api-private/spec/fixtures/education_benefits_claims | code_files/vets-api-private/spec/fixtures/education_benefits_claims/0994/kitchen_sink.spl | *INIT*
TEST
PERSONAGE
123456789
123456789
V0994
VetTec
*START*
VA Form 22-0994
JAN 2019
APPLICATION FOR VETERAN EMPLOYMENT THROUGH TECHNOLOGY EDUCATION COURSES
(VET TEC) HIGH TECHNOLOGY PROGRAM
-------------------------------------------------------
APPLICANT INFO... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.