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 | code_files/vets-api-private/bin/deps | #!/usr/bin/env sh
docker compose up clamav postgres redis
|
0 | code_files/vets-api-private | code_files/vets-api-private/bin/dev | #!/usr/bin/env sh
# Function to display the help message
display_help() {
echo "Usage: bin/dev [option]"
echo
echo "Options:"
echo " --help Display this help message"
echo
echo "Description:"
echo " bin/dev sets up and starts the development environment based on the"
echo " configuration sp... |
0 | code_files/vets-api-private | code_files/vets-api-private/bin/rspec | #!/usr/bin/env ruby
# frozen_string_literal: true
require 'bundler/setup'
load Gem.bin_path('rspec-core', 'rspec')
|
0 | code_files/vets-api-private | code_files/vets-api-private/bin/view-run | #!/bin/bash
# Function to display help text
show_help() {
echo "Usage: $0 [--filter-rspec] <url>"
echo
echo "Extracts the run id from the provided url and retrieves the log of a failed GitHub Actions run."
echo
echo "Arguments:"
echo " GHWR_URL The URL of the GitHub Actions run."
ec... |
0 | code_files/vets-api-private | code_files/vets-api-private/bin/is_ready | #!/usr/bin/env bash
# Uses the unavailable percentage (total pool_capacity to total max_threads) to
# determine readiness (e.g. "90" means 90% of pods are unavailable/used).
#
# If the unavailable percentage is >= allowed threshold, script will exit with
# a failure (1) as pod is not ready for traffic. If the unavaila... |
0 | code_files/vets-api-private | code_files/vets-api-private/bin/sidekiq_quiet | #!/bin/bash
# Find Pid
SIDEKIQ_PID=$(ps aux | grep sidekiq | grep busy | awk '{ print $2 }')
# Send TSTP signal
kill -SIGTSTP $SIDEKIQ_PID
|
0 | code_files/vets-api-private | code_files/vets-api-private/bin/help | #!/usr/bin/env ruby
# frozen_string_literal: true
puts <<~HELP
Binstubs
help Show available binstubs
info Display version related information
setup Create the developer environment
test Run test(s) in spec folder(s)
lint Run rubocop, brakeman, and bundle-audit
deps ... |
0 | code_files/vets-api-private | code_files/vets-api-private/bin/vcr-inspector | #!/usr/bin/env ruby
# frozen_string_literal: true
require 'bundler/setup'
require_relative '../script/vcr_inspector/app'
port = ENV.fetch('PORT', 4567)
puts "\n🎬 VCR Inspector starting up..."
puts '📼 Loading cassette library...'
puts "🌐 Opening at http://localhost:#{port}"
puts "\n Press Ctrl+C to stop\n\n"
Vcr... |
0 | code_files/vets-api-private | code_files/vets-api-private/bin/local-traefik | #!/usr/bin/env bash
set -e
# bin/local-traefik — generate dynamic config and run Traefik locally
# Usage:
# bin/local-traefik [--port PORT] [--version VERSION]
#
# Defaults:
# PORT=80
# VERSION=2.6.1
PORT=80
# For latest, see https://github.com/department-of-veterans-affairs/vsp-infra-traefik/tree/main/versions... |
0 | code_files/vets-api-private | code_files/vets-api-private/bin/rails | #!/usr/bin/env ruby
# frozen_string_literal: true
APP_PATH = File.expand_path('../config/application', __dir__)
require_relative '../config/boot'
require 'rails/commands'
|
0 | code_files/vets-api-private/bin/lib | code_files/vets-api-private/bin/lib/vets-api/README.md | # Beta-testing Binstubs
The purpose of these vets-api binstubs is to create a consistent developer environment between native, hybrid, and docker setups.
## Installation
The binstubs do not require any special installation. It should work out of the box.
## Compatibility
bin/setup is only officially supported f... |
0 | code_files/vets-api-private/bin/lib/vets-api | code_files/vets-api-private/bin/lib/vets-api/setups/base.rb | # frozen_string_literal: true
require 'yaml'
require 'fileutils'
module VetsApi
module Setups
class Base
# check for case where already done
def run
puts 'Base Setup...'
check_vets_api_directory
setup_localhost_authentication_for_id_me
create_local_settings
cl... |
0 | code_files/vets-api-private/bin/lib/vets-api | code_files/vets-api-private/bin/lib/vets-api/setups/rails.rb | # frozen_string_literal: true
require 'yaml'
require 'rake'
require 'fileutils'
module VetsApi
module Setups
module Rails
def install_bundler
print "Installing bundler gem v#{bundler_version}..."
ShellCommand.run_quiet("gem install bundler -v #{bundler_version}")
puts 'Done'
... |
0 | code_files/vets-api-private/bin/lib/vets-api | code_files/vets-api-private/bin/lib/vets-api/setups/native.rb | # frozen_string_literal: true
require 'yaml'
require 'fileutils'
require_relative 'rails'
module VetsApi
module Setups
class Native
include Rails
def run
puts "\nNative Setup... "
remove_other_setup_settings
install_bundler
if RbConfig::CONFIG['host_os'] =~ /darwin/i... |
0 | code_files/vets-api-private/bin/lib/vets-api | code_files/vets-api-private/bin/lib/vets-api/setups/docker.rb | # frozen_string_literal: true
require 'yaml'
require 'fileutils'
require_relative 'rails'
module VetsApi
module Setups
class Docker
def run
puts "\nDocker Setup (This will take a while)... "
configuring_clamav_antivirus
docker_build
setup_db
setup_parallel_spec
... |
0 | code_files/vets-api-private/bin/lib/vets-api | code_files/vets-api-private/bin/lib/vets-api/setups/hybrid.rb | # frozen_string_literal: true
require 'yaml'
require 'fileutils'
module VetsApi
module Setups
class Hybrid
include Rails
def run
puts "\nHybrid Setup... "
install_bundler
install_gems
setup_db
setup_parallel_spec
configuring_clamav_antivirus
d... |
0 | code_files/vets-api-private/bin/lib/vets-api | code_files/vets-api-private/bin/lib/vets-api/commands/lint.rb | # frozen_string_literal: true
require_relative 'command'
module VetsApi
module Commands
class Lint < Command
def self.run(args)
Lint.new(args).execute # Command#execute
end
private
def execute_native
execute_commands(docker: false)
end
def execute_hybrid
... |
0 | code_files/vets-api-private/bin/lib/vets-api | code_files/vets-api-private/bin/lib/vets-api/commands/info.rb | # frozen_string_literal: true
module VetsApi
module Commands
class Info
class << self
def run
puts <<~INFO
Rails version: #{Rails.version}
Ruby version: #{RUBY_DESCRIPTION}
Gem version: #{gem_version}
Bundler version: #{... |
0 | code_files/vets-api-private/bin/lib/vets-api | code_files/vets-api-private/bin/lib/vets-api/commands/setup.rb | # frozen_string_literal: true
require_relative '../setups/base'
require_relative '../setups/native'
require_relative '../setups/docker'
require_relative '../setups/hybrid'
require_relative 'command'
module VetsApi
module Commands
class Setup < Command
def self.run(args)
Setup.new(args).execute # C... |
0 | code_files/vets-api-private/bin/lib/vets-api | code_files/vets-api-private/bin/lib/vets-api/commands/test.rb | # frozen_string_literal: true
require_relative 'command'
module VetsApi
module Commands
class Test < Command
def self.run(args)
Test.new(args).execute # Command#execute
end
private
def default_inputs
'spec modules'
end
def execute_native
execute_com... |
0 | code_files/vets-api-private/bin/lib/vets-api | code_files/vets-api-private/bin/lib/vets-api/commands/command.rb | # frozen_string_literal: true
require './rakelib/support/shell_command'
require 'shellwords'
module VetsApi
module Commands
class Command
attr_accessor :options, :inputs
def initialize(args)
@options = args.select { |a| a.start_with?('--', '-') }
input_values = args.reject { |a| a.s... |
0 | code_files/vets-api-private | code_files/vets-api-private/config/routes.rb | # frozen_string_literal: true
require 'flipper/route_authorization_constraint'
Rails.application.routes.draw do
match '/v0/*path', to: 'application#cors_preflight', via: [:options]
match '/services/*path', to: 'application#cors_preflight', via: [:options]
get '/v1/sessions/metadata', to: 'v1/sessions#metadata'... |
0 | code_files/vets-api-private | code_files/vets-api-private/config/sidekiq.yml | ---
:concurrency: <%= ENV.fetch('RAILS_MAX_THREADS') { 10 } %>
|
0 | code_files/vets-api-private | code_files/vets-api-private/config/cable.yml | development:
adapter: async
test:
adapter: async
production:
adapter: redis
url: redis://localhost:6379/1
channel_prefix: vets_api_production
|
0 | code_files/vets-api-private | code_files/vets-api-private/config/spring.rb | # frozen_string_literal: true
Spring.watch(
'.ruby-version',
'.rbenv-vars',
'tmp/restart.txt',
'tmp/caching-dev.txt',
'config/application.yml',
'config/settings.yml',
'config/settings.local.yml'
)
|
0 | code_files/vets-api-private | code_files/vets-api-private/config/clamd.conf | Foreground yes
TCPSocket 3310
TCPAddr 127.0.0.1
LogSyslog yes
LogVerbose yes
ExtendedDetectionInfo yes
|
0 | code_files/vets-api-private | code_files/vets-api-private/config/environment.rb | # frozen_string_literal: true
# Load the Rails application.
require_relative 'application'
# Initialize the Rails application.
Rails.application.initialize!
ActiveRecord::SchemaDumper.ignore_tables = ['spatial_ref_sys']
|
0 | code_files/vets-api-private | code_files/vets-api-private/config/redis.yml | development: &defaults
redis:
url: <%= Settings.redis.app_data.url %>
sidekiq:
url: <%= Settings.redis.sidekiq.url %>
# DO NOT CHANGE BELOW TTL (We have agreement with MHV on this for SSO)
session_store:
namespace: vets-api-session
each_ttl: 1800
user_b_store:
namespace: users_b
each_t... |
0 | code_files/vets-api-private | code_files/vets-api-private/config/storage.yml | test:
service: Disk
root: <%= Rails.root.join("tmp/storage") %>
local:
service: Disk
root: <%= Rails.root.join("storage") %>
amazon:
service: S3
access_key_id: <%= Settings.vba_documents.s3.aws_access_key_id %>
secret_access_key: <%= Settings.vba_documents.s3.aws_secret_access_key %>
region: <%= Setti... |
0 | code_files/vets-api-private | code_files/vets-api-private/config/application.rb | # frozen_string_literal: true
require_relative 'boot'
require 'rails'
require 'active_model/railtie'
require 'active_record/railtie'
require 'active_storage/engine'
require 'action_controller/railtie'
require 'action_mailer/railtie'
require_relative '../lib/identity/config/railtie'
require_relative '../lib/http_metho... |
0 | code_files/vets-api-private | code_files/vets-api-private/config/puma.rb | # frozen_string_literal: true
workers Integer(ENV.fetch('WEB_CONCURRENCY', 0))
threads_count_min = Integer(ENV.fetch('RAILS_MIN_THREADS', 5))
threads_count_max = Integer(ENV.fetch('RAILS_MAX_THREADS', 5))
threads(threads_count_min, threads_count_max)
# used for a healthcheck endpoint that will not consume one of the ... |
0 | code_files/vets-api-private | code_files/vets-api-private/config/database.yml | default: &default
adapter: postgis
encoding: unicode
pool: <%= ENV.fetch('RAILS_MAX_THREADS') { 5 } %>
development:
primary:
url: <%= Settings.database_url %>
audit:
url: <%= URI(Settings.database_url).tap { |uri| uri.path = '/vets_api_audit_development'}.to_s %>
migrations_paths: db/audit_migrat... |
0 | code_files/vets-api-private | code_files/vets-api-private/config/ssoe_idp_int_metadata_isam.xml | <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<md:EntityDescriptor xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata" ID="saml20idp20251008121048" entityID="https://int.eauth.va.gov/isam/sps/saml20idp/saml20">
<ds:Signature xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
<ds:SignedInfo>
<ds... |
0 | code_files/vets-api-private | code_files/vets-api-private/config/boot.rb | # frozen_string_literal: true
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
require 'bundler/setup' # Set up gems listed in the Gemfile.
require 'bootsnap/setup' # Speed up boot time by caching expensive operations.
|
0 | code_files/vets-api-private | code_files/vets-api-private/config/freshclam.conf | Foreground yes
PidFile /app/clamav/freshclam.pid
Checks 8
DatabaseDirectory /app/clamav/database
PrivateMirror dsva-vetsgov-utility-clamav.s3-us-gov-west-1.amazonaws.com
NotifyClamd /app/config/clamd.conf
ReceiveTimeout 600
|
0 | code_files/vets-api-private | code_files/vets-api-private/config/features.yml | ---
# Add a new feature toggle here to ensure that it is initialized in all environments.
#
# Features are enabled by default in the test environment and disabled by default in other environments.
# To default a feature to enabled in development, set the `enable_in_development` key to true.
#
# The description should c... |
0 | code_files/vets-api-private | code_files/vets-api-private/config/coverband.rb | # frozen_string_literal: true
# config/coverband.rb NOT in the initializers
Coverband.configure do |config|
# Do not use the $redis global variable
config.store = Coverband::Adapters::RedisStore.new(Redis.new(url: Settings.redis.app_data.url))
config.logger = Rails.logger
# config options false, true. (defaul... |
0 | code_files/vets-api-private | code_files/vets-api-private/config/settings.yml | ---
acc_rep_management:
prefill: true
account:
enabled: ~
accredited_representative_portal:
allow_list:
github:
access_token: <%= ENV['accredited_representative_portal__allow_list__github__access_token'] %>
base_uri: https://api.github.com
path: <%= ENV['accredited_representative_portal__all... |
0 | code_files/vets-api-private | code_files/vets-api-private/config/settings.local.yml.example | # saml:
# authn_requests_signed: false
# betamocks:
# For NATIVE installation
# The relative path to department-of-veterans-affairs/vets-api-mockdata
# cache_dir: ../vets-api-mockdata
# clamav:
# A "virus scanner" that always returns success for development purposes
# mock: true
# host: '0.0.0.0'
# po... |
0 | code_files/vets-api-private | code_files/vets-api-private/config/brakeman.ignore | {
"ignored_warnings": [
{
"warning_type": "Command Injection",
"warning_code": 14,
"fingerprint": "84625a733d7f2ffd270fcf6e18f67c453923d824339a5f2cf1a52aa9e376fdcf",
"check_name": "Execute",
"message": "Possible command injection",
"file": "lib/dangerfile/parameter_filtering_al... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/identity_settings/settings.yml | audit_db:
url: ~
idme:
client_cert_path: spec/fixtures/sign_in/oauth.crt
client_id: ef7f1237ed3c396e4b4a2b04b608a7b1
client_key_path: spec/fixtures/sign_in/oauth.key
client_secret: ~
oauth_url: https://api.idmelabs.com
redirect_uri: http://localhost:3000/v0/sign_in/callback
logingov:
client_cert_path:... |
0 | code_files/vets-api-private/config/identity_settings | code_files/vets-api-private/config/identity_settings/environments/staging.yml | idme:
client_cert_path: /srv/vets-api/secret/sign-in-service-oauth-lowers.pem
client_id: dde0b5b8bfc023a093830e64ef83f148
client_key_path: /srv/vets-api/secret/sign-in-service-oauth-lowers-key.pem
redirect_uri: https://staging-api.va.gov/v0/sign_in/callback
logingov:
client_cert_path: /srv/vets-api/secret/si... |
0 | code_files/vets-api-private/config/identity_settings | code_files/vets-api-private/config/identity_settings/environments/test.yml | mvi:
url: http://www.example.com
sign_in:
credential_attributes_digester:
pepper: 5740e000be940493231f85324c413bd2
|
0 | code_files/vets-api-private/config/identity_settings | code_files/vets-api-private/config/identity_settings/environments/sandbox.yml | mvi:
client_cert_path: /etc/pki/tls/certs/vetsgov-mvi-cert.pem
client_key_path: /etc/pki/tls/private/vetsgov-mvi.key
url: https://fwdproxy-sandbox.vfs.va.gov:4434/psim_webservice/stage1a/IdMWebService
session_cookie:
secure: true
|
0 | code_files/vets-api-private/config/identity_settings | code_files/vets-api-private/config/identity_settings/environments/production.yml | idme:
client_cert_path: /srv/vets-api/secret/sign-in-service-oauth-prod.pem
client_id: 4b0e5276cea986f6cd2525be1ab788f7
client_key_path: /srv/vets-api/secret/sign-in-service-oauth-prod-key.pem
oauth_url: https://api.id.me
redirect_uri: https://api.va.gov/v0/sign_in/callback
logingov:
client_cert_path: /srv... |
0 | code_files/vets-api-private/config/identity_settings | code_files/vets-api-private/config/identity_settings/environments/development.yml | idme:
client_secret: ae657fd2b253d17be7b48ecdb39d7b34
sign_in:
credential_attributes_digester:
pepper: 5740e000be940493231f85324c413bd2
vamobile_client_id:
- vamobile
- vamobile_local_auth
|
0 | code_files/vets-api-private/config/identity_settings | code_files/vets-api-private/config/identity_settings/environments/dev.yml | idme:
client_cert_path: /srv/vets-api/secret/sign-in-service-oauth-lowers.pem
client_id: dde0b5b8bfc023a093830e64ef83f148
client_key_path: /srv/vets-api/secret/sign-in-service-oauth-lowers-key.pem
redirect_uri: https://dev-api.va.gov/v0/sign_in/callback
logingov:
client_cert_path: /srv/vets-api/secret/sign-i... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/settings/test.yml | acc_rep_management:
prefill: true
account:
enabled: true
accredited_representative_portal:
allow_list:
github:
access_token: some_fake_token
base_uri: https://not.real.com
path: not_real.csv
repo: faked/fakeness
frontend_base_url: http://localhost:3001/representative
lighthouse:
... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/settings/development.yml | ---
acc_rep_management:
prefill: true
account:
enabled: true
accredited_representative_portal:
allow_list:
github:
access_token: ~
base_uri: ~
path: ~
repo: ~
frontend_base_url: http://localhost:3001/representative
lighthouse:
benefits_intake:
api_key: ~
host: https... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/locales/en.yml | # Files in the config/locales directory are used for internationalization
# and are automatically loaded by Rails. If you want to use locales other
# than English, add the necessary files in this directory.
#
# To use the locales, use `I18n.t`:
#
# I18n.t 'hello'
#
# In views, this is aliased to just `t`:
#
# <... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/locales/exceptions.en.yml | en:
common:
exceptions:
defaults: &defaults
# title: required always
# detail: optional, if not provided it will default to title
# code: required always, must be unique to a specific title - no two code and titles can overlap
# status: require always, corresponds to the HTTP... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/mpi_schema/mpi_add_person_implicit_search_template.xml | <?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap:Body>
<idm:PRPA_IN201301UV02 xmlns:... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/mpi_schema/mpi_update_profile_template.xml | <?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap:Body>
<idm:PRPA_IN201302UV02 xmlns:... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/mpi_schema/IdmWebService_200VGOV.wsdl.erb | <?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns:tns="http://vaww.oed.oit.va.gov"
xmlns:wsr="http://www.openuri.org/2002/10/soap/reliability/"
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
xmlns:... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/mpi_schema/mpi_template.xml | <?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header />
<env:Body>
<idm:PRPA_IN201306UV0... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/mpi_schema/mpi_find_person_icn_template.xml | <env:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<idm:PRPA_IN201305UV02 xmlns:idm="http://vaww.oed.oit.v... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/mpi_schema/mpi_add_person_proxy_add_template.xml | <?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap:Body>
<idm:PRPA_IN201301UV02 xmlns:idm="h... |
0 | code_files/vets-api-private/config/mpi_schema/HL7v3 | code_files/vets-api-private/config/mpi_schema/HL7v3/coreschemas/datatypes.xsd | <?xml version="1.0" encoding="UTF-8"?><!-- $Id: datatypes.xsd,v 1.1.2.1 2010/09/15 16:12:11 cchin Exp $ -->
<!--
This schema is generated from a Generic Schema Definition (GSD)
by gsd2xsl. Do not edit this file.
-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
<xs:a... |
0 | code_files/vets-api-private/config/mpi_schema/HL7v3 | code_files/vets-api-private/config/mpi_schema/HL7v3/coreschemas/voc.xsd | <?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation> $Id: voc.xsd,v 1.1.2.1 2010/09/15 16:12:11 cchin Exp $
RoseTree XML to Schema: $Id: voc.xsd,v 1.1.2.1 2010/09/15 16:12:11 cchin Exp $</xs:documentation>
</xs:annotation>
<xs:include sc... |
0 | code_files/vets-api-private/config/mpi_schema/HL7v3 | code_files/vets-api-private/config/mpi_schema/HL7v3/coreschemas/NarrativeBlock.xsd | <?xml version="1.0" encoding="ASCII"?>
<!-- $Id: NarrativeBlock.xsd,v 1.1.2.1 2010/09/15 16:12:11 cchin Exp $ -->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="urn:hl7-org:v3" targetNamespace="urn:hl7-org:v3" elementFormDefault="qualified">
<xs:complexType name="StrucDoc.Text" mixed="true">
<xs... |
0 | code_files/vets-api-private/config/mpi_schema/HL7v3 | code_files/vets-api-private/config/mpi_schema/HL7v3/coreschemas/datatypes-base.xsd | <?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2001, 2002, 2003, 2004, 2005 Health Level Seven. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must... |
0 | code_files/vets-api-private/config/mpi_schema/HL7v3 | code_files/vets-api-private/config/mpi_schema/HL7v3/coreschemas/infrastructureRoot.xsd | <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:mif="urn:hl7-org:v3/mif"
xmlns:v3="urn:hl7-org:v3"
xmlns:ex="urn:hl7-org/v3-example"
targetNamespace="urn:hl7-org:v3"
elementFormDefault="qualified">
<xs:ann... |
0 | code_files/vets-api-private/config/mpi_schema/HL7v3 | code_files/vets-api-private/config/mpi_schema/HL7v3/multicacheschemas/PRPA_IN201305UV02.xsd | <?xml version="1.0" encoding="utf-8" standalone="no"?>
<xs:schema xmlns="urn:hl7-org:v3" xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:mif="urn:hl7-org:v3/mif"
targetNamespace="urn:hl7-org:v3"
elementFormDefault="qualified">
<xs:annotation>
<xs:documentation>Source Informat... |
0 | code_files/vets-api-private/config/mpi_schema/HL7v3 | code_files/vets-api-private/config/mpi_schema/HL7v3/multicacheschemas/PRPA_IN201302UV02.xsd | <?xml version="1.0" encoding="utf-8" standalone="no"?>
<xs:schema xmlns="urn:hl7-org:v3" xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:mif="urn:hl7-org:v3/mif"
targetNamespace="urn:hl7-org:v3"
elementFormDefault="qualified">
<xs:annotation>
<xs:documentation>Source Informat... |
0 | code_files/vets-api-private/config/mpi_schema/HL7v3 | code_files/vets-api-private/config/mpi_schema/HL7v3/multicacheschemas/QUQI_MT021001UV01.xsd | <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<xs:schema xmlns="urn:hl7-org:v3" xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:ex="urn:hl7-org/v3-example"
targetNamespace="urn:hl7-org:v3"
elementFormDefault="qualified"><!--
***************************************************... |
0 | code_files/vets-api-private/config/mpi_schema/HL7v3 | code_files/vets-api-private/config/mpi_schema/HL7v3/multicacheschemas/PRPA_MT201306UV02.xsd | <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<xs:schema xmlns="urn:hl7-org:v3" xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:ex="urn:hl7-org/v3-example"
targetNamespace="urn:hl7-org:v3"
elementFormDefault="qualified"><!--
***************************************************... |
0 | code_files/vets-api-private/config/mpi_schema/HL7v3 | code_files/vets-api-private/config/mpi_schema/HL7v3/multicacheschemas/PRPA_IN201301UV02.xsd | <?xml version="1.0" encoding="utf-8" standalone="no"?>
<xs:schema xmlns="urn:hl7-org:v3" xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:mif="urn:hl7-org:v3/mif"
targetNamespace="urn:hl7-org:v3"
elementFormDefault="qualified">
<xs:annotation>
<xs:documentation>Source Informat... |
0 | code_files/vets-api-private/config/mpi_schema/HL7v3 | code_files/vets-api-private/config/mpi_schema/HL7v3/multicacheschemas/MCCI_MT000100UV01.xsd | <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<xs:schema xmlns="urn:hl7-org:v3" xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:ex="urn:hl7-org/v3-example"
targetNamespace="urn:hl7-org:v3"
elementFormDefault="qualified"><!--
***************************************************... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/environments/production.rb | # frozen_string_literal: true
require 'active_support/core_ext/integer/time'
require 'config_helper'
Rails.application.configure do
# Specify environment specific hostname and protocol
config.hostname = Settings.hostname
config.protocol = 'https'
routes.default_url_options = { host: config.hostname, protocol:... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/environments/development.rb | # frozen_string_literal: true
require 'active_support/core_ext/integer/time'
require 'config_helper'
Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
# Specify environment specific hostname and protocol
config.hostname = Settings.hostname
conf... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/environments/test.rb | # frozen_string_literal: true
# The test environment is used exclusively to run your application's
# test suite. You never need to work with it otherwise. Remember that
# your test database is "scratch space" for the test suite and is wiped
# and recreated between test runs. Don't rely on the data there!
require 'act... |
0 | code_files/vets-api-private/config/preneeds | code_files/vets-api-private/config/preneeds/wsdl/preneeds.wsdl | <!-- Published by JAX-WS RI at http://jax-ws.dev.java.net.
RI's version is Oracle JAX-WS 2.1.5. -->
<definitions
xmlns:wssutil="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/audit_log/user_action_events.yml | ---
sign_in:
event_type: sign_in
details: Sign in on VA.gov
update_mailing_address:
event_type: profile
details: Update mailing address
update_phone_number:
event_type: profile
details: Update phone number
update_email_address:
event_type: profile
details: Update email address |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/evss/international_postal_codes.json | {
"Afghanistan": "932",
"Albania": "942",
"Algeria": "952",
"Angola": "893",
"Anguilla": "816",
"Antigua": "816",
"Antigua and Barbuda": "816",
"Argentina": "858",
"Armenia": "711",
"Australia": "708",
"Austria": "972",
"Azerbaijan": "716",
"Azores": "715",
"Baham... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/appeals_status/mock_get_appeals_responses.yml | users:
"666512797":
data:
- id: 123C
type: appeals
attributes:
type: original
active: true
requested_hearing_type: null
prior_decision_date: null
events:
- type: ssoc
date: "2017-05-28"
- type: bva_final_decision
date: "20... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/betamocks/services_config.yml | ---
:services:
# BGS
# FYI: mocks are generally managed in the bgs-ext gem.
- :name: "BGS"
:base_uri: <%= "#{URI(Settings.bgs.url).host}:#{URI(Settings.bgs.url).port}" %>
:endpoints:
- :method: :post
:path: "/VDC/ManageRepresentativeService"
:file_path: "/bgs/manage_representative_service/read_poa_... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/ca-trust/fwdproxy.crt | -----BEGIN CERTIFICATE-----
MIIEADCCAuigAwIBAgIJAJ5OodmaRJm8MA0GCSqGSIb3DQEBBQUAMF0xCzAJBgNV
BAYTAlVTMQowCAYDVQQIEwEuMQowCAYDVQQHEwEuMQowCAYDVQQKEwEuMSowKAYD
VQQDFCEqLnVzLWdvdi13ZXN0LTEuZWxiLmFtYXpvbmF3cy5jb20wHhcNMTcwMjIz
MjM0MjI1WhcNMjcwMjIxMjM0MjI1WjBdMQswCQYDVQQGEwJVUzEKMAgGA1UECBMB
LjEKMAgGA1UEBxMBLjEKMAgGA1UEChMB... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/ca-trust/README.md | # ca-trust
This directory is used by the Docker build process as an interface to pass trusted CA certs into a container image.
This file is included in git, but the rest of the contents of this directory are gitignore'd.
The forward proxy certificate is included so it can be injected into the k8s image during build ... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/form_profile_mappings/22-10297.yml | applicantFullName: [identity_information, full_name]
dateOfBirth: [identity_information, date_of_birth]
ssn: [identity_information, ssn]
contactInfo:
emailAddress: [contact_information, email]
homePhone: [contact_information, us_phone]
mobilePhone: [contact_information, mobile_phone]
mailingAddress: [contact_info... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/form_profile_mappings/22-0803.yml | applicantName: [identity_information, full_name]
dateOfBirth: [identity_information, date_of_birth]
ssn: [identity_information, ssn]
vaFileNumber: [va_file_number]
|
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/form_profile_mappings/0873.yml | personalInformation:
first: [personal_information, first]
middle: [personal_information, middle]
last: [personal_information, last]
suffix: [personal_information, suffix]
preferred_name: [personal_information, preferred_name]
socialSecurityNumber: [identity_information, ssn]
serviceNumber: [personal_infor... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/form_profile_mappings/DISPUTE-DEBT.yml | veteran:
fullName: [identity_information, full_name]
ssn: [identity_information, ssn_last_four]
dateOfBirth: [identity_information, date_of_birth]
homePhone: [contact_information, home_phone]
email: [contact_information, email]
fileNumber: [va_file_number_last_four]
|
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/form_profile_mappings/22-1990EZ.yml | veteranFullName: [identity_information, full_name]
userFullName: [identity_information, full_name]
gender: [identity_information, gender]
veteranDateOfBirth: [identity_information, date_of_birth]
veteranSocialSecurityNumber: [identity_information, ssn]
homePhone: [contact_information, us_phone]
mobilePhone: [contact_in... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/form_profile_mappings/MDOT.yml | fullName: [identity_information, full_name]
permanentAddress: [mdot_contact_information, permanent_address]
temporaryAddress: [mdot_contact_information, temporary_address]
ssnLastFour: [identity_information, ssn_last_four]
gender: [identity_information, gender]
vet_email: [mdot_contact_information, vet_email]
dateOfBir... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/form_profile_mappings/21-0538.yml | veteranInformation:
fullName: [identity_information, full_name]
ssnLastFour: [identity_information, ssn_last_four]
birthDate: [identity_information, date_of_birth]
veteranContactInformation:
veteranAddress: [contact_information, address]
mobilePhone: [contact_information, mobile_phone]
homePhone: [contact_i... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/form_profile_mappings/VIC.yml | serviceBranches: [military_information, service_branches]
email: [contact_information, email]
veteranDateOfBirth: [identity_information, date_of_birth]
veteranFullName: [identity_information, full_name]
veteranAddress: [contact_information, address]
veteranSocialSecurityNumber: [identity_information, ssn]
phone: [conta... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/form_profile_mappings/21P-527EZ.yml | veteran_full_name: [identity_information, full_name]
veteran_date_of_birth: [identity_information, date_of_birth]
veteran_social_security_number: [identity_information, ssn]
veteran_address: [contact_information, address]
email: [contact_information, email]
phone: [contact_information, us_phone]
mobile_phone: [contact_... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/form_profile_mappings/21P-0537.yml | claimant_full_name: [identity_information, full_name]
claimant_ssn: [identity_information, ssn]
claimant_address: [contact_information, address]
claimant_phone: [contact_information, us_phone]
claimant_email: [contact_information, email]
|
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/form_profile_mappings/10-7959C.yml | veteran:
full_name: [identity_information, full_name]
address:
street: [contact_information, address, street]
street2: [contact_information, address, street2]
street3: [street3]
city: [contact_information, address, city]
state: [contact_information, address, state]
country: [contact_informat... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/form_profile_mappings/22-1990EMEB.yml | relativeFullName: [identity_information, full_name]
relativeSocialSecurityNumber: [identity_information, ssn]
relativeAddress: [contact_information, address]
|
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/form_profile_mappings/22-1995.yml | veteranFullName: [identity_information, full_name]
veteranSocialSecurityNumber: [identity_information, ssn]
homePhone: [contact_information, us_phone]
veteranAddress: [contact_information, address]
email: [contact_information, email]
|
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/form_profile_mappings/20-0996.yml | nonPrefill:
veteranSsnLastFour: [identity_information, ssn_last_four]
veteranVaFileNumberLastFour: [va_file_number_last_four]
|
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/form_profile_mappings/21P-601.yml | claimant_full_name: [identity_information, full_name]
claimant_ssn: [identity_information, ssn]
claimant_address: [contact_information, address]
claimant_phone: [contact_information, us_phone]
claimant_email: [contact_information, email]
|
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/form_profile_mappings/686C-674.yml | veteranInformation:
fullName: [identity_information, full_name]
ssn: [identity_information, ssn]
birthDate: [identity_information, date_of_birth]
veteranContactInformation:
veteranAddress: [form_address]
phoneNumber: [contact_information, us_phone]
emailAddress: [contact_information, email]
nonPrefill:
ve... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/form_profile_mappings/22-1990.yml | veteranFullName: [identity_information, full_name]
gender: [identity_information, gender]
veteranDateOfBirth: [identity_information, date_of_birth]
veteranSocialSecurityNumber: [identity_information, ssn]
homePhone: [contact_information, us_phone]
mobilePhone: [contact_information, mobile_phone]
veteranAddress: [contac... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/form_profile_mappings/20-0995.yml | veteranSsnLastFour: [identity_information, ssn_last_four]
veteranVaFileNumberLastFour: [va_file_number_last_four]
|
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/form_profile_mappings/21-22.yml | personalInformation:
fullName: [identity_information, full_name]
dateOfBirth: [identity_information, date_of_birth]
ssn: [identity_information, ssn]
contactInformation:
email: [contact_information, email]
address: [contact_information, address]
primaryPhone: [contact_information, us_phone]
militaryInformati... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/form_profile_mappings/1330m.yml | # Form profile mappings for VA Form 1330M - Presidential Memorial Certificate Application
# Maps VA Profile data to form fields
# The frontend prefillTransformer handles the prefill logic,
# so we provide a minimal mapping here just to satisfy the backend requirements.
# This empty hash ensures the form is recognized ... |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/form_profile_mappings/21-0966.yml | veteran:
fullName: [identity_information, full_name]
ssn: [identity_information, ssn]
dateOfBirth: [identity_information, date_of_birth]
mobilePhone: [contact_information, mobile_phone]
homePhone: [contact_information, home_phone]
email: [contact_information, email]
address: [contact_information, address] |
0 | code_files/vets-api-private/config | code_files/vets-api-private/config/form_profile_mappings/28-8832.yml | claimantAddress:
country: [contact_information, address, country]
street: [contact_information, address, street]
street2: [contact_information, address, street2]
city: [contact_information, address, city]
state: [contact_information, address, state]
postalCode: [contact_information, address, postal_code]
cl... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.