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 specified in the .developer-setup file. The following" echo " configurations are supported:" echo " native - Starts the web and job processes" echo " docker - Starts the docker process (docker compose up)" echo " hybrid - Starts the web, job, and deps (clamav postgres redis) processes" echo echo "Examples:" echo " bin/dev Starts the development environment based on the setup" echo " bin/dev --help Displays this help message" exit 0 } if [[ "$1" == "--help" ]]; then display_help fi # Check for invalid arguments if [[ $# -gt 0 ]]; then echo "Invalid argument: $1" display_help fi if [ ! -f .developer-setup ]; then echo ".developer-setup file not found! Please run bin/setup first." exit 1 fi setup_type=$(cat .developer-setup | tr -d '\n') processes="" case $setup_type in native) echo "Starting Native...\n" exec foreman start -f Procfile.dev -m web=1,job=1 ;; docker) echo "Starting Docker...\n" docker-compose up ;; hybrid) echo "Starting Hybrid...\n" exec foreman start -f Procfile.dev -m web=1,job=1,deps=1 ;; *) echo "Invalid setup type in .developer-setup! Exiting." exit 1 ;; esac
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." echo echo "Options:" echo " --filter-rspec Filter the logs to show only rspec results." echo echo "Example:" echo " $0 --filter-rspec https://github.com/department-of-veterans-affairs/vets-api/runs/123456789" } # Check if the GitHub CLI is installed if ! command -v gh &> /dev/null; then echo "Error: GitHub CLI (gh) is not installed. Please install it from https://cli.github.com/ and try again." exit 1 fi # Initialize variables FILTER_RSPEC=false # Parse options while [[ "$1" == --* ]]; do case "$1" in --filter-rspec) FILTER_RSPEC=true shift ;; --help) show_help exit 0 ;; *) echo "Error: Unknown option $1" show_help exit 1 ;; esac done # Check if the correct number of arguments is provided if [ "$#" -ne 1 ]; then echo "Error: Invalid number of arguments." show_help exit 1 fi GHWR_URL=$1 # Validate the URL format if ! [[ "$GHWR_URL" =~ ^https://github\.com/.*/runs/[0-9]+/?(job/[0-9]+)?$ ]]; then echo "Error: Invalid URL format. Please provide a URL in the format: https://github.com/owner/repo/runs/123456789 or https://github.com/owner/repo/runs/123456789/job/1234" exit 1 fi # Extract GHWR_ID from the provided URL GHWR_ID=$(echo "$GHWR_URL" | awk -F'runs/' '{if ($2) {split($2, a, /[^0-9]/); print a[1]}}') # Extract the repo from the provided URL REPO=$(echo "$GHWR_URL" | awk -F'/' '{print $4"/"$5}') # Check if GHWR_ID was successfully extracted if [ -z "$GHWR_ID" ]; then echo "Error: Unable to extract GHWR_ID from the provided URL." exit 1 fi # Retrieve the log of the failed GitHub Actions run LOG=$(gh run view -R "$REPO" --log-failed "$GHWR_ID") # Filter the log if --filter-rspec option is set if $FILTER_RSPEC; then echo "$LOG" | grep -A2 -E "rspec [']?\./" else echo "$LOG" fi
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 unavailable percentage # is < allowed threshold, script will exit with a success as it's ready for # traffic. ALLOWED_UNAVAILABLE_PERCENTAGE=${AUTOSCALING_TARGET_VALUE:-60} MIN_READY_PODS=${MIN_READY_PODS:-3} POD_NAME=${POD_NAME:-"vets-api-web-5bf4f8d6c7-pn475"} # Example POD_NAME for testing puma_data=$(curl -s --max-time 2 127.0.0.1:9293/stats) if [ $? -ne 0 ] || [ -z "$puma_data" ]; then echo "Unable to fetch Puma stats. Is the Puma metrics endpoint (127.0.0.1:9293/stats) running?" exit 1 fi pool_capacity=$(echo "$puma_data" | grep -oE '"pool_capacity":[0-9]+' | cut -f2 -d: | awk '{sum+=$1} END {print sum}') max_threads=$(echo "$puma_data" | grep -oE '"max_threads":[0-9]+' | cut -f2 -d: | awk '{sum+=$1} END {print sum}') unavailable_percentage=$(awk "BEGIN {printf \"%d\", 100 - (($pool_capacity * 100) / $max_threads)}") if [ $unavailable_percentage -ge $ALLOWED_UNAVAILABLE_PERCENTAGE ]; then CURRENT_TIME=$(date +%s) dd_env=$(echo $DD_ENV | cut -f2 -d-) cluster_env=${DD_ENV#eks-} dd_data=$( curl -s --max-time 2 -G \ 'https://vagov.ddog-gov.com/api/v1/query' \ --data-urlencode "query=avg:kubernetes_state.deployment.replicas_available{kube_cluster_name:dsva-vagov-${cluster_env:-prod}-cluster,kube_namespace:vets-api} by {kube_deployment}" \ -d "from=$((CURRENT_TIME - 60))" \ -d "to=${CURRENT_TIME}" \ -H "DD-API-KEY: $DD_API_KEY" \ -H "DD-APPLICATION-KEY: $DD_APP_KEY" ) if [ $? -ne 0 ] || [ -z "$dd_data" ]; then echo "Failed to retrieve deployment data from Datadog." exit 0 # Accumulate a backlog if DD is inaccessible fi # Check for errors in the dd_data response if echo "$dd_data" | grep -q '"errors"'; then echo "Datadog API response includes errors:" echo "$dd_data" | grep '"errors"' | sed 's/.*"errors":\[\([^]]*\)\].*/\1/' exit 0 # Accumulate a backlog if there are errors in the response fi # Extract the latest value for the given kube_deployment KUBE_DEPLOYMENT=$(echo $POD_NAME | rev | cut -d'-' -f3- | rev) LATEST_VALUE=$(echo "$dd_data" | tr -d '\n' | sed 's/},/\n/g' | grep "\"kube_deployment:$KUBE_DEPLOYMENT\"" | sed 's/.*pointlist":\[\[\([0-9\.]*,[0-9\.]*\)\].*/\1/' | awk -F, '{print $2}') if [ -z "$LATEST_VALUE" ]; then echo "No deployment metrics found for $KUBE_DEPLOYMENT in Datadog (time range: $((CURRENT_TIME - 60)) to $CURRENT_TIME, env: ${cluster_env:-prod})." exit 0 # Accumulate a backlog if data not found in DD fi # Convert LATEST_VALUE to an integer LATEST_VALUE=${LATEST_VALUE%.*} # Determine if we have enough ready pods in replicaSet if [ $LATEST_VALUE -le $MIN_READY_PODS ]; then echo "Pod marked unhealthy, but only $LATEST_VALUE out of $MIN_READY_PODS required pods are ready. Allowing backlog to accumulate." exit 0 # Ready pods is too low, accumulate a backlog else echo "This pod is overloaded (traffic exceeds allowed threshold), even though $LATEST_VALUE pods are ready and only $MIN_READY_PODS are required." exit 1 # Enough pods are available but this one has too much traffic. fi else exit 0 # Not checking others pods, this one is healthy fi
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 Start dependency containers (clamav, postgres, & redis) Examples: bin/setup --docker bin/test --ci bin/lint --dry --only-rubocop Docs: https://github.com/department-of-veterans-affairs/vets-api/blob/master/docs/setup/binstubs.md HELP
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" VcrInspector::App.run!(port: port.to_i, bind: '0.0.0.0')
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.json#L6 TRAEFIK_VERSION="2.6.1" # parse flags while [[ "$#" -gt 0 ]]; do case "$1" in --port) PORT="$2" shift 2 ;; --version) TRAEFIK_VERSION="$2" shift 2 ;; --help|-h) echo "Usage: bin/local-traefik [--port PORT] [--version VERSION]" echo "" echo "Spins up a production-like Traefik locally," \ "using a generated dynamic file that routes / → localhost:3000." \ "Specify the Traefik image version with --version." exit 0 ;; *) echo "Unknown option: $1" echo "Use --help to see available options." exit 1 ;; esac done # ensure Rails is already running on 3000 if ! nc -z localhost 3000 >/dev/null 2>&1; then echo "⚠️ No service listening on localhost:3000. Start your API first (e.g. bin/prod)." >&2 exit 1 fi # generate the dynamic file only if it doesn't exist DYNAMIC_FILE="tmp/traefik-dynamic.yml" if [[ ! -f "$DYNAMIC_FILE" ]]; then mkdir -p tmp cat > "$DYNAMIC_FILE" <<EOF http: routers: vets-api: rule: PathPrefix(\`/\`) entryPoints: - web service: vets-api services: vets-api: loadBalancer: servers: - url: "http://host.docker.internal:3000" EOF echo "✅ Generated $DYNAMIC_FILE" fi # print Traefik version and port echo "🚀 Starting Traefik version $TRAEFIK_VERSION on port $PORT" # run Traefik docker run --rm --name traefik-local \ -p ${PORT}:80 \ -v "$(pwd)/tmp/traefik-dynamic.yml":/etc/traefik/dynamic.yml:ro \ traefik:${TRAEFIK_VERSION} \ --entryPoints.web.address=":80" \ --providers.file.filename="/etc/traefik/dynamic.yml"
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 for Mac OSX. For those using Linux or Windows, use the `--base` option for a basic setup. Although not officially supported, the docker setup may work on Linux and Windows. All other binstubs can be used by Mac, Linux, or Windows. ## List of binstubs - bin/help - bin/info - bin/lint - bin/setup - bin/test - bin/dev - bin/docker ### bin/setup - Creates the developer setup for native, hybrid, or docker - This setups local settings, database, parallel_tests, and binary dependencies such as pdftk Run `bin/setup --help` for usage info and example ### bin/test - Replace existing testing commands such as `rspec`, `parallel_rspec`, `make spec_parallel` - This command does not include parallel database setup - `--ci` requires docker to be install and setup Run `bin/test --help` for usage info and example ### bin/lint - Replaces `make lint` for docker setup - Runs rubocop, brakeman, and bundle-audit - Autocorrecting in rubocop is on by default, but `--dry` will override autocorrect option Run `bin/lint --help` for usage info and example ### bin/docker - Replaces Makefile commands - Commands include: - clean = Prunes unused Docker objects and rebuilds the images" - rebuild = Stops running containers and builds the images without cache" - build = Stops running containers and builds the images with cache" - stop = Stops all running Docker containers" - startd = Start Docker containers in the background" - console = Starts the Rails console" - bundle = Bundles ruby gems" - db = Prepares the database for development and test environments" - ci = Prepare docker environment to run bin/test --ci" - help = Display this help message" Run `bin/docker --help` for usage info and example ### others - `bin/help`: Display `vets-api` related binstubs - `bin/info`: Display version related information - `bin/dev`: Start the server ## Reporting a Bug or Feature Suggest Create an issue in va.gov-team repo using the title - `binstubs bug ...` - `binstubs feature ...` Please also assign `stevenjcumming` with the label `platform-reliability-team` ## Getting Started After checking out the `sjc-binstubs` branch, run `bin/setup` with your desired setup. ```bash # Example bin/setup native ``` This will create a new file `.developer-setup` to store your setup preference. You can switch this at any time by rerun the setup binstub. Some setup steps will be skipped if already completed. After setup, you can test or lint with the corresponding binstub. `bin/test` may take longer to load and start testing because bootsnap is disable, as it is on the CI. ## Troubleshooting Tips (TBD)
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 clone_mockdata set_local_betamocks_cache_dir disable_signed_authentication_requests prompt_setup_sidekiq_enterprise puts 'Base Setup...Done' end private def check_vets_api_directory raise ScriptError, 'Error: only run this command in the app root directory' unless Dir.pwd.end_with?('vets-api') end def setup_localhost_authentication_for_id_me if File.exist?('config/certs/vetsgov-localhost.key') puts 'Skipping localhost authentication to ID.me (files already exist)' else print 'Setting up key & cert for localhost authentication to ID.me... ' FileUtils.mkdir('config/certs') FileUtils.touch('config/certs/vetsgov-localhost.crt') FileUtils.touch('config/certs/vetsgov-localhost.key') puts 'Done' end end def create_local_settings if File.exist?('config/settings.local.yml') puts 'Skipping local settings (files already exist)' else print 'Copying default settings to local settings... ' FileUtils.cp('config/settings.local.yml.example', 'config/settings.local.yml') puts 'Done' end end def clone_mockdata if File.exist?('../vets-api-mockdata/README.md') puts 'Skipping vets-api-mockdata clone (already installed)' else puts 'Cloning vets-api-mockdata to sibiling directory' repo_url = 'git@github.com:department-of-veterans-affairs/vets-api-mockdata.git' destination = '../' system("git clone #{repo_url} #{destination}mockdata") end end def set_local_betamocks_cache_dir cache_settings = { 'betamocks' => { 'cache_dir' => '../vets-api-mockdata' } } if existing_settings.keys.include?('betamocks') puts 'Skipping betamocks cache_dir setting (setting already exists)' else print 'Editing config/settings.local.yml to set cache_dir for betamocks ...' save_settings(cache_settings) puts 'Done' end end def disable_signed_authentication_requests saml_settings = { 'saml' => { 'authn_requests_signed' => false } } if existing_settings.keys.include?('saml') puts 'Skipping disable signed authentication request (setting already exists)' else print 'Editing config/settings.local.yml to disable signed authentication requests...' save_settings(saml_settings) puts 'Done' end end # TODO: figure out how to do this with docker def prompt_setup_sidekiq_enterprise unless `bundle config get enterprise.contribsys.com --parseable`.empty? puts 'Skipping Sidekiq Enterprise License (value already set)' return true end print 'Enter Sidekiq Enterprise License or press enter/return to skip: ' response = $stdin.gets.chomp if response && /\A[0-9a-fA-F]{8}:[0-9a-fA-F]{8}\z/.match?(response) print 'Setting Sidekiq Enterprise License... ' ShellCommand.run_quiet("bundle config enterprise.contribsys.com #{response}") if RbConfig::CONFIG['host_os'] =~ /mswin|msys|mingw|cygwin/i ShellCommand.run_quiet("set BUNDLE_ENTERPRISE__CONTRIBSYS__COM=#{response}") else ShellCommand.run_quiet("BUNDLE_ENTERPRISE__CONTRIBSYS__COM=#{response}") end puts 'Done' else puts puts "\e[1;4m**Please do not commit a Gemfile.lock that does not include sidekiq-pro and sidekiq-ent**\e[0m" puts end end def existing_settings YAML.safe_load(File.read('config/settings.local.yml'), permitted_classes: [Symbol]) end def save_settings(settings) File.open('config/settings.local.yml', 'a') do |file| file.puts settings.to_yaml.sub(/^---\n/, '') end end end end end
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' end def install_gems print 'Installing all gems...' `bundle install` puts 'Done' end def configuring_clamav_antivirus print 'Configuring ClamAV in local settings...' settings_path = 'config/settings.local.yml' settings_file = File.read(settings_path) settings = YAML.safe_load(settings_file, permitted_classes: [Symbol]) settings.delete('clamav') settings['clamav'] = { 'mock' => true, 'host' => '0.0.0.0', 'port' => '33100' } updated_yaml = settings.to_yaml updated_content = settings_file.gsub(/clamav:.*?(?=\n\w|\Z)/m, updated_yaml.match(/clamav:.*?(?=\n\w|\Z)/m).to_s) File.write(settings_path, updated_content) puts 'Done' end def install_pdftk if pdftk_installed? puts 'Skipping pdftk install (daemon already installed)' else puts 'Installing pdftk...' ShellCommand.run('brew install pdftk-java') puts 'Installing pdftk...Done' end end def setup_db puts 'Setting up database...' ShellCommand.run_quiet('bundle exec rails db:prepare') puts 'Setting up database...Done' end def setup_parallel_spec puts 'Setting up parallel_test...' ShellCommand.run_quiet('RAILS_ENV=test bundle exec rake parallel:setup') puts 'Setting up parallel_test...Done' end private def bundler_version lockfile_path = "#{Dir.pwd}/Gemfile.lock" lines = File.readlines(lockfile_path).reverse bundler_line = lines.each_with_index do |line, index| break index if line.strip == 'BUNDLED WITH' end lines[bundler_line - 1].strip end def pdftk_installed? ShellCommand.run_quiet('pdftk --help') end def desired_clamav_config { 'mock' => true, 'host' => '0.0.0.0', 'port' => '33100' } end end end end
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 install_postgres run_brewfile validate_postgis_installed configuring_clamav_antivirus install_pdftk else "WARNING: bin/setup doesn't support Linux or Windows yet" end install_gems setup_db setup_parallel_spec puts "\nNative Setup Complete!" end private def remove_other_setup_settings print 'Updating settings.local.yml...' settings_path = 'config/settings.local.yml' settings_file = File.read(settings_path) settings = YAML.safe_load(settings_file, permitted_classes: [Symbol]) hybrid_keys = %w[database_url test_database_url redis] hybrid_keys.each do |key| settings.delete(key) if settings.key?(key) end lines = File.readlines(settings_path) updated_lines = lines.reject do |line| hybrid_keys.any? { |key| line.strip.start_with?("#{key}:") } end File.open(settings_path, 'w') do |file| file.puts updated_lines end puts 'Done' end def install_postgres if ShellCommand.run_quiet('pg_isready') && ShellCommand.run_quiet('pg_config') puts 'Skipping Postgres install (already running)' elsif ShellCommand.run_quiet('pg_config') puts 'ERROR:' puts "\nMake sure postgres is running before continuing" exit 1 else ShellCommand.run('brew install postgresql@15') end end def run_brewfile print 'Installing binary dependencies...(this might take a while)...' ShellCommand.run_quiet('brew bundle') puts 'Done' end def validate_postgis_installed ShellCommand.run_quiet("psql -U postgres -d postgres -c 'CREATE EXTENSION IF NOT EXISTS postgis;'") return if ShellCommand.run("psql -U postgres -d postgres -c 'SELECT PostGIS_Version();' | grep -q '(1 row)'") g_cppflags = '-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H -I/usr/local/include' cflags = '-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H -I/usr/local/include' unless ShellCommand.run("G_CPPFLAGS='#{g_cppflags}' CFLAGS='#{cflags}' pex install postgis") puts "\n***ERROR***\n" puts 'There was an issue installing the postgis extension on postgres' puts 'You will need to install postgres and the extenstions via the app' puts puts 'Follow the instructions on:' puts 'https://github.com/department-of-veterans-affairs/vets-api/blob/master/docs/setup/native.md#osx' exit 1 end end end end end
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 puts "\nDocker Setup Complete!" end private def configuring_clamav_antivirus print 'Configuring ClamAV in local settings...' settings_path = 'config/settings.local.yml' settings_file = File.read(settings_path) settings = YAML.safe_load(settings_file, permitted_classes: [Symbol]) settings.delete('clamav') settings['clamav'] = { 'mock' => true, 'host' => 'clamav', 'port' => '3310' } updated_yaml = settings.to_yaml updated_content = settings_file.gsub(/clamav:.*?(?=\n\w|\Z)/m, updated_yaml.match(/clamav:.*?(?=\n\w|\Z)/m).to_s) File.write(settings_path, updated_content) puts 'Done' end # Should validate this before saying done def docker_build puts 'Building Docker Image(s) for This may take a while...' ShellCommand.run_quiet('docker compose build') puts 'Building Docker Image(s)...Done' end # Should validate this before saying done def setup_db puts 'Setting up database...' execute_docker_command('bundle exec rails db:prepare') puts 'Setting up database...Done' end def setup_parallel_spec puts 'Setting up parallel_test...' execute_docker_command('RAILS_ENV=test bundle exec rails parallel:setup') puts 'Setting up parallel_test...Done' end def execute_docker_command(command) ShellCommand.run_quiet("docker compose run --rm --service-ports web bash -c \"#{command}\"") end end end end
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 dockerized_dependencies_settings install_pdftk puts "\nHybrid Setup Complete!" end private def dockerized_dependencies_settings db_settings = { 'database_url' => 'postgis://postgres:password@localhost:54320/vets_api_development?pool=4' } test_db_settings = { 'test_database_url' => 'postgis://postgres:password@localhost:54320/vets_api_test?pool=4' } redis_settings = { 'redis' => { 'host' => 'localhost', 'port' => '63790', 'app_data' => { 'url' => 'redis://localhost:63790' }, 'sidekiq' => { 'url' => 'redis://localhost:63790' } } } set_database_settings(db_settings, test_db_settings) set_redis_settings(redis_settings) end def set_database_settings(db_settings, test_db_settings) if existing_settings.keys.include?('database_url') puts 'Skipping database_url (setting already exists)' else print 'Editing config/settings.local.yml to set database_url...' save_settings(db_settings) puts 'Done' end if existing_settings.keys.include?('test_database_url') puts 'Skipping test_database_url (setting already exists)' else print 'Editing config/settings.local.yml to set test_database_url...' save_settings(test_db_settings) puts 'Done' end end def set_redis_settings(redis_settings) if existing_settings.keys.include?('redis') puts 'Skipping redis settings (setting already exists)' else print 'Editing config/settings.local.yml to set redis...' save_settings(redis_settings) puts 'Done' end end def docker_build puts 'Building Docker Image(s) for This may take a while...' ShellCommand.run_quiet('docker compose -f docker-compose-deps.yml build') puts 'Building Docker Image(s)...Done' end def existing_settings YAML.safe_load(File.read('config/settings.local.yml'), permitted_classes: [Symbol]) end def save_settings(settings) File.open('config/settings.local.yml', 'a') do |file| file.puts settings.to_yaml.sub(/^---\n/, '') end end end end end
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 execute_native end def execute_docker execute_commands(docker: true) end def execute_commands(docker:) execute_command(rubocop_command, docker:) unless only_brakeman? execute_command(brakeman_command, docker:) unless only_rubocop? execute_command(bundle_audit_command, docker:) unless only_rubocop? execute_command(codeowners_command) unless only_rubocop? || only_brakeman? end def execute_command(command, docker: false) command = "docker compose run --rm --service-ports web bash -c \"#{command}\"" if docker puts "running: #{command}" ShellCommand.run(command) end def rubocop_command "bundle exec rubocop #{autocorrect} --color #{@inputs}".strip.gsub(/\s+/, ' ') end def brakeman_command 'bundle exec brakeman --ensure-latest --confidence-level=2 --no-pager --format=plain' end def bundle_audit_command 'bundle exec bundle-audit check' end def codeowners_command '.github/scripts/check_codeowners.sh' end def autocorrect @options.include?('--dry') ? '' : ' -a' end def only_rubocop? @options.include?('--only-rubocop') end def only_brakeman? @options.include?('--only-brakeman') end end end end
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: #{bundler_version} Environment: #{Rails.env} Postgres Version: #{postgres_version} Redis version: #{redis_version} Docker: #{docker_version} Host OS: #{RbConfig::CONFIG['host_os']} Commit SHA: #{commit_sha} Latest Migration: #{latest_migration_timestamp} INFO end private def gem_version `gem --version`.chomp end def bundler_version `bundle --version`.chomp end def postgres_version `postgres --version`.chomp rescue 'Not Found' end def redis_version `redis-cli --version`.chomp rescue 'Not Found' end def docker_version `docker -v`&.chomp # rubocop:disable Lint/RedundantSafeNavigation rescue 'Not Found' end def commit_sha `git log --pretty=format:'%h' -n 1` end def latest_migration_timestamp `psql -d vets-api -t -A -c "SELECT version FROM schema_migrations ORDER BY version DESC LIMIT 1;"` end end end end end
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 # Command#execute end def execute execute_base case setup_preference when 'native' execute_native when 'hybrid' execute_hybrid when 'docker' execute_docker else puts 'Invalid option for .developer-setup' end end private def execute_base VetsApi::Setups::Base.new.run base_setup = @inputs.include?('base') store_developer_setup_preference unless base_setup exit 0 if base_setup end def execute_native validate_ruby_version VetsApi::Setups::Native.new.run end def execute_docker validate_docker_running VetsApi::Setups::Docker.new.run end def execute_hybrid validate_ruby_version validate_docker_running VetsApi::Setups::Hybrid.new.run end def store_developer_setup_preference setup = @inputs.split.first file_path = '.developer-setup' File.write(file_path, setup) if setup end def validate_ruby_version unless RUBY_DESCRIPTION.include?(ruby_version) puts "\nBefore continuing Ruby #{ruby_version} must be installed" puts 'We suggest using a Ruby version manager such as rbenv, asdf, rvm, or chruby' \ ' to install and maintain your version of Ruby.' puts 'More information: https://github.com/department-of-veterans-affairs/vets-api/blob/master/docs/setup/native.md#installing-a-ruby-version-manager' exit 1 end end def validate_docker_running unless docker_running? puts "\nBefore continuing Docker Desktop (Engine + Compose) must be installed" puts 'More information: https://github.com/department-of-veterans-affairs/vets-api/blob/master/docs/setup/docker.md' exit 1 end end def docker_running? ShellCommand.run_quiet('docker -v') end def ruby_version File.read('.ruby-version').chomp end end end end
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_command(rspec_command, docker: false) end def execute_hybrid execute_native end def execute_docker execute_command(rspec_command, docker: true) end def execute_command(command, docker:) command = "docker compose run --rm --service-ports web bash -c \"#{command}\"" if docker puts "running: #{command}" system(command) puts 'Results can be found at log/rspec.log' if @options.include?('--log') end def rspec_command runtime_variables = 'DISABLE_PRY=1 RAILS_ENV=test DISABLE_BOOTSNAP=true' "#{runtime_variables} #{coverage} #{test_command} #{@inputs} #{test_options}".strip.gsub(/\s+/, ' ') end def coverage @options.include?('--coverage') ? '' : ' NOCOVERAGE=true' end def parallel? @options.include?('--parallel') end def test_command parallel? ? 'bundle exec parallel_rspec' : 'bundle exec rspec' end def test_options return '' if log.empty? parallel? ? "-o \"#{log}\"" : log end def log @options.include?('--log') ? '--out log/rspec.log' : '' end end end end
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.start_with?('--', '-') } @inputs = input_values.empty? ? default_inputs : sanitized_inputs(input_values) unless setup_preference_exists? || is_a?(Setup) puts 'You must run `bin/setup` before running other binstubs' exit 1 end end def execute case setup_preference when 'native' execute_native when 'hybrid' execute_hybrid when 'docker' execute_docker else puts 'Invalid option for .developer-setup' end end private def setup_preference_exists? File.exist?('.developer-setup') end def setup_preference File.read('.developer-setup').chomp end def default_inputs '' end def execute_native raise NotImplementedError, 'This method should be overridden in a subclass' end def execute_hyrbid raise NotImplementedError, 'This method should be overridden in a subclass' end def execute_docker raise NotImplementedError, 'This method should be overridden in a subclass' end def sanitized_inputs(input_values) input_values.map { |value| Shellwords.escape(value) }.join(' ') end end end end
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' post '/v1/sessions/callback', to: 'v1/sessions#saml_callback', module: 'v1' get '/v1/sessions/:type/new', to: 'v1/sessions#new', constraints: ->(request) { V1::SessionsController::REDIRECT_URLS.include?(request.path_parameters[:type]) } get '/v1/sessions/ssoe_logout', to: 'v1/sessions#ssoe_slo_callback' get '/v0/sign_in/authorize', to: 'v0/sign_in#authorize' get '/v0/sign_in/authorize_sso', to: 'v0/sign_in#authorize_sso' get '/v0/sign_in/callback', to: 'v0/sign_in#callback' post '/v0/sign_in/refresh', to: 'v0/sign_in#refresh' post '/v0/sign_in/revoke', to: 'v0/sign_in#revoke' post '/v0/sign_in/token', to: 'v0/sign_in#token' get '/v0/sign_in/logout', to: 'v0/sign_in#logout' get '/v0/sign_in/logingov_logout_proxy', to: 'v0/sign_in#logingov_logout_proxy' get '/v0/sign_in/revoke_all_sessions', to: 'v0/sign_in#revoke_all_sessions' namespace :sign_in do get '/openid_connect/certs', to: 'openid_connect_certificates#index' get '/user_info', to: 'user_info#show' namespace :webhooks do post 'logingov/risc', to: 'logingov#risc' end unless Settings.vsp_environment == 'production' resources :client_configs, param: :client_id resources :service_account_configs, param: :service_account_id end end namespace :sts do get '/terms_of_use/current_status', to: 'terms_of_use#current_status' end namespace :v0, defaults: { format: 'json' } do resources :onsite_notifications, only: %i[create index update] resources :in_progress_forms, only: %i[index show update destroy] resources :disability_compensation_in_progress_forms, only: %i[index show update destroy] resource :claim_documents, only: [:create] resource :claim_attachments, only: [:create], controller: :claim_documents resources :debts, only: %i[index show] resources :debt_letters, only: %i[index show] resources :education_career_counseling_claims, only: :create resources :user_actions, only: [:index] resources :veteran_readiness_employment_claims, only: :create resources :form210779, only: [:create] do collection do get('download_pdf/:guid', action: :download_pdf, as: :download_pdf) end end resources :form214192, only: [:create] do collection do post :download_pdf end end resources :form21p530a, only: [:create] do collection do post :download_pdf end end resources :form212680, only: [:create] do collection do get('download_pdf/:guid', action: :download_pdf, as: :download_pdf) end end get 'form1095_bs/download_pdf/:tax_year', to: 'form1095_bs#download_pdf' get 'form1095_bs/download_txt/:tax_year', to: 'form1095_bs#download_txt' get 'form1095_bs/available_forms', to: 'form1095_bs#available_forms' get 'enrollment_periods', to: 'enrollment_periods#index' resources :medical_copays, only: %i[index show] get 'medical_copays/get_pdf_statement_by_id/:statement_id', to: 'medical_copays#get_pdf_statement_by_id' post 'medical_copays/send_statement_notifications', to: 'medical_copays#send_statement_notifications' resources :apps, only: %i[index show] scope_default = { category: 'unknown_category' } get 'apps/scopes/:category', to: 'apps#scopes', defaults: scope_default get 'apps/scopes', to: 'apps#scopes', defaults: scope_default resources :letters_discrepancy, only: [:index] resources :letters_generator, only: [:index] do collection do get 'beneficiary', to: 'letters_generator#beneficiary' post 'download/:id', to: 'letters_generator#download' end end resource :disability_compensation_form, only: [] do get 'rated_disabilities' get 'rating_info' get 'submission_status/:job_id', to: 'disability_compensation_forms#submission_status', as: 'submission_status' post 'submit_all_claim' get 'suggested_conditions' get 'user_submissions' get 'separation_locations' end get 'benefits_reference_data/*path', to: 'benefits_reference_data#get_data' post '/mvi_users/:id', to: 'mpi_users#submit' resource :upload_supporting_evidence, only: :create resource :user, only: [:show] do get 'icn', to: 'users#icn' collection do get 'credential_emails' end resource :mhv_user_account, only: [:show], controller: 'user/mhv_user_accounts' end resource :test_account_user_email, only: [:create] resource :veteran_onboarding, only: %i[show update] resource :education_benefits_claims, only: %i[create show] do collection do post(':form_type', action: :create, as: :form_type) get(:stem_claim_status) get('download_pdf/:id', action: :download_pdf, as: :download_pdf) end end resources :health_care_applications, only: %i[create show] do collection do get(:healthcheck) match(:enrollment_status, via: %i[get post]) get(:rating_info) get(:facilities) post(:download_pdf) end end resource :hca_attachments, only: :create resource :form1010_ezr_attachments, only: :create resources :caregivers_assistance_claims, only: :create do collection do post(:facilities) post(:download_pdf) end end namespace :form1010cg do resources :attachments, only: :create end resources :dependents_applications, only: %i[create show] do collection do get(:disability_rating) end end resources :dependents_benefits, only: %i[create index] resources :dependents_verifications, only: %i[create index] resources :benefits_claims, only: %i[index show] do post :submit5103, on: :member post 'benefits_documents', to: 'benefits_documents#create' get :failed_upload_evidence_submissions, on: :collection end get 'claim_letters', to: 'claim_letters#index' get 'claim_letters/:document_id', to: 'claim_letters#show' get 'average_days_for_claim_completion', to: 'average_days_for_claim_completion#index' resources :efolder, only: %i[index show] resources :tsa_letter, only: %i[index show] resources :evss_claims, only: %i[index show] do post :request_decision, on: :member resources :documents, only: [:create] end resources :evss_benefits_claims, only: %i[index show] unless Settings.vsp_environment == 'production' resource :rated_disabilities, only: %i[show] namespace :chatbot do get 'claims', to: 'claim_status#index' get 'claims/:id', to: 'claim_status#show' get 'user', to: 'users#show' post 'speech_token', to: 'speech_token#create' post 'token', to: 'token#create' end get 'intent_to_file(/:itf_type)', to: 'intent_to_files#index' post 'intent_to_file/:itf_type', to: 'intent_to_files#submit' get 'welcome', to: 'example#welcome', as: :welcome get 'limited', to: 'example#limited', as: :limited get 'status', to: 'admin#status' get 'healthcheck', to: 'example#healthcheck', as: :healthcheck get 'startup_healthcheck', to: 'example#startup_healthcheck', as: :startup_healthcheck get 'openapi', to: 'open_api#index' # Adds Swagger UI to /v0/swagger - serves Swagger 2.0 / OpenAPI 3.0 docs mount Rswag::Ui::Engine => 'swagger' post 'event_bus_gateway/send_email', to: 'event_bus_gateway#send_email' post 'event_bus_gateway/send_push', to: 'event_bus_gateway#send_push' post 'event_bus_gateway/send_notifications', to: 'event_bus_gateway#send_notifications' resources :maintenance_windows, only: [:index] resources :appeals, only: :index scope :gi, module: 'gids' do resources :institutions, only: :show, defaults: { format: :json } do get :search, on: :collection get :autocomplete, on: :collection get :children, on: :member end resources :institution_programs, only: :index, defaults: { format: :json } do get :search, on: :collection get :autocomplete, on: :collection end resources :calculator_constants, only: :index, defaults: { format: :json } resources :yellow_ribbon_programs, only: :index, defaults: { format: :json } resources :zipcode_rates, only: :show, defaults: { format: :json } end scope :id_card do resource :attributes, only: [:show], controller: 'id_card_attributes' resource :announcement_subscription, only: [:create], controller: 'id_card_announcement_subscription' end namespace :mdot do resources :supplies, only: %i[create] end namespace :preneeds do resources :cemeteries, only: :index, defaults: { format: :json } resources :burial_forms, only: :create, defaults: { format: :json } resources :preneed_attachments, only: :create end resources :gi_bill_feedbacks, only: %i[create show] namespace :my_va do resource :submission_statuses, only: :show resource :submission_pdf_urls, only: :create end namespace :profile do resource :full_name, only: :show resource :personal_information, only: :show resource :service_history, only: :show resources :connected_applications, only: %i[index destroy] resource :valid_va_file_number, only: %i[show] resources :payment_history, only: %i[index] resource :military_occupations, only: :show resource :scheduling_preferences, only: %i[show create update destroy] # Lighthouse resource :direct_deposits, only: %i[show update] resource :vet_verification_status, only: :show # Vet360 Routes resource :addresses, only: %i[create update destroy] do collection do post :create_or_update end end resource :email_addresses, only: %i[create update destroy] do collection do post :create_or_update end end resource :telephones, only: %i[create update destroy] do collection do post :create_or_update end end resource :permissions, only: %i[create update destroy] do collection do post :create_or_update end end resources :address_validation, only: :create post 'initialize_vet360_id', to: 'persons#initialize_vet360_id' get 'person/status/:transaction_id', to: 'persons#status', as: 'person/status' get 'status/:transaction_id', to: 'transactions#status' get 'status', to: 'transactions#statuses' resources :communication_preferences, only: %i[index create update] resources :contacts, only: %i[index] resource :gender_identities, only: :update resource :preferred_names, only: :update end resources :search, only: :index resources :search_typeahead, only: :index resources :search_click_tracking, only: :create get 'forms', to: 'forms#index' get 'profile/mailing_address', to: 'addresses#show' put 'profile/mailing_address', to: 'addresses#update' resources :backend_statuses, only: %i[index] resources :apidocs, only: [:index] get 'feature_toggles', to: 'feature_toggles#index' resource :mhv_opt_in_flags, only: %i[show create] namespace :contact_us do resources :inquiries, only: %i[index create] end namespace :coe do get 'status' get 'download_coe' get 'documents' get 'document_download/:id', action: 'document_download' post 'submit_coe_claim' post 'document_upload' end unless Settings.vsp_environment == 'production' get 'terms_of_use_agreements/:icn/current_status', to: 'terms_of_use_agreements#current_status' end get 'terms_of_use_agreements/:version/latest', to: 'terms_of_use_agreements#latest' post 'terms_of_use_agreements/:version/accept', to: 'terms_of_use_agreements#accept' post 'terms_of_use_agreements/:version/accept_and_provision', to: 'terms_of_use_agreements#accept_and_provision' post 'terms_of_use_agreements/:version/decline', to: 'terms_of_use_agreements#decline' put 'terms_of_use_agreements/update_provisioning', to: 'terms_of_use_agreements#update_provisioning' resources :form1010_ezrs, only: %i[create] post '/form1010_ezrs/download_pdf', to: 'form1010_ezrs#download_pdf' post 'map_services/:application/token', to: 'map_services#token', as: :map_services_token get 'banners', to: 'banners#by_path' post 'datadog_action', to: 'datadog_action#create' match 'csrf_token', to: 'csrf_token#index', via: :head end # end /v0 namespace :v1, defaults: { format: 'json' } do resources :apidocs, only: [:index] namespace :profile do resource :military_info, only: :show, defaults: { format: :json } end resource :sessions, only: [] do post :saml_callback, to: 'sessions#saml_callback' post :saml_slo_callback, to: 'sessions#saml_slo_callback' end namespace :gi, module: 'gids' do resources :institutions, only: :show, defaults: { format: :json } do get :search, on: :collection get :autocomplete, on: :collection get :children, on: :member end resources :institution_programs, only: :index, defaults: { format: :json } do get :search, on: :collection get :autocomplete, on: :collection end resources :calculator_constants, only: :index, defaults: { format: :json } resources :yellow_ribbon_programs, only: :index, defaults: { format: :json } resources :zipcode_rates, only: :show, defaults: { format: :json } namespace :lcpe do resources :lacs, only: %i[index show], defaults: { format: :json } resources :exams, only: %i[index show], defaults: { format: :json } end resources :version_public_exports, path: :public_exports, only: :show, defaults: { format: :json } end resource :post911_gi_bill_status, only: [:show] resources :medical_copays, only: %i[index show] end root 'v0/example#index', module: 'v0' scope '/services' do mount AppsApi::Engine, at: '/apps' mount VBADocuments::Engine, at: '/vba_documents' mount AppealsApi::Engine, at: '/appeals' mount ClaimsApi::Engine, at: '/claims' mount Veteran::Engine, at: '/veteran' end # Modules mount AccreditedRepresentativePortal::Engine, at: '/accredited_representative_portal' mount AskVAApi::Engine, at: '/ask_va_api' mount Avs::Engine, at: '/avs' mount BPDS::Engine, at: '/bpds' mount Burials::Engine, at: '/burials' mount CheckIn::Engine, at: '/check_in' mount ClaimsEvidenceApi::Engine, at: '/claims_evidence_api' mount DebtsApi::Engine, at: '/debts_api' mount DependentsBenefits::Engine, at: '/dependents_benefits' mount DependentsVerification::Engine, at: '/dependents_verification' mount DhpConnectedDevices::Engine, at: '/dhp_connected_devices' mount DigitalFormsApi::Engine, at: '/digital_forms_api' mount EmploymentQuestionnaires::Engine, at: '/employment_questionnaires' mount FacilitiesApi::Engine, at: '/facilities_api' mount IncomeAndAssets::Engine, at: '/income_and_assets' mount IncreaseCompensation::Engine, at: '/increase_compensation' mount IvcChampva::Engine, at: '/ivc_champva' mount MedicalExpenseReports::Engine, at: '/medical_expense_reports' mount RepresentationManagement::Engine, at: '/representation_management' mount SimpleFormsApi::Engine, at: '/simple_forms_api' mount IncomeLimits::Engine, at: '/income_limits' mount MebApi::Engine, at: '/meb_api' mount Mobile::Engine, at: '/mobile' mount MyHealth::Engine, at: '/my_health', as: 'my_health' mount SOB::Engine, at: '/sob' mount TravelPay::Engine, at: '/travel_pay' mount VRE::Engine, at: '/vre' mount VaNotify::Engine, at: '/va_notify' mount VAOS::Engine, at: '/vaos' mount Vass::Engine, at: '/vass' mount Vye::Engine, at: '/vye' mount Pensions::Engine, at: '/pensions' mount DecisionReviews::Engine, at: '/decision_reviews' mount SurvivorsBenefits::Engine, at: '/survivors_benefits' # End Modules require 'sidekiq/web' require 'sidekiq/pro/web' if Gem.loaded_specs.key?('sidekiq-pro') require 'sidekiq-ent/web' if Gem.loaded_specs.key?('sidekiq-ent') require 'github_authentication/sidekiq_web' require 'github_authentication/coverband_reporters_web' mount Sidekiq::Web, at: '/sidekiq' Sidekiq::Web.register GithubAuthentication::SidekiqWeb unless Rails.env.development? || Settings.sidekiq_admin_panel mount TestUserDashboard::Engine, at: '/test_user_dashboard' if Settings.test_user_dashboard.env == 'staging' if %w[test localhost development staging].include?(Settings.vsp_environment) mount MockedAuthentication::Engine, at: '/mocked_authentication' end get '/flipper/logout', to: 'flipper#logout' get '/flipper/login', to: 'flipper#login' mount Flipper::UI.app(Flipper.instance) => '/flipper', constraints: Flipper::RouteAuthorizationConstraint unless Rails.env.test? mount Coverband::Reporters::Web.new, at: '/coverband', constraints: GithubAuthentication::CoverbandReportersWeb.new end get '/apple-touch-icon-:size.png', to: redirect('/apple-touch-icon.png') # This globs all unmatched routes and routes them as routing errors match '*path', to: 'application#routing_error', via: %i[get post put patch delete] end
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_ttl: 1800 representative_user_store: namespace: representative_users each_ttl: 1800 user_identity_store: namespace: user_identities each_ttl: 1800 # DO NOT CHANGE ABOVE TTL identifier_store: namespace: identifier_indexes each_ttl: 2592000 user_profile_attributes: namespace: user-profile-attributes each_ttl: 86400 statsd_roster: namespace: statsd-roster each_ttl: 604800 rx_store: namespace: rx-service each_ttl: 1200 rx_store_mobile: namespace: rx-service-mobile each_ttl: 1200 chip: namespace: chip each_ttl: 870 gi_bill_feedback: namespace: gi_bill_feedback each_ttl: 86400 gids_response: namespace: gids-response each_ttl: 900 lcpe_response: namespace: lcpe-response each_ttl: 1209600 # 2 weeks sm_store: namespace: sm-service each_ttl: 1200 sm_store_mobile: namespace: sm-service-mobile each_ttl: 1200 medical_records_store: namespace: mr-service each_ttl: 3600 medical_records_cache: namespace: mr-cache each_ttl: 1800 bb_internal_store: namespace: bb-internal-service each_ttl: 600 # 10 minutes mhv_mr_fhir_session_lock: namespace: mhv-mr-fhir-session-lock each_ttl: 10 mhv_session_lock: namespace: mhv-session-lock each_ttl: 10 mhv_mr_bb_session_lock: namespace: mhv-mr-bb-session-lock each_ttl: 10 mhv_aal_log_store: namespace: mhv-aal-logs each_ttl: 86400 aal_mr_store: namespace: aal-mr-service each_ttl: 600 # 10 minutes mhv_aal_mr_session_lock: namespace: mhv-aal-mr-session-lock each_ttl: 10 aal_rx_store: namespace: aal-rx-service each_ttl: 600 # 10 minutes mhv_aal_rx_session_lock: namespace: mhv-aal-rx-session-lock each_ttl: 10 aal_sm_store: namespace: aal-sm-service each_ttl: 600 # 10 minutes mhv_aal_sm_session_lock: namespace: mhv-aal-sm-session-lock each_ttl: 10 mdot: namespace: mdot each_ttl: 1800 mpi_profile_response: namespace: mpi-profile-response each_ttl: 86400 failure_ttl: 1800 profile: namespace: profile each_ttl: 3600 launch: namespace: launch each_ttl: 3600 charon_response: namespace: charon-response each_ttl: 3600 financial_status_report: namespace: financial_status_report each_ttl: 1800 # 30 minutes debt_store: namespace: debt each_ttl: 3600 # 1 hour va_profile_contact_info_response: namespace: va-profile-contact-info-response each_ttl: 3600 # 1 hour va_profile_v2_contact_info_response: namespace: va-profile-v2-contact-info-response each_ttl: 3600 # 1 hour reference_data_response: namespace: reference-data-response each_ttl: 86400 evss_claims_store: namespace: evss each_ttl: 3600 evss_dependents_retrieve_response: namespace: evss-dependents-retrieve-response each_ttl: 86400 external_service_statuses_response: namespace: external-service-statuses-response each_ttl: 60 # 1 minute va_mobile_session: namespace: va-mobile-session each_ttl: 855 va_mobile_session_refresh_lock: namespace: va-mobile-session-refresh-lock each_ttl: 60 eps_access_token: namespace: eps-access-token each_ttl: 840 # 14 minutes ccra_access_token: namespace: ccra-access-token each_ttl: 840 # 14 minutes saml_request_tracker: namespace: saml_request_tracker each_ttl: 3600 # 1 hour iam_session: namespace: iam-session each_ttl: 1800 iam_user: namespace: iam-user each_ttl: 1800 iam_user_identity: namespace: iam-user-identity each_ttl: 1800 lighthouse_ccg: namespace: lighthouse-ccg each_ttl: 300 mobile_app_appointments_store: namespace: mobile-app-appointments-store each_ttl: 1800 mobile_app_claims_store: namespace: mobile-app-claims-store each_ttl: 1800 mobile_app_immunizations_store: namespace: mobile-app-immunizations-store each_ttl: 1800 mobile_app_lighthouse_session_store: namespace: mobile-app-lighthouse-session-store each_ttl: 300 secure_messaging_store: namespace: secure_messaging_store each_ttl: 1800 old_email: namespace: old_email each_ttl: 604800 bank_name: namespace: bank_name each_ttl: 2592000 bgs_find_person_by_participant_id_response: namespace: bgs-find-person-by-participant-id-response each_ttl: 86400 failure_ttl: 1800 chatbot_code_container: namespace: chatbot_code_container each_ttl: 1800 sign_in_code_container: namespace: sign_in_code_container each_ttl: 1800 sign_in_state_code: namespace: sign_in_state_code each_ttl: 3600 sign_in_terms_code_container: namespace: sign_in_terms_code_container each_ttl: 1800 mock_credential_info: namespace: mock_credential_info each_ttl: 300 mhv_identity_data: namespace: mhv_identity_data each_ttl: 5400 transaction_notification: namespace: transaction_notification each_ttl: 2592000 vanotify_confirmation_email_store: namespace: confirmation_email each_ttl: 600 # 10 minutes va_profile_veteran_status: namespace: va_profile_veteran_status each_ttl: 86400 sidekiq_attr_package: namespace: sidekiq_attr_package each_ttl: 604800 brd_response_store: namespace: brd_response_store each_ttl: 82800 bgs_find_poas_response: namespace: bgs_find_poas_response each_ttl: 86400 travel_pay_store: namespace: travel-pay-store each_ttl: 3300 # 55 minutes unique_user_metrics: namespace: mhv-uum each_ttl: 86400 # 1 day cache for event existence checks evidence_submission_poll_store: namespace: evidence-submission-poll each_ttl: 60 # 60 seconds cache for evidence submission polling test: <<: *defaults redis: inherit_socket: true url: <%= Settings.redis.app_data.url %> sidekiq: url: <%= Settings.redis.sidekiq.url %> production: <<: *defaults
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: <%= Settings.vba_documents.s3.region %> bucket: <%= Settings.vba_documents.s3.bucket %>
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_method_not_allowed' require_relative '../lib/source_app_middleware' require_relative '../lib/statsd_middleware' require_relative '../lib/faraday_adapter_socks/faraday_adapter_socks' require 'rails/test_unit/railtie' # Require the gems listed in Gemfile, including any gems # you've limited to :test, :development, or :production. Bundler.require(*Rails.groups) require_relative '../lib/olive_branch_patch' module VetsAPI class Application < Rails::Application # Initialize configuration defaults for originally generated Rails version. # https://guides.rubyonrails.org/configuring.html#default-values-for-target-version-7-0 config.load_defaults 7.1 # Configuration for the application, engines, and railties goes here. # # These settings can be overridden in specific environments using the files # in config/environments, which are processed later. # # config.time_zone = "Central Time (US & Canada)" # config.eager_load_paths << Rails.root.join("extras") # RAILS 7 CONFIG START # 7.1 config.add_autoload_paths_to_load_path = true config.active_record.raise_on_assign_to_attr_readonly = false # 7.0 config.action_controller.raise_on_open_redirects = false # RAILS 7 CONFIG END # Only loads a smaller set of middleware suitable for API only apps. # Middleware like session, flash, cookies can be added back manually. # Skip views, helpers and assets when generating a new resource. config.api_only = true config.relative_url_root = Settings.relative_url_root # This prevents rails from escaping html like & in links when working with JSON config.active_support.escape_html_entities_in_json = false # CORS configuration; see also cors_preflight route config.middleware.insert_before 0, Rack::Cors, logger: -> { Rails.logger } do allow do regex = Regexp.new(Settings.web_origin_regex) web_origins = Settings.web_origin.split(',') + Array(IdentitySettings.sign_in.web_origins) origins { |source, _env| web_origins.include?(source) || source.match?(regex) } resource '*', headers: :any, methods: :any, credentials: true, expose: %w[ Timing-Allow-Origin X-RateLimit-Limit X-RateLimit-Remaining X-RateLimit-Reset X-Session-Expiration X-CSRF-Token X-Request-Id ] end end # combats the "Flipper::Middleware::Memoizer appears to be running twice" error # followed suggestions to disable memoize config config.flipper.memoize = false config.middleware.insert_before(0, HttpMethodNotAllowed) config.middleware.use OliveBranch::Middleware, inflection_header: 'X-Key-Inflection' config.middleware.use SourceAppMiddleware config.middleware.use StatsdMiddleware config.middleware.use Rack::Attack config.middleware.use ActionDispatch::Cookies config.middleware.use Warden::Manager do |config| config.failure_app = proc do |_env| ['401', { 'Content-Type' => 'application/json' }, { error: 'Unauthorized', code: 401 }] end config.intercept_401 = false config.default_strategies :github # Sidekiq Web configuration config.scope_defaults :sidekiq, config: { client_id: Settings.sidekiq.github_oauth_key, client_secret: Settings.sidekiq.github_oauth_secret, scope: 'read:org', redirect_uri: 'sidekiq/auth/github/callback' } config.scope_defaults :coverband, config: { client_id: Settings.coverband.github_oauth_key, client_secret: Settings.coverband.github_oauth_secret, scope: 'read:org', redirect_uri: 'coverband/auth/github/callback' } config.scope_defaults :flipper, config: { client_id: Settings.flipper.github_oauth_key, client_secret: Settings.flipper.github_oauth_secret, scope: 'read:org', redirect_uri: 'flipper/auth/github/callback' } config.serialize_from_session { |key| Warden::GitHub::Verifier.load(key) } config.serialize_into_session { |user| Warden::GitHub::Verifier.dump(user) } end config.middleware.insert_after ActionDispatch::Cookies, ActionDispatch::Session::CookieStore, key: 'api_session', secure: IdentitySettings.session_cookie.secure, http_only: true # These files do not contain auto-loaded ruby classes, # they are loaded through app/sidekiq/education_form/forms/base.rb Rails.autoloaders.main.ignore(Rails.root.join('app', 'sidekiq', 'education_form', 'templates', '1990-disclosure')) end end
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 threads activate_control_app 'tcp://0.0.0.0:9293', { no_token: true } on_worker_boot do SemanticLogger.reopen ActiveRecord::Base.establish_connection end on_worker_shutdown do require 'kafka/producer_manager' Kafka::ProducerManager.instance.producer&.close end
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_migrate test: primary: url: <%= Settings.test_database_url %><%= ENV['TEST_ENV_NUMBER'] %> audit: url: <%= URI(Settings.test_database_url).tap { |uri| uri.path = "/vets_api_audit_test#{ENV['TEST_ENV_NUMBER']}"}.to_s %> migrations_paths: db/audit_migrate production: primary: url: <%= Settings.database_url %> connect_timeout: 5 variables: statement_timeout: <%= ENV["STATEMENT_TIMEOUT"] || "60s" %> lock_timeout: 15s audit: <<: *default url: <%= "#{IdentitySettings.audit_db.url}" %> migrations_paths: db/audit_migrate database_tasks: <%= "#{IdentitySettings.audit_db.url.present?}" %>
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:CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/> <ds:SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256"/> <ds:Reference URI="#saml20idp20251008121048"> <ds:Transforms> <ds:Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature"/> <ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/> </ds:Transforms> <ds:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/> <ds:DigestValue>HbOkYIzlwJTE6LEfuq04duri1yc=</ds:DigestValue> </ds:Reference> </ds:SignedInfo> <ds:SignatureValue>n9UgFoMm/My92VNAXmmUxqP1p3Cb49KQt2fdCP+4/wd7oePAcQGJmc2XcIM9O9NA/lZi+aBmsNq6BK+DYAOhuqZ0i888vpEJDDU4ePjdqQp91mIIMbP/xfaJVPc5uRQHu9HxAmUVlLf4Of/JRDo5Lec4WSTEVnOUlbX7hW7nOHrW3WCdp6TDDuN0RTfZ1vL0XaD3U0LeCFmPfsq2q1lgBJk7AA9VYv/CRA2m9KaHUABzgU2TzU5T4BxqN79SKxXStccjSaWQ6i0p8C1+0XzvH1dHo0c7eio2Yit5htVWHNOmRqyaI3xrzVg3kj2ErSXraCbPHAcJcb/SJ+HS5jsGAXLIteolRivaVM8qHPG2+F4k2rGDjZ2Zi1p2JrEjNh4k1cM6RBerkPKale5V78Sh2X6IcirLOsWuwSbzB+CJ4FdYzUX8YnZh5xZkKi+y3pCVO1r5MsOdbl3tp3vFDEfKOniDT1qIrp/gfS365BwWVMSzf1QpGG31X0Rt3W7Ctker672Ly2ArAfwpHoIwT/bTXRbwWvcHAmcNa2+HftE/qGLGEzn9DW2/ZgzR7tFz1PWFmtCQQgywg+gW7QBf4E9ZKN3DtYFYSDaL3ajYmJTBEEJitRcZ/2HkjSxqv2kLDXKhixNpdoTS+m9jx3hFziFER8/GeTxCpERrAJpExAl6xM0=</ds:SignatureValue> <ds:KeyInfo> <ds:X509Data> <ds:X509Certificate>MIIH/TCCBuWgAwIBAgIQAu6U1Q5O9v9avMTf72N6XTANBgkqhkiG9w0BAQsFADBZMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMTMwMQYDVQQDEypEaWdpQ2VydCBHbG9iYWwgRzIgVExTIFJTQSBTSEEyNTYgMjAyMCBDQTEwHhcNMjUwOTMwMDAwMDAwWhcNMjYxMDIxMjM1OTU5WjCBijELMAkGA1UEBhMCVVMxHTAbBgNVBAgTFERpc3RyaWN0IG9mIENvbHVtYmlhMRMwEQYDVQQHEwpXYXNoaW5ndG9uMSwwKgYDVQQKEyNVLlMuIERlcGFydG1lbnQgb2YgVmV0ZXJhbnMgQWZmYWlyczEZMBcGA1UEAxMQZGV2LmVhdXRoLnZhLmdvdjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK2aLI8bOrETcYVXvez1TIgTSdGcqt6TfHH9LOp4I5QvUB+J093LOzO7pC2zNX/hffLTiA/FEBY6ZH9mQLupq9oMyCKRUJfs9YgoksMqpoAAG/k0Gptx+zFIruVqGUWDNVCJ2yf8qdP5i8lQy+t6f5ILoBlbupgvGoHppYrkSMJF4B4L5hBYWy/b4EloWWpTmCRK51DqkQZp95eeT8zvScEEhXsDXBXHUIoSHdkN+/nGSYUuF6JKKVvFI1WTWIT9N56xIjm209AMvsV5dn7VXHBlqR5UEW2tz0VQWBy4tB2/eUCWIJ3QADmT+XzJcDFk9ffGpdbSHECsV6mcq9DYZ9OcE9Y2YVSz5WCxuZy8nhnLfWicehz67lgY/bJlB0NxYPhjKif4Wh9b8T8B9fZ738xPcW9/5hk0DRU3u61BeMavt20EUOfRp8Oz5HvMCGkrTR7eI0gwblb74VgXzEhEY/6/tBBM4JVPVoPQ+qhLQqJ1yvayJesr0NO01knBO/bRQhXiNiMjeoublbHJCX1IMgpcFUWmJsBpzFw2O1sYo3qvJrSiTa/Bzdd8qh8aWKipMklY7RgC+N+X3c3PLV5pH2mOuy2iR7qBi45ww2SjBFPo+1iNGehTZx3fjmEHyA+kiTvkeOwPeX2HRVC22wOCWAKSkRso4V5AXJCfl2absLAFAgMBAAGjggONMIIDiTAfBgNVHSMEGDAWgBR0hYDAZsffN97PvSk3qgMdvu3NFzAdBgNVHQ4EFgQURgYkVZOloSagvssqZwolgE0zty4wGwYDVR0RBBQwEoIQZGV2LmVhdXRoLnZhLmdvdjA+BgNVHSAENzA1MDMGBmeBDAECAjApMCcGCCsGAQUFBwIBFhtodHRwOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjCBnwYDVR0fBIGXMIGUMEigRqBEhkJodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxHMlRMU1JTQVNIQTI1NjIwMjBDQTEtMS5jcmwwSKBGoESGQmh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbEcyVExTUlNBU0hBMjU2MjAyMENBMS0xLmNybDCBhwYIKwYBBQUHAQEEezB5MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wUQYIKwYBBQUHMAKGRWh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbEcyVExTUlNBU0hBMjU2MjAyMENBMS0xLmNydDAMBgNVHRMBAf8EAjAAMIIBfwYKKwYBBAHWeQIEAgSCAW8EggFrAWkAdgDXbX0Q0af1d8LH6V/XAL/5gskzWmXh0LMBcxfAyMVpdwAAAZmcMknWAAAEAwBHMEUCIQCGk+6Mncq7g6fS3DTA5NxlxFAiNPydbWelb9VqoqKgswIgDdUqu0Td6utNMY7ZPEY3V4dMG5qFSGiUnd7bZZK4K5wAdwDCMX5XRRmjRe5/ON6ykEHrx8IhWiK/f9W1rXaa2Q5SzQAAAZmcMkoUAAAEAwBIMEYCIQCoWGDEhFcN8P2A0/N8wb7/VuhWf0qet7iYU0IcXWJBWAIhALjR6568NxpQpHQvnnJozwtvYrTF7tI4VqdvkOe0puGKAHYAlE5Dh/rswe+B8xkkJqgYZQHH0184AgE/cmd9VTcuGdgAAAGZnDJKJQAABAMARzBFAiEAwNHI01GtU7G3dXYReTH85omBhnXjhJCOcgx2Y3zm9u0CIG4rP7Dr49NDb7QHjgSyQ6ebL/CG2w4qfoDn/kN4bNRdMA0GCSqGSIb3DQEBCwUAA4IBAQC08ov/gdQCW55g3dc2Bru6SR40szbC9WbVqVuRtYinfiUrqNv9Y2Cozk7gqoD6calwPllyfTFNrJhjUwiCk+8EA+jNfAeyj/O1txgrtu1pj26yg/QHdAIHd3WlUxSyvwMY+LARbN72ffATE+KYMu4/aL73Oir6+C/Nw6gzV6hpMY4558gKFo+cXzQ9x88SV9KmS991Ewu2vjDo0twFcPR5b3i7VoU2s/Wb3GGsLD9Ws5uvaWxoC0JT2e2jPOoNSNe/tZSLM+ZHwt4Ki8pX9k40byBrl5woDOHcFmabctNkfrhAQqZoacCnnM0w3lGHmenxPqoAf1lB4b/f1VjrS24m</ds:X509Certificate> </ds:X509Data> </ds:KeyInfo> </ds:Signature> <md:IDPSSODescriptor protocolSupportEnumeration="urn:oasis:names:tc:SAML:2.0:protocol"> <md:KeyDescriptor use="signing"> <KeyInfo xmlns="http://www.w3.org/2000/09/xmldsig#"> <X509Data> <X509Certificate>MIIH/TCCBuWgAwIBAgIQAu6U1Q5O9v9avMTf72N6XTANBgkqhkiG9w0BAQsFADBZMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMTMwMQYDVQQDEypEaWdpQ2VydCBHbG9iYWwgRzIgVExTIFJTQSBTSEEyNTYgMjAyMCBDQTEwHhcNMjUwOTMwMDAwMDAwWhcNMjYxMDIxMjM1OTU5WjCBijELMAkGA1UEBhMCVVMxHTAbBgNVBAgTFERpc3RyaWN0IG9mIENvbHVtYmlhMRMwEQYDVQQHEwpXYXNoaW5ndG9uMSwwKgYDVQQKEyNVLlMuIERlcGFydG1lbnQgb2YgVmV0ZXJhbnMgQWZmYWlyczEZMBcGA1UEAxMQZGV2LmVhdXRoLnZhLmdvdjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK2aLI8bOrETcYVXvez1TIgTSdGcqt6TfHH9LOp4I5QvUB+J093LOzO7pC2zNX/hffLTiA/FEBY6ZH9mQLupq9oMyCKRUJfs9YgoksMqpoAAG/k0Gptx+zFIruVqGUWDNVCJ2yf8qdP5i8lQy+t6f5ILoBlbupgvGoHppYrkSMJF4B4L5hBYWy/b4EloWWpTmCRK51DqkQZp95eeT8zvScEEhXsDXBXHUIoSHdkN+/nGSYUuF6JKKVvFI1WTWIT9N56xIjm209AMvsV5dn7VXHBlqR5UEW2tz0VQWBy4tB2/eUCWIJ3QADmT+XzJcDFk9ffGpdbSHECsV6mcq9DYZ9OcE9Y2YVSz5WCxuZy8nhnLfWicehz67lgY/bJlB0NxYPhjKif4Wh9b8T8B9fZ738xPcW9/5hk0DRU3u61BeMavt20EUOfRp8Oz5HvMCGkrTR7eI0gwblb74VgXzEhEY/6/tBBM4JVPVoPQ+qhLQqJ1yvayJesr0NO01knBO/bRQhXiNiMjeoublbHJCX1IMgpcFUWmJsBpzFw2O1sYo3qvJrSiTa/Bzdd8qh8aWKipMklY7RgC+N+X3c3PLV5pH2mOuy2iR7qBi45ww2SjBFPo+1iNGehTZx3fjmEHyA+kiTvkeOwPeX2HRVC22wOCWAKSkRso4V5AXJCfl2absLAFAgMBAAGjggONMIIDiTAfBgNVHSMEGDAWgBR0hYDAZsffN97PvSk3qgMdvu3NFzAdBgNVHQ4EFgQURgYkVZOloSagvssqZwolgE0zty4wGwYDVR0RBBQwEoIQZGV2LmVhdXRoLnZhLmdvdjA+BgNVHSAENzA1MDMGBmeBDAECAjApMCcGCCsGAQUFBwIBFhtodHRwOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjCBnwYDVR0fBIGXMIGUMEigRqBEhkJodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxHMlRMU1JTQVNIQTI1NjIwMjBDQTEtMS5jcmwwSKBGoESGQmh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbEcyVExTUlNBU0hBMjU2MjAyMENBMS0xLmNybDCBhwYIKwYBBQUHAQEEezB5MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wUQYIKwYBBQUHMAKGRWh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbEcyVExTUlNBU0hBMjU2MjAyMENBMS0xLmNydDAMBgNVHRMBAf8EAjAAMIIBfwYKKwYBBAHWeQIEAgSCAW8EggFrAWkAdgDXbX0Q0af1d8LH6V/XAL/5gskzWmXh0LMBcxfAyMVpdwAAAZmcMknWAAAEAwBHMEUCIQCGk+6Mncq7g6fS3DTA5NxlxFAiNPydbWelb9VqoqKgswIgDdUqu0Td6utNMY7ZPEY3V4dMG5qFSGiUnd7bZZK4K5wAdwDCMX5XRRmjRe5/ON6ykEHrx8IhWiK/f9W1rXaa2Q5SzQAAAZmcMkoUAAAEAwBIMEYCIQCoWGDEhFcN8P2A0/N8wb7/VuhWf0qet7iYU0IcXWJBWAIhALjR6568NxpQpHQvnnJozwtvYrTF7tI4VqdvkOe0puGKAHYAlE5Dh/rswe+B8xkkJqgYZQHH0184AgE/cmd9VTcuGdgAAAGZnDJKJQAABAMARzBFAiEAwNHI01GtU7G3dXYReTH85omBhnXjhJCOcgx2Y3zm9u0CIG4rP7Dr49NDb7QHjgSyQ6ebL/CG2w4qfoDn/kN4bNRdMA0GCSqGSIb3DQEBCwUAA4IBAQC08ov/gdQCW55g3dc2Bru6SR40szbC9WbVqVuRtYinfiUrqNv9Y2Cozk7gqoD6calwPllyfTFNrJhjUwiCk+8EA+jNfAeyj/O1txgrtu1pj26yg/QHdAIHd3WlUxSyvwMY+LARbN72ffATE+KYMu4/aL73Oir6+C/Nw6gzV6hpMY4558gKFo+cXzQ9x88SV9KmS991Ewu2vjDo0twFcPR5b3i7VoU2s/Wb3GGsLD9Ws5uvaWxoC0JT2e2jPOoNSNe/tZSLM+ZHwt4Ki8pX9k40byBrl5woDOHcFmabctNkfrhAQqZoacCnnM0w3lGHmenxPqoAf1lB4b/f1VjrS24m</X509Certificate> </X509Data> </KeyInfo> </md:KeyDescriptor> <md:KeyDescriptor use="encryption"> <KeyInfo xmlns="http://www.w3.org/2000/09/xmldsig#"> <X509Data> <X509Certificate>MIIH/TCCBuWgAwIBAgIQAu6U1Q5O9v9avMTf72N6XTANBgkqhkiG9w0BAQsFADBZMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMTMwMQYDVQQDEypEaWdpQ2VydCBHbG9iYWwgRzIgVExTIFJTQSBTSEEyNTYgMjAyMCBDQTEwHhcNMjUwOTMwMDAwMDAwWhcNMjYxMDIxMjM1OTU5WjCBijELMAkGA1UEBhMCVVMxHTAbBgNVBAgTFERpc3RyaWN0IG9mIENvbHVtYmlhMRMwEQYDVQQHEwpXYXNoaW5ndG9uMSwwKgYDVQQKEyNVLlMuIERlcGFydG1lbnQgb2YgVmV0ZXJhbnMgQWZmYWlyczEZMBcGA1UEAxMQZGV2LmVhdXRoLnZhLmdvdjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK2aLI8bOrETcYVXvez1TIgTSdGcqt6TfHH9LOp4I5QvUB+J093LOzO7pC2zNX/hffLTiA/FEBY6ZH9mQLupq9oMyCKRUJfs9YgoksMqpoAAG/k0Gptx+zFIruVqGUWDNVCJ2yf8qdP5i8lQy+t6f5ILoBlbupgvGoHppYrkSMJF4B4L5hBYWy/b4EloWWpTmCRK51DqkQZp95eeT8zvScEEhXsDXBXHUIoSHdkN+/nGSYUuF6JKKVvFI1WTWIT9N56xIjm209AMvsV5dn7VXHBlqR5UEW2tz0VQWBy4tB2/eUCWIJ3QADmT+XzJcDFk9ffGpdbSHECsV6mcq9DYZ9OcE9Y2YVSz5WCxuZy8nhnLfWicehz67lgY/bJlB0NxYPhjKif4Wh9b8T8B9fZ738xPcW9/5hk0DRU3u61BeMavt20EUOfRp8Oz5HvMCGkrTR7eI0gwblb74VgXzEhEY/6/tBBM4JVPVoPQ+qhLQqJ1yvayJesr0NO01knBO/bRQhXiNiMjeoublbHJCX1IMgpcFUWmJsBpzFw2O1sYo3qvJrSiTa/Bzdd8qh8aWKipMklY7RgC+N+X3c3PLV5pH2mOuy2iR7qBi45ww2SjBFPo+1iNGehTZx3fjmEHyA+kiTvkeOwPeX2HRVC22wOCWAKSkRso4V5AXJCfl2absLAFAgMBAAGjggONMIIDiTAfBgNVHSMEGDAWgBR0hYDAZsffN97PvSk3qgMdvu3NFzAdBgNVHQ4EFgQURgYkVZOloSagvssqZwolgE0zty4wGwYDVR0RBBQwEoIQZGV2LmVhdXRoLnZhLmdvdjA+BgNVHSAENzA1MDMGBmeBDAECAjApMCcGCCsGAQUFBwIBFhtodHRwOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjCBnwYDVR0fBIGXMIGUMEigRqBEhkJodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRHbG9iYWxHMlRMU1JTQVNIQTI1NjIwMjBDQTEtMS5jcmwwSKBGoESGQmh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbEcyVExTUlNBU0hBMjU2MjAyMENBMS0xLmNybDCBhwYIKwYBBQUHAQEEezB5MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wUQYIKwYBBQUHMAKGRWh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbEcyVExTUlNBU0hBMjU2MjAyMENBMS0xLmNydDAMBgNVHRMBAf8EAjAAMIIBfwYKKwYBBAHWeQIEAgSCAW8EggFrAWkAdgDXbX0Q0af1d8LH6V/XAL/5gskzWmXh0LMBcxfAyMVpdwAAAZmcMknWAAAEAwBHMEUCIQCGk+6Mncq7g6fS3DTA5NxlxFAiNPydbWelb9VqoqKgswIgDdUqu0Td6utNMY7ZPEY3V4dMG5qFSGiUnd7bZZK4K5wAdwDCMX5XRRmjRe5/ON6ykEHrx8IhWiK/f9W1rXaa2Q5SzQAAAZmcMkoUAAAEAwBIMEYCIQCoWGDEhFcN8P2A0/N8wb7/VuhWf0qet7iYU0IcXWJBWAIhALjR6568NxpQpHQvnnJozwtvYrTF7tI4VqdvkOe0puGKAHYAlE5Dh/rswe+B8xkkJqgYZQHH0184AgE/cmd9VTcuGdgAAAGZnDJKJQAABAMARzBFAiEAwNHI01GtU7G3dXYReTH85omBhnXjhJCOcgx2Y3zm9u0CIG4rP7Dr49NDb7QHjgSyQ6ebL/CG2w4qfoDn/kN4bNRdMA0GCSqGSIb3DQEBCwUAA4IBAQC08ov/gdQCW55g3dc2Bru6SR40szbC9WbVqVuRtYinfiUrqNv9Y2Cozk7gqoD6calwPllyfTFNrJhjUwiCk+8EA+jNfAeyj/O1txgrtu1pj26yg/QHdAIHd3WlUxSyvwMY+LARbN72ffATE+KYMu4/aL73Oir6+C/Nw6gzV6hpMY4558gKFo+cXzQ9x88SV9KmS991Ewu2vjDo0twFcPR5b3i7VoU2s/Wb3GGsLD9Ws5uvaWxoC0JT2e2jPOoNSNe/tZSLM+ZHwt4Ki8pX9k40byBrl5woDOHcFmabctNkfrhAQqZoacCnnM0w3lGHmenxPqoAf1lB4b/f1VjrS24m</X509Certificate> </X509Data> </KeyInfo> <md:EncryptionMethod Algorithm="http://www.w3.org/2001/04/xmlenc#rsa-1_5"/> </md:KeyDescriptor> <md:ArtifactResolutionService Binding="urn:oasis:names:tc:SAML:2.0:bindings:SOAP" Location="https://int.eauth.va.gov/isam/sps/saml20idp/saml20/soap" index="0" isDefault="true"/> <md:SingleLogoutService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST" Location="https://int.eauth.va.gov/isam/sps/saml20idp/saml20/slo"/> <md:SingleLogoutService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect" Location="https://int.eauth.va.gov/isam/sps/saml20idp/saml20/slo"/> <md:NameIDFormat>urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress</md:NameIDFormat> <md:NameIDFormat>urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified</md:NameIDFormat> <md:SingleSignOnService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Artifact" Location="https://int.eauth.va.gov/isam/sps/saml20idp/saml20/login"/> <md:SingleSignOnService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST" Location="https://int.eauth.va.gov/isam/sps/saml20idp/saml20/login"/> </md:IDPSSODescriptor> <md:Organization> <md:OrganizationName xml:lang="en">U.S. Department of Veterans Affairs</md:OrganizationName> <md:OrganizationDisplayName xml:lang="en">VA SSOE SAML20</md:OrganizationDisplayName> <md:OrganizationURL xml:lang="en">https://int.access.va.gov/accessva/</md:OrganizationURL> </md:Organization> <md:ContactPerson contactType="technical"> <md:Company>VA SSOE</md:Company> <md:EmailAddress>eauthadmins@va.gov</md:EmailAddress> </md:ContactPerson> </md:EntityDescriptor>
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 contain any relevant information for an admin who may toggle the feature. # # The actor_type should be either `user` for features you want to be "sticky" for a logged in user (default) # or `cookie_id` of you wish to use the Google Analytics id as the unique identifier. # Sorted using http://yaml-sorter.herokuapp.com/ features: this_is_only_a_test: actor_type: user description: Used in feature_toggles_controller_spec. this_is_only_a_test_two: actor_type: user description: Used in feature toggle specs. accredited_representative_portal_frontend: actor_type: user description: Enables the frontend of the accredited representative portal enable_in_development: true accredited_representative_portal_intent_to_file: actor_type: user description: Enables accredited representative portal intent to file (0966) enable_in_development: true accredited_representative_portal_form_21a: actor_type: user description: > When enabled, shows form 21a in the accredited representative portal. NOTE: content-build is using "vagovprod: false" to also hide the form 21a in production. enable_in_development: true accredited_representative_portal_email_delivery_callback: actor_type: user description: Enables a custom email delivery callback to track and log all notification statuses beyond errors accredited_representative_portal_lighthouse_api_key: actor_type: user description: Switches ARP LH benefits intake API key to be ARP-specific aedp_vadx: actor_type: user description: Enables the VADX experimental features in the AEDP application enable_in_development: true all_claims_add_disabilities_enhancement: actor_type: user description: Enables enhancement to the 21-526EZ "Add Disabilities" page being implemented by the Conditions Team. enable_in_development: true appointments_consolidation: actor_type: user description: For features being tested while merging logic for appointments between web and mobile arm_use_datadog_real_user_monitoring: actor_type: user description: Enables Datadog Real User Monitoring for ARM apps (Find a Rep, Appoint a Rep) ar_poa_request_failure_claimant_notification: actor_type: user description: Enables sending POA failure notifications to claimants ar_poa_request_failure_rep_notification: actor_type: user description: Enables sending POA failure notifications to representatives ask_va_announcement_banner: actor_type: cookie_id description: > The Ask VA announcement banner displays message(s) to visitors from the CRM-managed, expirable notifications - as retrieved from the /ask_va_api/v0/announcements endpoint. enable_in_development: true ask_va_alert_link_to_old_portal: actor_type: user description: > The Ask VA form alert banner with a link to the old portal. To use while form is down for maintenance. enable_in_development: true ask_va_canary_release: actor_type: cookie_id description: > Percent of visitors to keep in the updated Ask VA experience on VA.gov. All other users are redirected to the legacy experience. To route or retain all users, set to 0% for legacy or 100% for the updated experience on VA.gov. NOTE: When ready for all users to be in the updated experience on VA.gov, set this toggle to "Enabled", rather than specifying 100% in the percentage. enable_in_development: true ask_va_mock_api_for_testing: actor_type: cookie_id description: > Use mock API responses in the Ask VA application UI. This is used for testing purposes only and should not be enabled in production. We need to remove this feature from the codebase ASAP. Mocks shouldn't live in the app logic. If needed, add at the API/middleware level. enable_in_development: true ask_va_api_maintenance_mode: actor_type: user description: > A system-wide control flag that governs the overall availability of Ask VA API endpoints. When enabled, the API restricts external access and returns a service unavailable response across all routes. Primarily used for coordinated maintenance windows or temporary system suspensions, allowing the team to manage API exposure dynamically without requiring a redeploy. enable_in_development: true ask_va_api_patsr_separation: actor_type: user description: > Use new CRM environments for Ask VA API enable_in_development: true ask_va_api_preprod_for_end_to_end_testing: actor_type: user description: > Use preprod CRM environment to facilitate end to end testing by AVA testers. enable_in_development: false auth_exp_vba_downtime_message: actor_type: user description: Show downtime message on Profile and My VA for planned VBA maintenance avs_enabled: actor_type: user description: Enables the After Visit Summary API. enable_in_development: true benefits_documents_use_lighthouse: actor_type: user description: Use lighthouse instead of EVSS to upload benefits documents. enable_in_development: false benefits_require_gateway_origin: actor_type: user description: Requires that all requests made to endpoints in appeals_api and vba_documents be made through the gateway bgs_param_logging_enabled: actor_type: user description: Enables logging of BGS parameters (filtered in production) bpds_service_enabled: actor_type: user description: Enables the BPDS service caregiver_use_facilities_API: actor_type: cookie_id description: Allow list of caregiver facilites to be fetched by way of the Facilities API. caregiver_browser_monitoring_enabled: actor_type: user description: Enables Datadog Real Time User Monitoring cerner_non_eligible_sis_enabled: actor_type: user description: Enables Sign in Service for cerner authentication disability_compensation_new_conditions_workflow: actor_type: user description: enables new Conditions/Rated Disabilities workflow in 526EZ document_upload_validation_enabled: actor_type: user description: Enables stamped PDF validation on document upload enable_in_development: true dv_email_notification: actor_type: user description: Enables dependents verification emails empty_state_benefit_letters: actor_type: user description: Enables text if no benefit letters exist enable_in_development: true event_bus_gateway_ep030_decision_letter_notifications: description: "Gateway: Enable decision letter email notifications for EP030 higher level reviews" event_bus_gateway_ep040_decision_letter_notifications: description: "Gateway: Enable decision letter email notifications for EP040 claims" event_bus_gateway_ep120_decision_letter_notifications: description: "Gateway: Enable decision letter email notifications for EP120 reopened pension claims" event_bus_gateway_ep130_decision_letter_notifications: description: "Gateway: Enable decision letter email notifications for EP130 disability and death dependency" event_bus_gateway_ep180_decision_letter_notifications: description: "Gateway: Enable decision letter email notifications for EP180 initial pension claims" event_bus_gateway_ep310_decision_letter_notifications: description: "Gateway: Enable decision letter email notifications for EP310 routine future examination" event_bus_gateway_ep600_decision_letter_notifications: description: "Gateway: Enable decision letter email notifications for EP600 predetermined notice" event_bus_gateway_ep930_decision_letter_notifications: description: "Gateway: Enable decision letter email notifications for EP930 review, referrals, and other" event_bus_gateway_letter_ready_push_notifications: description: Percentage rollout flag for push notifications in LetterReadyNotificationJob event_bus_gateway_pension_email_template: description: Toggle to enable pension email template in eventbus-gateway event_bus_gateway_push_notifications: description: "Gateway: Enable push notifications" hca_browser_monitoring_enabled: actor_type: user description: Enables browser monitoring for the health care application. hca_disable_bgs_service: actor_type: user description: Do not call the BGS Service when this is turned on. Instead return 0 for rating. hca_enrollment_status_override_enabled: actor_type: user description: Enables override of enrollment status for a user, to allow multiple submissions with same user. hca_heif_attachments_enabled: actor_type: user description: Enables HEIF files as attachments that get converted to .jpg files enable_in_development: true hca_insurance_v2_enabled: actor_type: user description: Enables the upgraded insurance section of the Health Care Application enable_in_development: true hca_performance_alert_enabled: actor_type: user description: Enables alert notifying users of a potential issue with application performance. hca_reg_only_enabled: actor_type: user description: Enables the registration-only path for the Health Care Application enable_in_development: true hca_ez_kafka_submission_enabled: actor_type: cookie_id description: Enables the 10-10EZ Kafka Event Bus submission hca_health_facilities_update_job: actor_type: user description: Enables the health facilities import job - should only run daily by default in prod, staging, and sandbox. enable_in_development: false ezr_prod_enabled: actor_type: user description: Enables access to the 10-10EZR application in prod for the purposes of conducting user reasearch enable_in_development: true ezr_download_pdf_enabled: actor_type: user description: Enables the download of a pre-filled 10-10EZR PDF form. enable_in_development: true ezr_upload_enabled: actor_type: user description: Enables Toxic Exposure File Upload for 10-10EZR applicants. enable_in_development: true ezr_auth_only_enabled: actor_type: user description: Enables the auth-only experience, allowing only authenticated users to view any part of the form. enable_in_development: true ezr_emergency_contacts_enabled: actor_type: user description: Enables emergency contact experience for 10-10EZR applicants. enable_in_development: true ezr_use_va_notify_on_submission_failure: actor_type: user description: Send submission failure email to Veteran using VANotify. enable_in_development: true ezr_route_guard_enabled: actor_type: user description: Enables the route guard authentication for 10-10EZR application enable_in_development: true ezr_form_prefill_with_providers_and_dependents: actor_type: user description: Adds insurance providers and dependents to ezr prefill data enable_in_development: true ezr_spouse_confirmation_flow_enabled: actor_type: user description: Enables the spouse (V2) confirmation flow in the 10-10EZR form. enable_in_development: true cerner_override_653: actor_type: user description: This will show the Cerner facility 653 as `isCerner`. cerner_override_668: actor_type: user description: This will show the Cerner facility 668 as `isCerner`. cerner_override_687: actor_type: user description: This will show the Cerner facility 687 as `isCerner`. cerner_override_692: actor_type: user description: This will show the Cerner facility 692 as `isCerner`. cerner_override_757: actor_type: user description: This will show the Cerner facility 757 as `isCerner`. champva_vanotify_custom_callback: actor_type: user description: Enables the custom callback_klass when sending IVC CHAMPVA failure emails with VA Notify champva_vanotify_custom_confirmation_callback: actor_type: user description: Enables the custom callback_klass when sending IVC CHAMPVA confirmation emails with VA Notify champva_log_all_s3_uploads: actor_type: user description: Enables logging for all s3 uploads using UUID or keys for monitoring champva_send_to_ves: actor_type: user description: Enables sending form submission data to the VES API. champva_enable_pega_report_check: actor_type: user description: Enables querying PEGA reporting API from MissingFormStatusJob to determine CHAMPVA form status champva_retry_logic_refactor: actor_type: user description: Enables refactored retry logic for IVC CHAMPVA form submissions champva_fmp_single_file_upload: actor_type: user description: Enables the ability to upload a single merged PDF file for FMP claims champva_mpi_validation: actor_type: user description: Enables MPI veteran and benefificiary validation for IVC CHAMPVA form submissions champva_old_records_cleanup_job: actor_type: user description: Enables the job to cleanup old IVC CHAMPVA form records champva_enable_claim_resubmit_question: actor_type: user description: Enables the claim resubmission screener question page on form 10-7959a champva_enable_ocr_on_submit: actor_type: user description: Enables background OCR scanning and logging on form submissions champva_enable_llm_on_submit: actor_type: user description: Enables background LLM validation and logging on form submissions champva_insights_datadog_job: actor_type: user description: Enables the job to publish insights to Datadog champva_claims_llm_validation: actor_type: user description: Enables LLM validation of claims on form submissions champva_resubmission_attachment_ids: actor_type: user description: Corrects attachment IDs for resubmission of form 10-7959a champva_foreign_address_fix: actor_type: user description: Enables the fix for foreign address fields on form submissions champva_form_versioning: actor_type: user description: Enables the form versioning for IVC CHAMPVA form submissions champva_form_10_10d_2027: actor_type: user description: If enabled uses the 2027 version of form 10-10d with expiration 12/31/2027 champva_form_10_7959c_rev2025: actor_type: user description: If enabled uses the 2025 version of form 10-7959c with expiration 12/31/2025 champva_form_10_7959f_2_2025: actor_type: user description: If enabled uses the 2025 version of form 10-7959f-2 with expiration 12/31/2027 champva_ves_retry_failures_job: actor_type: user description: Enables the sidekiq job to retry VES submissions that failed champva_send_ves_to_pega: actor_type: user description: Enables sending VES JSON to PEGA for form submissions champva_use_hexapdf_to_unlock_pdfs: actor_type: user description: Enables the the use of hexapdf instead of pdftk to unlock password-protected PDFs on form submission champva_stamper_logging: actor_type: user description: Enables logging of the desired stamp text champva_update_metadata_keys: actor_type: user description: Enables the use of updated JSON key names in the Pega submission metadata check_in_experience_enabled: actor_type: user description: Enables the health care check-in experiences enable_in_development: true check_in_experience_pre_check_in_enabled: actor_type: user description: Enables the health care check-in experiences to show the pre-check-in experience. enable_in_development: true check_in_experience_upcoming_appointments_enabled: actor_type: user description: Enables the feature to show upcoming appointments to the veterans enable_in_development: true check_in_experience_translation_disclaimer_spanish_enabled: actor_type: user description: Enables disclaimer for possible untranslated content on spanish pages enable_in_development: true check_in_experience_translation_disclaimer_tagalog_enabled: actor_type: user description: Enables disclaimer for possible untranslated content on tagalog pages enable_in_development: true check_in_experience_mock_enabled: actor_type: user description: Enables downstream responses to be returned via betamocks enable_in_development: false check_in_experience_travel_reimbursement: actor_type: user description: Enables travel reimbursement workflow for day-of check-in application. It functions as a toggle for just the travel reimbursement feature in the day of check-in app, allowing veterans to continue to check in to their appointments. Vets-api uses it to gate v1 travel endpoints. enable_in_development: true check_in_experience_travel_pay_api: actor_type: user description: Switches travel reimbursement to use the new Travel Pay API(v1) instead of the Claim Ingest api(v0). enable_in_development: true check_in_experience_check_claim_status_on_timeout: actor_type: user description: Uses a background worker to check travel claim status when the submission times out enable_in_development: true check_in_experience_travel_claim_notification_callback: actor_type: user description: Enables VA Notify delivery status callbacks for travel claim notifications enable_in_development: true check_in_experience_travel_claim_logging: actor_type: user description: Enables logging for travel claim submission operations enable_in_development: true check_in_experience_travel_claim_log_api_error_details: actor_type: user description: Enables detailed logging of external request error responses in client enable_in_development: true check_in_experience_browser_monitoring: actor_type: user description: Enables browser monitoring for check-in applications. enable_in_development: false check_in_experience_medication_review_content: actor_type: cookie_id description: Enables the medication review content in pre-check-in. enable_in_development: true check_in_experience_use_vaec_cie_endpoints: actor_type: user description: Enables using VAEC-CIE AWS account endpoints for CHIP and LoROTA instead of VAEC-CMS endpoints. enable_in_development: false claim_letters_access: actor_type: user description: Enables users to access the claim letters page enable_in_development: true claims_api_special_issues_updater_uses_local_bgs: actor_type: user description: Enables special issues updater to use local_bgs enable_in_development: true claims_api_flash_updater_uses_local_bgs: actor_type: user description: Enables flash updater to use local_bgs enable_in_development: true claims_api_poa_vbms_updater_uses_local_bgs: actor_type: user description: Enables poa vbms updater to use local_bgs enable_in_development: true claims_api_bd_refactor: actor_type: user description: Diverts codepath to use refactored BD methods enable_in_development: true claims_api_ews_updater_enables_local_bgs: actor_type: user description: Uses local_bgs rather than bgs-ext enable_in_development: true claims_api_ews_uploads_bd_refactor: actor_type: user description: When enabled, sends ews forms to BD via the refactored logic enable_in_development: true claims_api_poa_uploads_bd_refactor: actor_type: user description: When enabled, sends poa forms to BD via the refactored logic enable_in_development: true claims_api_526_validations_v1_local_bgs: actor_type: user description: Enables the method calls in the v1 526 validations use local_bgs enable_in_development: true claims_api_use_person_web_service: actor_type: user description: Uses person web service rather than local bgs enable_in_development: true claims_api_use_update_poa_relationship: actor_type: user description: Uses local_bgs rather than bgs-ext enable_in_development: true claims_api_526_v2_uploads_bd_refactor: actor_type: user description: When enabled, sends 526 forms to BD via the refactored logic enable_in_development: true lighthouse_claims_api_add_person_proxy: actor_type: user description: When enabled, will allow for add_person_proxy call in both versions enable_in_development: true lighthouse_claims_api_v1_enable_FES: actor_type: user description: Use new Form526 Establishment Service (FES) for v1 disability compensation claims enable_in_development: true lighthouse_claims_api_v2_enable_FES: actor_type: user description: Use new Form526 Establishment Service (FES) for v2 disability compensation claims enable_in_development: true confirmation_page_new: actor_type: user description: Enables the 2024 version of the confirmation page view in simple forms enable_in_development: true lighthouse_claims_api_hardcode_wsdl: actor_type: user description: Use hardcoded namespaces for WSDL calls to BGS enable_in_development: true cst_show_document_upload_status: actor_type: user description: When enabled, claims status tool will display the upload status that comes from the evidence_submissions table. enable_in_development: true cst_update_evidence_submission_on_show: actor_type: user description: When enabled, polls Lighthouse for updated evidence submission statuses when viewing individual claims. enable_in_development: true cst_claim_phases: actor_type: user description: When enabled, claims status tool uses the new claim phase designs enable_in_development: true cst_include_ddl_5103_letters: actor_type: user description: When enabled, the Download Decision Letters feature includes 5103 letters enable_in_development: true cst_include_ddl_boa_letters: actor_type: user description: When enabled, the Download Decision Letters feature includes Board of Appeals decision letters enable_in_development: true cst_include_ddl_sqd_letters: actor_type: user description: When enabled, the Download Decision Letters feature includes Subsequent Development Letters enable_in_development: true cst_send_evidence_failure_emails: actor_type: user description: When enabled, emails will be sent when evidence uploads from the CST fail enable_in_development: true cst_synchronous_evidence_uploads: actor_type: user description: When enabled, claims status tool uses synchronous evidence uploads enable_in_development: true cst_timezone_discrepancy_mitigation: actor_type: user description: > Shows contextual timezone messages in Claims Status when uploaded documents display with next-day dates due to UTC handling. Temporary mitigation while awaiting Lighthouse API timestamp changes. enable_in_development: true cst_use_dd_rum: actor_type: user description: When enabled, claims status tool uses DataDog's Real User Monitoring logging enable_in_development: false cst_suppress_evidence_requests_website: actor_type: user description: When enabled, CST does not show Attorney Fees, Secondary Action Required, or Stage 2 Development on website enable_in_development: false cst_suppress_evidence_requests_mobile: actor_type: user description: When enabled, CST does not show Attorney Fees, Secondary Action Required, or Stage 2 Development on mobile enable_in_development: false cst_override_reserve_records_mobile: actor_type: user description: When enabled, CST overrides RV1 - Reserve Records Request tracked items to be NEEDED_FROM_OTHERS on mobile app enable_in_development: true cst_filter_ep_290: actor_type: user description: When enabled, benefits_claims/get_claims service filters 290 EP code claims from the response cst_filter_ep_960: actor_type: user description: When enabled, benefits_claims/get_claims service filters 960 EP code claims from the response cst_claim_letters_use_lighthouse_api_provider: actor_type: user description: When enabled, claims_letters from the Lighthouse API Provider cst_claim_letters_use_lighthouse_api_provider_mobile: actor_type: user description: When enabled, claims_letters from the Lighthouse API Provider in mobile endpoints cst_use_claim_title_generator_web: description: When enabled, use the title generator to insert claim titles into claim list responses. cst_use_claim_title_generator_mobile: description: When enabled, use the title generator to insert claim titles into mobile claim list responses. letters_hide_service_verification_letter: actor_type: user description: When enabled, CST does not include Service Verification in the list of letters on vets-website enable_in_development: true coe_access: actor_type: user description: Feature gates the certificate of eligibility application enable_in_development: true coe_form_rebuild_cveteam: actor_type: user description: Enables rebuild of Certificate of Eligibility form enable_in_development: true combined_debt_portal_access: actor_type: user description: Enables users to interact with combined debt portal experience enable_in_development: true combined_financial_status_report: actor_type: user description: Enables users to submit FSR forms for VHA and VBA debts enable_in_development: true fsr_zero_silent_errors_in_progress_email: actor_type: user description: Enables sending an email to the veteran when FSR form is in progress enable_in_development: true digital_dispute_email_notifications: actor_type: user description: Enables email notifications for digital dispute submissions enable_in_development: true communication_preferences: actor_type: user description: Allow user to access backend communication_preferences API claims_claim_uploader_use_bd: actor_type: user description: Use BDS instead of EVSS to upload to VBMS. claims_load_testing: actor_type: user description: Enables the ability to skip jobs for load testing claims_status_v1_bgs_enabled: actor_type: user description: enables calling BGS instead of EVSS for the claims status v1. claims_hourly_slack_error_report_enabled: actor: user description: Enable/disable the running of the hourly slack alert for errored submissions enable_in_development: false claims_status_v1_lh_auto_establish_claim_enabled: actor_type: user description: With feature flag enabled, v1 /526 should use Lighthouse Form526 docker container cst_send_evidence_submission_failure_emails: actor_type: user description: > If enabled and a user submits an evidence submission upload that fails to send, an email will be sent to the user and retried. When disabled and a user submits an evidence submission upload that fails to send, an email will be sent to the user and not retried. enable_in_development: true debt_letters_show_letters_vbms: actor_type: user description: Enables debt letter download from VBMS debts_cache_dmc_empty_response: actor_type: user description: Enables caching of empty DMC response debts_copay_logging: actor_type: user description: Logs copay request data debts_silent_failure_mailer: actor_type: user description: Enables silent failure mailer for the 5655 debts_sharepoint_error_logging: actor_type: user description: Logs Sharepoint error data decision_review_hlr_email: actor_type: user description: Send email notification for successful HLR submission decision_review_nod_email: actor_type: user description: Send email notification for successful NOD submission decision_review_sc_email: actor_type: user description: Send email notification for successful SC submission decision_review_hlr_status_updater_enabled: actor_type: user description: Enables the Higher Level Review status update batch job decision_review_nod_status_updater_enabled: actor_type: user description: Enables the Notice of Disagreement status update batch job decision_review_nod_feb2025_pdf_enabled: actor_type: user description: Enables utilizing Feb 2025 Notice of Disagreement pdf VA form decision_review_sc_status_updater_enabled: actor_type: user description: Enables the Supplemental Claim status update batch job decision_review_icn_updater_enabled: actor_type: user description: Enables the ICN lookup job decision_review_weekly_error_report_enabled: actor_type: user description: Enables the weekly decision review text error report decision_review_daily_error_report_enabled: actor_type: user description: Enables the daily error report email decision_review_daily_stuck_records_report_enabled: actor_type: user description: Enables the daily decision review stuck records Slack report decision_review_monthly_stats_report_enabled: actor_type: user description: Enables the monthly decision review stats report email decision_review_delay_evidence: actor_type: user description: Ensures that NOD and SC evidence is not received in Central Mail before the appeal itself decision_review_hlr_form_v4_enabled: actor_type: user description: Enable using MAR 2024 revision of 200996 Higher Level Review form when submitting to EMMS for intake enable_in_development: false decision_review_sc_form_v4_enabled: actor_type: user description: Enable using MAY 2024 revision of 200995 Supplemental Claim form when submitting to EMMS for intake enable_in_development: false decision_review_saved_claim_hlr_status_updater_job_enabled: actor_type: user description: Enable job to set delete_date for completed SavedClaim::HigherLevelReviews enable_in_development: true decision_review_saved_claim_nod_status_updater_job_enabled: actor_type: user description: Enable job to set delete_date for completed SavedClaim::NoticeOfDisagreements enable_in_development: true decision_review_saved_claim_sc_status_updater_job_enabled: actor_type: user description: Enable job to set delete_date for completed SavedClaim::SupplementalClaims enable_in_development: true decision_review_delete_saved_claims_job_enabled: actor_type: user description: Enable job to delete SavedClaim records when the record has a delete_date and the date is in the past enable_in_development: true decision_review_delete_secondary_appeal_forms_enabled: actor_type: user description: Enable job to delete SecondaryAppealForm records when the record has a delete_date and the date is in the past enable_in_development: true decision_review_failure_notification_email_job_enabled: actor_type: user description: Enable job to send form and evidence failure notification emails enable_in_development: true decision_review_track_4142_submissions: actor_type: user description: Enable saving record of 4142 forms submitted to Lighthouse as part of a Supplemental Claim enable_in_development: true decision_review_service_common_exceptions_enabled: actor_type: user description: Enable using Common::Exception classes instead of DecisionReviewV1::ServiceException decision_review_form4142_validate_schema: actor_type: user description: Enables the use of schema validation for form 4142 in decision review applications enable_in_development: true decision_review_final_status_polling: actor_type: user description: Enables enhanced polling for secondary forms in decision review applications with final status decision_review_final_status_secondary_form_failure_notifications: actor_type: user description: Enables failure notifications for secondary forms in decision review applications with final status decision_review_stuck_records_monitoring: actor_type: user description: Enables monitoring for stuck records in decision review applications decision_review_sc_redesign_nov2025: actor_type: user description: Enables the Nov 2025 Supplemental Claims redesign decision_review_upload_notification_pdfs_enabled: actor_type: user description: Enables job to generate and upload PDF copies of failure notification emails to VBMS. enable_in_development: true dependency_verification_browser_monitoring_enabled: actor_type: user description: Enable Datadog RUM/LOG monitoring for the form 21-0538 dependents_enable_form_viewer_mfe: actor_type: user description: enables display of form viewer microfrontend on 686 post-submission page enable_in_development: true dependents_enqueue_with_user_struct: actor_type: user description: Manage whether the enqueued job for 686c and 674 will be with a User model or the new User struct enable_in_development: true dependents_log_vbms_errors: actor_type: user description: Log VBMS errors when submitting 686c and 674 enable_in_development: true dependents_module_enabled: actor_type: user description: Enables new Dependents module enable_in_development: false dependents_benefits_confirmation_email_notification: actor_type: cookie_id description: Toggle sending of the Confirmation email notification dependents_benefits_error_email_notification: actor_type: cookie_id description: Toggle sending of the Error email notification dependents_benefits_received_email_notification: actor_type: cookie_id description: Toggle sending of the Received email notification dependents_benefits_submitted_email_notification: actor_type: user description: Toggle sending of the Submission in Progress email notification dependents_benefits_persistent_attachment_error_email_notification: actor_type: cookie_id description: Toggle sending of the Persistent Attachment Error email notification dependents_pension_check: actor_type: user description: Manage whether or not Pension check is enabled for the 686/674 enable_in_development: true dependents_removal_check: actor_type: user description: Manage whether or not dependent removal claim codes are enabled for the 686 enable_in_development: true dependents_management: actor_type: user description: Manage dependent removal from view dependent page enable_in_development: true dependents_bypass_schema_validation: actor_type: user description: Bypasses vets_json_schema validation for dependency claims disability_526_form4142_polling_records: actor_type: user description: enables creation of, and tracking of, sent form 4142 documents, from the 526 flow, to the Lighthouse Benefits Intake API enable_in_development: true disability_526_form4142_polling_record_failure_email: actor_type: user description: enables failure email when explicit failure is detected downstream enable_in_development: true contention_classification_claim_linker: actor_type: user description: enables sending 526 claim id and vbms submitted claim id to Contention Classification service for linking/monitoring. enable_in_development: true contention_classification_ml_classifier: actor_type: user description: Enables the machine learning classifier for contention classification by calling the hybrid endpoint instead of expanded endpoint. enable_in_development: true disability_526_ee_mst_special_issue: actor_type: user description: enables adding MST special issue to disability_526 prior to submission. enable_in_development: true disability_526_ee_process_als_flash: actor_type: user description: enables adding applicable flashes to disability_526 prior to submission. enable_in_development: true disability_526_call_received_email_from_polling: actor_type: user description: enables received email in poll_form526_pdf job and disables calling from form526_submission disability_526_improved_autosuggestions_add_disabilities_page: actor_type: user description: enables new version of add disabilities page, with updates to content and search functionality enable_in_development: true disability_526_show_confirmation_review: actor_type: user description: enables showing a submission review section on the 526 confirmation page enable_in_development: true disability_compensation_flashes: actor_type: user description: enables sending flashes to BGS for disability_compensation submissions. enable_in_development: true disability_compensation_temp_separation_location_code_string: actor_type: user description: enables forcing separation location code to be a string in submit_all_claim endpoint. disability_compensation_temp_toxic_exposure_optional_dates_fix: actor_type: user description: enables removing malformed optional dates from the Toxic Exposure node of a Form526Submission at SavedClaim creation. disability_compensation_toxic_exposure_destruction_modal: actor_type: user description: enables confirmation modal when removing toxic exposure data from Form 526 enable_in_development: true disability_compensation_form4142_supplemental: actor_type: user description: Use Lighthouse API to submit supplemental Form 21-4142 from Form 526EZ submissions enable_in_development: true disability_compensation_pif_fail_notification: actor_type: user description: enables sending notifications to vets if their 526 claim submission fails with PIF in Use Error enable_in_development: true disability_compensation_production_tester: actor_type: user description: disable certain functionality for production testing of the 526 submission workflow. DO NOT TOGGLE THIS FLAG UNLESS YOU ARE A MEMBER OF DISABILITY BENEFITS EXPERIENCE TEAM. enable_in_development: true disability_compensation_fail_submission: actor_type: user description: enable to test the backup submission path. DO NOT TOGGLE THIS FLAG UNLESS YOU ARE A MEMBER OF DISABILITY BENEFITS EXPERIENCE TEAM. enable_in_development: true disability_compensation_sync_modern_0781_flow: actor_type: user description: enables a new form flow for 0781 and 0781a in the 526 submission workflow enable_in_development: true disability_compensation_sync_modern0781_flow_metadata: actor_type: user description: enables adding new 0781 form indicator to in progress 526 forms and saved claim records for 526 submissions disability_compensation_0781_stats_job: actor_type: user description: enables a job to run that will check DB records and report stats as metrics, into Datadog enable_in_development: true disability_526_send_form526_submitted_email: actor_type: user description: enables sending submitted email in both primary and backup paths disability_526_send_mas_all_ancillaries: actor_type: user description: enables sending all 526 uploads and ancillary forms to MAS's APCAS API disability_526_send_received_email_from_backup_path: actor_type: user description: enables received email in complete success state of backup path disability_526_form4142_validate_schema: actor_type: user description: Enables the use of schema validation for form 4142 in disability 526 applications disability_526_form4142_use_2024_version: actor_type: user description: enables the 2024 version of form 4142 in the disability 526 submission frontend workflow enable_in_development: true disability_526_browser_monitoring_enabled: actor_type: user description: enables Datadog RUM for the disability 526 submission frontend workflow enable_in_development: true disability_526_toxic_exposure_opt_out_data_purge: actor_type: user description: enables function that removes toxic exposure data if user has opted out from toxic exposure condition on Form 526 submission enable_in_development: true disability_526_track_saved_claim_error: actor_type: user description: enables improved logging of SavedClaim::DisabilityCompensation::Form526AllClaim save failures disability_526_add_claim_date_to_lighthouse: actor_type: user description: enables sending the claim date to Lighthouse when submitting a Form 526EZ when present enable_in_development: true disability_526_extra_bdd_pages_enabled: actor_type: user description: Enables extra pages during a BDD claim enable_in_development: true education_reports_cleanup: actor_type: user description: Updates to the daily education reports to remove old data that isn't needed in the new fiscal year enable_in_development: true enrollment_verification: actor_type: user description: Enables access to the Enrollment Verification app enable_in_development: true discharge_wizard_features: actor_type: user description: Iteration of new features for discharge wizard enable_in_development: true dispute_debt: actor_type: user description: Enables the Dispute Debt feature enable_in_development: true digital_dispute_duplicate_prevention: actor_type: user description: Enables duplicate prevention for digital dispute submissions enable_in_development: false digital_dmc_dispute_service: actor_type: user description: Enables the Digital DMC Dispute Service enable_in_development: true event_bus_gateway_retry_emails: actor_type: user description: When enabled, vets-api retries event bus gateway emails that VA Notify marks temporary-failure enable_in_development: true facilities_autosuggest_vamc_services_enabled: actor_type: user description: Allow use of the VA health facilities auto-suggest feature (versus static dropdown) enable_in_development: true facilities_ppms_suppress_all: actor_type: user description: Hide all ppms search options facility_locator_mobile_map_update: actor_type: user description: Use new mobile map features for research enable_in_development: true facility_locator_predictive_location_search: actor_type: user description: Use predictive location search in the Facility Locator UI facilities_use_fl_progressive_disclosure: actor_type: user description: Use progressive disclosure in the Facility Locator UI enable_in_development: true show_facility_locator_notice_about_non_va_care: actor_type: user description: Show a warning on the Facility Locator UI about non-VA urgent and emergency care enable_in_development: true file_upload_short_workflow_enabled: actor_type: user description: Enables shorter workflow enhancement for file upload component fsr_5655_server_side_transform: actor_type: user description: Update to use BE for business transform logic for Financial Status Report (FSR - 5655) form enable_in_development: true financial_status_report_debts_api_module: actor_type: user description: Points to debts-api module routes enable_in_development: true financial_status_report_expenses_update: actor_type: user description: Update expense lists in the Financial Status Report (FSR - 5655) form enable_in_development: true financial_status_report_review_page_navigation: actor_type: user description: Enables new review page navigation for users completing the Financial Status Report (FSR) form. enable_in_development: true financial_management_vbs_only: actor_type: user description: Enables the Financial Management app to only use the VBS API enable_in_development: true find_a_representative_enabled: actor_type: cookie_id description: Generic toggle for gating Find a Rep enable_in_development: true find_a_representative_enable_api: actor_type: user description: Enables all Find a Representative api endpoints enable_in_development: true find_a_representative_enable_frontend: actor_type: cookie_id description: Enables Find a Representative frontend enable_in_development: true find_a_representative_flag_results_enabled: actor_type: user description: Enables flagging feature for Find a Representative frontend enable_in_development: true find_a_representative_use_accredited_models: actor_type: user description: Enables Find A Representative APIs using AccreditedX models enable_in_development: true representative_status_enabled: actor_type: cookie_id description: Enables flagging feature for Find a Representative frontend enable_in_development: true form526_include_document_upload_list_in_overflow_text: actor_type: user description: Appends a list of SupportingEvidenceAttachment filenames the veteran uploaded for a Form 526 into the overflow text in the form submission appoint_a_representative_enable_frontend: actor_type: cookie_id description: Enables Appoint a Representative frontend enable_in_development: true appoint_a_representative_enable_v2_features: actor_type: user description: Enables Appoint a Representative 2.0 features for frontend and backend enable_in_development: true appoint_a_representative_enable_pdf: actor_type: user description: Enables Appoint a Representative PDF generation endpoint enable_in_development: true representative_status_enable_v2_features: actor_type: user description: Enables Representative Status widget 2.0 features for frontend and backend enable_in_development: true form526_legacy: actor_type: user description: If true, points controllers to the legacy EVSS Form 526 instance. If false, the controllers will use the Dockerized instance running in DVP. enable_in_development: true form526_send_document_upload_failure_notification: actor_type: user description: Enables enqueuing a Form526DocumentUploadFailureEmail if a EVSS::DisabilityCompensationForm::SubmitUploads job exhausts its retries enable_in_development: true form526_send_backup_submission_polling_failure_email_notice: actor_type: user description: Enables enqueuing a Form526SubmissionFailureEmailJob if a submission is marked as unprocessable through polling of the Benefits Intake API. enable_in_development: true form526_send_backup_submission_exhaustion_email_notice: actor_type: user description: Enables enqueuing of a Form526SubmissionFailureEmailJob if a submission exhausts it's attempts to upload to the Benefits Intake API. enable_in_development: true form526_send_4142_failure_notification: actor_type: user description: Enables enqueuing of a Form4142DocumentUploadFailureEmail if a SubmitForm4142Job job exhausts its retries enable_in_development: true form526_send_0781_failure_notification: actor_type: user description: Enables enqueuing a Form0781DocumentUploadFailureEmail if a SubmitForm0781Job job exhausts its retries enable_in_development: true form0994_confirmation_email: actor_type: user description: Enables form 0994 email submission confirmation (VaNotify) enable_in_development: true form1990_confirmation_email: actor_type: user description: Enables form 1990 email submission confirmation (VaNotify) enable_in_development: true form1995_confirmation_email: actor_type: user description: Enables form 1995 email submission confirmation (VaNotify) enable_in_development: true form21_0966_confirmation_email: actor_type: user description: Enables form 21-0966 email submission confirmation (VaNotify) enable_in_development: true form21_0966_confirmation_page: actor_type: user description: Enables form 21-0966 new confirmation page enable_in_development: true form21_0972_confirmation_email: actor_type: user description: Enables form 21-0972 email submission confirmation (VaNotify) enable_in_development: true form21_10203_confirmation_email: actor_type: user description: Enables form 21-10203 email submission confirmation (VaNotify) form21_10210_confirmation_email: actor_type: user description: Enables form 21-10210 email submission confirmation (VaNotify) enable_in_development: true form20_10206_confirmation_email: actor_type: user description: Enables form 20-10206 email submission confirmation (VaNotify) enable_in_development: true form20_10207_confirmation_email: actor_type: user description: Enables form 20-10207 email submission confirmation (VaNotify) enable_in_development: true form21_0845_confirmation_email: actor_type: user description: Enables form 21-0845 email submission confirmation (VaNotify) enable_in_development: true form21p_0537_confirmation_email: actor_type: user description: Enables form 21p-0537 email submission confirmation (VaNotify) enable_in_development: true form21p_601_confirmation_email: actor_type: user description: Enables form 21p-601 email submission confirmation (VaNotify) enable_in_development: true form21p_0847_confirmation_email: actor_type: user description: Enables form 21p-0847 email submission confirmation (VaNotify) enable_in_development: true form21_4138_confirmation_email: actor_type: user description: Enables form 21-4138 email submission confirmation (VaNotify) form21_4142_confirmation_email: actor_type: user description: Enables form 21-4142 email submission confirmation (VaNotify) form22_10275_submission_email: actor_type: user description: Enables form 22-10275 email submission to POE team (VaNotify) enable_in_development: true form22_10282_confirmation_email: actor_type: user description: Enables form 22-10282 email submission confirmation (VaNotify) enable_in_development: true form22_10297_confirmation_email: actor_type: user description: Enables form 22-10297 email submission confirmation (VaNotify) enable_in_development: true form26_4555_confirmation_email: actor_type: user description: Enables form 26-4555 email submission confirmation (VaNotify) enable_in_development: true form_526_required_identifiers_in_user_object: actor_type: user description: includes a mapping of booleans in the profile section of a serialized user indicating which ids are nil for the user form40_0247_confirmation_email: actor_type: user description: Enables form 40-0247 email submission confirmation (VaNotify) enable_in_development: true form40_10007_confirmation_email: actor_type: user description: Enables form 40-10007 email submission error (VaNotify) enable_in_development: true form1990meb_confirmation_email: actor_type: user description: Enables form 1990 MEB email submission confirmation (VaNotify) enable_in_development: true form1990emeb_confirmation_email: actor_type: user description: Enables form 1990e MEB email submission confirmation (VaNotify) enable_in_development: true form5490_confirmation_email: actor_type: user description: Enables form 5490 email submission confirmation (VaNotify) enable_in_development: true form5495_confirmation_email: actor_type: user description: Enables form 5495 email submission confirmation (VaNotify) enable_in_development: true simple_forms_email_notifications: actor_type: user description: Enables form email notifications upon certain state changes (error and received) enable_in_development: true form2010206: actor_type: user description: If enabled shows the digital form experience for form 20-10206 form2010207: actor_type: user description: If enabled shows the digital form experience for form 20-10207 form210845: actor_type: user description: If enabled shows the digital form experience for form 21-0845 form210966: actor_type: user description: If enabled shows the digital form experience for form 21-0966 form210972: actor_type: user description: If enabled shows the digital form experience for form 21-0972 form214138: actor_type: user description: If enabled shows the digital form experience for form 21-4138 form214142: actor_type: user description: If enabled shows the digital form experience for form 21-4142 form2110210: actor_type: user description: If enabled shows the digital form experience for form 21-10210 form21p601: actor_type: user description: If enabled shows the digital form experience for form 21P-601 form21p0847: actor_type: user description: If enabled shows the digital form experience for form 21P-0847 form21p0537: actor_type: user description: If enabled shows the digital form experience for form 21P-0537 form264555: actor_type: user description: If enabled shows the digital form experience for form 26-4555 form400247: actor_type: user description: If enabled shows the digital form experience for form 40-0247 form1010d_extended: actor_type: user description: If enabled shows the digital form experience for form 10-10d merged with form 10-7959c enable_in_development: true form1010d_browser_monitoring_enabled: actor_type: user description: Datadog RUM monitoring for form 10-10d (IVC CHAMPVA) form107959c_browser_monitoring_enabled: actor_type: user description: Datadog RUM monitoring for form 10-7959c (IVC CHAMPVA) form107959f1_browser_monitoring_enabled: actor_type: user description: Datadog RUM monitoring for form 10-7959f-1 (IVC CHAMPVA) form107959a_browser_monitoring_enabled: actor_type: user description: Datadog RUM monitoring for form 10-7959a (IVC CHAMPVA) form107959c: actor_type: cookie_id description: If enabled shows the digital form experience for form 10-7959c (IVC CHAMPVA other health insurance) enable_in_development: true form107959a: actor_type: user description: If enabled shows the digital form experience for form 10-7959a (IVC CHAMPVA claim form) enable_in_development: true form107959f2: actor_type: user description: If enabled shows the digital form experience for form 10-7959f-2 (Foreign Medical Program claim form) enable_in_development: true form_upload_flow: actor_type: user description: If enabled shows the find-a-form widget for the Form Upload Flow form_pdf_change_detection: actor_type: user description: If enabled runs the FormPdfChangeDetectionJob daily get_help_ask_form: actor_type: user description: Enables inquiry form for users to submit questions, suggestions, and complaints. enable_in_development: true get_help_messages: actor_type: user description: Enables secure messaging enable_in_development: true ha_cpap_supplies_cta: actor_type: user description: Toggle CTA for reordering Hearing Aid and CPAP supplies form within static pages. in_progress_form_atomicity: actor_type: user description: Prevents multiple form creations for in_progress_form updates in_progress_form_reminder: actor_type: user description: Enable/disable in progress form reminders (sent via VaNotify) enable_in_development: true in_progress_form_reminder_age_param: actor_type: user description: Enable/disable in progress form reminder age param enable_in_development: true clear_stale_in_progress_reminders_sent: actor_type: user description: Enable/disable clearing of one-time in progress reminders after 60 days enable_in_development: true in_progress_1880_form_cron: actor_type: user description: Enable/disable scheduled cron for 1880 in progress form reminders (sent via VaNotify) enable_in_development: true in_progress_1880_form_reminder: actor_type: user description: Enable/disable 1880 in progress form reminders (sent via VaNotify) enable_in_development: true in_progress_form_reminder_1010ez: actor_type: user description: Enable/disable 1010ez in progress form reminders (sent via VaNotify) enable_in_development: true in_progress_form_reminder_526ez: actor_type: user description: Enable/disable 526ez in progress form reminders (sent via VaNotify) enable_in_development: true identity_ial2_enforcement: actor_type: user description: Enforces IAL2 for newly verified users enable_in_development: true kendra_enabled_for_resources_and_support_search: actor_type: user description: Enable/disable Amazon Kendra for Resources and Support search enable_in_development: true lighthouse_claims_api_v2_add_person_proxy: actor_type: user description: Lighthouse Benefits Claims API v2 uses add_person_proxy service when target Veteran is missing a Participant ID enable_in_development: true lighthouse_claims_api_poa_dependent_claimants: actor_type: user description: Enable/disable dependent claimant support for POA requests enable_in_development: true lighthouse_claims_api_v2_poa_va_notify: actor_type: user description: Enable/disable the VA notification emails in V2 POA enable_in_development: false lighthouse_claims_v2_poa_requests_skip_bgs: actor_type: user description: Enable/disable skipping BGS calls for POA Requests enable_in_development: true lighthouse_claims_api_poa_use_bd: actor_type: user description: Lighthouse Benefits Claims API uses Lighthouse Benefits Documents API to upload POA forms instead of VBMS enable_in_development: true lighthouse_claims_api_use_birls_id: actor_type: user description: Lighthouse Benefits Claims API uses MPI birls_id as filenumber parameter to BDS search enable_in_development: true lighthouse_claims_api_save_failed_soap_requests: actor_type: user description: Enable saving the request/response of failed SOAP requests made by ClaimsApi enable_in_development: true lighthouse_document_convert_to_unlocked_pdf_use_hexapdf: description: Enables the LighthouseDocument class's convert_to_unlocked_pdf method to use hexapdf to unlock encrypted pdfs log_eligible_benefits: actor_type: user description: Allows log_eligible_benefits_job.rb to run in background. enable_in_development: true loop_pages: actor_type: user description: Enable new list loop pattern enable_in_development: true show_mbs_preneed_change_va_4010007: actor_type: user description: Updates to text in form VA 40-10007 medical_copays_six_mo_window: actor_type: user description: This will filter to only show medical copays within the last 6 months enable_in_development: true medical_copay_notifications: actor_type: user description: Enables notifications to be sent for new copay statements enable_in_development: true medical_expense_reports_form_enabled: actor_type: user description: Enables the Medical Expense Reports form (Form 21P-8416) enable_in_development: true medical_expense_reports_browser_monitoring_enabled: actor_type: user description: Medical Expense Reports Datadog RUM monitoring medical_expense_reports_error_email_notification: actor_type: cookie_id description: Toggle sending of the Action Needed email notification medical_expense_reports_received_email_notification: actor_type: cookie_id description: Toggle sending of the Received email notification medical_expense_reports_submitted_email_notification: actor_type: user description: Toggle sending of the Submission in Progress email notification mhv_accelerated_delivery_enabled: actor_type: user description: Control whether vets-api allows fetching MR data from LightHouse enable_in_development: false mhv_accelerated_delivery_allergies_enabled: actor_type: user description: Control fetching OH allergies data enable_in_development: false mhv_accelerated_delivery_care_notes_enabled: actor_type: user description: Control fetching OH care summary and notes data enable_in_development: false mhv_accelerated_delivery_conditions_enabled: actor_type: user description: Control fetching OH health condition data enable_in_development: false mhv_accelerated_delivery_labs_and_tests_enabled: actor_type: user description: Control fetching lab and test data from UHD (SCDF) service (web) enable_in_development: false mhv_accelerated_delivery_vital_signs_enabled: actor_type: user description: Control fetching OH vitals data enable_in_development: false mhv_accelerated_delivery_uhd_enabled: actor_type: user description: Control whether vets-api allows fetching any MR data from MHV UHD enable_in_development: false mhv_accelerated_delivery_uhd_oh_lab_type_logging_enabled: actor_type: user description: Control whether vets-api logs lab types returned for OH patients enable_in_development: false mhv_accelerated_delivery_uhd_vista_lab_type_logging_enabled: actor_type: user description: Control whether vets-api logs lab types returned for VistA patients enable_in_development: false mhv_accelerated_delivery_uhd_loinc_logging_enabled: actor_type: user description: Control whether vets-api logs LOINC codes returned from UHD notes records enable_in_development: false mhv_va_health_chat_enabled: actor_type: user description: Enables the VA Health Chat link at /my-health mhv_landing_page_aal_notice: actor_type: user description: Enables AAL help content on the My HealtheVet landing page. enable_in_development: true mhv_landing_page_personalization: actor_type: user description: Enables personalized content on the My HealtheVet landing page. enable_in_development: true mhv_landing_page_show_priority_group: actor_type: user description: Shows Veterans their Priority Group on the MHV Landing Page enable_in_development: true mhv_landing_page_show_share_my_health_data_link: actor_type: user description: Show Share My Health Data (SMHD) link on Medical Records card of the MHV landing page mhv_supply_reordering_enabled: actor_type: user description: Enables the launch of mhv supply reordering application at /my-health/order-medical-supplies mhv_secure_messaging_no_cache: actor_type: user description: Prevents caching of Secure Messaging data mhv_secure_messaging_cerner_pilot: actor_type: user description: Enables/disables Secure Messaging Cerner Transition Pilot environment on VA.gov and VHAB mhv_secure_messaging_cerner_pilot_system_maintenance_banner: actor_type: user description: Enables/disables system maintenance banner for Secure Messaging Oracle Health Transition on VA.gov mhv_secure_messaging_filter_accordion: actor_type: user description: Enables/disables Secure Messaging Filter Accordion re-design updates on VA.gov enable_in_development: true mhv_secure_messaging_remove_lefthand_nav: actor_type: user description: Disables/Enables Secure Messaging lefthand navigation for new navigation solution enable_in_development: true mhv_secure_messaging_triage_group_plain_language: actor_type: user description: Disables/Enables Secure Messaging recipients group plain language design enable_in_development: true mhv_vaccine_lighthouse_name_logging: actor_type: user description: Enables logging for Lighthouse immunizations vaccine group name processing to debug vaccine name extraction issues enable_in_development: true mhv_secure_messaging_recipient_opt_groups: actor_type: user description: Disables/Enables Secure Messaging optgroups in recipient dropdown on Start a new message page enable_in_development: true mhv_secure_messaging_recipient_combobox: actor_type: user description: Disables/Enables Secure Messaging combobox in recipient dropdown on Start a new message page mhv_secure_messaging_read_receipts: actor_type: user description: Disables/Enables Secure Messaging read receipts enable_in_development: true mhv_secure_messaging_milestone_2_aal: actor_type: user description: Disables/Enables Secure Messaging AAL Milestone 2 enable_in_development: true mhv_secure_messaging_policy_va_patient: actor_type: user description: Disables/Enables Secure Messaging policy check for VA patient mhv_secure_messaging_custom_folders_redesign: actor_type: user description: Disables/Enables Secure Messaging Custom Folders Redesign enable_in_development: true mhv_secure_messaging_large_attachments: actor_type: user description: Disables/Enables sending large attachments in Secure Messaging using AWS S3 upload method for all eligible messages to Vista or OH recipients enable_in_development: false mhv_secure_messaging_curated_list_flow: actor_type: user description: Disables/Enables Secure Messaging Curated List Flow enable_in_development: true mhv_secure_messaging_recent_recipients: actor_type: user description: Disables/Enables Secure Messaging Recent Recipients enable_in_development: true mhv_secure_messaging_612_care_systems_fix: actor_type: user description: Enables/disables fix for 612 care systems bug just in case of catastrophic failure during shutdown mhv_secure_messaging_medications_renewal_request: actor_type: user description: Enables/disables Secure Messaging Medications Renewal Request feature enable_in_development: true mhv_bypass_downtime_notification: actor_type: user description: When enabled, bypass the MHV downtime notification; intended for smoke testing in production enable_in_development: true mhv_medical_records_ccd_extended_file_types: actor_type: user description: Enables CCD downloads in XML, HTML, PDF w/ support for OH and VistA facilities enable_in_development: true mhv_medical_records_ccd_oh: actor_type: user description: Enables users w/ Oracle Health facilities to download an OH CCD enable_in_development: true mhv_medical_records_merge_cvix_into_scdf: actor_type: user description: Combines CVIX lab record list with the SCDF/Unified lab record list enable_in_development: true mhv_medical_records_migrate_ccd_to_s3: actor_type: user description: Enables the switch to an s3 bucket for the CCD endpoints enable_in_development: true mhv_medical_records_migrate_dicom_to_s3: actor_type: user description: Enables the switch to an s3 bucket for the DICOM endpoint enable_in_development: true mhv_medical_records_phr_refresh_on_login: actor_type: user description: Enables/disables the PHR refresh for MHV users when logging into VA.gov enable_in_development: true mhv_medical_records_new_eligibility_check: actor_type: user description: Enables/disables Medical Records new access policy enable_in_development: true mhv_medical_records_filter_and_sort: actor_type: user description: Enables/disables Medical Records new filter and sort changes enable_in_development: true mhv_medical_records_retry_next_page: actor_type: user description: Enables/disables with_retries when getting the next page enable_in_development: true mhv_medical_records_support_backend_pagination_allergy: actor_type: user description: Enables/disables backend caching/pagination for allergies enable_in_development: true mhv_medical_records_support_backend_pagination_care_summary_note: actor_type: user description: Enables/disables backend caching/pagination for care summaries & notes enable_in_development: true mhv_medical_records_support_backend_pagination_health_condition: actor_type: user description: Enables/disables backend caching/pagination for health conditions enable_in_development: true mhv_medical_records_support_backend_pagination_lab_test: actor_type: user description: Enables/disables backend caching/pagination for labs & tests enable_in_development: true mhv_medical_records_support_backend_pagination_vaccine: actor_type: user description: Enables/disables backend caching/pagination for vaccines enable_in_development: true mhv_medical_records_support_backend_pagination_vital: actor_type: user description: Enables/disables backend caching/pagination for vitals enable_in_development: true mhv_medical_records_support_new_model_allergy: actor_type: user description: Enables/disables the use of pre-transformed allergy objects enable_in_development: true mhv_medical_records_support_new_model_care_summary_note: actor_type: user description: Enables/disables the use of pre-transformed care summary/note objects enable_in_development: true mhv_medical_records_support_new_model_health_condition: actor_type: user description: Enables/disables the use of pre-transformed health condition objects enable_in_development: true mhv_accelerated_delivery_vaccines_enabled: actor_type: user description: Enables/disables the new immunizations v2 endpoint that uses LH as a datasource and aligns with data model that the mobile app uses enable_in_development: false mhv_medical_records_support_new_model_lab_test: actor_type: user description: Enables/disables the use of pre-transformed lab/test objects enable_in_development: true mhv_medical_records_support_new_model_vaccine: actor_type: user description: Enables/disables the use of pre-transformed vaccine objects enable_in_development: true mhv_medical_records_support_new_model_vital: actor_type: user description: Enables/disables the use of pre-transformed vital objects enable_in_development: true mhv_medications_display_allergies: actor_type: user description: Enables/disables allergies and reactions data enable_in_development: true mhv_medications_cerner_pilot: actor_type: user description: Enables/disables Medications Cerner Transition Pilot environment on VA.gov and VHAB mhv_enable_aal_integration: actor_type: user description: Enables/disables integration with MHV's AAL-creation endpoint enable_in_development: true mhv_hash_id_for_mhv_session_locking: actor_type: user description: Hash the MHV Correlation ID when locking MHV sessions enable_in_development: true mhv_modern_cta_links: actor_type: user description: CTA widget links point to va.gov services mhv_medications_display_new_cerner_facility_alert: actor_type: user description: Enables/disables new facility alert for OH/Cerner users in medications enable_in_development: true mhv_medications_display_pending_meds: actor_type: user description: Enables/disables pending medications related work enable_in_development: true mhv_medications_display_refill_progress: actor_type: user description: Enables/disables refill progress related work enable_in_development: true mhv_medications_dont_increment_ipe_count: actor_type: user description: when this flag is on the count will not be incremented for ipe enable_in_development: true mhv_medications_partial_fill_content: actor_type: user description: Enables/disables partial fill content enable_in_development: true mhv_medications_v2_status_mapping: actor_type: user description: Enables V2 status mapping for prescriptions (consolidates VistA/Oracle Health statuses into simplified groups) enable_in_development: false mhv_milestone_2_changes_enabled: actor_type: user description: Enables MHV Milestone 2 changes mhv_header_links: actor_type: user description: Display My HealtheVet and My VA links in the site header enable_in_development: true mhv_email_confirmation: actor_type: user description: Enables/disables email confirmation alerts on MHV and My VA pages mobile_allergy_intolerance_model: actor_type: user description: For mobile app, enalbes use of strict models for parsing allergy intolerance mobile_api: actor_type: user description: API endpoints consumed by the VA Mobile App (iOS/Android) mobile_filter_doc_27_decision_letters_out: actor_type: user description: filters out doc type 27 decision letters out of list of decision letters for mobile enable_in_development: false mobile_claims_log_decision_letter_sent: actor_type: user description: Logs decision letter info on both claims and decision letter endpoint enable_in_development: true mobile_coe_letter_use_lgy_service: actor_type: user description: Use LGY service for retrieving COE letters in the mobile app enable_in_development: false multiple_address_10_10ez: actor_type: cookie_id description: > [Front-end only] When enabled, the 10-10EZ will collect a home and mailing address for the veteran vs only collecting a single, "permanent" address. organic_conversion_experiment: actor_type: user description: Toggle to enable login.gov create account experiment profile_show_paperless_delivery: actor_type: user description: Toggle user's ability to see and modify paperless delivery settings page. pcpg_trigger_action_needed_email: actor_type: user description: Set whether to enable VANotify email to Veteran for PCPG failure exhaustion pdf_fill_redesign_form_jumplinks: actor_type: user description: Enable jumplinks from form to overflow page, when using v2 PDF overflow generator pdf_fill_redesign_overflow_jumplinks: actor_type: user description: Enable jumplinks from overflow page back to form, when using v2 PDF overflow generator pension_error_email_notification: actor_type: cookie_id description: Toggle sending of the Action Needed email notification pension_submitted_email_notification: actor_type: cookie_id description: Toggle sending of the Submission in Progress email notification pension_received_email_notification: actor_type: cookie_id description: Toggle sending of the Received email notification pension_persistent_attachment_error_email_notification: actor_type: cookie_id description: Toggle sending of the Persistent Attachment Error email notification pension_itf_validate_data_logger: actor_type: user description: Toggle sending of the ITF Validate Data to Rails Logger enable_in_development: true pension_pdf_form_alignment: actor_type: user description: Toggle for the new PDF form alignment update enable_in_development: true pre_entry_covid19_screener: actor_type: user description: > Toggle for the entire pre-entry covid 19 self-screener available at /covid19screener and to be used by visitors to VHA facilities in lieu of manual screening with a VHA employee. This toggle is owned by Patrick B. and the rest of the CTO Health Products team. profile_contact_info_page_ui_refresh: actor_type: user description: Display updated UI/UX for the profile Contact Information page. profile_enhanced_military_info: actor_type: user description: When enabled, /v1/profile/military_info endpoint will return all military information for a user. profile_international_phone_numbers: actor_type: user description: Enables international phone number support on VA.gov profile. profile_lighthouse_rating_info: actor_type: user description: When enabled, will request disability rating info data from lighthouse API. profile_user_claims: actor_type: user description: When enabled, /v0/user will return user profile claims for accessing service endpoints. profile_show_mhv_notification_settings_email_appointment_reminders: actor_type: user description: Show/Hide the email channel for Health appointment reminders notifications profile_show_mhv_notification_settings_email_rx_shipment: actor_type: user description: Show/Hide the email channel for Prescription shipping notifications profile_show_mhv_notification_settings_new_secure_messaging: actor_type: user description: Display MHV notification settings - New secure message notifications profile_show_mhv_notification_settings_medical_images: actor_type: user description: Display MHV notification settings - Medical images/reports notifications profile_show_military_academy_attendance: actor_type: user description: When enabled, profile service history will include military academy attendance. enable_in_development: true profile_hide_direct_deposit: actor_type: user description: Hides the Profile - Direct Deposit page content during a service outage enable_in_development: false profile_hide_health_care_contacts: actor_type: user description: Hides the health care contacts section on the Profile enable_in_development: true profile_limit_direct_deposit_for_non_beneficiaries: actor_type: user description: Limits the Direct Deposit page functionality based on the veteranStatus property. enable_in_development: true profile_show_credential_retirement_messaging: actor_type: user description: Show/hide MHV and DS Logon credential retirement messaging in profile profile_show_new_health_care_copay_bill_notification_setting: actor_type: user description: Show/Hide the Health care copay bill section of notifications in profile profile_show_privacy_policy: actor_type: user description: Show/Hide the privacy policy section on profile pages profile_show_pronouns_and_sexual_orientation: actor_type: user description: Show/hide Pronouns and Sexual Orientation fields on profile page profile_show_quick_submit_notification_setting: actor_type: user description: Show/Hide the quick submit section of notification settings in profile profile_validate_address_when_no_candidate_found: actor_type: user description: When enabled, a CandidateAddressNotFound error will be followed up by a call to the validate endpoint profile_show_no_validation_key_address_alert: actor_type: user description: Show/Hide alert messages when no validationKey is returned from the address_validation endpoint profile_use_experimental: description: Use experimental features for Profile application - Do not remove enable_in_development: true actor_type: user profile_use_vafsc: description: Use VA Forms System Core for forms instead of schema based forms actor_type: user enable_in_development: true profile_2_enabled: actor_type: user description: Enables the new Profile 2.0 experience on VA.gov enable_in_development: true profile_health_care_settings_page: actor_type: user description: Enables the new Health Care Settings page within the Profile on VA.gov enable_in_development: true profile_scheduling_preferences: actor_type: user description: Enables the API call to retrieve Scheduling Preferences within the Health Care Settings page in Profile on VA.gov enable_in_development: true pw_ehr_cta_use_slo: actor_type: user description: Use single-logout (SLO) paths for Public Websites-managed EHR CTAs my_va_experimental: actor_type: user description: Use for experimental features for My VA application (general) my_va_experimental_frontend: actor_type: user description: Use for experimental features for My VA application (frontend) my_va_experimental_fullstack: actor_type: user description: Use for experimental features for My VA application (fullstack) enable_in_development: true my_va_hide_notifications_section: actor_type: user description: Hides the Notifications section on My VA enable_in_development: true my_va_notification_component: actor_type: user description: Enable users to see va-notification component on My VA enable_in_development: true my_va_notification_dot_indicator: actor_type: user description: Enable dot indicator for notifications my_va_enable_mhv_link: actor_type: user description: Enables the "Visit MHV" CTA link under Health care section my_va_new_mhv_urls: actor_type: user description: Updates URLs for the "Health care" section of My VA my_va_mhv_link_design_update: actor_type: user description: Updates to hyperlink design for the "Health care" section of My VA my_va_update_errors_warnings: actor_type: user description: Update all errors and warnings on My VA for consistency (will remove when va-notification component is released) my_va_lighthouse_uploads_report: actor_type: user description: Use lighthouse /uploads/report endpoint for Form status my_va_form_submission_pdf_link: actor_type: user description: Enables users to view PDF link within submitted forms cards rated_disabilities_detect_discrepancies: actor_type: user description: When enabled, the rated disabilities application will check for discrepancies between the number of rated disabilities returned by EVSS and Lighthouse enable_in_development: true rated_disabilities_sort_ab_test: actor_type: user description: Allows us to set up AB test of sorting on rated disabilities app rated_disabilities_use_lighthouse: actor_type: user description: When enabled, the rated disabilities application uses Lighthouse instead of EVSS enable_in_development: true saved_claim_pdf_overflow_tracking: actor_type: user description: When enabled, record metrics for claims which have overflow in the generated pdf enable_in_development: true schema_contract_appointments_index: actor_type: user description: Enables schema validation for the appointments service index fetch. schema_contract_claims_and_appeals_get_claim: actor_type: user description: Enables schema validation for the claims and appeals service get claim fetch. search_representative: actor_type: user description: Enable frontend application and cta for Search Representative application enable_in_development: true search_gov_maintenance: actor_type: user description: Use when Search.gov system maintenance impacts sitewide search enable_in_development: true show526_wizard: actor_type: user description: This determines when the wizard should show up on the form 526 intro page enable_in_development: true show_edu_benefits_0994_wizard: actor_type: user description: This determines when the wizard should show up on the 0994 introduction page show_edu_benefits_1990_wizard: actor_type: user description: This determines when the wizard should show up on the 1990 introduction page show_edu_benefits_1995_wizard: actor_type: user description: This determines when the wizard should show up on the 1995 introduction page show_edu_benefits_5490_wizard: actor_type: user description: This determines when the wizard should show up on the 5490 introduction page show_edu_benefits_5495_wizard: actor_type: user description: This determines when the wizard should show up on the 5495 introduction page show_financial_status_report: actor_type: user description: Enables VA Form 5655 (Financial Status Report) enable_in_development: true show_financial_status_report_wizard: actor_type: user description: Enables the Wizard for VA Form 5655 (Financial Status Report) enable_in_development: true show_financial_status_report_streamlined_waiver: actor_type: user description: Enables the Streamlined Waiver for VA Form 5655 (Financial Status Report) enable_in_development: true show_form_i18n: actor_type: user description: Enables the internationalization features for forms enable_in_development: true show_meb_1990EZ_maintenance_alert: actor_type: user description: Displays an alert to users on 1990EZ intro page that the Backend Service is Down. enable_in_development: false show_meb_1990EZ_R6_maintenance_message: actor_type: user description: Displays an alert to users on 1990EZ intro page that the Backend Service is Down. enable_in_development: false show_meb_1990E_maintenance_alert: actor_type: user description: Displays an alert to users on 1990E intro page that the Backend Service is Down. enable_in_development: false show_meb_1990E_R6_maintenance_message: actor_type: user description: Displays an alert to users on 1990E intro page that the Backend Service is Down. enable_in_development: false show_meb_letters_maintenance_alert: actor_type: user description: Displays an alert to users on Letters Inbox page that the Backend Service is Down. enable_in_development: false show_meb_enrollment_verification_maintenance_alert: actor_type: user description: Displays an alert to users on Enrollment Verification intro page that the Backend Service is Down. enable_in_development: false show_meb_international_address_prefill: actor_type: user description: Enhances form prefilling to include international address. enable_in_development: true show_meb_service_history_categorize_disagreement: actor_type: user enable_in_development: false show_meb_5490_maintenance_alert: actor_type: user description: Displays an alert to users on 5490 intro page that the Backend Service is Down. enable_in_development: false show_meb_5490_1990e_text_update: actor_type: user description: Displays updated text to more clearly explain who needs to fill out form enable_in_development: false show_one_va_debt_letter: actor_type: user description: Enables the One VA Debt Letter feature enable_in_development: true show_cdp_one_thing_per_page: actor_type: user description: Enables the Payment History MVP features for development enable_in_development: true vha_show_payment_history: actor_type: user description: Enables the VHA Payment history (including copay resolution) feature for combined debt portal enable_in_development: true meb_1606_30_automation: actor_type: user description: Enables MEB form to handle Chapter 1606/30 forms as well as Chapter 33. meb_exclusion_period_enabled: actor_type: user description: enables exclusion period checks enable_in_development: false meb_dpo_address_option_enabled: actor_type: user description: enables DPO option on address field enable_in_development: false meb_kicker_notification_enabled: actor_type: user description: enables kicker notification on additional consideration questions enable_in_development: false meb_auto_populate_relinquishment_date: actor_type: user description: Flag to autofill datepicker for reliinquishment date enable_in_development: true meb_bank_info_confirmation_field: actor_type: user description: Enables additional confirmation field for bank information pages across MEB applications enable_in_development: true meb_1995_re_reroute: actor_type: user description: Show the questionnaire to determine where to re-route the user meb_parent_guardian_step: actor_type: user description: Allows beneficiaries under 18 years old to enter their parent/guardian information via MEB enable_in_development: true dgi_rudisill_hide_benefits_selection_step: actor_type: user description: Hides benefit selection page on original claims application. enable_in_development: false show_forms_app: actor_type: user description: Enables the TOE form to be displayed. enable_in_development: true sign_in_service_enabled: actor_type: cookie_id description: Enables the ability to use OAuth authentication via the Sign in Service (Identity) enable_in_development: true mhv_credential_button_disabled: actor_type: user description: Enables the ability to hide the My HealtheVet sign in button (Identity) enable_in_development: true portal_notice_interstitial_enabled: actor_type: user description: Enables the MHV portal notice interstital page enable_in_development: true sign_in_modal_v2: actor_type: user description: Enables new page design of Sign In modal and USiP enable_in_development: false confirm_contact_email_interstitial_enabled: actor_type: user description: Enables users with emails tied to MHV classic accounts to be redirected to the confirm contact email interstitial page (Identity) enable_in_development: false medical_copays_zero_debt: actor_type: user description: Enables zero debt balances feature on the medical copays application enable_in_development: false show_healthcare_experience_questionnaire: actor_type: cookie_id description: Enables showing the pre-appointment questionnaire feature. enable_in_development: true show_generic_debt_card_myva: actor_type: user description: Enables the generic debt card on My VA enable_in_development: true show_new_refill_track_prescriptions_page: actor_type: user description: This will show the non-Cerner-user and Cerner-user content for the page /health-care/refill-track-prescriptions/ show_new_schedule_view_appointments_page: actor_type: user description: This will show the non-Cerner-user and Cerner-user content for the page /health-care/schedule-view-va-appointments/ show_preneed_mulesoft_integration: actor_type: user description: Show the va.gov to mulsoft work for Pre-Need form. show_updated_fry_dea_app: actor_type: user description: Show the new version of the Fry/DEA form. spool_testing_error_2: actor_type: user description: Enables Slack notifications for CreateDailySpoolFiles spool_testing_error_3: actor_type: user description: Enables email notifications for CreateDailySpoolFiles errors subform_8940_4192: actor_type: user description: Form 526 subforms for unemployability & connected employment information enable_in_development: true unified_search_sync_research_and_support: actor_type: user description: Controls on/off status for a redis job that syncs R&S data to Kendra data source enable_in_development: false use_veteran_models_for_appoint: actor_type: user description: Use the original veteran_x models to power Appoint a Rep entity search enable_in_development: true va1010_forms_eesummary_rest_api_enabled: actor_type: user description: Utilizes the Enrollment System's eeSummary REST API enable_in_development: true va_notify_custom_errors: actor_type: user description: Custom error classes instead of the generic Common::Exceptions::BackendServiceException va_notify_custom_bearer_tokens: actor_type: user description: Iterates through Settings.vanotify.service_callback_tokens for token matching va_notify_push_notifications: actor_type: user description: Enables initialization of push notification client in VA Notify va_online_scheduling: actor_type: user description: Allows veterans to view their VA and Community Care appointments enable_in_development: true va_online_scheduling_booking_exclusion: actor_type: user description: Permits the exclusion of Lovell sites from being scheduled prior to Oracle Health cutover enable_in_development: true va_online_scheduling_cancellation_exclusion: actor_type: user description: Permits the exclusion of Lovell sites from cancellations prior to Oracle Health cutover enable_in_development: true va_online_scheduling_cancel: actor_type: user description: Allows veterans to cancel VA appointments enable_in_development: true va_online_scheduling_community_care: actor_type: user description: Allows veterans to submit requests for Community Care appointments enable_in_development: true va_online_scheduling_cscs_migration: actor_type: user description: swaps the scheduling configurations endpoint from MFS to CSCS enable_in_development: true va_online_scheduling_direct: actor_type: user description: Allows veterans to directly schedule VA appointments enable_in_development: true va_online_scheduling_requests: actor_type: user description: Allows veterans to submit requests for VA appointments enable_in_development: true va_online_scheduling_vaos_alternate_route: actor_type: user enable_in_development: false description: Toggle for the vaos module to use an alternate vaos-service route va_dependents_verification: actor_type: user description: Toggles new features for the dependents verification form va_dependents_v2: actor_type: user description: Allows us to toggle between V1 and V2 of the 686c-674 forms. va_dependents_v2_banner: actor_type: user description: Allows us to toggle a form maintenance banner on the V1 form for pre-launch. va_dependents_v3: actor_type: user description: Allows us to toggle v3 of the 686c-674 form. va_dependents_bgs_extra_error_logging: actor_type: user description: Allows us to toggle extra error logging for BGS in 686C-674 va_dependents_browser_monitoring_enabled: actor_type: user description: Allows us to toggle Datadog RUM/LOG monitoring for the 686C-674 va_dependents_fully_digital_form_project: actor_type: user description: Allows us to toggle the fully digital form project for 686C-674 va_dependents_net_worth_and_pension: actor_type: user description: Allows us to toggle the net worth and pension questions on the 686C-674 va_dependents_new_fields_for_pdf: actor_type: user description: Allows us to toggle the new fields on the front end for 686C-674 va_dependents_duplicate_modals: actor_type: user description: Allows us to toggle duplicate modals for the 686C-674 enable_in_development: true va_online_scheduling_enable_OH_cancellations: actor_type: user enable_in_development: true description: Allows appointment cancellations to be routed to Oracle Health sites. va_online_scheduling_enable_OH_eligibility: actor_type: user enable_in_development: true description: Toggle for routing eligibility requests to the VetsAPI Gateway Service(VPG) instead of vaos-service va_online_scheduling_enable_OH_slots_search: actor_type: user enable_in_development: true description: Toggle for routing slots search requests to the VetsAPI Gateway Service(VPG) instead of vaos-service va_online_scheduling_cc_direct_scheduling: actor_type: user description: Enables CC direct scheduling. enable_in_development: true va_online_scheduling_cc_direct_scheduling_chiropractic: actor_type: user description: Adds chiropractic to the list of services that can be direct scheduled. enable_in_development: true va_online_scheduling_community_care_cancellations: actor_type: user description: Enables community care direct scheduled cancellations. enable_in_development: true va_online_scheduling_use_vpg: actor_type: user enable_in_development: true description: Toggle for routing appointment requests to the VetsAPI Gateway Service(VPG) instead of vaos-service. va_online_scheduling_recent_locations_filter: actor_type: user enable_in_development: true description: Toggle for displaying the most recent facilities on the Choose your VA location page. va_online_scheduling_OH_direct_schedule: actor_type: user enable_in_development: true description: Toggle to enable direct scheduling workflow for Oracle Health appointments. va_online_scheduling_OH_request: actor_type: user enable_in_development: true description: Toggle to enable request workflow for Oracle Health appointments. va_online_scheduling_parallel_travel_claims: actor_type: user enable_in_development: true description: > Toggle to enable parallel fetching of appointments and travel claims in get_appointments. When enabled, appointments and travel claims are fetched concurrently, reducing response time. va_online_scheduling_remove_podiatry: actor_type: user enable_in_development: true description: Toggle to remove Podiatry from the type of care list when scheduling an online appointment. va_online_scheduling_list_view_clinic_info: actor_type: user enable_in_development: true description: Toggle to display clinic name and location on appointment list and print views. va_online_scheduling_add_OH_avs: actor_type: user enable_in_development: true description: Toggle to include After Visit Summary in Oracle Health appointments. va_online_scheduling_immediate_care_alert: actor_type: user enable_in_development: true description: Toggle for using the new immediate care alert page at the start of the scheduling flow. va_online_scheduling_remove_facility_config_check: actor_type: user enable_in_development: true description: Toggle to remove the redundant call to facility configurations when determining patient eligibility. va_online_scheduling_use_browser_timezone: actor_type: user enable_in_development: true description: Toggle to default to browser timezone when facility timezone is unavailable. vaos_appointment_notification_callback: actor_type: user enable_in_development: true description: Enables custom email delivery callback for VAOS appointment status notifications vba_documents_virus_scan: actor_type: user description: ClamAV virus scanning for Benefits Intake API upload submissions veteran_onboarding_beta_flow: actor_type: user description: Conditionally display the new veteran onboarding flow to user veteran_onboarding_show_to_newly_onboarded: actor_type: user description: Conditionally display the new veteran onboarding flow to user, based upon number of days since verified veteran_onboarding_show_welcome_message_to_new_users: actor_type: user description: Conditionally display the "Welcome to VA" message to new (LOA1 or LOA3) users enable_in_development: false vet_status_pdf_logging: actor_type: user description: Enables the Veteran Status Card to log PDF download events/failures vre_cutover_notice: actor_type: user description: Enables the cutover notice for VR&E users, indicating the timeframe for new form version vre_prefill_name: actor_type: user description: Enables prefill transformation for veteran name fields in the Chapter 31 form vre_use_new_vfs_notification_library: actor_type: user description: Whether or not to use the VFS library for interacting with VA Notify vre_modular_api: actor_type: user description: Enables calls to the modularized VRE API vre_send_icn_to_res: actor_type: user description: Enables sending ICN to RES service vre_track_submissions: actor_type: user description: In VRE application, create form submission/attempt records priority_processing_request_apply_vsi_flash: actor_type: user description: Enables VSI (Very Seriously Injured) flash functionality for form 20-10207 submissions enable_in_development: false show_edu_benefits_1990EZ_Wizard: actor_type: user description: Navigates user to 1990EZ or 1990 depending on form questions. enable_in_development: true show_dashboard_notifications: actor_type: user description: Enables on-site notifications check_va_inbox_enabled: actor_type: user description: Enables check inbox link dhp_connected_devices_fitbit: actor_type: user description: Enables linking between VA.gov account and fitbit account payment_history: actor_type: user description: Allows manual enabling/disabling payment history when BGS is acting up (5 min response times) enable_in_development: true cdp_payment_history_vba: actor_type: user description: Enables showing the overpayment and summary pages for the CDP Payment History enable_in_development: true show_meb_dgi40_features: actor_type: user description: Enables the UI integration with the meb dgi enable_in_development: true show_meb_dgi42_features: actor_type: user description: Enables UI updates for meb dgi 42 enable_in_development: true show_meb_enhancements: actor_type: user description: Provides a flag wrapper for minor code changes to be gated from Prod. enable_in_development: true show_meb_enhancements_06: actor_type: user description: Provides a flag wrapper for minor code changes to be gated from Prod. show_meb_enhancements_08: actor_type: user description: Provides a flag wrapper for minor code changes to be gated from Prod. enable_in_development: true show_meb_enhancements_09: actor_type: user description: Provides a flag wrapper for minor code changes to be gated from Prod. enable_in_development: true meb_gate_person_criteria: actor_type: user description: Flag to use Person Criteria on Submission service enable_in_development: true supply_reordering_sleep_apnea_enabled: actor_type: user description: Enables sleep apnea supplies to be ordered in the supply reorder tool / MDOT. enable_in_development: true toe_dup_contact_info_call: actor_type: user description: Flag to use contact info call and modal enable_in_development: true toe_short_circuit_bgs_failure: actor_type: user description: Flag to use begin rescue block for BGS call enable_in_development: true toe_high_school_info_change: actor_type: user description: Flag to change order of high school info page enable_in_development: false move_form_back_button: actor_type: user description: Test moving form back button to the top of the page mobile_cerner_transition: actor_type: user description: For mobile app, a facility is being transitioned to cerner. mobile_iam_authentication_disabled: actor_type: user description: For mobile app, disable iam authentication method. mobile_military_indicator_logger: actor_type: user description: For mobile app, enables logging of military discharge codes mobile_appeal_model: actor_type: user description: For mobile app, enables use of strict models for parsing appeals mobile_push_register_logging: actor_type: user description: For mobile app, logs push register errors for debugging form526_backup_submission_temp_killswitch: actor_type: user description: Provide a temporary killswitch to disable form526 backup submission if something were to go awry virtual_agent_show_ai_disclaimer: actor_type: user description: Enables a disclaimer for ai generated content - managed by virtual agent team virtual_agent_show_floating_chatbot: actor_type: user description: Enables a floating chatbot on the chatbot page - managed by virtual agent team disability_compensation_email_veteran_on_polled_lighthouse_doc_failure: actor_type: user description: Sends document upload failure emails when polled doc uploaded to Lighthouse has failed to process at Lighthouse disability_compensation_lighthouse_document_service_provider: actor_type: user description: If enabled uses the lighthouse documents service disability_compensation_prevent_submission_job: actor_type: user description: If enabled, the submission form526 record will be created, but there will be submission job disability_compensation_use_api_provider_for_bdd_instructions: actor_type: user description: Provide a temporary killswitch for using the ApiProviderFactory to select an API for uploading BDD instructions disability_compensation_upload_bdd_instructions_to_lighthouse: actor_type: user description: If enabled uploads BDD instructions to Lighthouse Benefits Documents API instead of EVSS disability_compensation_0781v2_extras_redesign: actor_type: user description: If enabled, the 0781v2 overflow page will use the new design enable_in_development: true disability_compensation_use_api_provider_for_0781_uploads: actor_type: user description: Provide a temporary killswitch for using the ApiProviderFactory to select an API for uploading 0781/a forms disability_compensation_upload_0781_to_lighthouse: actor_type: user description: If enabled uploads 0781/a forms to Lighthouse Benefits Documents API instead of EVSS disability_compensation_use_api_provider_for_submit_veteran_upload: actor_type: user description: Provide a temporary killswitch for using the ApiProviderFactory to select an API for uploading Veteran Evidence disability_compensation_upload_veteran_evidence_to_lighthouse: actor_type: user description: If enabled uploads Veteran Evidence to Lighthouse Benefits Documents API instead of EVSS disablity_benefits_browser_monitoring_enabled: actor_type: user description: Datadog RUM monitoring for disability benefits applications virtual_agent_use_sts_authentication: actor_type: user description: Use STS authentication for the virtual agent chatbot application virtual_agent_chatbot_session_persistence_enabled: actor_type: user description: Gate replay/persistence behavior for Virtual Agent (reuse conversation, watermark replay, token reuse) notification_center: actor_type: user description: Enable Notification Center enable_in_development: true nod_part3_update: actor_type: user description: NOD update to latest form, part III box 11 enable_in_development: true nod_browser_monitoring_enabled: actor_type: user description: NOD Datadog RUM monitoring hlr_browser_monitoring_enabled: actor_type: user description: HLR Datadog RUM monitoring sc_browser_monitoring_enabled: actor_type: user description: Supplemental Claim Datadog RUM monitoring burial_browser_monitoring_enabled: actor_type: user description: Burial Datadog RUM monitoring burial_confirmation_page: actor_type: user description: Toggle showing the updated confirmation page enable_in_development: true burial_extras_redesign_enabled: actor_type: user description: Enable the new overflow design enable_in_development: true burial_form_enabled: actor_type: user description: Enable the burial form burial_error_email_notification: actor_type: cookie_id description: Toggle sending of the Action Needed email notification burial_received_email_notification: actor_type: cookie_id description: Toggle sending of the Received email notification burial_submitted_email_notification: actor_type: cookie_id description: Toggle sending of the Burial Submission in Progress email notification burial_persistent_attachment_error_email_notification: actor_type: cookie_id description: Toggle sending of the Persistent Attachment Error email notification burial_bpds_service_enabled: actor_type: user description: Enables the BPDS service for Burial pension_form_enabled: actor_type: user description: Enable the pension form pension_browser_monitoring_enabled: actor_type: user description: Pension Datadog RUM monitoring pension_multiple_page_response: actor_type: user description: Implement multiple page response pattern enable_in_development: true pension_form_profile_module_enabled: actor_type: user description: Use the module version of the FormProfile pension_kafka_event_bus_submission_enabled: actor_type: user description: Enable the EventBusSubmissionJob for Kafka pension_extras_redesign_enabled: actor_type: user description: Enable the new overflow design enable_in_development: true employment_questionnaires_form_enabled: enable_in_development: true actor_type: user description: Enable form 21-4140 EMPLOYMENT QUESTIONNAIRE employment_questionnaires_browser_monitoring_enabled: actor_type: user description: Employment Questionnaire form Datadog RUM monitoring employment_questionnaires_content_updates: actor_type: user description: Implement plain language and content updates employment_questionnaires_error_email_notification: actor_type: cookie_id description: Toggle sending of the Action Needed email notification employment_questionnaires_received_email_notification: actor_type: cookie_id description: Toggle sending of the Received email notification employment_questionnaires_submitted_email_notification: actor_type: user description: Toggle sending of the Submission in Progress email notification employment_questionnaires_persistent_attachment_error_email_notification: actor_type: cookie_id description: Toggle sending of the Persistent Attachment Error email notification income_and_assets_form_enabled: actor_type: user description: Enable form 21P-0969 Update Income and Assets Evidence Form income_and_assets_browser_monitoring_enabled: actor_type: user description: Income and Assets Datadog RUM monitoring income_and_assets_content_updates: actor_type: user description: Implement plain language and content updates income_and_assets_error_email_notification: actor_type: cookie_id description: Toggle sending of the Action Needed email notification income_and_assets_received_email_notification: actor_type: cookie_id description: Toggle sending of the Received email notification income_and_assets_submitted_email_notification: actor_type: user description: Toggle sending of the Submission in Progress email notification income_and_assets_persistent_attachment_error_email_notification: actor_type: cookie_id description: Toggle sending of the Persistent Attachment Error email notification income_and_assets_bpds_service_enabled: actor_type: user description: Enables the BPDS service for Income and Assets increase_compensation_form_enabled: enable_in_development: true actor_type: user description: Enable form 21-8940 APPLICATION FOR INCREASED COMPENSATION BASED ON UNEMPLOYABILITY increase_compensation_browser_monitoring_enabled: actor_type: user description: Increase Compensation form Datadog RUM monitoring increase_compensation_content_updates: actor_type: user description: Implement plain language and content updates increase_compensation_error_email_notification: actor_type: cookie_id description: Toggle sending of the Action Needed email notification increase_compensation_received_email_notification: actor_type: cookie_id description: Toggle sending of the Received email notification increase_compensation_submitted_email_notification: actor_type: user description: Toggle sending of the Submission in Progress email notification increase_compensation_persistent_attachment_error_email_notification: actor_type: cookie_id description: Toggle sending of the Persistent Attachment Error email notification pbb_forms_require_loa3: actor_type: user description: Require LOA3 authentication to access Pension, Burials, and Income and Assets forms central_mail_benefits_intake_submission: actor_type: user description: Enable central mail claims submission uses Benefits Intake API ecc_benefits_intake_submission: actor_type: user description: Enable education and career counseling claim submissions to use Benefits Intake API sob_updated_design: actor_type: user description: >- Controls how the GI Bill State of Benefits (SOB) application is presented. When enabled: it use the new SOB application that works 24/7. When disabled: it will use the old SOB application that only works from 0600 to 2200 hrs travel_pay_power_switch: actor_type: user enable_in_development: true description: >- Main switch for the Travel Pay feature on VA.gov using the new BTSSS (travel pay) API. Enabled - Requests are handled as normal. Disabled - Requests are not handled. Server returns a 503 (Service Unavailable) until re-enabled. travel_pay_view_claim_details: actor_type: user enable_in_development: true description: >- A frontend-focused switch that toggles visibility of and access to the Travel Pay claim details page and entry point (features toggled together). Enabled - Entry point link and claim details page are viewable. Disabled - Entry point link and claim details page are not viewable. travel_pay_enable_complex_claims: actor_type: user enable_in_development: true description: >- A switch that toggles the availability of the expense and document submission features for travel pay claims. This feature flag can be retired when the feature is deployed to 100% of logged-in users in production for > 30 days. Enabled - Requests are handled as normal. Users can submit various types of expenses (mileage, lodging, meal, other) to their travel pay claims. Users can upload documents to their travel claims. Disabled - Requests are not handled. Server returns a 503 (Service Unavailable) until re-enabled. travel_pay_submit_mileage_expense: actor_type: user enable_in_development: true description: >- A switch that toggles availability of the submit mileage expense feature. Enabled - Requests are handled as normal. Frontend features are available per toggle settings. Disabled - Requests are not handled. Server returns a 503 (Service Unavailable) until re-enabled. Frontend features are not available. travel_pay_claims_management: actor_type: user enable_in_development: true description: >- A switch that toggles new claims management functionality. travel_pay_claims_management_decision_reason: actor_type: user enable_in_development: true description: >- A switch that toggles the front-end display of decision reason parsed from the decision letter document on the claim details page. Enabled - The Travel Pay FE will show a decision reason section on the claims details page if it receives decision reason text from the API. Disabled - The Travel Pay FE will hide the decision reason section on the claims details page. travel_pay_claims_management_decision_reason_api: actor_type: user enable_in_development: true description: >- A switch that toggles the decision reason API functionality, including finding decision letter documents and extracting decision reasons from them. The intention behind this flag is to be able deploy the decision reason parsing functionality ahead of the front-end display (travel_pay_claims_management_decision_reason) to gather data logs and ensure a working state. Enabled - Decision letter documents are parsed and the decision reason is extracted. Disabled - Decision letter documents are not parsed for the decision reason. travel_pay_appt_add_v4_upgrade: actor_type: user enable_in_development: true description: >- A switch that toggles the use of the v4 Travel Pay API for /appointments/find-or-add. Enabled - The find_or_create method will use Travel Pay API v4. Disabled - The find_or_create method will use Travel Pay API v2. yellow_ribbon_automated_date_on_school_search: actor_type: user description: Enable the automated date displayed in the Find a Yellow Ribbon school search results toggle_vye_address_direct_deposit_forms: actor_type: user description: Enable mailing address and direct deposit for VYE vye_login_widget: actor_type: user description: Enable Vye authentication widget toggle_vye_address_direct_deposit_forms_in_profile: actor_type: user description: Enable mailing address and direct deposit for VYE in profile page toggle_vye_application: actor_type: user description: Enable VYE military_benefit_estimates: actor_type: user description: swap order of the military details in GI search filters merge_1995_and_5490: actore_type: user description: Activating the combined 1995 and 5490 form mgib_verifications_maintenance: actor_type: user description: Used to show maintenance alert for MGIB Verifications search_use_v2_gsa: actor_type: cookie_id description: Swaps the Search Service's for one with an updated api.gsa.gov address enable_in_development: true show_yellow_ribbon_table: actor_type: cookie_id description: Used to show yellow ribbon table in Comparison Tool banner_update_alternative_banners: actor_type: user description: Used to toggle the DB updating of alternative banners banner_use_alternative_banners: actor_type: user description: Used to toggle use of alternative banners. fsr_wizard: actor_type: user description: Used to toggle the FSR wizard gi_comparison_tool_show_ratings: actor_type: user description: Display Veteran student ratings in GI comparison Tool gi_comparison_tool_programs_toggle_flag: actor_type: user description: Used to show links to programs page in comparison tool gi_comparison_tool_lce_toggle_flag: actor_type: user description: Used to show lce page in comparison tool va_notify_in_progress_metadata: actor_type: user description: If enabled, emails and sms sent through VaNotify::Service will be stored as notifications. va_notify_notification_creation: actor_type: user description: If enabled, emails and sms sent through VaNotify::Service will be stored as notifications. va_notify_request_level_callbacks: actor_type: user description: If enabled, emails and sms sent through VaNotify::Service will authenticate request-level callback data va_notify_delivery_status_update_job: actor_type: user description: If enabled, VANotify::DelieveryStatusUpdateJob will be used to query VANotify::Notifications is_DGIB_endpoint: actor_type: user description: used to call data from DGIB endpoints for MGIB VYE application lighthouse_veterans_health_debug_logging: actor_type: user description: Enable debug logging for Lighthouse Veterans Health API enable_in_development: false benefits_non_disability_ch31_v2: actor_type: user description: If enabled, use new form and api endpoint for Ch31 VR&E form is_updated_gi: actor_type: cookie_id description: If enabled, use updated gi design gi_ct_collab: actor_type: cookie_id description: If enabled, use VEBT/EDM team GI Comparison Tool homepage show_rudisill_1995: actor_type: user description: If enabled, show rudisill review in 22-1995 enable_lighthouse: actor_type: user description: If enabled, user will connect to lighthouse api in sob instead of evss benefits_intake_submission_status_job: actor_type: user description: Batch process FormSubmissionAttempts using ::BenefitsIntake::SubmissionStatusJob kafka_producer: actor_type: cookie_id description: Enables the Kafka producer for the VA.gov platform show_about_yellow_ribbon_program: actor_type: user description: If enabled, show additional info about the yellow ribbon program meb_address_validation_api: actor_type: user description: If enabled, address will be validated against addres validation endpointå enable_in_development: false toe_address_validation_api: actor_type: user description: If enabled, address will be validated against addres validation endpoint enable_in_development: false dea_fry_address_validation_api: actor_type: user description: If enabled, address will be validated against addres validation endpoint enable_in_development: false accredited_representative_portal_sort_by: actor_type: user description: Enables sort by in POA Request Search page accredited_representative_portal_profile: actor_type: user description: Enables Profile link on navigation dropdown forms_10215_10216_release: actor_type: user description: If enabled, show links to new forms instead of download links on SCO page form_10282_sftp_upload: actor_type: user description: If enabled, run daily job to process 10282 form submissions and upload resulting data to SFTP my_va_auth_exp_redesign_available_to_opt_in: actor_type: user description: When enabled, a user will see the option to switch to the redesigned experience of MyVA. my_va_auth_exp_redesign_enabled: actor_type: user description: When enabled, a user will see the redesigned experience of MyVA. vff_force_unique_file_name_date_property: actor_type: user description: Forces the unique_file_name method to use the date property in submission_archive.rb gi_ct_mapbox_mitigation: actor_type: user description: If enabled, hides search by location feature affected by MapBox loss my_va_display_all_lighthouse_benefits_intake_forms: actor_type: user description: When enabled, a user will see all submitted Lighthouse Benefits Intake forms in My VA for form status. my_va_display_decision_reviews_forms: actor_type: user description: When enabled, a user will see all submitted Lighthouse Decision Reviews forms in My VA for form status. my_va_browser_monitoring: actor_type: user description: Enables Datadog Real-Time User Monitoring in the MyVA dashboard application. va_online_scheduling_mental_health_history_filtering: actor_type: user enable_in_development: true description: When enabled, allows past visit filtering for Mental Health is_dgib_call_only: actor_type: user description: If enabled, the DGIB endpoint will only be called for MGIB VYE application show_vye_downtime_alert: actor_type: user description: If enabled, show the VYE downtime alert on the VYE application tsa_safe_travel_letter: actor_type: user description: Enables displaying TSA Safe Travel Letter on Letters page enable_in_development: true accredited_representative_portal_full_poa_redaction: actor_type: user description: Enables redaction for the Accredited Representative Portal POA requests vre_eligibility_status_updates: actor_type: user description: If enabled, show VRE eligibility content and status updates gi_feedback_tool_vet_tec_education_benefit: actor_type: user description: Includes the (VET TEC 2.0) option for selection under the Education Benefits question in the GI Bill® School Feedback Tool discover_your_benefits_browser_monitoring_enabled: actor_type: user description: Discover Your Benefits Datadog RUM monitoring gi_comparison_tool_cautionary_info_update: actor_type: user description: Enables updated cautionary info student feedback ui for GI Comparison Tool va_online_scheduling_add_substance_use_disorder: actor_type: user description: Enables substance use disorder as care related to mental health appointments with new codes enable_in_development: true va_online_scheduling_add_primary_care_mental_health_initiative: actor_type: user description: Enables PCMHI as care related to mental health appointments with new codes enable_in_development: true form10203_confirmation_email_with_silent_failure_processing: actor_type: user description: If enabled, confirmation email will be sent with silent failure processing form10297_confirmation_email_with_silent_failure_processing: actor_type: user description: If enabled, confirmation email will be sent with silent failure processing unique_user_metrics_logging: # System level feature flag actor_type: description: Enables unique user metrics logging for MHV Portal analytics. When disabled, no events will be recorded to database or sent to StatsD. enable_in_development: true form_8794_release: actor_type: user description: If enabled, show link to digitized form instead of PDF download on SCO page form_1919_release: actor_type: user description: If enabled, show link to digitized form instead of PDF download on SCO page auth_exp_email_verification_enabled: actor_type: user description: If enabled, a user will be required to verify their contact email address sidenav_526ez_enabled: actor_type: user description: If enabled, the 526EZ sidenav will be shown simple_forms_upload_supporting_documents: actor_type: user description: > Enables the upload_supporting_documents endpoint for scanned form uploads for supporting evidence. Owned by Simple Forms API team. form_0779_enabled: actor_type: user enable_in_development: true description: Enables form 21-0779 on vets-website vre_eligibility_status_phase_2_updates: actor_type: user description: If enabled, show VRE eligibility content and status updates for phase 2 form_530a_enabled: actor_type: user enable_in_development: true description: Enables form 21P-530a on vets-website form_4192_enabled: actor_type: user enable_in_development: true description: Enables form 21-4192 on vets-website form_2680_enabled: actor_type: user enable_in_development: true description: Enables form 21-2680 on vets-website fetch_1095b_from_enrollment_system: actor_type: user description: Enables fetching of form 1095b from enrollment system instead of from local database meb_1995_instruction_page_update_v3: actor_type: user description: Updated verbiage for instruction page for 5490 enable_in_development: true survivors_benefits_form_enabled: actor_type: user description: Enables the Medical Expense Reports form (Form 21P-534EZ) enable_in_development: true survivors_benefits_browser_monitoring_enabled: actor_type: user description: Medical Expense Reports Datadog RUM monitoring survivors_benefits_error_email_notification: actor_type: cookie_id description: Toggle sending of the Action Needed email notification survivors_benefits_received_email_notification: actor_type: cookie_id description: Toggle sending of the Received email notification survivors_benefits_submitted_email_notification: actor_type: user description: Toggle sending of the Submission in Progress email notification survivors_benefits_persistent_attachment_error_email_notification: actor_type: cookie_id description: Toggle sending of the Persistent Attachment Error email notification sob_claimant_service: actor_type: user description: If enabled, use the new claimant service for SOB
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. (defaults to false) # true and debug can give helpful and interesting code usage information # and is safe to use if one is investigating issues in production, but it will slightly # hit perf. # config.verbose = false # default false. button at the top of the web interface which clears all data # Kept the default to prevent data loss # config.web_enable_clear = true # default false. Experimental support for tracking view layer tracking. # Does not track line-level usage, only indicates if an entire file # is used or not. # config.track_views = true config.ignore += [ 'config/application.rb', 'config/boot.rb', 'config/puma.rb', 'config/schedule.rb', 'bin/*', 'config/environments/*', 'lib/tasks/*' ] end
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__allow_list__github__path'] %> repo: department-of-veterans-affairs/va.gov-team-sensitive frontend_base_url: <%= ENV['accredited_representative_portal__frontend_base_url'] %> lighthouse: benefits_intake: api_key: <%= ENV['accredited_representative_portal__lighthouse__benefits_intake__api_key'] %> host: <%= ENV['accredited_representative_portal__lighthouse__benefits_intake__host'] %> path: <%= ENV['accredited_representative_portal__lighthouse__benefits_intake__path'] %> report: batch_size: <%= ENV['accredited_representative_portal__lighthouse__benefits_intake__report__batch_size'] %> stale_sla: <%= ENV['accredited_representative_portal__lighthouse__benefits_intake__report__stale_sla'] %> use_mocks: <%= ENV['accredited_representative_portal__lighthouse__benefits_intake__use_mocks'] %> version: <%= ENV['accredited_representative_portal__lighthouse__benefits_intake__version'] %> adapted_housing: prefill: true argocd: slack: api_key: <%= ENV['argocd__slack__api_key'] %> ask_va_api: crm_api: auth_url: <%= ENV['ask_va_api__crm_api__auth_url'] %> base_url: <%= ENV['ask_va_api__crm_api__base_url'] %> client_id: <%= ENV['ask_va_api__crm_api__client_id'] %> client_secret: <%= ENV['ask_va_api__crm_api__client_secret'] %> e_subscription_key: <%= ENV['ask_va_api__crm_api__e_subscription_key'] %> ocp_apim_subscription_key: <%= ENV['ask_va_api__crm_api__ocp_apim_subscription_key'] %> resource: <%= ENV['ask_va_api__crm_api__resource'] %> s_subscription_key: <%= ENV['ask_va_api__crm_api__s_subscription_key'] %> service_name: VEIS-API tenant_id: <%= ENV['ask_va_api__crm_api__tenant_id'] %> veis_api_path: eis/vagov.lob.ava/api prefill: true authorization_server_scopes_api: auth_server: url: <%= ENV['authorization_server_scopes_api__auth_server__url'] %> avs: api_jwt: <%= ENV['avs__api_jwt'] %> mock: <%= ENV['avs__mock'] %> timeout: 55 url: <%= ENV['avs__url'] %> banners: drupal_password: <%= ENV['banners__drupal_password'] %> drupal_url: <%= ENV['banners__drupal_url'] %> drupal_username: banners_api bd: base_name: ~ benefits_intake_service: api_key: <%= ENV['benefits_intake_service__api_key'] %> aws: access_key_id: ~ bucket: ~ region: ~ secret_access_key: ~ enabled: true url: <%= ENV['benefits_intake_service__url'] %> betamocks: cache_dir: <%= ENV['betamocks__cache_dir'] %> enabled: <%= ENV['betamocks__enabled'] %> recording: false services_config: config/betamocks/services_config.yml bgs: application: VAgovAPI client_station_id: 281 client_username: VAgovAPI env: <%= ENV['bgs__env'] %> external_key: lighthouse-vets-api external_uid: lighthouse-vets-api mock_response_location: <%= ENV['bgs__mock_response_location'] %> mock_responses: <%= ENV['bgs__mock_responses'] %> ssl_verify_mode: <%= ENV['bgs__ssl_verify_mode'] %> url: <%= ENV['bgs__url'] %> bid: awards: base_url: <%= ENV['bid__awards__base_url'] %> credentials: <%= ENV['bid__awards__credentials'] %> mock: true binaries: clamdscan: "/usr/bin/clamdscan" pdfinfo: pdfinfo pdftk: pdftk bing: key: <%= ENV['bing__key'] %> bio: medical_expense_reports: bucket: <%= ENV['bio__medical_expense_reports__s3__bucket'] %> region: us-gov-west-1 survivors_benefits: bucket: <%= ENV['bio__survivors_benefits__s3__bucket'] %> region: us-gov-west-1 bpds: jwt_secret: <%= ENV['bpds__jwt_secret'] %> mock: false read_timeout: 20 # using the same timeout as lighthouse schema_version: test url: <%= ENV['bpds__url'] %> # See the README for more information on how to run the BPDS locally brd: api_key: <%= ENV['brd__api_key'] %> base_name: <%= ENV['brd__base_name'] %> breakers_disabled: <%= ENV['breakers_disabled'] %> caseflow: app_token: <%= ENV['caseflow__app_token'] %> host: <%= ENV['caseflow__host'] %> mock: <%= ENV['caseflow__mock'] %> timeout: 119 central_mail: upload: enabled: true host: <%= ENV['central_mail__upload__host'] %> token: <%= ENV['central_mail__upload__token'] %> check_in: authentication: max_auth_retry_limit: 3 retry_attempt_expiry: 604800 chip_api_v2: base_path: <%= ENV['check_in__chip_api_v2__base_path'] %> base_path_v2: <%= ENV['check_in__vaec_cie__chip__base_path'] %> mock: <%= ENV['check_in__chip_api_v2__mock'] %> redis_session_prefix: check_in_chip_v2 service_name: CHIP-API timeout: 30 tmp_api_id: <%= ENV['check_in__chip_api_v2__tmp_api_id'] %> tmp_api_id_v2: <%= ENV['check_in__vaec_cie__chip__api_id'] %> tmp_api_user: <%= ENV['check_in__chip_api_v2__tmp_api_user'] %> tmp_api_user_v2: <%= ENV['check_in__vaec_cie__chip__password'] %> tmp_api_username: <%= ENV['check_in__chip_api_v2__tmp_api_username'] %> tmp_api_username_v2: <%= ENV['check_in__vaec_cie__chip__username'] %> url: <%= ENV['check_in__chip_api_v2__url'] %> url_v2: <%= ENV['check_in__vaec_cie__chip__url'] %> lorota_v2: api_id: <%= ENV['check_in__lorota_v2__api_id'] %> api_id_v2: <%= ENV['check_in__vaec_cie__lorota__api_id'] %> api_key: <%= ENV['check_in__lorota_v2__api_key'] %> api_key_v2: <%= ENV['check_in__vaec_cie__lorota__api_key'] %> base_path: <%= ENV['check_in__lorota_v2__base_path'] %> base_path_v2: <%= ENV['check_in__vaec_cie__lorota__base_path'] %> key_path: "/srv/vets-api/secret/check-in.lorota.v1.key" mock: <%= ENV['check_in__lorota_v2__mock'] %> redis_session_prefix: check_in_lorota_v2 redis_token_expiry: 43200 service_name: LoROTA-API url: <%= ENV['check_in__lorota_v2__url'] %> url_v2: <%= ENV['check_in__vaec_cie__lorota__url'] %> map_api: service_name: MAP-API url: https://veteran.apps-staging.va.gov travel_reimbursement_api_v2: auth_url: https://login.microsoftonline.us auth_url_v2: <%= ENV['check_in__travel_reimbursement_api_v2__auth_url_v2'] %> claims_base_path: <%= ENV['check_in__travel_reimbursement_api_v2__claims_base_path'] %> claims_base_path_v2: <%= ENV['check_in__travel_reimbursement_api_v2__claims_base_path_v2'] %> claims_url: https://dev.integration.d365.va.gov claims_url_v2: <%= ENV['check_in__travel_reimbursement_api_v2__claims_url_v2'] %> client_id: <%= ENV['check_in__travel_reimbursement_api_v2__client_id'] %> client_number: <%= ENV['check_in__travel_reimbursement_api_v2__client_number'] %> client_number_oh: <%= ENV['check_in__travel_reimbursement_api_v2__client_number_oh'] %> client_secret: <%= ENV['check_in__travel_reimbursement_api_v2__client_secret'] %> e_subscription_key: <%= ENV['check_in__travel_reimbursement_api_v2__e_subscription_key'] %> redis_token_expiry: 3540 s_subscription_key: <%= ENV['check_in__travel_reimbursement_api_v2__s_subscription_key'] %> scope: <%= ENV['check_in__travel_reimbursement_api_v2__scope'] %> service_name: BTSSS-API subscription_key: <%= ENV['check_in__travel_reimbursement_api_v2__subscription_key'] %> tenant_id: <%= ENV['check_in__travel_reimbursement_api_v2__tenant_id'] %> travel_pay_client_id: <%= ENV['check_in__travel_reimbursement_api_v2__travel_pay_client_id'] %> travel_pay_client_secret: <%= ENV['check_in__travel_reimbursement_api_v2__travel_pay_client_secret'] %> travel_pay_client_secret_oh: <%= ENV['check_in__travel_reimbursement_api_v2__travel_pay_client_secret_oh'] %> travel_pay_resource: <%= ENV['check_in__travel_reimbursement_api_v2__travel_pay_resource'] %> vaos: mock: <%= ENV['check_in__vaos__mock'] %> chip: api_gtwy_id: <%= ENV['chip__api_gtwy_id'] %> base_path: <%= ENV['chip__base_path'] %> mobile_app: password: <%= ENV['chip__mobile_app__password'] %> tenant_id: <%= ENV['chip__mobile_app__tenant_id'] %> username: <%= ENV['chip__mobile_app__username'] %> mock: <%= ENV['chip__mock'] %> url: <%= ENV['chip__url'] %> claims_api: audit_enabled: <%= ENV['claims_api__audit_enabled'] %> benefits_documents: auth: ccg: aud_claim_url: <%= ENV['claims_api__benefits_documents__auth__ccg__aud_claim_url'] %> client_id: <%= ENV['claims_api__benefits_documents__auth__ccg__client_id'] %> rsa_key: <%= ENV['claims_api__benefits_documents__auth__ccg__rsa_key'] %> secret_key: "/srv/vets-api/secret/claims_api_bd_secret.key" host: <%= ENV['claims_api__benefits_documents__host'] %> use_mocks: <%= ENV['claims_api__benefits_documents__use_mocks'] %> bgs: mock_responses: <%= ENV['claims_api__bgs__mock_responses'] %> claims_error_reporting: environment_name: <%= ENV['claims_api__claims_error_reporting__environment_name'] %> disability_claims_mock_override: <%= ENV['claims_api__disability_claims_mock_override'] %> evss_container: auth_base_name: <%= ENV['claims_api__evss_container__auth_base_name'] %> client_id: <%= ENV['claims_api__evss_container__client_id'] %> client_key: <%= ENV['claims_api__evss_container__client_key'] %> client_secret: <%= ENV['claims_api__evss_container__client_secret'] %> fes: auth: ccg: aud_claim_url: <%= ENV['claims_api__fes__auth__ccg__aud_claim_url'] %> client_id: <%= ENV['claims_api__benefits_documents__auth__ccg__client_id'] %> host: <%= ENV['claims_api__fes__host'] %> pdf_generator_526: content_type: application/vnd.api+json path: "/form-526ez-pdf-generator/v1/forms/" url: <%= ENV['claims_api__pdf_generator_526__url'] %> poa_v2: disable_jobs: <%= ENV['claims_api__poa_v2__disable_jobs'] %> report_enabled: <%= ENV['claims_api__report_enabled'] %> s3: aws_access_key_id: <%= ENV['claims_api__s3__aws_access_key_id'] %> aws_secret_access_key: <%= ENV['claims_api__s3__aws_secret_access_key'] %> bucket: <%= ENV['claims_api__s3__bucket'] %> region: us-gov-west-1 schema_dir: config/schemas slack: webhook_url: <%= ENV['claims_api__slack__webhook_url'] %> token_validation: api_key: <%= ENV['claims_api__token_validation__api_key'] %> url: <%= ENV['claims_api__token_validation__url'] %> user_info: url: <%= ENV['claims_api__user_info__url'] %> v2_docs: enabled: <%= ENV['claims_api__v2_docs__enabled'] %> vanotify: accepted_representative_template_id: <%= ENV['claims_api__vanotify__accepted_representative_template_id'] %> accepted_service_organization_template_id: <%= ENV['claims_api__vanotify__accepted_service_organization_template_id'] %> client_url: <%= ENV['claims_api__vanotify__client_url'] %> declined_representative_template_id: <%= ENV['claims_api__vanotify__declined_representative_template_id'] %> declined_service_organization_template_id: <%= ENV['claims_api__vanotify__declined_service_organization_template_id'] %> services: lighthouse: api_key: <%= ENV['claims_api__vanotify__services__lighthouse__api_key'] %> notification_client_secret: <%= ENV['claims_api__vanotify__services__lighthouse__notification_client_secret'] %> notify_service_id: <%= ENV['claims_api__vanotify__services__lighthouse__notify_service_id'] %> claims_evidence_api: base_url: <%= ENV['claims_evidence_api__base_url'] %> breakers_error_threshold: 80 include_request: false jwt_secret: <%= ENV['claims_evidence_api__jwt_secret'] %> mock: false ssl: true timeout: open: 30 read: 30 clamav: host: clamav mock: <%= ENV['clamav__mock'] %> port: '3310' coe: prefill: true connected_apps_api: connected_apps: api_key: <%= ENV['connected_apps_api__connected_apps__api_key'] %> auth_access_key: <%= ENV['connected_apps_api__connected_apps__auth_access_key'] %> revoke_url: <%= ENV['connected_apps_api__connected_apps__revoke_url'] %> url: <%= ENV['connected_apps_api__connected_apps__url'] %> contention_classification_api: expanded_contention_classification_path: expanded-contention-classification hybrid_contention_classification_path: hybrid-contention-classification open_timeout: 5 read_timeout: 10 url: <%= ENV['contention_classification_api__url'] %> coverband: github_api_key: <%= ENV['coverband__github_api_key'] %> github_oauth_key: <%= ENV['coverband__github_oauth_key'] %> github_oauth_secret: <%= ENV['coverband__github_oauth_secret'] %> github_organization: department-of-veterans-affairs github_team: 6394772 covid_vaccine: enrollment_service: job_enabled: <%= ENV['covid_vaccine__enrollment_service__job_enabled'] %> database_url: <%= ENV['database_url'] %> decision_review: api_key: <%= ENV['decision_review__api_key'] %> benchmark_performance: <%= ENV['decision_review__benchmark_performance'] %> mock: <%= ENV['decision_review__mock'] %> pdf_validation: enabled: true url: <%= ENV['decision_review__pdf_validation__url'] %> prefill: true s3: aws_access_key_id: <%= ENV['decision_review__s3__aws_access_key_id'] %> aws_secret_access_key: <%= ENV['decision_review__s3__aws_secret_access_key'] %> bucket: <%= ENV['decision_review__s3__bucket'] %> region: us-gov-west-1 url: <%= ENV['decision_review__url'] %> v1: url: <%= ENV['decision_review__v1__url'] %> dependents: prefill: true dependents_verification: prefill: true dgi: jwt: private_key_path: <%= ENV['dgi__jwt__private_key_path'] %> public_key_path: <%= ENV['dgi__jwt__public_key_path'] %> sob: claimants: mock: <%= ENV['dgi__sob__claimants__mock'] %> url: <%= ENV['dgi__sob__claimants__url'] %> jwt: private_key_path: <%= ENV['dgi__sob__jwt__private_key_path'] %> public_key_path: <%= ENV['dgi__sob__jwt__public_key_path'] %> vets: mock: <%= ENV['dgi__vets__mock'] %> url: <%= ENV['dgi__vets__url'] %> vye: jwt: kid: <%= ENV['dgi__vye__jwt__kid'] %> private_key_path: <%= ENV['dgi__vye__jwt__private_key_path'] %> public_ica11_rca2_key_path: <%= ENV['dgi__vye__jwt__public_ica11_rca2_key_path'] %> public_key_path: <%= ENV['dgi__vye__jwt__public_key_path'] %> vets: mock: <%= ENV['dgi__vye__vets__mock'] %> url: <%= ENV['dgi__vye__vets__url'] %> dhp: fitbit: client_id: <%= ENV['dhp__fitbit__client_id'] %> client_secret: <%= ENV['dhp__fitbit__client_secret'] %> code_challenge: <%= ENV['dhp__fitbit__code_challenge'] %> code_verifier: <%= ENV['dhp__fitbit__code_verifier'] %> redirect_uri: <%= ENV['dhp__fitbit__redirect_uri'] %> scope: heartrate activity nutrition sleep mock: <%= ENV['dhp__mock'] %> s3: aws_access_key_id: <%= ENV['dhp__s3__aws_access_key_id'] %> aws_secret_access_key: <%= ENV['dhp__s3__aws_secret_access_key'] %> bucket: <%= ENV['dhp__s3__bucket'] %> region: us-gov-west-1 directory: apikey: fake_apikey health_server_id: <%= ENV['directory__health_server_id'] %> key: <%= ENV['directory__key'] %> notification_service_flag: <%= ENV['directory__notification_service_flag'] %> url: <%= ENV['directory__url'] %> disability_max_ratings_api: open_timeout: 5 ratings_path: "/disability-max-ratings" read_timeout: 10 url: <%= ENV['disability_max_ratings_api__url'] %> dispute_debt: prefill: true dmc: client_id: <%= ENV['dmc__client_id'] %> client_secret: <%= ENV['dmc__client_secret'] %> debts_endpoint: debt-letter/get fsr_payment_window: 30 mock_debts: <%= ENV['dmc__mock_debts'] %> mock_fsr: <%= ENV['dmc__mock_fsr'] %> url: <%= ENV['dmc__url'] %> dogstatsd: enabled: true edu: prefill: true production_excel_contents: emails: - patricia.terry1@va.gov sftp: host: <%= ENV['edu__sftp__host'] %> key_path: <%= ENV['edu__sftp__key_path'] %> pass: <%= ENV['edu__sftp__pass'] %> port: <%= ENV['edu__sftp__port'] %> relative_307_path: <%= ENV['edu__sftp__relative_307_path'] %> relative_351_path: <%= ENV['edu__sftp__relative_351_path'] %> relative_path: <%= ENV['edu__sftp__relative_path'] %> user: <%= ENV['edu__sftp__user'] %> show_form: <%= ENV['edu__show_form'] %> slack: webhook_url: <%= ENV['edu__slack__webhook_url'] %> spool_error: emails: - Joseph.Preisser@va.gov - Shay.Norton-Leonard@va.gov - PIERRE.BROWN@va.gov - VAVBAHIN/TIMS@vba.va.gov - EDUAPPMGMT.VBACO@VA.GOV - vfep_support_team@va.gov - eugenia.gina.ronat@accenturefederal.com - morgan.whaley@accenturefederal.com - m.c.shah@accenturefederal.com - patrick.arthur@accenturefederal.com - adam.freemer@accenturefederal.com - dan.brooking@accenturefederal.com - sebastian.cooper@accenturefederal.com - david.rowley@accenturefederal.com - nick.barthelemy@accenturefederal.com staging_emails: <%= ENV['edu__spool_error__staging_emails'] %> staging_excel_contents: emails: - alex.chan1@va.gov - gregg.puhala@va.gov - noah.stern@va.gov - marelby.hernandez@va.gov - nawar.hussein@va.gov - engin.akman@va.gov staging_spool_contents: emails: - noah.stern@va.gov - gregg.puhala@va.gov - kara.ciprich@va.gov - vishnhav.ashok@va.gov - donna.saunders@va.gov - ariana.adili@govcio.com - marelby.hernandez@va.gov - nawar.hussein@va.gov - engin.akman@va.gov email_verification: jwt_secret: <%= ENV['email_verification__jwt_secret'] %> # Settings for EVSS evss: alternate_service_name: wss-form526-services-web-v2 aws: cert_path: <%= ENV['evss__aws__cert_path'] %> key_path: <%= ENV['evss__aws__key_path'] %> root_ca: <%= ENV['evss__aws__root_ca'] %> url: http://fake.evss-reference-data-service.dev/v1 cert_path: "/etc/pki/tls/certs/vetsgov-evss-cert.pem" disability_compensation_form: submit_timeout: 355 timeout: 55 dvp: url: <%= ENV['evss__dvp__url'] %> international_postal_codes: config/evss/international_postal_codes.json key_path: "/etc/pki/tls/private/vetsgov-evss.key" letters: timeout: 55 url: <%= ENV['evss__letters__url'] %> mock_claims: <%= ENV['evss__mock_claims'] %> mock_common_service: <%= ENV['evss__mock_common_service'] %> mock_disabilities_form: <%= ENV['evss__mock_disabilities_form'] %> mock_gi_bill_status: <%= ENV['evss__mock_gi_bill_status'] %> mock_letters: <%= ENV['evss__mock_letters'] %> prefill: true root_cert_path: <%= ENV['evss__root_cert_path'] %> s3: aws_access_key_id: <%= ENV['evss__s3__aws_access_key_id'] %> aws_secret_access_key: <%= ENV['evss__s3__aws_secret_access_key'] %> bucket: <%= ENV['evss__s3__bucket'] %> region: us-gov-west-1 uploads_enabled: true service_name: wss-form526-services-web url: <%= ENV['evss__url'] %> versions: claims: <%= ENV['evss__versions__claims'] %> common: <%= ENV['evss__versions__common'] %> documents: <%= ENV['evss__versions__documents'] %> expiry_scanner: directories: <%= ENV['expiry_scanner__directories'] %> slack: channel_id: C24RH0W11 flipper: github_api_key: <%= ENV['flipper__github_api_key'] %> github_oauth_key: <%= ENV['flipper__github_oauth_key'] %> github_oauth_secret: <%= ENV['flipper__github_oauth_secret'] %> github_organization: department-of-veterans-affairs github_team: <%= ENV['flipper__github_team'] %> mute_logs: <%= ENV['flipper__mute_logs'] %> form0781_remediation: aws: bucket: <%= ENV['evidence_remediation__aws__bucket'] %> region: us-gov-west-1 form1095_b: s3: aws_access_key_id: <%= ENV['form1095_b__s3__aws_access_key_id'] %> aws_secret_access_key: <%= ENV['form1095_b__s3__aws_secret_access_key'] %> bucket: <%= ENV['form1095_b__s3__bucket'] %> region: us-gov-west-1 form526_backup: api_key: <%= ENV['form526_backup__api_key'] %> aws: access_key_id: <%= ENV['form526_backup__aws__access_key_id'] %> bucket: <%= ENV['form526_backup__aws__bucket'] %> region: us-gov-west-1 secret_access_key: <%= ENV['form526_backup__aws__secret_access_key'] %> enabled: <%= ENV['form526_backup__enabled'] %> submission_method: single url: <%= ENV['form526_backup__url'] %> form526_export: aws: access_key_id: <%= ENV['form526_export__aws__access_key_id'] %> bucket: <%= ENV['form526_export__aws__bucket'] %> region: us-gov-west-1 secret_access_key: <%= ENV['form526_export__aws__secret_access_key'] %> form_10275: submission_email: <%= ENV['form_10275__submission_email'] %> form_10282: sftp: host: <%= ENV['form_10282__sftp__host'] %> key_path: <%= ENV['form_10282__sftp__key_path'] %> pass: <%= ENV['form_10282__sftp__pass'] %> port: <%= ENV['form_10282__sftp__port'] %> relative_path: <%= ENV['form_10282__sftp__relative_path'] %> user: <%= ENV['form_10282__sftp__user'] %> form_10_10cg: carma: mulesoft: async_timeout: 600 auth: auth_token_path: <%= ENV['form_10_10cg__carma__mulesoft__auth__auth_token_path'] %> client_id: <%= ENV['form_10_10cg__carma__mulesoft__auth__client_id'] %> client_secret: <%= ENV['form_10_10cg__carma__mulesoft__auth__client_secret'] %> mock: <%= ENV['form_10_10cg__carma__mulesoft__auth__mock'] %> timeout: <%= ENV['form_10_10cg__carma__mulesoft__auth__timeout'] %> token_url: <%= ENV['form_10_10cg__carma__mulesoft__auth__token_url'] %> client_id: <%= ENV['form_10_10cg__carma__mulesoft__client_id'] %> client_secret: <%= ENV['form_10_10cg__carma__mulesoft__client_secret'] %> host: <%= ENV['form_10_10cg__carma__mulesoft__host'] %> timeout: 120 poa: s3: aws_access_key_id: <%= ENV['form_10_10cg__poa__s3__aws_access_key_id'] %> aws_secret_access_key: <%= ENV['form_10_10cg__poa__s3__aws_secret_access_key'] %> bucket: <%= ENV['form_10_10cg__poa__s3__bucket'] %> enabled: true region: us-gov-west-1 form_mock_ae_design_patterns: prefill: true form_upload: prefill: true forms: mock: <%= ENV['forms__mock'] %> url: <%= ENV['forms__url'] %> forms_api_benefits_intake: api_key: <%= ENV['forms_api_benefits_intake__api_key'] %> url: <%= ENV['forms_api_benefits_intake__url'] %> fsr: prefill: true gclaws: accreditation: agents: url: <%= ENV['gclaws__accreditation__agents__url'] %> api_key: <%= ENV['gclaws__accreditation__api_key'] %> attorneys: url: <%= ENV['gclaws__accreditation__attorneys__url'] %> icn: url: <%= ENV['gclaws__accreditation__icn__url'] %> origin: <%= ENV['gclaws__accreditation__origin'] %> representatives: url: <%= ENV['gclaws__accreditation__representatives__url'] %> veteran_service_organizations: url: <%= ENV['gclaws__accreditation__veteran_service_organizations__url'] %> genisis: base_url: <%= ENV['genisis__base_url'] %> form_submission_path: "/formdata" pass: <%= ENV['genisis__pass'] %> service_path: <%= ENV['genisis__service_path'] %> user: <%= ENV['genisis__user'] %> gids: open_timeout: 10 read_timeout: 10 search: open_timeout: 10 read_timeout: 10 url: <%= ENV['gids__url'] %> github_cvu: installation_id: 14176090 integration_id: 96211 private_pem: <%= ENV['github_cvu__private_pem'] %> github_stats: token: <%= ENV['github_stats__token'] %> username: github-stats-rake google_analytics: tracking_id: <%= ENV['google_analytics__tracking_id'] %> url: <%= ENV['google_analytics__url'] %> google_analytics_cvu: auth_provider_x509_cert_url: https://www.googleapis.com/oauth2/v1/certs auth_uri: https://accounts.google.com/o/oauth2/auth client_email: <%= ENV['google_analytics_cvu__client_email'] %> client_id: <%= ENV['google_analytics_cvu__client_id'] %> client_x509_cert_url: <%= ENV['google_analytics_cvu__client_x509_cert_url'] %> private_key: <%= ENV['google_analytics_cvu__private_key'] %> private_key_id: <%= ENV['google_analytics_cvu__private_key_id'] %> project_id: vsp-analytics-and-insights token_uri: https://oauth2.googleapis.com/token type: service_account govdelivery: server: <%= ENV['govdelivery__server'] %> staging_service: <%= ENV['govdelivery__staging_service'] %> token: <%= ENV['govdelivery__token'] %> hca: ca: [] ee: endpoint: <%= ENV['hca__ee__endpoint'] %> pass: <%= ENV['hca__ee__pass'] %> user: HCASvcUsr endpoint: <%= ENV['hca__endpoint'] %> future_discharge_testing: <%= ENV['hca__future_discharge_testing'] %> prefill: true s3: aws_access_key_id: <%= ENV['hca__s3__aws_access_key_id'] %> aws_secret_access_key: <%= ENV['hca__s3__aws_secret_access_key'] %> bucket: <%= ENV['hca__s3__bucket'] %> region: us-gov-west-1 timeout: 30 hostname: <%= ENV['hostname'] %> iam_ssoe: client_cert_path: <%= ENV['iam_ssoe__client_cert_path'] %> client_id: <%= ENV['iam_ssoe__client_id'] %> client_key_path: <%= ENV['iam_ssoe__client_key_path'] %> oauth_url: <%= ENV['iam_ssoe__oauth_url'] %> timeout: 20 intent_to_file: prefill: true ivc_champva: pega_api: api_key: <%= ENV['ivc_champva__pega_api__api_key'] %> base_path: <%= ENV['ivc_champva__pega_api__base_path'] %> prefill: true ivc_champva_llm_processor_api: api_key: <%= ENV['ivc_champva_llm_processor_api__api_key'] %> host: <%= ENV['ivc_champva_llm_processor_api__host'] %> ivc_champva_ves_api: api_key: <%= ENV['ivc_champva_ves_api__api_key'] %> app_id: <%= ENV['ivc_champva_ves_api__app_id'] %> host: <%= ENV['ivc_champva_ves_api__host'] %> mock: false subject: "Proxy Client" ivc_forms: form_status_job: enabled: <%= ENV['ivc_forms__form_status_job__enabled'] %> slack_webhook_url: <%= ENV['ivc_forms__form_status_job__slack_webhook_url'] %> s3: aws_access_key_id: <%= ENV['ivc_forms__s3__aws_access_key_id'] %> aws_secret_access_key: <%= ENV['ivc_forms__s3__aws_secret_access_key'] %> bucket: <%= ENV['ivc_forms__s3__bucket'] %> region: us-gov-west-1 sidekiq: missing_form_status_job: enabled: true old_records_cleanup_job: enabled: true kafka_producer: aws_region: "us-gov-west-1" aws_role_arn: <%= ENV['kafka_producer__aws_role_arn'] %> broker_urls: <%= ENV['kafka_producer__broker_urls'] %> sasl_mechanisms: 'OAUTHBEARER' schema_registry_url: <%= ENV['kafka_producer__schema_registry_url'] %> security_protocol: 'sasl_ssl' test_topic_name: <%= ENV['kafka_producer__test_topic_name'] %> topic_name: <%= ENV['kafka_producer__topic_name'] %> kms_key_id: <%= ENV['kms_key_id'] %> lgy: api_key: <%= ENV['lgy__api_key'] %> app_id: VAGOVSERVICE base_url: <%= ENV['lgy__base_url'] %> mock_coe: <%= ENV['lgy__mock_coe'] %> lgy_sahsha: api_key: <%= ENV['lgy_sahsha__api_key'] %> app_id: <%= ENV['lgy_sahsha__app_id'] %> base_url: <%= ENV['lgy_sahsha__base_url'] %> mock_coe: <%= ENV['lgy_sahsha__mock_coe'] %> lighthouse: api_key: <%= ENV['lighthouse__api_key'] %> auth: ccg: client_id: <%= ENV['lighthouse__auth__ccg__client_id'] %> rsa_key: <%= ENV['lighthouse__auth__ccg__rsa_key'] %> benefits_claims: access_token: aud_claim_url: <%= ENV['lighthouse__benefits_claims__access_token__aud_claim_url'] %> client_id: <%= ENV['lighthouse__benefits_claims__access_token__client_id'] %> rsa_key: <%= ENV['lighthouse__benefits_claims__access_token__rsa_key'] %> aud_claim_url: <%= ENV['lighthouse__benefits_claims__aud_claim_url'] %> form526: access_token: aud_claim_url: <%= ENV['lighthouse__benefits_claims__form526__access_token__aud_claim_url'] %> client_id: <%= ENV['lighthouse__benefits_claims__form526__access_token__client_id'] %> rsa_key: <%= ENV['lighthouse__benefits_claims__form526__access_token__rsa_key'] %> host: <%= ENV['lighthouse__benefits_claims__form526__host'] %> use_mocks: <%= ENV['lighthouse__benefits_claims__form526__use_mocks'] %> host: <%= ENV['lighthouse__benefits_claims__host'] %> use_mocks: <%= ENV['lighthouse__benefits_claims__use_mocks'] %> benefits_discovery: host: <%= ENV['lighthouse__benefits_discovery__host'] %> x_api_key: <%= ENV['lighthouse__benefits_discovery__x_api_key'] %> x_app_id: <%= ENV['lighthouse__benefits_discovery__x_app_id'] %> benefits_documents: access_token: aud_claim_url: <%= ENV['lighthouse__benefits_documents__access_token__aud_claim_url'] %> host: <%= ENV['lighthouse__benefits_documents__host'] %> timeout: <%= ENV['lighthouse__benefits_documents__timeout'] %> use_mocks: <%= ENV['lighthouse__benefits_documents__use_mocks'] %> benefits_education: access_token: aud_claim_url: <%= ENV['lighthouse__benefits_education__access_token__aud_claim_url'] %> client_id: <%= ENV['lighthouse__benefits_education__access_token__client_id'] %> rsa_key: <%= ENV['lighthouse__benefits_education__access_token__rsa_key'] %> host: <%= ENV['lighthouse__benefits_education__host'] %> use_mocks: <%= ENV['lighthouse__benefits_education__use_mocks'] %> benefits_intake: api_key: <%= ENV['lighthouse__benefits_intake__api_key'] %> breakers_error_threshold: 80 host: <%= ENV['lighthouse__benefits_intake__host'] %> path: <%= ENV['lighthouse__benefits_intake__path'] %> report: batch_size: <%= ENV['lighthouse__benefits_intake__report__batch_size'] %> stale_sla: <%= ENV['lighthouse__benefits_intake__report__stale_sla'] %> use_mocks: <%= ENV['lighthouse__benefits_intake__use_mocks'] %> version: <%= ENV['lighthouse__benefits_intake__version'] %> benefits_reference_data: path: <%= ENV['lighthouse__benefits_reference_data__path'] %> staging_url: <%= ENV['lighthouse__benefits_reference_data__staging_url'] %> url: <%= ENV['lighthouse__benefits_reference_data__url'] %> version: <%= ENV['lighthouse__benefits_reference_data__version'] %> direct_deposit: access_token: aud_claim_url: <%= ENV['lighthouse__direct_deposit__access_token__aud_claim_url'] %> client_id: <%= ENV['lighthouse__direct_deposit__access_token__client_id'] %> rsa_key: <%= ENV['lighthouse__direct_deposit__access_token__rsa_key'] %> host: <%= ENV['lighthouse__direct_deposit__host'] %> use_mocks: <%= ENV['lighthouse__direct_deposit__use_mocks'] %> facilities: api_key: <%= ENV['lighthouse__facilities__api_key'] %> hqva_mobile: url: <%= ENV['hqva_mobile__url'] %> url: <%= ENV['lighthouse__facilities__url'] %> veterans_health: url: <%= ENV['lighthouse__facilities__veterans_health__url'] %> healthcare_cost_and_coverage: access_token: aud_claim_url: <%= ENV['lighthouse__healthcare_cost_and_coverage__access_token__aud_claim_url'] %> client_id: <%= ENV['lighthouse__healthcare_cost_and_coverage__access_token__client_id'] %> rsa_key: /srv/vets-api/secret/lighthouse-hccc.key host: <%= ENV['lighthouse__healthcare_cost_and_coverage__host'] %> scopes: - system/ChargeItem.read - system/Invoice.read - system/PaymentReconciliation.read - system/MedicationDispense.read - system/Encounter.read - system/Account.read - system/Medication.read - launch timeout: 30 use_mocks: false letters_generator: access_token: aud_claim_url: <%= ENV['lighthouse__letters_generator__access_token__aud_claim_url'] %> client_id: <%= ENV['lighthouse__letters_generator__access_token__client_id'] %> path: <%= ENV['lighthouse__letters_generator__access_token__path'] %> rsa_key: <%= ENV['lighthouse__letters_generator__access_token__rsa_key'] %> path: <%= ENV['lighthouse__letters_generator__path'] %> url: <%= ENV['lighthouse__letters_generator__url'] %> use_mocks: <%= ENV['lighthouse__letters_generator__use_mocks'] %> s3: aws_access_key_id: <%= ENV['lighthouse__s3__aws_access_key_id'] %> aws_secret_access_key: <%= ENV['lighthouse__s3__aws_secret_access_key'] %> bucket: <%= ENV['lighthouse__s3__bucket'] %> region: us-gov-west-1 uploads_enabled: <%= ENV['lighthouse__s3__uploads_enabled'] %> staging_api_key: <%= ENV['lighthouse__staging_api_key'] %> veteran_verification: aud_claim_url: <%= ENV['lighthouse__veteran_verification__aud_claim_url'] %> form526: access_token: client_id: <%= ENV['lighthouse__veteran_verification__form526__access_token__client_id'] %> rsa_key: <%= ENV['lighthouse__veteran_verification__form526__access_token__rsa_key'] %> aud_claim_url: <%= ENV['lighthouse__veteran_verification__form526__aud_claim_url'] %> host: <%= ENV['lighthouse__veteran_verification__form526__host'] %> use_mocks: <%= ENV['lighthouse__veteran_verification__form526__use_mocks'] %> host: <%= ENV['lighthouse__veteran_verification__host'] %> status: access_token: client_id: <%= ENV['lighthouse__veteran_verification__status__access_token__client_id'] %> rsa_key: <%= ENV['lighthouse__veteran_verification__status__access_token__rsa_key'] %> host: <%= ENV['lighthouse__veteran_verification__status__host'] %> use_mocks: <%= ENV['lighthouse__veteran_verification__status__use_mocks'] %> use_mocks: <%= ENV['lighthouse__veteran_verification__use_mocks'] %> veterans_health: fast_tracker: api_key: <%= ENV['lighthouse__veterans_health__fast_tracker__api_key'] %> api_scope: <%= ENV['lighthouse__veterans_health__fast_tracker__api_scope'] %> aud_claim_url: <%= ENV['lighthouse__veterans_health__fast_tracker__aud_claim_url'] %> client_assertion_type: <%= ENV['lighthouse__veterans_health__fast_tracker__client_assertion_type'] %> client_id: <%= ENV['lighthouse__veterans_health__fast_tracker__client_id'] %> grant_type: <%= ENV['lighthouse__veterans_health__fast_tracker__grant_type'] %> url: <%= ENV['lighthouse__veterans_health__url'] %> use_mocks: <%= ENV['lighthouse__veterans_health__use_mocks'] %> lighthouse_health_immunization: access_token_url: <%= ENV['lighthouse_health_immunization__access_token_url'] %> api_url: <%= ENV['lighthouse_health_immunization__api_url'] %> audience_claim_url: <%= ENV['lighthouse_health_immunization__audience_claim_url'] %> client_id: <%= ENV['lighthouse_health_immunization__client_id'] %> key_path: <%= ENV['lighthouse_health_immunization__key_path'] %> scopes: - launch launch/patient - patient/Immunization.read - patient/Location.read locators: mock_gis: <%= ENV['locators__mock_gis'] %> vha: <%= ENV['locators__vha'] %> vha_access_satisfaction: <%= ENV['locators__vha_access_satisfaction'] %> vha_access_waittime: <%= ENV['locators__vha_access_waittime'] %> lockbox: master_key: <%= ENV['lockbox__master_key'] %> mail_automation: client_id: <%= ENV['mail_automation__client_id'] %> client_secret: <%= ENV['mail_automation__client_secret'] %> endpoint: <%= ENV['mail_automation__endpoint'] %> token_endpoint: <%= ENV['mail_automation__token_endpoint'] %> url: <%= ENV['mail_automation__url'] %> maintenance: aws: access_key_id: <%= ENV['maintenance__aws__access_key_id'] %> bucket: <%= ENV['maintenance__aws__bucket'] %> region: us-gov-west-1 secret_access_key: <%= ENV['maintenance__aws__secret_access_key'] %> pagerduty_api_token: <%= ENV['maintenance__pagerduty_api_token'] %> pagerduty_api_url: <%= ENV['maintenance__pagerduty_api_url'] %> service_query_prefix: <%= ENV['maintenance__service_query_prefix'] %> services: 1010ez: <%= ENV['maintenance__services__1010ez'] %> 1010ezr: <%= ENV['maintenance__services__1010ezr'] %> accredited_representative_portal: <%= ENV['maintenance__services__accredited_representative_portal'] %> appeals: <%= ENV['maintenance__services__appeals'] %> arcgis: <%= ENV['maintenance__services__arcgis'] %> askva: <%= ENV['maintenance__services__askva'] %> avs: <%= ENV['maintenance__services__avs'] %> bgs: <%= ENV['maintenance__services__bgs'] %> carma: <%= ENV['maintenance__services__carma'] %> caseflow: <%= ENV['maintenance__services__caseflow'] %> cie: <%= ENV['maintenance__services__cie'] %> coe: <%= ENV['maintenance__services__coe'] %> community_care_ds: <%= ENV['maintenance__services__community_care_ds'] %> decision_reviews: <%= ENV['maintenance__services__decision_reviews'] %> dgi_claimants: <%= ENV['maintenance__services__dgi_claimants'] %> disability_compensation_form: <%= ENV['maintenance__services__disability_compensation_form'] %> dmc: <%= ENV['maintenance__services__dmc'] %> dslogon: <%= ENV['maintenance__services__dslogon'] %> es: <%= ENV['maintenance__services__es'] %> evss: <%= ENV['maintenance__services__evss'] %> form1010d: <%= ENV['maintenance__services__form1010d'] %> form1010d_ext: <%= ENV['maintenance__services__form1010d_ext'] %> form107959a: <%= ENV['maintenance__services__form107959a'] %> form107959c: <%= ENV['maintenance__services__form107959c'] %> form107959f1: <%= ENV['maintenance__services__form107959f1'] %> form107959f2: <%= ENV['maintenance__services__form107959f2'] %> form21p0537: <%= ENV['maintenance__services__form21p0537'] %> form21p601: <%= ENV['maintenance__services__form21p601'] %> global: <%= ENV['maintenance__services__global'] %> hcq: <%= ENV['maintenance__services__hcq'] %> idme: <%= ENV['maintenance__services__idme'] %> lighthouse_benefits_claims: <%= ENV['maintenance__services__lighthouse_benefits_claims'] %> lighthouse_benefits_education: <%= ENV['maintenance__services__lighthouse_benefits_education'] %> lighthouse_benefits_intake: <%= ENV['maintenance__services__lighthouse_benefits_intake'] %> lighthouse_direct_deposit: <%= ENV['maintenance__services__lighthouse_direct_deposit'] %> lighthouse_vshe: <%= ENV['maintenance__services__lighthouse_vshe'] %> logingov: <%= ENV['maintenance__services__logingov'] %> mdot: <%= ENV['maintenance__services__mdot'] %> mhv: <%= ENV['maintenance__services__mhv'] %> mhv_meds: <%= ENV['maintenance__services__mhv_meds'] %> mhv_mr: <%= ENV['maintenance__services__mhv_mr'] %> mhv_platform: <%= ENV['maintenance__services__mhv_platform'] %> mhv_sm: <%= ENV['maintenance__services__mhv_sm'] %> mvi: <%= ENV['maintenance__services__mvi'] %> pcie: <%= ENV['maintenance__services__pcie'] %> pega: <%= ENV['maintenance__services__pega'] %> sahsha: <%= ENV['maintenance__services__sahsha'] %> search: <%= ENV['maintenance__services__search'] %> ssoe: <%= ENV['maintenance__services__ssoe'] %> ssoe_oauth: <%= ENV['maintenance__services__ssoe_oauth'] %> tc: <%= ENV['maintenance__services__tc'] %> tims: <%= ENV['maintenance__services__tims'] %> travel_pay: <%= ENV['maintenance__services__travel_pay'] %> vaos: <%= ENV['maintenance__services__vaos'] %> vaosWarning: <%= ENV['maintenance__services__vaoswarning'] %> vapro_contact_info: <%= ENV['maintenance__services__vapro_contact_info'] %> vapro_health_care_contacts: <%= ENV['maintenance__services__vapro_health_care_contacts'] %> vapro_military_info: <%= ENV['maintenance__services__vapro_military_info'] %> vapro_notification_settings: <%= ENV['maintenance__services__vapro_notification_settings'] %> vapro_personal_info: <%= ENV['maintenance__services__vapro_personal_info'] %> vbms: <%= ENV['maintenance__services__vbms'] %> vet360: <%= ENV['maintenance__services__vet360'] %> vetext_vaccine: <%= ENV['maintenance__services__vetext_vaccine'] %> vic: <%= ENV['maintenance__services__vic'] %> vre: <%= ENV['maintenance__services__vre'] %> vre_ch31_eligibility: <%= ENV['maintenance__services__vre_ch31_eligibility'] %> mcp: notifications: batch_size: 10 job_interval: 10 vbs: api_key: <%= ENV['mcp__vbs__api_key'] %> base_path: <%= ENV['mcp__vbs__base_path'] %> host: <%= ENV['mcp__vbs__host'] %> mock: <%= ENV['mcp__vbs__mock'] %> mock_vista: <%= ENV['mcp__vbs__mock_vista'] %> service_name: VBS url: <%= ENV['mcp__vbs__url'] %> vbs_client_key: <%= ENV['mcp__vbs_client_key'] %> vbs_v2: api_key: <%= ENV['mcp__vbs_v2__api_key'] %> base_path: <%= ENV['mcp__vbs_v2__base_path'] %> host: <%= ENV['mcp__vbs_v2__host'] %> mock: <%= ENV['mcp__vbs_v2__mock'] %> mock_vista: <%= ENV['mcp__vbs_v2__mock_vista'] %> service_name: VBS url: <%= ENV['mcp__vbs_v2__url'] %> mdot: api_key: abcd1234abcd1234abcd1234abcd1234abcd1234 mock: <%= ENV['mdot__mock'] %> prefill: true url: <%= ENV['mdot__url'] %> memorials: prefill: true mhv: account: mock: <%= ENV['mhv__account__mock'] %> api_gateway: hosts: bluebutton: <%= ENV['mhv__api_gateway__hosts__bluebutton'] %> fhir: <%= ENV['mhv__api_gateway__hosts__fhir'] %> pharmacy: <%= ENV['mhv__api_gateway__hosts__pharmacy'] %> phrmgr: <%= ENV['mhv__api_gateway__hosts__phrmgr'] %> security: <%= ENV['mhv__api_gateway__hosts__security'] %> sm_patient: <%= ENV['mhv__api_gateway__hosts__sm_patient'] %> usermgmt: <%= ENV['mhv__api_gateway__hosts__usermgmt'] %> bb: collection_caching_enabled: true mock: <%= ENV['mhv__bb__mock'] %> facility_range: <%= ENV['mhv__facility_range'] %> facility_specific: - 741MM inherited_proofing: app_token: <%= ENV['mhv__inherited_proofing__app_token'] %> host: <%= ENV['mhv__inherited_proofing__host'] %> medical_records: app_id: 103 app_token: <%= ENV['mhv__medical_records__app_token'] %> host: <%= ENV['mhv__medical_records__host'] %> mhv_x_api_key: <%= ENV['mhv__medical_records__mhv_x_api_key'] %> x_api_key: <%= ENV['mhv__medical_records__x_api_key'] %> x_api_key_v2: <%= ENV['mhv__medical_records__x_api_key_v2'] %> x_auth_key: <%= ENV['mhv__medical_records__x_auth_key'] %> oh_facility_checks: facilities_migrating_to_oh: <%= ENV['mhv__facilities_migrating_to_oh'] %> facilities_ready_for_info_alert: <%= ENV['mhv__facilities_ready_for_info_alert'] %> pretransitioned_oh_facilities: <%= ENV['mhv__pretransitioned_oh_facilities'] %> rx: app_token: <%= ENV['mhv__rx__app_token'] %> base_path: <%= ENV['mhv__rx__base_path'] %> collection_caching_enabled: false gw_base_path: <%= ENV['mhv__rx__gw_base_path'] %> host: <%= ENV['mhv__rx__host'] %> mock: <%= ENV['mhv__rx__mock'] %> x_api_key: <%= ENV['mhv__rx__x_api_key'] %> sm: app_token: <%= ENV['mhv__sm__app_token'] %> gw_base_path: <%= ENV['mhv__sm__gw_base_path'] %> mock: <%= ENV['mhv__sm__mock'] %> timeout: <%= ENV['mhv__sm__timeout'] || 60 %> x_api_key: <%= ENV['mhv__sm__x_api_key'] %> uhd: app_id: <%= ENV['mhv__uhd__app_id'] %> app_token: <%= ENV['mhv__uhd__app_token']&.dump %> host: <%= ENV['mhv__uhd__host'] %> labs_logging_date_range_days: <%= ENV['mhv__uhd__labs_logging_date_range_days'] %> mock: false security_host: <%= ENV['mhv__uhd__security_host'] %> subject: "Proxy Client" user_type: <%= ENV['mhv__uhd__user_type'] %> x_api_key: <%= ENV['mhv__uhd__x_api_key'] %> mhv_mobile: rx: app_token: <%= ENV['mhv_mobile__rx__app_token'] %> x_api_key: <%= ENV['mhv_mobile__rx__x_api_key'] %> sm: app_token: <%= ENV['mhv_mobile__sm__app_token'] %> x_api_key: <%= ENV['mhv_mobile__sm__x_api_key'] %> mobile_lighthouse: client_id: <%= ENV['mobile_lighthouse__client_id'] %> rsa_key: <%= ENV['mobile_lighthouse__rsa_key'] %> modules_appeals_api: documentation: notice_of_disagreements_v1: <%= ENV['modules_appeals_api__documentation__notice_of_disagreements_v1'] %> path_enabled_flag: <%= ENV['modules_appeals_api__documentation__path_enabled_flag'] %> wip_docs: <%= ENV['modules_appeals_api__documentation__wip_docs'] %> evidence_submissions: location: prefix: http://some.fakesite.com/path replacement: http://another.fakesite.com/rewrittenpath legacy_appeals_enabled: true notice_of_disagreement_pii_expunge_enabled: <%= ENV['modules_appeals_api__notice_of_disagreement_pii_expunge_enabled'] %> notice_of_disagreement_updater_enabled: <%= ENV['modules_appeals_api__notice_of_disagreement_updater_enabled'] %> reports: daily_decision_review: enabled: <%= ENV['modules_appeals_api__reports__daily_decision_review__enabled'] %> recipients: <%= ENV['modules_appeals_api__reports__daily_decision_review__recipients'] %> daily_error: enabled: <%= ENV['modules_appeals_api__reports__daily_error__enabled'] %> recipients: <%= ENV['modules_appeals_api__reports__daily_error__recipients'] %> weekly_decision_review: enabled: <%= ENV['modules_appeals_api__reports__weekly_decision_review__enabled'] %> recipients: <%= ENV['modules_appeals_api__reports__weekly_decision_review__recipients'] %> weekly_error: enabled: <%= ENV['modules_appeals_api__reports__weekly_error__enabled'] %> recipients: <%= ENV['modules_appeals_api__reports__weekly_error__recipients'] %> s3: aws_access_key_id: aws_access_key_id aws_secret_access_key: aws_secret_access_key bucket: bucket region: region uploads_enabled: <%= ENV['modules_appeals_api__s3__uploads_enabled'] %> schema_dir: config/schemas slack: api_key: <%= ENV['modules_appeals_api__slack__api_key'] %> appeals_channel_id: <%= ENV['modules_appeals_api__slack__appeals_channel_id'] %> status_simulation_enabled: <%= ENV['modules_appeals_api__status_simulation_enabled'] %> token_validation: appeals_status: api_key: <%= ENV['modules_appeals_api__token_validation__appeals_status__api_key'] %> contestable_issues: api_key: <%= ENV['modules_appeals_api__token_validation__contestable_issues__api_key'] %> higher_level_reviews: api_key: <%= ENV['modules_appeals_api__token_validation__higher_level_reviews__api_key'] %> legacy_appeals: api_key: <%= ENV['modules_appeals_api__token_validation__legacy_appeals__api_key'] %> notice_of_disagreements: api_key: <%= ENV['modules_appeals_api__token_validation__notice_of_disagreements__api_key'] %> supplemental_claims: api_key: <%= ENV['modules_appeals_api__token_validation__supplemental_claims__api_key'] %> mvi_hca: url: http://example.com ogc: form21a_service_url: api_key: <%= ENV['ogc__form21a_service_url__api_key'] %> s3: bucket: <%= ENV['ogc__form21a__s3__bucket'] %> region: us-gov-west-1 type: s3 uploads_enabled: true url: <%= ENV['ogc__form21a_service_url__url'] %> oidc: isolated_audience: claims: <%= ENV['oidc__isolated_audience__claims'] %> default: api://default old_secret_key_base: <%= ENV['old_secret_key_base'] %> onsite_notifications: public_key: <%= ENV['onsite_notifications__public_key'] %> template_ids: <%= ENV['onsite_notifications__template_ids'] %> pension_burial: prefill: true sftp: relative_path: "../VETSGOV_PENSION" pension_ipf_vanotify_status_callback: bearer_token: <%= ENV['pension_ipf_vanotify_status_callback__bearer_token'] %> ppms: api_keys: Ocp-Apim-Subscription-Key-E: <%= ENV['ppms__api_keys__ocp-apim-subscription-key-e'] %> Ocp-Apim-Subscription-Key-S: <%= ENV['ppms__api_keys__ocp-apim-subscription-key-s'] %> fakekey: fakevalue ocp-apim-subscription-key: <%= ENV['ppms__api_keys__ocp-apim-subscription-key'] %> apim_url: <%= ENV['ppms__apim_url'] %> open_timeout: 15 read_timeout: 55 url: <%= ENV['ppms__url'] %> preneeds: host: <%= ENV['preneeds__host'] %> s3: aws_access_key_id: <%= ENV['preneeds__s3__aws_access_key_id'] %> aws_secret_access_key: <%= ENV['preneeds__s3__aws_secret_access_key'] %> bucket: <%= ENV['preneeds__s3__bucket'] %> region: us-gov-west-1 wsdl: config/preneeds/wsdl/preneeds.wsdl rack_timeout: service_timeout: <%= ENV['rack_timeout__service_timeout'] %> wait_overtime: <%= ENV['rack_timeout__wait_overtime'] %> wait_timeout: <%= ENV['rack_timeout__wait_timeout'] %> redis: app_data: url: <%= ENV['redis__app_data__url'] %> host: <%= ENV['redis__host'] %> port: 6379 rails_cache: url: <%= ENV['redis__rails_cache__url'] %> sidekiq: url: <%= ENV['redis__sidekiq__url'] %> relative_url_root: "/" reports: aws: access_key_id: <%= ENV['reports__aws__access_key_id'] %> bucket: <%= ENV['reports__aws__bucket'] %> region: us-gov-west-1 secret_access_key: <%= ENV['reports__aws__secret_access_key'] %> send_email: true spool10203_submission: emails: - Brian.Grubb@va.gov - dana.kuykendall@va.gov - Jennifer.Waltz2@va.gov - Joseph.Preisser@va.gov - Joshua.Lashbrook@va.gov - kathleen.dalfonso@va.gov - kyle.pietrosanto@va.gov - lihan@adhocteam.us - Lucas.Tickner@va.gov - Ricardo.DaSilva@va.gov - robert.shinners@va.gov - shay.norton@va.gov - tammy.hurley1@va.gov staging_emails: - Brian.Grubb@va.gov - Joseph.Preisser@va.gov - kyle.pietrosanto@va.gov - lihan@adhocteam.us - Lucas.Tickner@va.gov - Ricardo.DaSilva@va.gov - tammy.hurley1@va.gov - vfep_support_team@va.gov - eugenia.gina.ronat@accenturefederal.com - morgan.whaley@accenturefederal.com - m.c.shah@accenturefederal.com - d.a.barnes@accenturefederal.com - jacob.finnern@accenturefederal.com - hocine.halli@accenturefederal.com - adam.freemer@accenturefederal.com spool_submission: emails: - Brian.Grubb@va.gov - dana.kuykendall@va.gov - Jennifer.Waltz2@va.gov - Joseph.Preisser@va.gov - Joshua.Lashbrook@va.gov - kathleen.dalfonso@va.gov - kyle.pietrosanto@va.gov - lihan@adhocteam.us - Lucas.Tickner@va.gov - Ricardo.DaSilva@va.gov - shay.norton@va.gov - tammy.hurley1@va.gov staging_emails: - Brian.Grubb@va.gov - Joseph.Preisser@va.gov - kyle.pietrosanto@va.gov - lihan@adhocteam.us - Lucas.Tickner@va.gov - Ricardo.DaSilva@va.gov - tammy.hurley1@va.gov - vfep_support_team@va.gov - eugenia.gina.ronat@accenturefederal.com - morgan.whaley@accenturefederal.com - m.c.shah@accenturefederal.com - d.a.barnes@accenturefederal.com - jacob.finnern@accenturefederal.com - hocine.halli@accenturefederal.com - adam.freemer@accenturefederal.com year_to_date_report: emails: - 222A.VBAVACO@va.gov - 224B.VBAVACO@va.gov - 224C.VBAVACO@va.gov - Brandon.Scott2@va.gov - Brian.Grubb@va.gov - Christina.DiTucci@va.gov - EDU.VBAMUS@va.gov - John.McNeal@va.gov - Joseph.Preisser@va.gov - Joshua.Lashbrook@va.gov - kathleen.dalfonso@va.gov - kyle.pietrosanto@va.gov - Lucas.Tickner@va.gov - michele.mendola@va.gov - Ricardo.DaSilva@va.gov - shay.norton@va.gov - tammy.hurley1@va.gov staging_emails: - Brian.Grubb@va.gov - Joseph.Preisser@va.gov - kyle.pietrosanto@va.gov - lee.munson@va.gov - lihan@adhocteam.us - Lucas.Tickner@va.gov - matthew.ziolkowski@va.gov - Michael.Johnson19@va.gov - patrick.burk@va.gov - preston.sanders@va.gov - robyn.noles@va.gov - Ricardo.DaSilva@va.gov - tammy.hurley1@va.gov - vfep_support_team@va.gov - eugenia.gina.ronat@accenturefederal.com - morgan.whaley@accenturefederal.com - m.c.shah@accenturefederal.com - d.a.barnes@accenturefederal.com - jacob.finnern@accenturefederal.com - hocine.halli@accenturefederal.com - adam.freemer@accenturefederal.com res: api_key: <%= ENV['res__api_key'] %> base_url: <%= ENV['res__base_url'] %> ch_31_case_details: mock: <%= ENV['res__ch_31_case_details__mock'] %> ch_31_eligibility: mock: <%= ENV['res__ch_31_eligibility__mock'] %> mock_ch_31: <%= ENV['res__mock_ch31'] %> review_instance_slug: <%= ENV['review_instance_slug'] %> rrd: alerts: recipients: <%= ENV['rrd__alerts__recipients'] %> mas_all_claims_tracking: recipients: <%= ENV['rrd__mas_all_claims_tracking__recipients'] %> mas_tracking: recipients: <%= ENV['rrd__mas_tracking__recipients'] %> pact_tracking: recipients: - fake_email salesforce: consumer_key: <%= ENV['salesforce__consumer_key'] %> env: <%= ENV['salesforce__env'] %> salesforce-carma: url: <%= ENV['salesforce-carma__url'] %> salesforce-gibft: consumer_key: <%= ENV['salesforce-gibft__consumer_key'] %> env: <%= ENV['salesforce-gibft__env'] %> signing_key_path: <%= ENV['salesforce-gibft__signing_key_path'] %> url: <%= ENV['salesforce-gibft__url'] %> saml: cert_path: ~ key_path: ~ schema_contract: appointments_index: modules/vaos/app/schemas/appointments_index.json claims_and_appeals_get_claim: modules/mobile/app/schemas/claims_and_appeals_get_claim.json test_index: spec/fixtures/schema_contract/test_schema.json search: access_key: <%= ENV['search__access_key'] %> affiliate: va mock_search: <%= ENV['search__mock_search'] %> url: <%= ENV['search__url'] %> search_click_tracking: access_key: <%= ENV['search_click_tracking__access_key'] %> affiliate: va mock: <%= ENV['search_click_tracking__mock'] %> module_code: <%= ENV['search_click_tracking__module_code'] %> url: https://api.gsa.gov/technology/searchgov/v2 search_gsa: access_key: <%= ENV['search_gsa__access_key'] %> affiliate: va mock_search: <%= ENV['search_gsa__mock_search'] %> url: <%= ENV['search_gsa__url'] %> search_typeahead: api_key: <%= ENV['search_typeahead__api_key'] %> name: va url: https://api.gsa.gov/technology/searchgov/v1 secret_key_base: <%= ENV['secret_key_base'] %> sentry: dsn: <%= ENV['sentry__dsn'] %> shrine: claims: access_key_id: <%= ENV['shrine__claims__access_key_id'] %> bucket: <%= ENV['shrine__claims__bucket'] %> path: "/" region: us-gov-west-1 secret_access_key: <%= ENV['shrine__claims__secret_access_key'] %> type: s3 upload_options: acl: private server_side_encryption: AES256 local: path: <%= ENV['shrine__local__path'] %> type: <%= ENV['shrine__local__type'] %> remotes3: access_key_id: ~ bucket: ~ path: ~ region: ~ secret_access_key: ~ type: ~ sidekiq: github_api_key: <%= ENV['sidekiq__github_api_key'] %> github_oauth_key: <%= ENV['sidekiq__github_oauth_key'] %> github_oauth_secret: <%= ENV['sidekiq__github_oauth_secret'] %> github_organization: department-of-veterans-affairs github_team: <%= ENV['sidekiq__github_team'] %> sidekiq_admin_panel: <%= ENV['sidekiq_admin_panel'] %> test_database_url: <%= ENV['test_database_url'] %> test_user_dashboard: env: <%= ENV['test_user_dashboard__env'] %> github_oauth: client_id: <%= ENV['test_user_dashboard__github_oauth__client_id'] %> client_secret: <%= ENV['test_user_dashboard__github_oauth__client_secret'] %> token_validation: url: <%= ENV['token_validation__url'] %> travel_pay: base_url: <%= ENV['travel_pay__base_url'] %> client_number: <%= ENV['travel_pay__client_number'] %> mobile_client_number: <%= ENV['travel_pay__mobile_client_number'] %> mock: <%= ENV['travel_pay__mock'] %> service_name: BTSSS-API sts: scope: <%= ENV['travel_pay__sts__scope'] %> service_account_id: <%= ENV['travel_pay__sts__service_account_id'] %> subscription_key: <%= ENV['travel_pay__subscription_key'] %> subscription_key_e: <%= ENV['travel_pay__subscription_key_e'] %> subscription_key_s: <%= ENV['travel_pay__subscription_key_s'] %> veis: auth_url: https://login.microsoftonline.us client_id: <%= ENV['travel_pay__veis__client_id'] %> client_secret: <%= ENV['travel_pay__veis__client_secret'] %> resource: <%= ENV['travel_pay__veis__resource'] %> tenant_id: <%= ENV['travel_pay__veis__tenant_id'] %> va_forms: drupal_password: <%= ENV['va_forms__drupal_password'] %> drupal_url: <%= ENV['va_forms__drupal_url'] %> drupal_username: <%= ENV['va_forms__drupal_username'] %> form_reloader: enabled: <%= ENV['va_forms__form_reloader__enabled'] %> slack: api_key: <%= ENV['va_forms__slack__api_key'] %> channel_id: <%= ENV['va_forms__slack__channel_id'] %> enabled: <%= ENV['va_forms__slack__enabled'] %> va_mobile: claims_path: /services/claims/v2/veterans key_path: <%= ENV['va_mobile__key_path'] %> mock: <%= ENV['va_mobile__mock'] %> patients_path: /vaos/v1/patients ppms_base_url: <%= ENV['va_mobile__ppms_base_url'] %> timeout: <%= ENV['va_mobile__timeout'] %> url: <%= ENV['va_mobile__url'] %> va_notify: status_callback: bearer_token: <%= ENV['va_notify__status_callback__bearer_token'] %> va_profile: address_validation: api_key: <%= ENV['va_profile__address_validation__api_key'] %> hostname: <%= ENV['va_profile__address_validation__hostname'] %> contact_information: cache_enabled: true enabled: true mock: <%= ENV['va_profile__contact_information__mock'] %> timeout: 30 demographics: cache_enabled: <%= ENV['va_profile__demographics__cache_enabled'] %> enabled: true mock: <%= ENV['va_profile__demographics__mock'] %> timeout: 30 military_personnel: cache_enabled: <%= ENV['va_profile__military_personnel__cache_enabled'] %> enabled: true mock: <%= ENV['va_profile__military_personnel__mock'] %> timeout: 30 prefill: true url: <%= ENV['va_profile__url'] %> v3: address_validation: api_key: <%= ENV['va_profile__v3__address_validation__api_key'] %> veteran_status: cache_enabled: <%= ENV['va_profile__veteran_status__cache_enabled'] %> enabled: <%= ENV['va_profile__veteran_status__enabled'] %> mock: <%= ENV['va_profile__veteran_status__mock'] %> timeout: 30 vahb: version_requirement: allergies_oracle_health: <%= ENV['vahb__version_requirement__allergies_oracle_health'] || '3.0.0' %> labs_oracle_health: <%= ENV['vahb__version_requirement__labs_oracle_health'] || '3.0.0' %> medications_oracle_health: <%= ENV['vahb__version_requirement__medications_oracle_health'] || '2.99.99' %> valid_va_file_number: false vanotify: callback_url: <%= ENV['vanotify__callback_url'] %> client_url: <%= ENV['vanotify__client_url'] %> links: connected_applications: https://www.va.gov/profile/connected-applications password_reset: https://www.va.gov/resources/signing-in-to-vagov/#what-if-i-cant-sign-in-to-vago mock: <%= ENV['vanotify__mock'] %> service_callback_tokens: 1010_health_apps: <%= ENV['vanotify__service_callback_tokens__1010_health_apps'] %> benefits_decision_review: <%= ENV['vanotify__service_callback_tokens__benefits_decision_review'] %> benefits_disability: <%= ENV['vanotify__service_callback_tokens__benefits_disability'] %> benefits_management_tools: <%= ENV['vanotify__service_callback_tokens__benefits_management_tools'] %> ivc_forms: <%= ENV['vanotify__service_callback_tokens__ivc_forms'] %> va_gov: <%= ENV['vanotify__service_callback_tokens__va_gov'] %> services: 21_0538: &vanotify_services_dependents_verification api_key: <%= ENV['vanotify__services__dependents__api_key'] %> email: error: flipper_id: dv_email_notification template_id: <%= ENV['vanotify__services__21_0538__email__error__template_id'] %> received: flipper_id: dv_email_notification template_id: <%= ENV['vanotify__services__21_0538__email__received__template_id'] %> submitted: flipper_id: dv_email_notification template_id: <%= ENV['vanotify__services__21_0538__email__submitted__template_id'] %> 21_686c_674: &vanotify_services_dependents_benefits api_key: <%= ENV['vanotify__services__21_686c_674__api_key'] %> email: error_674_only: flipper_id: dependents_benefits_error_email_notification template_id: <%= ENV['vanotify__services__21_686c_674__email__error_674_only__template_id'] %> error_686c_674: flipper_id: dependents_benefits_error_email_notification template_id: <%= ENV['vanotify__services__21_686c_674__email__error_686c_674__template_id'] %> error_686c_only: flipper_id: dependents_benefits_error_email_notification template_id: <%= ENV['vanotify__services__21_686c_674__email__error_686c_only__template_id'] %> received_674_only: flipper_id: dependents_benefits_received_email_notification template_id: <%= ENV['vanotify__services__21_686c_674__email__received_674_only__template_id'] %> received_686c_674: flipper_id: dependents_benefits_received_email_notification template_id: <%= ENV['vanotify__services__21_686c_674__email__received_686c_674__template_id'] %> received_686c_only: flipper_id: dependents_benefits_received_email_notification template_id: <%= ENV['vanotify__services__21_686c_674__email__received_686c_only__template_id'] %> submitted674_only: flipper_id: dependents_benefits_submitted_email_notification template_id: <%= ENV['vanotify__services__21_686c_674__email__submitted674_only__template_id'] %> submitted686c674: flipper_id: dependents_benefits_submitted_email_notification template_id: <%= ENV['vanotify__services__21_686c_674__email__submitted686c674__template_id'] %> submitted686c_only: flipper_id: dependents_benefits_submitted_email_notification template_id: <%= ENV['vanotify__services__21_686c_674__email__submitted686c_only__template_id'] %> 21p_0969: &vanotify_services_income_and_assets api_key: <%= ENV['vanotify__services__21p_0969__api_key'] %> email: error: flipper_id: income_and_assets_error_email_notification template_id: <%= ENV['vanotify__services__21p_0969__email__error__template_id'] %> persistent_attachment_error: flipper_id: income_and_assets_persistent_attachment_error_email_notification template_id: <%= ENV['vanotify__services__21p_0969__email__persistent_attachment_error__template_id'] %> received: flipper_id: income_and_assets_received_email_notification template_id: <%= ENV['vanotify__services__21p_0969__email__received__template_id'] %> submitted: flipper_id: income_and_assets_submitted_email_notification template_id: <%= ENV['vanotify__services__21p_0969__email__submitted__template_id'] %> 21p_527ez: &vanotify_services_pension api_key: <%= ENV['vanotify__services__21p_527ez__api_key'] %> email: confirmation: flipper_id: false template_id: <%= ENV['vanotify__services__21p_527ez__email__confirmation__template_id'] %> error: flipper_id: pension_error_email_notification template_id: <%= ENV['vanotify__services__21p_527ez__email__error__template_id'] %> persistent_attachment_error: flipper_id: pension_persistent_attachment_error_email_notification template_id: <%= ENV['vanotify__services__21p_527ez__email__persistent_attachment_error__template_id'] %> received: flipper_id: pension_received_email_notification template_id: <%= ENV['vanotify__services__21p_527ez__email__received__template_id'] %> submitted: flipper_id: pension_submitted_email_notification template_id: <%= ENV['vanotify__services__21p_527ez__email__submitted__template_id'] %> 21p_534ez: &vanotify_services_survivors_benefits api_key: ~ email: confirmation: flipper_id: false template_id: ~ error: flipper_id: survivors_benefits_error_email_notification template_id: ~ persistent_attachment_error: flipper_id: survivors_benefits_persistent_attachment_error_email_notification template_id: ~ received: flipper_id: survivors_benefits_received_email_notification template_id: ~ submitted: flipper_id: survivors_benefits_submitted_email_notification template_id: ~ 21p_530ez: &vanotify_services_burial api_key: <%= ENV['vanotify__services__21p_530ez__api_key'] %> email: confirmation: flipper_id: false template_id: <%= ENV['vanotify__services__21p_530ez__email__confirmation__template_id'] %> error: flipper_id: burial_error_email_notification template_id: <%= ENV['vanotify__services__21p_530ez__email__error__template_id'] %> persistent_attachment_error: flipper_id: burial_persistent_attachment_error_email_notification template_id: <%= ENV['vanotify__services__21p_530ez__email__persistent_attachment_error__template_id'] %> received: flipper_id: burial_received_email_notification template_id: <%= ENV['vanotify__services__21p_530ez__email__received__template_id'] %> submitted: flipper_id: burial_submitted_email_notification template_id: <%= ENV['vanotify__services__21p_530ez__email__submitted__template_id'] %> 21p_530: *vanotify_services_burial 21p_530v2: *vanotify_services_burial 21p_8416: &vanotify_services_medical_expense_reports api_key: ~ email: confirmation: flipper_id: false template_id: ~ error: flipper_id: survivors_benefits_error_email_notification template_id: ~ persistent_attachment_error: flipper_id: survivors_benefits_persistent_attachment_error_email_notification template_id: ~ received: flipper_id: survivors_benefits_received_email_notification template_id: ~ submitted: flipper_id: survivors_benefits_submitted_email_notification template_id: ~ accredited_representative_portal: api_key: <%= ENV['vanotify__services__accredited_representative_portal__api_key'] %> email: confirmation: template_id: <%= ENV['vanotify__services__accredited_representative_portal__email__confirmation__template_id'] %> error: template_id: <%= ENV['vanotify__services__accredited_representative_portal__email__error__template_id'] %> received: template_id: <%= ENV['vanotify__services__accredited_representative_portal__email__received__template_id'] %> benefits_decision_review: api_key: <%= ENV['vanotify__services__benefits_decision_review__api_key'] %> template_id: evidence_recovery_email: <%= ENV['vanotify__services__benefits_decision_review__template_id__evidence_recovery_email'] %> form_recovery_email: <%= ENV['vanotify__services__benefits_decision_review__template_id__form_recovery_email'] %> higher_level_review_form_error_email: <%= ENV['vanotify__services__benefits_decision_review__template_id__higher_level_review_form_error_email'] %> notice_of_disagreement_evidence_error_email: <%= ENV['vanotify__services__benefits_decision_review__template_id__notice_of_disagreement_evidence_error_email'] %> notice_of_disagreement_form_error_email: <%= ENV['vanotify__services__benefits_decision_review__template_id__notice_of_disagreement_form_error_email'] %> supplemental_claim_evidence_error_email: <%= ENV['vanotify__services__benefits_decision_review__template_id__supplemental_claim_evidence_error_email'] %> supplemental_claim_form_error_email: <%= ENV['vanotify__services__benefits_decision_review__template_id__supplemental_claim_form_error_email'] %> supplemental_claim_secondary_form_error_email: <%= ENV['vanotify__services__benefits_decision_review__template_id__supplemental_claim_secondary_form_error_email'] %> benefits_disability: api_key: <%= ENV['vanotify__services__benefits_disability__api_key'] %> template_id: form0781_upload_failure_notification_template_id: <%= ENV['vanotify__services__benefits_disability__template_id__form0781_upload_failure_notification_template_id'] %> form4142_upload_failure_notification_template_id: <%= ENV['vanotify__services__benefits_disability__template_id__form4142_upload_failure_notification_template_id'] %> form526_document_upload_failure_notification_template_id: <%= ENV['vanotify__services__benefits_disability__template_id__form526_document_upload_failure_notification_template_id'] %> form526_submission_failure_notification_template_id: <%= ENV['vanotify__services__benefits_disability__template_id__form526_submission_failure_notification_template_id'] %> benefits_management_tools: api_key: <%= ENV['vanotify__services__benefits_management_tools__api_key'] %> push_api_key: <%= ENV['vanotify__services__benefits_management_tools__push_api_key'] %> template_id: decision_letter_ready_email: <%= ENV['vanotify__services__benefits_management_tools__template_id__decision_letter_ready_email'] %> evidence_submission_failure_email: <%= ENV['vanotify__services__benefits_management_tools__template_id__evidence_submission_failure_email'] %> burials: *vanotify_services_burial check_in: api_key: <%= ENV['vanotify__services__check_in__api_key'] %> sms_sender_id: <%= ENV['vanotify__services__check_in__sms_sender_id'] %> template_id: claim_submission_duplicate_text: <%= ENV['vanotify__services__check_in__template_id__claim_submission_duplicate_text'] %> claim_submission_error_text: <%= ENV['vanotify__services__check_in__template_id__claim_submission_error_text'] %> claim_submission_failure_text: <%= ENV['vanotify__services__check_in__template_id__claim_submission_failure_text'] %> claim_submission_success_text: <%= ENV['vanotify__services__check_in__template_id__claim_submission_success_text'] %> claim_submission_timeout_text: <%= ENV['vanotify__services__check_in__template_id__claim_submission_timeout_text'] %> dependents: api_key: <%= ENV['vanotify__services__dependents__api_key'] %> email: received674: template_id: <%= ENV['vanotify__services__dependents__email__received674__template_id'] %> received686: template_id: <%= ENV['vanotify__services__dependents__email__received686__template_id'] %> received686c674: template_id: <%= ENV['vanotify__services__dependents__email__received686c674__template_id'] %> submitted674: template_id: <%= ENV['vanotify__services__dependents__email__submitted674__template_id'] %> submitted686: template_id: <%= ENV['vanotify__services__dependents__email__submitted686__template_id'] %> submitted686c674: template_id: <%= ENV['vanotify__services__dependents__email__submitted686c674__template_id'] %> dependents_benefits: *vanotify_services_dependents_benefits dependents_verification: *vanotify_services_dependents_verification dmc: api_key: <%= ENV['vanotify__services__dmc__api_key'] %> template_id: digital_dispute_confirmation_email: <%= ENV['vanotify__services__dmc__template_id__digital_dispute_confirmation_email'] %> digital_dispute_failure_email: <%= ENV['vanotify__services__dmc__template_id__digital_dispute_failure_email'] %> digital_dispute_submission_email: <%= ENV['vanotify__services__dmc__template_id__digital_dispute_submission_email'] %> fsr_confirmation_email: <%= ENV['vanotify__services__dmc__template_id__fsr_confirmation_email'] %> fsr_failed_email: <%= ENV['vanotify__services__dmc__template_id__fsr_failed_email'] %> fsr_step_1_submission_in_progress_email: <%= ENV['vanotify__services__dmc__template_id__fsr_step_1_submission_in_progress_email'] %> fsr_streamlined_confirmation_email: <%= ENV['vanotify__services__dmc__template_id__fsr_streamlined_confirmation_email'] %> vha_fsr_confirmation_email: <%= ENV['vanotify__services__dmc__template_id__vha_fsr_confirmation_email'] %> vha_new_copay_statement_email: <%= ENV['vanotify__services__dmc__template_id__vha_new_copay_statement_email'] %> health_apps_1010: api_key: <%= ENV['vanotify__services__health_apps_1010__api_key'] %> template_id: form1010_cg_failure_email: <%= ENV['vanotify__services__health_apps_1010__template_id__form1010_cg_failure_email'] %> form1010_ez_failure_email: <%= ENV['vanotify__services__health_apps_1010__template_id__form1010_ez_failure_email'] %> form1010_ezr_failure_email: <%= ENV['vanotify__services__health_apps_1010__template_id__form1010_ezr_failure_email'] %> income_and_assets: *vanotify_services_income_and_assets ivc_champva: api_key: <%= ENV['vanotify__services__ivc_champva__api_key'] %> failure_email_threshold_days: 7 pega_inbox_address: <%= ENV['vanotify__services__ivc_champva__pega_inbox_address'] %> template_id: form_10_10d_email: <%= ENV['vanotify__services__ivc_champva__template_id__form_10_10d_email'] %> form_10_10d_failure_email: <%= ENV['vanotify__services__ivc_champva__template_id__form_10_10d_failure_email'] %> form_10_7959a_email: <%= ENV['vanotify__services__ivc_champva__template_id__form_10_7959a_email'] %> form_10_7959a_failure_email: <%= ENV['vanotify__services__ivc_champva__template_id__form_10_7959a_failure_email'] %> form_10_7959c_email: <%= ENV['vanotify__services__ivc_champva__template_id__form_10_7959c_email'] %> form_10_7959c_failure_email: <%= ENV['vanotify__services__ivc_champva__template_id__form_10_7959c_failure_email'] %> form_10_7959f_1_email: <%= ENV['vanotify__services__ivc_champva__template_id__form_10_7959f_1_email'] %> form_10_7959f_1_failure_email: <%= ENV['vanotify__services__ivc_champva__template_id__form_10_7959f_1_failure_email'] %> form_10_7959f_2_email: <%= ENV['vanotify__services__ivc_champva__template_id__form_10_7959f_2_email'] %> form_10_7959f_2_failure_email: <%= ENV['vanotify__services__ivc_champva__template_id__form_10_7959f_2_failure_email'] %> pega_team_missing_status_email: <%= ENV['vanotify__services__ivc_champva__template_id__pega_team_missing_status_email'] %> pega_team_zsf_email: <%= ENV['vanotify__services__ivc_champva__template_id__pega_team_zsf_email'] %> lighthouse: api_key: <%= ENV['vanotify__services__lighthouse__api_key'] %> template_id: connection_template: <%= ENV['vanotify__services__lighthouse__template_id__connection_template'] %> disconnection_template: <%= ENV['vanotify__services__lighthouse__template_id__disconnection_template'] %> higher_level_review_received: <%= ENV['vanotify__services__lighthouse__template_id__higher_level_review_received'] %> higher_level_review_received_claimant: <%= ENV['vanotify__services__lighthouse__template_id__higher_level_review_received_claimant'] %> notice_of_disagreement_received: <%= ENV['vanotify__services__lighthouse__template_id__notice_of_disagreement_received'] %> notice_of_disagreement_received_claimant: <%= ENV['vanotify__services__lighthouse__template_id__notice_of_disagreement_received_claimant'] %> supplemental_claim_received: <%= ENV['vanotify__services__lighthouse__template_id__supplemental_claim_received'] %> supplemental_claim_received_claimant: <%= ENV['vanotify__services__lighthouse__template_id__supplemental_claim_received_claimant'] %> medical_expense_reports: *vanotify_services_medical_expense_reports oracle_health: sms_sender_id: <%= ENV['vanotify__services__oracle_health__sms_sender_id'] %> template_id: claim_submission_duplicate_text: <%= ENV['vanotify__services__oracle_health__template_id__claim_submission_duplicate_text'] %> claim_submission_error_text: <%= ENV['vanotify__services__oracle_health__template_id__claim_submission_error_text'] %> claim_submission_failure_text: <%= ENV['vanotify__services__oracle_health__template_id__claim_submission_failure_text'] %> claim_submission_success_text: <%= ENV['vanotify__services__oracle_health__template_id__claim_submission_success_text'] %> claim_submission_timeout_text: <%= ENV['vanotify__services__oracle_health__template_id__claim_submission_timeout_text'] %> pensions: *vanotify_services_pension survivors_benefits: *vanotify_services_survivors_benefits va_gov: api_key: <%= ENV['vanotify__services__va_gov__api_key'] %> template_id: accredited_representative_portal_poa_request_failure_claimant_email: <%= ENV['vanotify__services__va_gov__template_id__accredited_representative_portal_poa_request_failure_claimant_email'] %> accredited_representative_portal_poa_request_failure_rep_email: <%= ENV['vanotify__services__va_gov__template_id__accredited_representative_portal_poa_request_failure_rep_email'] %> appoint_a_representative_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__appoint_a_representative_confirmation_email'] %> appoint_a_representative_digital_expiration_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__appoint_a_representative_digital_expiration_confirmation_email'] %> appoint_a_representative_digital_expiration_warning_email: <%= ENV['vanotify__services__va_gov__template_id__appoint_a_representative_digital_expiration_warning_email'] %> appoint_a_representative_digital_submit_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__appoint_a_representative_digital_submit_confirmation_email'] %> appoint_a_representative_digital_submit_decline_email: <%= ENV['vanotify__services__va_gov__template_id__appoint_a_representative_digital_submit_decline_email'] %> career_counseling_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__career_counseling_confirmation_email'] %> ch31_central_mail_form_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__ch31_central_mail_form_confirmation_email'] %> ch31_vbms_form_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__ch31_vbms_form_confirmation_email'] %> contact_email_address_change_confirmation_needed_email: <%= ENV['vanotify__services__va_gov__template_id__contact_email_address_change_confirmation_needed_email'] %> contact_email_address_confirmation_needed_email: <%= ENV['vanotify__services__va_gov__template_id__contact_email_address_confirmation_needed_email'] %> contact_email_address_confirmed_email: <%= ENV['vanotify__services__va_gov__template_id__contact_email_address_confirmed_email'] %> contact_info_change: <%= ENV['vanotify__services__va_gov__template_id__contact_info_change'] %> covid_vaccine_registration: <%= ENV['vanotify__services__va_gov__template_id__covid_vaccine_registration'] %> direct_deposit: <%= ENV['vanotify__services__va_gov__template_id__direct_deposit'] %> form0994_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form0994_confirmation_email'] %> form0994_extra_action_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form0994_extra_action_confirmation_email'] %> form1010ez_reminder_email: <%= ENV['vanotify__services__va_gov__template_id__form1010ez_reminder_email'] %> form10275_submission_email: <%= ENV['vanotify__services__va_gov__template_id__form10275_submission_email'] %> form10297_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form10297_confirmation_email'] %> form1880_reminder_email: <%= ENV['vanotify__services__va_gov__template_id__form1880_reminder_email'] %> form1900_action_needed_email: <%= ENV['vanotify__services__va_gov__template_id__form1900_action_needed_email'] %> form1990_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form1990_confirmation_email'] %> form1990emeb_approved_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form1990emeb_approved_confirmation_email'] %> form1990emeb_denied_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form1990emeb_denied_confirmation_email'] %> form1990emeb_offramp_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form1990emeb_offramp_confirmation_email'] %> form1990meb_approved_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form1990meb_approved_confirmation_email'] %> form1990meb_denied_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form1990meb_denied_confirmation_email'] %> form1990meb_offramp_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form1990meb_offramp_confirmation_email'] %> form1995_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form1995_confirmation_email'] %> form20_10206_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form20_10206_confirmation_email'] %> form20_10206_error_email: <%= ENV['vanotify__services__va_gov__template_id__form20_10206_error_email'] %> form20_10206_received_email: <%= ENV['vanotify__services__va_gov__template_id__form20_10206_received_email'] %> form20_10207_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form20_10207_confirmation_email'] %> form20_10207_error_email: <%= ENV['vanotify__services__va_gov__template_id__form20_10207_error_email'] %> form20_10207_received_email: <%= ENV['vanotify__services__va_gov__template_id__form20_10207_received_email'] %> form21_0845_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form21_0845_confirmation_email'] %> form21_0845_error_email: <%= ENV['vanotify__services__va_gov__template_id__form21_0845_error_email'] %> form21_0845_received_email: <%= ENV['vanotify__services__va_gov__template_id__form21_0845_received_email'] %> form21_0966_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form21_0966_confirmation_email'] %> form21_0966_error_email: <%= ENV['vanotify__services__va_gov__template_id__form21_0966_error_email'] %> form21_0966_itf_api_received_email: <%= ENV['vanotify__services__va_gov__template_id__form21_0966_itf_api_received_email'] %> form21_0966_received_email: <%= ENV['vanotify__services__va_gov__template_id__form21_0966_received_email'] %> form21_0972_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form21_0972_confirmation_email'] %> form21_0972_error_email: <%= ENV['vanotify__services__va_gov__template_id__form21_0972_error_email'] %> form21_0972_received_email: <%= ENV['vanotify__services__va_gov__template_id__form21_0972_received_email'] %> form21_10203_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form21_10203_confirmation_email'] %> form21_10210_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form21_10210_confirmation_email'] %> form21_10210_error_email: <%= ENV['vanotify__services__va_gov__template_id__form21_10210_error_email'] %> form21_10210_received_email: <%= ENV['vanotify__services__va_gov__template_id__form21_10210_received_email'] %> form21_4138_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form21_4138_confirmation_email'] %> form21_4138_error_email: <%= ENV['vanotify__services__va_gov__template_id__form21_4138_error_email'] %> form21_4138_received_email: <%= ENV['vanotify__services__va_gov__template_id__form21_4138_received_email'] %> form21_4142_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form21_4142_confirmation_email'] %> form21_4142_error_email: <%= ENV['vanotify__services__va_gov__template_id__form21_4142_error_email'] %> form21_4142_received_email: <%= ENV['vanotify__services__va_gov__template_id__form21_4142_received_email'] %> form21_674_action_needed_email: <%= ENV['vanotify__services__va_gov__template_id__form21_674_action_needed_email'] %> form21_686c_674_action_needed_email: <%= ENV['vanotify__services__va_gov__template_id__form21_686c_674_action_needed_email'] %> form21_686c_action_needed_email: <%= ENV['vanotify__services__va_gov__template_id__form21_686c_action_needed_email'] %> form21p_0537_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form21p_0537_confirmation_email'] %> form21p_0537_error_email: <%= ENV['vanotify__services__va_gov__template_id__form21p_0537_error_email'] %> form21p_0537_received_email: <%= ENV['vanotify__services__va_gov__template_id__form21p_0537_received_email'] %> form21p_0847_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form21p_0847_confirmation_email'] %> form21p_0847_error_email: <%= ENV['vanotify__services__va_gov__template_id__form21p_0847_error_email'] %> form21p_0847_received_email: <%= ENV['vanotify__services__va_gov__template_id__form21p_0847_received_email'] %> form21p_601_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form21p_601_confirmation_email'] %> form21p_601_error_email: <%= ENV['vanotify__services__va_gov__template_id__form21p_601_error_email'] %> form21p_601_received_email: <%= ENV['vanotify__services__va_gov__template_id__form21p_601_received_email'] %> form26_4555_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form26_4555_confirmation_email'] %> form26_4555_duplicate_email: <%= ENV['vanotify__services__va_gov__template_id__form26_4555_duplicate_email'] %> form26_4555_rejected_email: <%= ENV['vanotify__services__va_gov__template_id__form26_4555_rejected_email'] %> form27_8832_action_needed_email: <%= ENV['vanotify__services__va_gov__template_id__form27_8832_action_needed_email'] %> form40_0247_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form40_0247_confirmation_email'] %> form40_0247_error_email: <%= ENV['vanotify__services__va_gov__template_id__form40_0247_error_email'] %> form40_10007_error_email: <%= ENV['vanotify__services__va_gov__template_id__form40_10007_error_email'] %> form526_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form526_confirmation_email'] %> form526_submission_failed_email: 7efb8dfc-f30c-4072-b900-ae393aa1114b form526_submitted_email: <%= ENV['vanotify__services__va_gov__template_id__form526_submitted_email'] %> form526ez_reminder_email: <%= ENV['vanotify__services__va_gov__template_id__form526ez_reminder_email'] %> form5490_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form5490_confirmation_email'] %> form5495_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form5495_confirmation_email'] %> form674_only_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form674_only_confirmation_email'] %> form686c_674_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form686c_674_confirmation_email'] %> form686c_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form686c_confirmation_email'] %> form686c_only_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form686c_only_confirmation_email'] %> form686c_reminder_email: <%= ENV['vanotify__services__va_gov__template_id__form686c_reminder_email'] %> form_upload_confirmation_email: <%= ENV['vanotify__services__va_gov__template_id__form_upload_confirmation_email'] %> form_upload_error_email: <%= ENV['vanotify__services__va_gov__template_id__form_upload_error_email'] %> form_upload_received_email: <%= ENV['vanotify__services__va_gov__template_id__form_upload_received_email'] %> in_progress_reminder_email_generic: <%= ENV['vanotify__services__va_gov__template_id__in_progress_reminder_email_generic'] %> login_reactivation_email: reactivation_email_test_b preneeds_burial_form_email: <%= ENV['vanotify__services__va_gov__template_id__preneeds_burial_form_email'] %> reactivation_email_test_b: <%= ENV['vanotify__services__va_gov__template_id__reactivation_email_test_b'] %> va_appointment_failure: <%= ENV['vanotify__services__va_gov__template_id__va_appointment_failure'] %> veteran_readiness_and_employment: api_key: <%= ENV['vanotify__services__va_gov__api_key'] %> email: confirmation_lighthouse: template_id: <%= ENV['vanotify__services__va_gov__template_id__ch31_central_mail_form_confirmation_email'] %> confirmation_vbms: template_id: <%= ENV['vanotify__services__va_gov__template_id__ch31_vbms_form_confirmation_email'] %> error: template_id: <%= ENV['vanotify__services__va_gov__template_id__form1900_action_needed_email'] %> status_callback: bearer_token: <%= ENV['vanotify__status_callback__bearer_token'] %> vaos: ccra: api_url: <%= ENV['va_mobile__url'] %> base_path: vaos/v1/patients mock: <%= ENV['vaos__ccra__mock'] %> redis_referral_expiry: 3600 eps: access_token_url: https://login.wellhive.com/oauth2/default/v1/token api_url: https://api.wellhive.com audience_claim_url: https://login.wellhive.com/oauth2/default/v1/token base_path: care-navigation/v1 client_assertion_type: urn:ietf:params:oauth:client-assertion-type:jwt-bearer client_id: <%= ENV['vaos__eps__client_id'] %> grant_type: client_credentials key_path: <%= ENV['vaos__eps__key_path'] %> kid: <%= ENV['vaos__eps__client_kid'] %> mock: <%= ENV['vaos__eps__mock'] %> pagination_timeout_seconds: 45 scopes: care-nav referral: encryption: hex_iv: <%= ENV['vaos__referral__encryption__hex_iv'] %> hex_secret: <%= ENV['vaos__referral__encryption__hex_secret'] %> vass: api_url: <%= ENV['vass__api_url'] %> auth_url: https://login.microsoftonline.us client_id: <%= ENV['vass__client_id'] %> client_secret: <%= ENV['vass__client_secret'] %> mock: false redis_otc_expiry: 600 redis_session_expiry: 7200 redis_token_expiry: 3540 scope: <%= ENV['vass__scope'] %> service_name: VASS-API subscription_key: <%= ENV['vass__subscription_key'] %> tenant_id: <%= ENV['vass__tenant_id'] %> vba_documents: custom_metadata_allow_list: <%= ENV['vba_documents__custom_metadata_allow_list'] %> enable_download_endpoint: <%= ENV['vba_documents__enable_download_endpoint'] %> enable_status_override: <%= ENV['vba_documents__enable_status_override'] %> enable_validate_document_endpoint: true location: prefix: <%= ENV['vba_documents__location__prefix'] %> replacement: <%= ENV['vba_documents__location__replacement'] %> monthly_report: <%= ENV['vba_documents__monthly_report'] %> report_enabled: <%= ENV['vba_documents__report_enabled'] %> s3: aws_access_key_id: <%= ENV['vba_documents__s3__aws_access_key_id'] %> aws_secret_access_key: <%= ENV['vba_documents__s3__aws_secret_access_key'] %> bucket: <%= ENV['vba_documents__s3__bucket'] %> enabled: true region: us-gov-west-1 slack: api_key: <%= ENV['vba_documents__slack__api_key'] %> channel_id: <%= ENV['vba_documents__slack__channel_id'] %> default_alert_email: <%= ENV['vba_documents__slack__default_alert_email'] %> enabled: <%= ENV['vba_documents__slack__enabled'] %> in_flight_notification_hung_time_in_days: 14 renotification_in_minutes: 1440 update_stalled_notification_in_minutes: 180 sns: region: us-gov-west-1 topic_arns: <%= ENV['vba_documents__sns__topic_arns'] %> updater_enabled: <%= ENV['vba_documents__updater_enabled'] %> vbms: ca_cert: <%= ENV['vbms__ca_cert'] %> cert: <%= ENV['vbms__cert'] %> client_keyfile: <%= ENV['vbms__client_keyfile'] %> env: <%= ENV['vbms__env'] %> environment_directory: "/srv/vets-api/secret" keypass: <%= ENV['vbms__keypass'] %> saml: <%= ENV['vbms__saml'] %> server_cert: <%= ENV['vbms__server_cert'] %> url: <%= ENV['vbms__url'] %> vbs: url: https://vbs.example.com/api/v1 vet360: address_validation: api_key: "<AV_KEY>" hostname: sandbox-api.va.gov url: https://sandbox-api.va.gov contact_information: cache_enabled: <%= ENV['vet360__contact_information__cache_enabled'] %> enabled: true mock: <%= ENV['vet360__contact_information__mock'] %> timeout: 30 demographics: cache_enabled: <%= ENV['vet360__demographics__cache_enabled'] %> enabled: true mock: true timeout: 30 military_personnel: cache_enabled: <%= ENV['vet360__military_personnel__cache_enabled'] %> enabled: true mock: <%= ENV['vet360__military_personnel__mock'] %> timeout: 30 profile_information: enabled: true timeout: 30 use_mocks: <%= ENV['vet360__profile_information__use_mocks'] %> url: https://int.vet360.va.gov v3: address_validation: api_key: "<AV_KEY>" veteran_status: cache_enabled: true enabled: true mock: <%= ENV['vet360__veteran_status__mock'] %> timeout: 30 veteran_enrollment_system: associations: api_key: <%= ENV['veteran_enrollment_system__associations__api_key'] %> ee_summary: api_key: ~ enrollment_periods: api_key: <%= ENV['veteran_enrollment_system__enrollment_periods__api_key'] %> form1095b: api_key: <%= ENV['veteran_enrollment_system__form1095b__api_key'] %> host: <%= ENV['veteran_enrollment_system__host'] %> open_timeout: 10 port: <%= ENV['veteran_enrollment_system__port'] %> timeout: 30 veteran_onboarding: onboarding_threshold_days: <%= ENV['veteran_onboarding__onboarding_threshold_days'] %> veteran_readiness_and_employment: auth_endpoint: <%= ENV['veteran_readiness_and_employment__auth_endpoint'] %> base_url: <%= ENV['veteran_readiness_and_employment__base_url'] %> credentials: <%= ENV['veteran_readiness_and_employment__credentials'] %> daily_report: emails: - VRC.VBABOS@va.gov - VRE.VBAPRO@va.gov - VRE.VBANYN@va.gov - VRC.VBABUF@va.gov - VRE.VBAHAR@va.gov - vre.vbanew@va.gov - VREBDD.VBAPHI@va.gov - VRE.VBAPIT@va.gov - VRE.VBABAL@va.gov - VRE.VBAROA@va.gov - VRE.VBAHUN@va.gov - VRETMP.VBAATG@va.gov - VRE281900.VBASPT@va.gov - VRC.VBAWIN@va.gov - VRC.VBACMS@va.gov - VREAPPS.VBANAS@va.gov - VRC.VBANOL@va.gov - VRE.VBAMGY@va.gov - VRE.VBAJAC@va.gov - VRE.VBACLE@va.gov - VRE.VBAIND@va.gov - VRE.VBALOU@va.gov - VAVBACHI.VRE@va.gov - VRE.VBADET@va.gov - VREApplications.VBAMIW@va.gov - VRC.VBASTL@va.gov - VRE.VBADES@va.gov - VRE.VBALIN@va.gov - VRC.VBASPL@va.gov - VRE.VBADEN@va.gov - VRC.VBAALB@va.gov - VRE.VBASLC@va.gov - VRC.VBAOAK@va.gov - ROVRC.VBALAN@va.gov - VRE.VBAPHO@va.gov - VRE.VBASEA@va.gov - VRE.VBABOI@va.gov - VRE.VBAPOR@va.gov - VREAPPS.VBAWAC@va.gov - VRE.VBALIT@va.gov - VREBDD.VBAMUS@va.gov - VRE.VBAREN@va.gov - MBVRE.VBASAJ@va.gov - VRE.VBAMPI@va.gov - VRE.VBAHOU@va.gov - VRE.VBAWAS@va.gov - VRE.VBAMAN@va.gov - EBENAPPS.VBASDC@va.gov - VRE.VBATOG@va.gov - VRE.VBAMAN@va.gov - VRC.VBAFHM@va.gov - VRC.VBAFAR@va.gov - VRC.VBAFAR@va.gov - VRE.VBADEN@va.gov - VRE.VBAWIC@va.gov - VRC.VBAHON@va.gov - VAVBA/WIM/RO/VR&E@vba.va.gov - VRE.VBAANC@va.gov - VRE.VBAPIT@va.gov - VRE-CMS.VBAVACO@va.gov duplicate_submission_threshold_hours: <%= ENV['veteran_readiness_and_employment__duplicate_submission_threshold_hours'] || 24 %> vetext: mock: <%= ENV['vetext__mock'] %> vetext_push: base_url: <%= ENV['vetext_push__base_url'] %> pass: <%= ENV['vetext_push__pass'] %> user: <%= ENV['vetext_push__user'] %> va_mobile_app_debug_sid: <%= ENV['vetext_push__va_mobile_app_debug_sid'] %> va_mobile_app_sid: <%= ENV['vetext_push__va_mobile_app_sid'] %> vff_simple_forms: aws: bucket: <%= ENV['vff_simple_forms__aws__bucket'] %> region: us-gov-west-1 vha: sharepoint: authentication_url: https://accounts.accesscontrol.windows.net base_path: "/sites/vhafinance/MDW" client_id: <%= ENV['vha__sharepoint__client_id'] %> client_secret: <%= ENV['vha__sharepoint__client_secret'] %> mock: <%= ENV['vha__sharepoint__mock'] %> resource: 00000003-0000-0ff1-ce00-000000000000 service_name: VHA-SHAREPOINT sharepoint_url: dvagov.sharepoint.com tenant_id: <%= ENV['vha__sharepoint__tenant_id'] %> vic: s3: aws_access_key_id: <%= ENV['vic__s3__aws_access_key_id'] %> aws_secret_access_key: <%= ENV['vic__s3__aws_secret_access_key'] %> region: us-gov-west-1 signing_key_path: <%= ENV['vic__signing_key_path'] %> url: <%= ENV['vic__url'] %> virtual_agent: cxdw_app_uri: <%= ENV['virtual_agent__cxdw_app_uri'] %> cxdw_client_id: <%= ENV['virtual_agent__cxdw_client_id'] %> cxdw_client_secret: <%= ENV['virtual_agent__cxdw_client_secret'] %> cxdw_dataverse_uri: <%= ENV['virtual_agent__cxdw_dataverse_uri'] %> cxdw_table_prefix: <%= ENV['virtual_agent__cxdw_table_prefix'] %> webchat_root_bot_secret: <%= ENV['virtual_agent__webchat_root_bot_secret'] %> virtual_hosts: <%= ENV['virtual_hosts'] %> vre_counseling: prefill: true vre_readiness: prefill: true vsp_environment: <%= ENV['vsp_environment'] %> vye: ivr_key: <%= ENV['vye__ivr_key'] %> s3: access_key_id: <%= ENV['vye__s3__access_key_id'] %> bucket: <%= ENV['vye__s3__bucket'] %> region: us-gov-west-1 secret_access_key: <%= ENV['vye__s3__secret_access_key'] %> scrypt: "N": 16384 length: 16 p: 1 r: 8 salt: <%= ENV['vye__scrypt__salt'] %> web_origin: <%= ENV['web_origin'] %> web_origin_regex: "\\Ahttps?:\\/\\/.*\\.cms\\.va\\.gov\\z" websockets: require_https: <%= ENV['websockets__require_https'] %> websocket_settings: <%= ENV['websockets__websocket_settings'] %> xlsx_file_fetcher: github_access_token: <%= ENV['xlsx_file_fetcher__github_access_token'] %>
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' # port: '33100' # accredited_representative_portal: # lighthouse: # benefits_intake: # api_key: abc123 # NOTE: This file is excluded by railsconfig in the test env. # Use config/settings/test.local.yml instead. # See "Note" at https://github.com/rubyconfig/config#developer-specific-config-files
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_allowlist_checker.rb", "line": 49, "link": "https://brakemanscanner.org/docs/warning_types/command_injection/", "code": "`git diff #{@base_sha}...#{@head_sha} -- #{FILTER_PARAM_FILE}`", "render_path": null, "location": { "type": "method", "class": "Dangerfile::ParameterFilteringAllowlistChecker", "method": "filter_params_diff" }, "user_input": "@base_sha", "confidence": "Medium", "cwe_id": [ 77 ], "note": "Variables are set from trusted CI environment variables (GITHUB_HEAD_REF, GITHUB_BASE_REF) in Dangerfile, not user input" }, { "warning_type": "Command Injection", "warning_code": 14, "fingerprint": "e9cc61a1a90740bc6ea533b2c9b8815d3644689ea001a107abf0d2cf428178c0", "check_name": "Execute", "message": "Possible command injection", "file": "script/vcr_mcp/validator.rb", "line": 301, "link": "https://brakemanscanner.org/docs/warning_types/command_injection/", "code": "Open3.capture3(\"git\", \"cat-file\", \"-p\", \"HEAD:#{rel_path}\", :chdir => (VETS_API_ROOT))", "render_path": null, "location": { "type": "method", "class": "VcrMcp::Validator", "method": "fetch_git_original" }, "user_input": "rel_path", "confidence": "Medium", "cwe_id": [ 77 ], "note": "rel_path is derived from relative_path() which removes VETS_API_ROOT prefix from validated cassette file paths - not user input. Using Open3.capture3 with argument array prevents shell injection." }, { "warning_type": "SQL Injection", "warning_code": 0, "fingerprint": "c6be575b25f7d0b6a3a83da81c1680f867bc8262b47ae4edd92b93b0bd770667", "check_name": "SQL", "message": "Possible SQL injection", "file": "modules/travel_pay/app/services/travel_pay/documents_client.rb", "line": 102, "link": "https://brakemanscanner.org/docs/warning_types/sql_injection/", "code": "connection(:server_url => Settings.travel_pay.base_url).delete(\"api/v1/claims/#{claim_id}/documents/#{document_id}\")", "render_path": null, "location": { "type": "method", "class": "TravelPay::DocumentsClient", "method": "delete_document" }, "user_input": "claim_id", "confidence": "Medium", "cwe_id": [ 89 ], "note": "" }, { "warning_type": "File Access", "warning_code": 16, "fingerprint": "658320536241b097eb56fffee9aaf4fffc804447cb6111f0e8ae8e44de5ab8c7", "check_name": "FileAccess", "message": "Model attribute used in file name", "file": "app/controllers/v0/form212680_controller.rb", "line": 22, "link": "https://brakemanscanner.org/docs/warning_types/file_access/", "code": "File.read(SavedClaim::Form212680.new(:form => JSON.parse(request.raw_post)[\"form\"].to_json).generate_prefilled_pdf)", "render_path": null, "location": { "type": "method", "class": "V0::Form212680Controller", "method": "download_pdf" }, "user_input": "SavedClaim::Form212680.new(:form => JSON.parse(request.raw_post)[\"form\"].to_json).generate_prefilled_pdf", "confidence": "Medium", "cwe_id": [ 22 ], "note": "generate_prefilled_pdf is a method, not an attribute and uses SecureRandom.uuid" }, { "warning_type": "File Access", "warning_code": 16, "fingerprint": "6cc3643a6f55145df1240ed4f37c8db0371bf7350eb0b510d881a2671bf529ea", "check_name": "FileAccess", "message": "Model attribute used in file name", "file": "app/controllers/v0/caregivers_assistance_claims_controller.rb", "line": 50, "link": "https://brakemanscanner.org/docs/warning_types/file_access/", "code": "File.read(with_retries(\"Generate 10-10CG PDF\") do\n SavedClaim::CaregiversAssistanceClaim.new(:form => form_submission).to_pdf(SecureRandom.uuid, :sign => false)\n end)", "render_path": null, "location": { "type": "method", "class": "V0::CaregiversAssistanceClaimsController", "method": "download_pdf" }, "user_input": "SavedClaim::CaregiversAssistanceClaim.new(:form => form_submission).to_pdf(SecureRandom.uuid, :sign => false)", "confidence": "Weak", "cwe_id": [ 22 ], "note": "" }, { "warning_type": "File Access", "warning_code": 16, "fingerprint": "93bff5eb783409090a4d4ef23da319bbc5fabe8d5308db025d89dcdefc0b14c1", "check_name": "FileAccess", "message": "Model attribute used in file name", "file": "app/controllers/v0/form212680_controller.rb", "line": 34, "link": "https://brakemanscanner.org/docs/warning_types/file_access/", "code": "File.delete(SavedClaim::Form212680.new(:form => JSON.parse(request.raw_post)[\"form\"].to_json).generate_prefilled_pdf)", "render_path": null, "location": { "type": "method", "class": "V0::Form212680Controller", "method": "download_pdf" }, "user_input": "SavedClaim::Form212680.new(:form => JSON.parse(request.raw_post)[\"form\"].to_json).generate_prefilled_pdf", "confidence": "Medium", "cwe_id": [ 22 ], "note": "generate_prefilled_pdf is a method, not an attribute and uses SecureRandom.uuid" }, { "warning_type": "SQL Injection", "warning_code": 0, "fingerprint": "9fd09ce387199671367fce6b24dbcfebb3f63174d3d1e810791e62b531b7f559", "check_name": "SQL", "message": "Possible SQL injection", "file": "modules/check_in/app/services/v2/chip/client.rb", "line": 184, "link": "https://brakemanscanner.org/docs/warning_types/sql_injection/", "code": "connection.delete(\"/#{base_path}/actions/deleteFromLorota/#{check_in_session.uuid}\")", "render_path": null, "location": { "type": "method", "class": "V2::Chip::Client", "method": "delete" }, "user_input": "base_path", "confidence": "Medium", "cwe_id": [ 89 ], "note": "Injecting SQL instead of UUID will not cause any data loss as downstream API deletes based on condition" }, { "warning_type": "Command Injection", "warning_code": 14, "fingerprint": "a090fbb8d8dd67ab658c4925b90b248118c9df7d9faf9f8f7a1a7a12e984929f", "check_name": "Execute", "message": "Possible command injection", "file": "bin/lib/vets-api/commands/test.rb", "line": 33, "link": "https://brakemanscanner.org/docs/warning_types/command_injection/", "code": "system(\"docker compose run --rm --service-ports web bash -c \\\"#{command}\\\"\")", "render_path": null, "location": { "type": "method", "class": "VetsApi::Commands::Test", "method": "execute_command" }, "user_input": "command", "confidence": "Medium", "cwe_id": [ 77 ], "note": "User input is sanitized in the parent class bin/lib/vets-api/commands/command.rb" }, { "warning_type": "File Access", "warning_code": 16, "fingerprint": "a8a8808bf8774793cf0af4fde6874dccf9defc9a70666d91716c9ffdff76734d", "check_name": "FileAccess", "message": "Model attribute used in file name", "file": "app/controllers/v0/caregivers_assistance_claims_controller.rb", "line": 56, "link": "https://brakemanscanner.org/docs/warning_types/file_access/", "code": "File.delete(with_retries(\"Generate 10-10CG PDF\") do\n SavedClaim::CaregiversAssistanceClaim.new(:form => form_submission).to_pdf(SecureRandom.uuid, :sign => false)\n end)", "render_path": null, "location": { "type": "method", "class": "V0::CaregiversAssistanceClaimsController", "method": "download_pdf" }, "user_input": "SavedClaim::CaregiversAssistanceClaim.new(:form => form_submission).to_pdf(SecureRandom.uuid, :sign => false)", "confidence": "Weak", "cwe_id": [ 22 ], "note": "" }, { "warning_type": "Remote Code Execution", "warning_code": 110, "fingerprint": "d882f63ce96c28fb6c6e0982f2a171460e4b933bfd9b9a5421dca21eef3f76da", "check_name": "CookieSerialization", "message": "Use of unsafe cookie serialization strategy `:marshal` might lead to remote code execution", "file": "config/initializers/cookies_serializer.rb", "line": 7, "link": "https://brakemanscanner.org/docs/warning_types/unsafe_deserialization", "code": "Rails.application.config.action_dispatch.cookies_serializer = :marshal", "render_path": null, "location": null, "user_input": null, "confidence": "Medium", "cwe_id": [ 565, 502 ], "note": "We are using the cookie serialization default from Rails 4.x" }, { "warning_type": "Cross-Site Scripting", "warning_code": 113, "fingerprint": "fea6a166c0704d9525d109c17d6ee95eda217dfb1ef56a4d4c91ec9bd384cbf8", "check_name": "JSONEntityEscape", "message": "HTML entities in JSON are not escaped by default", "file": "config/environments/production.rb", "line": 1, "link": "https://brakemanscanner.org/docs/warning_types/cross-site_scripting/", "code": null, "render_path": null, "location": null, "user_input": null, "confidence": "Medium", "cwe_id": [ 79 ], "note": "Explicitly configured years ago in https://github.com/department-of-veterans-affairs/vets-api/commit/c73c8fc5cc23262e8f708fad0f7c1052f9c88a7b" }, { "warning_type": "File Access", "warning_code": 16, "fingerprint": "b50d5ce3f94b7618ba7789292642555ef2530f56b5f278fc1f365966f6c7edde", "check_name": "FileAccess", "message": "Model attribute used in file name", "file": "app/controllers/v0/form210779_controller.rb", "line": 46, "link": "https://brakemanscanner.org/docs/warning_types/file_access/", "code": "File.delete(SavedClaim::Form210779.find_by!(:guid => params[:guid]).to_pdf)", "render_path": null, "location": { "type": "method", "class": "V0::Form210779Controller", "method": "download_pdf" }, "user_input": "SavedClaim::Form210779.find_by!(:guid => params[:guid]).to_pdf", "confidence": "Medium", "cwe_id": [ 22 ], "note": "to_pdf is a method, not a model attribute and uses SecureRandom.uuid" }, { "warning_type": "File Access", "warning_code": 16, "fingerprint": "c70b5ee6e728d67df51cd8d7fbdc8455e90614e751a80acdc2c241214c07e8fb", "check_name": "FileAccess", "message": "Model attribute used in file name", "file": "app/controllers/v0/form210779_controller.rb", "line": 41, "link": "https://brakemanscanner.org/docs/warning_types/file_access/", "code": "File.read(SavedClaim::Form210779.find_by!(:guid => params[:guid]).to_pdf)", "render_path": null, "location": { "type": "method", "class": "V0::Form210779Controller", "method": "download_pdf" }, "user_input": "SavedClaim::Form210779.find_by!(:guid => params[:guid]).to_pdf", "confidence": "Medium", "cwe_id": [ 22 ], "note": "to_pdf is a method, not a model attribute and uses SecureRandom.uuid" } ], "brakeman_version": "7.1.1" }
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: spec/fixtures/sign_in/oauth.crt client_id: https://sqa.eauth.va.gov/isam/sps/saml20sp/saml20 client_key_path: spec/fixtures/sign_in/oauth.key logout_redirect_uri: http://localhost:3000/v0/sign_in/logingov_logout_proxy oauth_public_key: spec/fixtures/logingov/logingov_oauth_pub.pem oauth_url: https://idp.int.identitysandbox.gov redirect_uri: http://localhost:3000/v0/sign_in/callback map_services: appointments_client_id: 74b3145e1354555e chatbot_client_id: 2bb9803acfc3 check_in_client_id: bc75b71c7e67 client_cert_path: spec/fixtures/map/oauth.crt client_key_path: spec/fixtures/map/oauth.key oauth_url: https://veteran.apps-staging.va.gov secure_token_service: mock: true sign_up_service: mock: true sign_up_service_client_id: c7d6e0fc9a39 sign_up_service_provisioning_api_key: ~ sign_up_service_url: https://cerner.apps-staging.va.gov mhv: account_creation: access_key: ~ host: https://apigw-intb.aws.myhealth.va.gov mock: true sts: issuer: http://localhost:3000 service_account_id: c34b86f2130ff3cd4b1d309bc09d8740 mvi: client_cert_path: config/certs/vetsgov-localhost.crt client_key_path: config/certs/vetsgov-localhost.key mock: true open_timeout: 15 pii_logging: false processing_code: T timeout: 30 url: http://www.example.com/psim_webservice/dev/IdMWebService saml_ssoe: callback_url: http://localhost:3000/v1/sessions/callback cert_path: spec/support/certificates/ruby-saml.crt idp_metadata_file: config/ssoe_idp_int_metadata_isam.xml idp_sso_service_binding: urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST issuer: https://ssoe-sp-localhost.va.gov key_path: spec/support/certificates/ruby-saml.key logout_app_key: https://ssoe-sp-dev.va.gov logout_url: https://int.eauth.va.gov/slo/globallogout request_signing: false response_encryption: false response_signing: false tou_decline_logout_app_key: https://dev-api.va.gov/agreements_declined session_cookie: secure: false sign_in: arp_client_id: arp auto_uplevel: false cookies_secure: false credential_attributes_digester: pepper: ~ info_cookie_domain: localhost jwt_encode_key: spec/fixtures/sign_in/privatekey.pem jwt_old_encode_key: spec/fixtures/sign_in/privatekey_old.pem mock_auth_url: http://localhost:3000/mocked_authentication/profiles mock_redirect_uri: http://localhost:3000/v0/sign_in/callback mockdata_sync_api_key: ~ sts_client: base_url: http://localhost:3000 key_path: spec/fixtures/sign_in/sts_client.pem user_info_clients: - okta_test - okta_stg usip_uri: http://localhost:3001/sign-in vaweb_client_id: vaweb vamobile_client_id: vamobile web_origins: - http://localhost:4000 ssoe_eauth_cookie: domain: localhost name: vagov_saml_request_localhost secure: false ssoe_get_traits: client_cert_path: spec/fixtures/certs/vetsgov-localhost.crt client_key_path: spec/fixtures/certs/vetsgov-localhost.key url: https://int.services.eauth.va.gov:9303/psim_webservice/dev/IdMSSOeWebService terms_of_use: current_version: v1 enabled_clients: mhv, myvahealth, vaweb
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/sign-in-service-oauth-lowers.pem client_key_path: /srv/vets-api/secret/sign-in-service-oauth-lowers-key.pem logout_redirect_uri: https://staging-api.va.gov/v0/sign_in/logingov_logout_proxy oauth_public_key: /srv/vets-api/secret/logingov_oauth_pub.pem redirect_uri: https://staging-api.va.gov/v0/sign_in/callback map_services: client_cert_path: /srv/vets-api/secret/mobile-application-platform-lowers.pem client_key_path: /srv/vets-api/secret/mobile-application-platform-lowers-key.pem secure_token_service: mock: false sign_up_service: mock: false mhv: account_creation: host: https://apigw-sysb.aws.myhealth.va.gov mock: false sts: issuer: https://staging-api.va.gov service_account_id: 59d4a3199f42179e510e867cc786d8ac mvi: client_cert_path: /etc/pki/tls/certs/vetsgov-mvi-cert.pem client_key_path: /etc/pki/tls/private/vetsgov-mvi.key mock: false url: https://fwdproxy-staging.vfs.va.gov:4434/psim_webservice/stage1a/IdMWebService saml_ssoe: callback_url: https://staging-api.va.gov/v1/sessions/callback cert_path: /srv/vets-api/secret/vagov-ssoe-saml-staging-cert.pem idp_metadata_file: /app/config/ssoe_idp_sqa_metadata_isam.xml issuer: https://ssoe-sp-staging.va.gov key_path: /srv/vets-api/secret/vagov-ssoe-saml-staging-key.pem logout_app_key: https://ssoe-sp-staging.va.gov logout_url: https://sqa.eauth.va.gov/slo/globallogout?appKey=https%253A%252F%252Fssoe-sp-staging.va.gov request_signing: true response_encryption: true response_signing: true tou_decline_logout_app_key: https://ssoe-sp-staging.va.gov/agreements_declined session_cookie: secure: true sign_in: arp_client_id: ce6db4d7974daf061dccdd21ba9add14 cookies_secure: true info_cookie_domain: va.gov jwt_encode_key: /srv/vets-api/secret/sign-in-service-token-signing-lowers-key.pem jwt_old_encode_key: /srv/vets-api/secret/sign-in-service-token-signing-lowers-key-old.pem sts_client: base_url: https://staging-api.va.gov key_path: /srv/vets-api/secret/sign-in-service-sts-client.pem usip_uri: https://staging.va.gov/sign-in vamobile_client_id: - vamobile - vamobile_test - vamobile_test_dev ssoe_eauth_cookie: domain: .va.gov name: vagov_saml_request_staging secure: true ssoe_get_traits: client_cert_path: /etc/pki/tls/certs/vetsgov-mvi-cert.pem client_key_path: /etc/pki/tls/private/vetsgov-mvi.key url: https://sqa.services.eauth.va.gov:9303/psim_webservice/sqa/IdMSSOeWebService
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/vets-api/secret/sign-in-service-oauth-prod.pem client_id: https://eauth.va.gov/isam/sps/saml20sp/saml20 client_key_path: /srv/vets-api/secret/sign-in-service-oauth-prod-key.pem logout_redirect_uri: https://api.va.gov/v0/sign_in/logingov_logout_proxy oauth_public_key: /srv/vets-api/secret/logingov_oauth_prod_pub.pem oauth_url: https://secure.login.gov redirect_uri: https://api.va.gov/v0/sign_in/callback map_services: appointments_client_id: 3cf08c719c8c69eb chatbot_client_id: 2bb9803acfc3 check_in_client_id: bc75b71c7e67 client_cert_path: /srv/vets-api/secret/mobile-application-platform-prod.pem client_key_path: /srv/vets-api/secret/mobile-application-platform-prod-key.pem oauth_url: https://veteran.apps.va.gov secure_token_service: mock: false sign_up_service: mock: false sign_up_service_client_id: c7d6e0fc9a39 sign_up_service_url: https://staff.apps.va.gov mhv: account_creation: host: https://apigw.myhealth.va.gov mock: false sts: issuer: https://api.va.gov service_account_id: e23aebb01255a8a157691d43ab7d5bcd mvi: client_cert_path: /etc/pki/tls/certs/vetsgov-mvi-prod-cert.pem client_key_path: /etc/pki/tls/private/vetsgov-mvi.key mock: false processing_code: P url: https://fwdproxy-prod.vfs.va.gov:4434/psim_webservice/IdMWebService saml_ssoe: callback_url: https://api.va.gov/v1/sessions/callback cert_path: /srv/vets-api/secret/vagov-ssoe-saml-prod-cert.pem idp_metadata_file: /app/config/ssoe_idp_prod_metadata_isam.xml issuer: https://ssoe-sp-prod.va.gov key_path: /srv/vets-api/secret/vagov-ssoe-saml-prod-key.pem logout_app_key: https://ssoe-sp-prod.va.gov logout_url: https://eauth.va.gov/slo/globallogout?appKey=https%253A%252F%252Fssoe-sp-prod.va.gov request_signing: true response_encryption: true response_signing: true tou_decline_logout_app_key: https://ssoe-sp-prod.va.gov/agreements_declined session_cookie: secure: true sign_in: arp_client_id: fe0d4b2cac7935e7eec5946b8ee31643 cookies_secure: true info_cookie_domain: va.gov jwt_encode_key: /srv/vets-api/secret/sign-in-service-token-signing-prod-key.pem jwt_old_encode_key: /srv/vets-api/secret/sign-in-service-token-signing-prod-key-old.pem sts_client: base_url: https://api.va.gov key_path: /srv/vets-api/secret/sign-in-service-sts-client.pem usip_uri: https://va.gov/sign-in web_origins: - https://identity.va.gov - https://staging.identity.va.gov - https://sandbox.identity.va.gov - https://dev.identity.va.gov ssoe_eauth_cookie: domain: .va.gov name: vagov_saml_request_prod secure: true ssoe_get_traits: client_cert_path: /etc/pki/tls/certs/vetsgov-mvi-prod-cert.pem client_key_path: /etc/pki/tls/private/vetsgov-mvi.key url: https://services.eauth.va.gov:9303/psim_webservice/IdMSSOeWebService
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-in-service-oauth-lowers.pem client_key_path: /srv/vets-api/secret/sign-in-service-oauth-lowers-key.pem logout_redirect_uri: https://dev-api.va.gov/v0/sign_in/logingov_logout_proxy oauth_public_key: /srv/vets-api/secret/logingov_oauth_pub.pem redirect_uri: https://dev-api.va.gov/v0/sign_in/callback map_services: client_cert_path: /srv/vets-api/secret/mobile-application-platform-lowers.pem client_key_path: /srv/vets-api/secret/mobile-application-platform-lowers-key.pem mhv: account_creation: sts: issuer: https://dev-api.va.gov service_account_id: e2386c6ec816c44ddcb82e21fe730cb2 mvi: client_cert_path: /etc/pki/tls/certs/vetsgov-mvi-cert.pem client_key_path: /etc/pki/tls/private/vetsgov-mvi.key mock: true url: https://fwdproxy-dev.vfs.va.gov:4434/psim_webservice/dev/IdMWebService saml_ssoe: callback_url: https://dev-api.va.gov/v1/sessions/callback cert_path: /srv/vets-api/secret/vagov-ssoe-saml-dev-cert.pem idp_metadata_file: /app/config/ssoe_idp_int_metadata_isam.xml issuer: https://ssoe-sp-dev.va.gov key_path: /srv/vets-api/secret/vagov-ssoe-saml-dev-key.pem logout_url: https://int.eauth.va.gov/slo/globallogout?appKey=https%253A%252F%252Fssoe-sp-dev.va.gov request_signing: true response_encryption: true response_signing: true tou_decline_logout_app_key: https://ssoe-sp-dev.va.gov/agreements_declined session_cookie: secure: true sign_in: cookies_secure: true info_cookie_domain: va.gov jwt_encode_key: /srv/vets-api/secret/sign-in-service-token-signing-lowers-key.pem jwt_old_encode_key: /srv/vets-api/secret/sign-in-service-token-signing-lowers-key-old.pem mock_auth_url: https://dev-api.va.gov/mocked_authentication/profiles mock_redirect_uri: https://dev-api.va.gov/v0/sign_in/callback sts_client: base_url: https://dev-api.va.gov key_path: /srv/vets-api/secret/sign-in-service-sts-client.pem usip_uri: https://dev.va.gov/sign-in ssoe_eauth_cookie: domain: .va.gov name: vagov_saml_request_dev secure: true ssoe_get_traits: client_cert_path: spec/fixtures/certs/vetsgov-localhost.crt client_key_path: spec/fixtures/certs/vetsgov-localhost.key url: https://int.services.eauth.va.gov:9303/psim_webservice/dev/IdMSSOeWebService
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: benefits_intake: api_key: fake_api_key host: https://sandbox-api.va.gov path: "/services/vba_documents" report: batch_size: 1000 stale_sla: 10 use_mocks: false version: v1 adapted_housing: prefill: true argocd: slack: api_key: ~ ask_va_api: crm_api: auth_url: https://login.microsoftonline.us base_url: https://dev.integration.d365.va.gov client_id: client_id client_secret: secret e_subscription_key: e_subscription_key ocp_apim_subscription_key: subscription_key resource: resource s_subscription_key: s_subscription_key service_name: VEIS-API tenant_id: abcdefgh-1234-5678-12345-11e8b8ce491e veis_api_path: eis/vagov.lob.ava/api prefill: true authorization_server_scopes_api: auth_server: url: https://sandbox-api.va.gov/internal/auth/v2/server avs: api_jwt: abcd1234abcd1234abcd1234abcd1234abcd1234 mock: true timeout: 55 url: https://something.fake.va.gov banners: drupal_password: test drupal_url: https://test.cms.va.gov/ drupal_username: banners_api bd: base_name: staging-api.va.gov/services benefits_intake_service: api_key: ~ aws: access_key_id: ~ bucket: ~ region: ~ secret_access_key: ~ enabled: true url: ~ betamocks: cache_dir: ~ enabled: true recording: false services_config: config/betamocks/services_config.yml bgs: application: VAgovAPI client_station_id: 281 client_username: VAgovAPI env: ~ external_key: xKey external_uid: xUid mock_response_location: "/cache/bgs" mock_responses: false ssl_verify_mode: peer url: https://fwdproxy-dev.vfs.va.gov:4447 bid: awards: base_url: https://fake_url.com credentials: fake_auth mock: true binaries: clamdscan: "/usr/bin/clamdscan" pdfinfo: pdfinfo pdftk: pdftk bing: key: ~ bio: medical_expense_reports: bucket: ~ region: ~ survivors_benefits: bucket: ~ region: ~ bpds: jwt_secret: abcd1234abcd1234abcd1234abcd1234abcd1234 mock: false read_timeout: 20 # using the same timeout as lighthouse schema_version: test url: https://localhost:4000/api/v1/bpd # See the README for more information on how to run the BPDS locally brd: api_key: testapikeyhere base_name: staging-api.va.gov/services breakers_disabled: ~ caseflow: app_token: PUBLICDEMO123 host: https://dsva-appeals-certification-dev-1895622301.us-gov-west-1.elb.amazonaws.com mock: true timeout: 119 central_mail: upload: enabled: true host: test2.domaonline.com/EmmsAPI token: "<CENTRAL_MAIL_TOKEN>" check_in: authentication: max_auth_retry_limit: 3 retry_attempt_expiry: 604800 chip_api_v2: base_path: dev base_path_v2: dev mock: false redis_session_prefix: check_in_chip_v2 service_name: CHIP-API timeout: 30 tmp_api_id: 2dcdrrn5zc tmp_api_id_v2: 2dcdrrn5zc tmp_api_user: TzY6DFrnjPE8dwxUMbFf9HjbFqRim2MgXpMpMciXJFVohyURUJAc7W99rpFzhfh2B3sVnn4 tmp_api_user_v2: TzY6DFrnjPE8dwxUMbFf9HjbFqRim2MgXpMpMciXJFVohyURUJAc7W99rpFzhfh2B3sVnn4 tmp_api_username: vetsapiTempUser tmp_api_username_v2: vetsapiTempUser url: https://vpce-06399548ef94bdb41-lk4qp2nd.execute-api.us-gov-west-1.vpce.amazonaws.com url_v2: https://vpce-06399548ef94bdb41-lk4qp2nd.execute-api.us-gov-west-1.vpce.amazonaws.com lorota_v2: api_id: 22t00c6f97 api_id_v2: 22t00c6f97 api_key: Xc7k35oE2H9aDeUEpeGa38PzAHyLT9jb5HiKeBfs api_key_v2: Xc7k35oE2H9aDeUEpeGa38PzAHyLT9jb5HiKeBfs base_path: dev base_path_v2: dev key_path: modules/vaos/config/rsa/sandbox_rsa mock: false redis_session_prefix: check_in_lorota_v2 redis_token_expiry: 43200 service_name: LoROTA-API url: https://vpce-06399548ef94bdb41-lk4qp2nd.execute-api.us-gov-west-1.vpce.amazonaws.com url_v2: https://vpce-06399548ef94bdb41-lk4qp2nd.execute-api.us-gov-west-1.vpce.amazonaws.com map_api: service_name: MAP-API url: https://veteran.apps-staging.va.gov travel_reimbursement_api_v2: auth_url: https://login.microsoftonline.us auth_url_v2: https://login.microsoftonline.us claims_base_path: EC/ClaimIngestSvc claims_base_path_v2: eis/api/btsss/travelclaim claims_url: https://dev.integration.d365.va.gov claims_url_v2: https://dev.integration.d365.va.gov client_id: fake_client_id client_number: fake_cli_number client_number_oh: ~ client_secret: fake_client_secret e_subscription_key: ~ redis_token_expiry: 3540 s_subscription_key: ~ scope: fake_scope/.default service_name: BTSSS-API subscription_key: fake_subscription_key tenant_id: fake_template_id travel_pay_client_id: fake_travel_pay_client_id travel_pay_client_secret: fake_travel_pay_client_secret travel_pay_client_secret_oh: fake_travel_pay_client_secret_oh travel_pay_resource: fake_travel_pay_resource vaos: mock: false chip: api_gtwy_id: fake_gtwy_id base_path: dev mobile_app: password: '12345' tenant_id: 12345678-aaaa-bbbb-cccc-269c51a7d380 username: testuser mock: true url: https://vpce-06399548ef94bdb41-lk4qp2nd.execute-api.us-gov-west-1.vpce.amazonaws.com claims_api: audit_enabled: false benefits_documents: auth: ccg: aud_claim_url: https://fakeurlhere/fake/path/here client_id: fakekeyvaluehere rsa_key: ~ secret_key: path/to/fake/key.pem host: https://staging-api.va.gov use_mocks: false bgs: mock_responses: false claims_error_reporting: environment_name: ~ disability_claims_mock_override: false evss_container: auth_base_name: ~ client_id: ~ client_key: fakekeyvaluehere client_secret: ~ fes: auth: ccg: aud_claim_url: https://fakeurlhere/fake/path/here client_id: fakekeyvaluehere host: https://staging-api.va.gov pdf_generator_526: content_type: application/vnd.api+json path: "/form-526ez-pdf-generator/v1/forms/" url: https://fake_pdf_url.com poa_v2: disable_jobs: false report_enabled: false s3: aws_access_key_id: ~ aws_secret_access_key: ~ bucket: ~ region: ~ schema_dir: config/schemas slack: webhook_url: https://example.com token_validation: api_key: ~ url: ~ user_info: url: ~ v2_docs: enabled: false vanotify: accepted_representative_template_id: xxxxxx-zzzz-aaaa-bbbb-cccccccc accepted_service_organization_template_id: xxxxxx-zzzz-aaaa-bbbb-cccccccc client_url: https://fakeurl/with/path/here declined_representative_template_id: xxxxxx-zzzz-aaaa-bbbb-cccccccc declined_service_organization_template_id: xxxxxx-zzzz-aaaa-bbbb-cccccccc services: lighthouse: api_key: fake-xxxxxx-zzzz-aaaa-bbbb-cccccccc-xxxxxx-zzzz-aaaa-bbbb-cccccccc notification_client_secret: xxxxxxxx-zzzz-xxxx-yyyy-vvvvvvvvvvvv notify_service_id: xxxxxxxx-aaaa-bbbb-cccc-dddddddddddd claims_evidence_api: base_url: https://claimevidence-api-fake.fake.bip.va.gov/api/v1/rest/ breakers_error_threshold: 80 include_request: false jwt_secret: fake-secret mock: false ssl: false timeout: open: 30 read: 30 clamav: host: 0.0.0.0 mock: true port: '33100' coe: prefill: true connected_apps_api: connected_apps: api_key: ~ auth_access_key: ~ revoke_url: https://sandbox-api.va.gov/internal/auth/v3/user/consent url: https://sandbox-api.va.gov/internal/auth/v3/user/connected-apps contention_classification_api: expanded_contention_classification_path: expanded-contention-classification hybrid_contention_classification_path: hybrid-contention-classification open_timeout: 5 read_timeout: 10 url: http://contention-classification-api-dev.vfs.va.gov/ coverband: github_api_key: ~ github_oauth_key: ~ github_oauth_secret: ~ github_organization: ~ github_team: ~ covid_vaccine: enrollment_service: job_enabled: ~ database_url: postgis:///vets-api decision_review: api_key: abcd1234abcd1234abcd1234abcd1234abcd1234 benchmark_performance: true mock: false pdf_validation: enabled: true url: https://sandbox-api.va.gov/services/vba_documents/v1 prefill: true s3: aws_access_key_id: ~ aws_secret_access_key: ~ bucket: bucket region: region url: https://sandbox-api.va.gov/services/appeals/v1/decision_reviews v1: url: https://sandbox-api.va.gov/services/appeals/v2/decision_reviews dependents: prefill: true dependents_verification: prefill: true dgi: jwt: private_key_path: modules/meb_api/spec/fixtures/dgi_private_test.pem public_key_path: modules/meb_api/spec/fixtures/dgi_public_test.pem sob: claimants: mock: ~ url: https://fake.sob.com jwt: private_key_path: modules/sob/spec/fixtures/test_private_key.pem public_key_path: modules/sob/spec/fixtures/test_public_key.pem vets: mock: false url: https://jenkins.ld.afsp.io:32512/vets-service/v1/ vye: jwt: kid: vye private_key_path: modules/vye/spec/fixtures/dgi_private_test.pem public_ica11_rca2_key_path: modules/vye/spec/fixtures/ICA11-RCA2-combined-cert.pem public_key_path: modules/vye/spec/fixtures/dgi_public_test.pem vets: mock: false url: '' dhp: fitbit: client_id: '' client_secret: '' code_challenge: '' code_verifier: '' redirect_uri: http://localhost:3000/dhp_connected_devices/fitbit-callback scope: heartrate activity nutrition sleep mock: false s3: aws_access_key_id: '' aws_secret_access_key: '' bucket: '' region: us-gov-west-1 directory: apikey: "<fake_api_key>" health_server_id: ~ key: ~ notification_service_flag: ~ url: http://example.com/services/apps/v0/ disability_max_ratings_api: open_timeout: 5 ratings_path: "/disability-max-ratings" read_timeout: 10 url: http://disability-max-ratings-api-dev.vfs.va.gov dispute_debt: prefill: true dmc: client_id: 0be3d60e3983438199f192b6e723a6f0 client_secret: secret debts_endpoint: debt-letter/get fsr_payment_window: 30 mock_debts: false mock_fsr: false url: https://fwdproxy-dev.vfs.va.gov:4465/api/v1/digital-services/ dogstatsd: enabled: false edu: prefill: true production_excel_contents: emails: - patricia.terry1@va.gov sftp: host: ~ key_path: ~ pass: ~ port: ~ relative_307_path: ~ relative_351_path: ~ relative_path: spool_files user: ~ show_form: ~ slack: webhook_url: https://example.com spool_error: emails: - Joseph.Preisser@va.gov - Shay.Norton-Leonard@va.gov - PIERRE.BROWN@va.gov - VAVBAHIN/TIMS@vba.va.gov - EDUAPPMGMT.VBACO@VA.GOV - vfep_support_team@va.gov - eugenia.gina.ronat@accenturefederal.com - morgan.whaley@accenturefederal.com - m.c.shah@accenturefederal.com - patrick.arthur@accenturefederal.com - adam.freemer@accenturefederal.com - dan.brooking@accenturefederal.com - sebastian.cooper@accenturefederal.com - david.rowley@accenturefederal.com - nick.barthelemy@accenturefederal.com staging_emails: ~ staging_excel_contents: emails: - alex.chan1@va.gov - gregg.puhala@va.gov - noah.stern@va.gov - marelby.hernandez@va.gov - nawar.hussein@va.gov - engin.akman@va.gov staging_spool_contents: emails: - noah.stern@va.gov - gregg.puhala@va.gov - kara.ciprich@va.gov - vishnhav.ashok@va.gov - donna.saunders@va.gov - ariana.adili@govcio.com - marelby.hernandez@va.gov - nawar.hussein@va.gov - engin.akman@va.gov email_verification: jwt_secret: "EV_TEST_KEY_1234567890" evss: alternate_service_name: wss-form526-services-web-v2 aws: cert_path: ~ key_path: ~ root_ca: ~ url: http://fake.evss-reference-data-service.dev/v1 cert_path: ~ disability_compensation_form: submit_timeout: 355 timeout: 55 dvp: url: https://fakedomainandsubdomain.com international_postal_codes: config/evss/international_postal_codes.json key_path: ~ letters: timeout: 55 url: https://csraciapp6.evss.srarad.com mock_claims: false mock_common_service: true mock_disabilities_form: true mock_gi_bill_status: false mock_letters: false prefill: true root_cert_path: ~ s3: aws_access_key_id: EVSS_S3_AWS_ACCESS_KEY_ID_XYZ aws_secret_access_key: EVSS_S3_AWS_SECRET_ACCESS_KEY_XYZ bucket: evss_s3_bucket region: evss_s3_region uploads_enabled: false service_name: wss-form526-services-web url: https://csraciapp6.evss.srarad.com versions: claims: 3.6 common: 11.6 documents: 3.7 expiry_scanner: directories: ~ slack: channel_id: ~ flipper: github_api_key: ~ github_oauth_key: xxx000 github_oauth_secret: 000xxx github_organization: organization github_team: 0 mute_logs: false form0781_remediation: aws: bucket: ~ region: ~ form1095_b: s3: aws_access_key_id: ~ aws_secret_access_key: ~ bucket: bucket region: region form526_backup: api_key: ~ aws: access_key_id: ~ bucket: ~ region: ~ secret_access_key: ~ enabled: true submission_method: single url: https://sandbox-api.va.gov/services/vba_documents/v1/ form526_export: aws: access_key_id: ~ bucket: ~ region: ~ secret_access_key: ~ form_10275: submission_email: form_10275@example.com form_10282: sftp: host: ~ key_path: ~ pass: ~ port: ~ relative_path: form_10282 user: ~ form_10_10cg: carma: mulesoft: async_timeout: 600 auth: auth_token_path: ~ client_id: ~ client_secret: ~ mock: false timeout: ~ token_url: ~ client_id: BEEFCAFE1234 client_secret: C0FFEEFACE4321 host: https://fake-mulesoft.vapi.va.gov timeout: 10 poa: s3: aws_access_key_id: my-aws-key-id aws_secret_access_key: my-aws-access-key bucket: my-bucket enabled: true region: us-gov-west-1 form_mock_ae_design_patterns: prefill: true form_upload: prefill: true forms: mock: false url: https://sandbox-api.va.gov/services/va_forms/v0/ forms_api_benefits_intake: api_key: ~ url: https://sandbox-api.va.gov/services/vba_documents/v1/ fsr: prefill: true gclaws: accreditation: agents: url: http://localhost:5000/api/v2/accreditations/agents api_key: fake_key attorneys: url: http://localhost:5000/api/v2/accreditations/attorneys icn: url: http://localhost:5000/api/v2/accreditations/icn origin: fake_origin representatives: url: http://localhost:5000/api/v2/accreditations/representatives veteran_service_organizations: url: http://localhost:5000/api/v2/accreditations/veteranserviceorganizations genisis: base_url: ~ form_submission_path: "/formdata" pass: ~ service_path: ~ user: ~ gids: open_timeout: 1 read_timeout: 1 search: open_timeout: 4 read_timeout: 4 url: https://dev.va.gov/gids github_cvu: installation_id: ~ integration_id: ~ private_pem: ~ github_stats: token: fake_token username: github-stats-rake google_analytics: tracking_id: ~ url: https://fwdproxy-staging.vfs.va.gov:4473 google_analytics_cvu: auth_provider_x509_cert_url: https://www.googleapis.com/oauth2/v1/certs auth_uri: https://accounts.google.com/o/oauth2/auth client_email: va-gov-top-user-viewports@vsp-analytics-and-insights.iam.gserviceaccount.com client_id: ~ client_x509_cert_url: https://www.googleapis.com/robot/v1/metadata/x509/va-gov-top-user-viewports%40vsp-analytics-and-insights.iam.gserviceaccount.com private_key: ~ private_key_id: ~ project_id: vsp-analytics-and-insights token_uri: https://oauth2.googleapis.com/token type: service_account govdelivery: server: stage-tms.govdelivery.com staging_service: true token: ~ hca: ca: [] ee: endpoint: http://example.com pass: password user: HCASvcUsr endpoint: https://test-foo.vets.gov future_discharge_testing: ~ prefill: true s3: aws_access_key_id: ~ aws_secret_access_key: ~ bucket: ~ region: ~ timeout: 30 hostname: www.example.com iam_ssoe: client_cert_path: spec/fixtures/iam_ssoe/oauth.crt client_id: Mobile_App_API_Server_LOWERS client_key_path: spec/fixtures/iam_ssoe/oauth.key oauth_url: https://int.fed.eauth.va.gov:444 timeout: 20 intent_to_file: prefill: true ivc_champva: pega_api: api_key: fake_api_key base_path: fake_base_path prefill: true ivc_champva_llm_processor_api: api_key: fake_llm_api_key host: fake_base_path ivc_champva_ves_api: api_key: fake_api_key app_id: ~ host: https://fwdproxy-staging.vfs.va.gov:4429 mock: false subject: "Proxy Client" ivc_forms: form_status_job: enabled: ~ slack_webhook_url: ~ s3: aws_access_key_id: ~ aws_secret_access_key: ~ bucket: bucket region: region sidekiq: missing_form_status_job: enabled: true old_records_cleanup_job: enabled: true kafka_producer: aws_region: "us-gov-west-1" aws_role_arn: 'arn:aws:iam::123456789012:role/role-name' # this is an example broker_urls: ['localhost:19092'] # for local Kafka cluster in Docker sasl_mechanisms: 'GSSAPI' schema_registry_url: "http://localhost:8081" # for local Schema Registry in Docker security_protocol: 'plaintext' test_topic_name: submission_trace_mock_test topic_name: submission_trace_form_status_change kms_key_id: ~ lgy: api_key: fake_api_key app_id: fake_app_id base_url: https://fake_url.com mock_coe: true lgy_sahsha: api_key: ~ app_id: ~ base_url: http://www.example.com mock_coe: ~ lighthouse: api_key: fake_key auth: ccg: client_id: ~ rsa_key: ~ benefits_claims: access_token: aud_claim_url: https://deptva-eval.okta.com/oauth2/ausdg7guis2TYDlFe2p7/v1/token client_id: abc123456 rsa_key: path/to/key aud_claim_url: https://deptva-eval.okta.com/oauth2/ausi3u00gw66b9Ojk2p7/v1/token form526: access_token: aud_claim_url: https://deptva-eval.okta.com/oauth2/ausdg7guis2TYDlFe2p7/v1/token client_id: abc123456 rsa_key: path/to/key host: https://sandbox-api.va.gov use_mocks: false host: https://sandbox-api.va.gov use_mocks: false benefits_discovery: host: 'https://sandbox.lighthouse.va.gov' x_api_key: ~ x_app_id: ~ benefits_documents: access_token: aud_claim_url: https://deptva-eval.okta.com/oauth2/ausi3ui83fLa68IJv2p7/v1/token host: https://sandbox-api.va.gov timeout: 65 use_mocks: false benefits_education: access_token: aud_claim_url: https://deptva-eval.okta.com/oauth2/ausln2mo4jCAYRrlR2p7/v1/token client_id: ~ rsa_key: ~ host: https://sandbox-api.va.gov use_mocks: true benefits_intake: api_key: fake_api_key breakers_error_threshold: 80 host: https://sandbox-api.va.gov path: "/services/vba_documents" report: batch_size: 1000 stale_sla: 10 use_mocks: false version: v1 benefits_reference_data: path: services/benefits-reference-data staging_url: https://staging-api.va.gov url: https://sandbox-api.va.gov version: v1 direct_deposit: access_token: aud_claim_url: https://deptva-eval.okta.com/oauth2/ausi0e21hbv5iElEh2p7/v1/token client_id: ~ rsa_key: ~ host: https://sandbox-api.va.gov use_mocks: false facilities: api_key: fake_key hqva_mobile: url: https://veteran.apps.va.gov url: https://sandbox-api.va.gov veterans_health: url: ~ healthcare_cost_and_coverage: access_token: aud_claim_url: https://deptva-eval.okta.com/oauth2/fake1tcityDg93hgKkd#/v1/token client_id: fake_client_id rsa_key: path/to/fake/pem host: https://test-api.va.gov scopes: - system/ChargeItem.read - system/Invoice.read - system/PaymentReconciliation.read - system/MedicationDispense.read - system/Encounter.read - system/Account.read - system/Medication.read - launch timeout: 30 use_mocks: false letters_generator: access_token: aud_claim_url: https://deptva-eval.okta.com/oauth2/ausftw7zk6eHr7gMN2p7/v1/token client_id: ~ path: oauth2/va-letter-generator/system/v1/token rsa_key: ~ path: "/services/va-letter-generator/v1/" url: https://sandbox-api.va.gov use_mocks: false s3: aws_access_key_id: ~ aws_secret_access_key: ~ bucket: lighthouse_s3_bucket region: lighthouse_s3_region uploads_enabled: false staging_api_key: fake_key veteran_verification: aud_claim_url: https://deptva-eval.okta.com/oauth2/ausi3u00gw66b9Ojk2p7/v1/token form526: access_token: client_id: abc123456 rsa_key: path/to/key aud_claim_url: ~ host: https://sandbox-api.va.gov use_mocks: false host: https://sandbox-api.va.gov status: access_token: client_id: ~ rsa_key: ~ host: https://staging-api.va.gov use_mocks: false use_mocks: false veterans_health: fast_tracker: api_key: spec/support/fake_api_key_for_lighthouse.txt api_scope: - launch - patient/AllergyIntolerance.read - patient/DiagnosticReport.read - patient/Patient.read - system/Patient.read - patient/Observation.read - patient/Practitioner.read - patient/MedicationRequest.read - patient/Condition.read aud_claim_url: https://deptva-eval.okta.com/oauth2/aus8nm1q0f7VQ0a482p7/v1/token client_assertion_type: urn:ietf:params:oauth:client-assertion-type:jwt-bearer client_id: fake_client_id grant_type: client_credentials url: https://sandbox-api.va.gov use_mocks: false lighthouse_health_immunization: access_token_url: https://sandbox-api.va.gov/oauth2/health/system/v1/token api_url: https://sandbox-api.va.gov/services/fhir/v0/r4 audience_claim_url: https://deptva-eval.okta.com/oauth2/aus8nm1q0f7VQ0a482p7/v1/token client_id: 0oad0xggirKLf2ger2p7 key_path: ~ scopes: - launch launch/patient - patient/Immunization.read - patient/Location.read locators: mock_gis: ~ vha: ~ vha_access_satisfaction: ~ vha_access_waittime: ~ lockbox: master_key: 0d78eaf0e90d4e7b8910c9112e16e66d8b00ec4054a89aa426e32712a13371e9 mail_automation: client_id: va_gov_test client_secret: fake_key endpoint: "/mas/api/test/masInsertAndInitiateApcasClaimProcessing" token_endpoint: "/pca/api/test/token" url: https://viccs-api-test.ibm-intelligent-automation.com maintenance: aws: access_key_id: ~ bucket: ~ region: ~ secret_access_key: ~ pagerduty_api_token: <%= ENV['maintenance__pagerduty_api_token'] || 'FAKE_PAGER_DUTY_API_TOKEN' %> pagerduty_api_url: https://api.pagerduty.com service_query_prefix: 'External: ' services: 1010ez: ~ 1010ezr: ~ accredited_representative_portal: ~ appeals: P9S4RFU arcgis: P45YBFA askva: ~ avs: ~ bgs: P5Q2OCZ carma: P6XLE0T caseflow: ~ cie: ~ coe: PSY4HU1 community_care_ds: ~ decision_reviews: ~ dgi_claimants: ~ disability_compensation_form: ~ dmc: ~ dslogon: P9DJJAV es: PH7OPR4 evss: PZKWB6Y form1010d: ~ form1010d_ext: ~ form107959a: ~ form107959c: ~ form107959f1: ~ form107959f2: ~ form21p0537: ~ form21p601: ~ global: PLPSIB0 hcq: PWGA814 idme: PVWB4R8 lighthouse_benefits_claims: ~ lighthouse_benefits_education: ~ lighthouse_benefits_intake: ~ lighthouse_direct_deposit: ~ lighthouse_vshe: ~ logingov: P2SHMM9 mdot: PGT74RC mhv: PP2ZZ2V mhv_meds: ~ mhv_mr: ~ mhv_platform: ~ mhv_sm: ~ mvi: PCIPVGJ pcie: ~ pega: P3ZJCBK sahsha: ~ search: PRG8HJI ssoe: ~ ssoe_oauth: ~ tc: ~ tims: PUL8OQ4 travel_pay: ~ vaos: ~ vaosWarning: ~ vapro_contact_info: ~ vapro_health_care_contacts: ~ vapro_military_info: ~ vapro_notification_settings: ~ vapro_personal_info: ~ vbms: ~ vet360: PHVOGQ1 vetext_vaccine: P9PG8HG vic: P7LW3MS vre: ~ vre_ch31_eligibility: ~ mcp: notifications: batch_size: 100 job_interval: 90 vbs: api_key: abcd1234abcd1234abcd1234abcd1234abcd1234 base_path: "/vbsapi" host: fake_url.com:9000 mock: true mock_vista: false service_name: VBS url: https://fake_url.com:9000 vbs_client_key: abcd1234abcd1234abcd1234abcd1234abcd1234 vbs_v2: api_key: abcd1234abcd1234abcd1234abcd1234abcd1234 base_path: "/vbsapi" host: fwdproxy-staging.vfs.va.gov:4491 mock: true mock_vista: false service_name: VBS url: https://fwdproxy-staging.vfs.va.gov:4491 mdot: api_key: abcd1234abcd1234abcd1234abcd1234abcd1234 mock: false prefill: true url: https://fwdproxy-staging.vfs.va.gov:4466 memorials: prefill: true mhv: account: mock: false api_gateway: hosts: bluebutton: http://mhv-api.example.com fhir: http://mhv-api.example.com pharmacy: http://mhv-api.example.com phrmgr: http://mhv-api.example.com security: http://mhv-api.example.com sm_patient: http://mhv-api.example.com usermgmt: http://mhv-api.example.com bb: collection_caching_enabled: true mock: true facility_range: - - 358 - 718 - - 720 - 740 - - 742 - 758 facility_specific: - 741MM inherited_proofing: app_token: ~ host: ~ medical_records: app_id: 103 app_token: xyz host: http://mhv-api.example.com mhv_x_api_key: ~ x_api_key: fake-x-api-key x_api_key_v2: fake-x-api-key-v2 x_auth_key: fake-x-auth-key oh_facility_checks: facilities_migrating_to_oh: 555, 001 facilities_ready_for_info_alert: 612, 555 pretransitioned_oh_facilities: 612, 357, 555 rx: app_token: ~ base_path: mhv-api/patient/v1/ collection_caching_enabled: false gw_base_path: v1/ host: http://mhv-api.example.com mock: true x_api_key: fake-x-api-key sm: app_token: fake-app-token gw_base_path: v1/sm/patient/ mock: true timeout: <%= ENV['mhv__sm__timeout'] || 60 %> x_api_key: fake-x-api-key uhd: app_id: 1000 app_token: faketoken host: https://mhv-api.example.com labs_logging_date_range_days: 30 mock: false security_host: https://mhv-api.example.com subject: "Proxy Client" user_type: usertype x_api_key: fake-x-api-key mhv_mobile: rx: app_token: fake-app-token x_api_key: fake-x-api-key sm: app_token: fake-app-token x_api_key: fake-x-api-key mobile_lighthouse: client_id: 0oajpx78t3M8kurld2p7 rsa_key: ~ modules_appeals_api: documentation: notice_of_disagreements_v1: ~ path_enabled_flag: true wip_docs: ~ evidence_submissions: location: prefix: http://some.fakesite.com/path replacement: http://another.fakesite.com/rewrittenpath legacy_appeals_enabled: true notice_of_disagreement_pii_expunge_enabled: ~ notice_of_disagreement_updater_enabled: ~ reports: daily_decision_review: enabled: false recipients: ~ daily_error: enabled: ~ recipients: ~ weekly_decision_review: enabled: false recipients: ~ weekly_error: enabled: false recipients: ~ s3: aws_access_key_id: aws_access_key_id aws_secret_access_key: aws_secret_access_key bucket: bucket region: region uploads_enabled: false schema_dir: config/schemas slack: api_key: '' appeals_channel_id: '' status_simulation_enabled: false token_validation: appeals_status: api_key: '' contestable_issues: api_key: '' higher_level_reviews: api_key: '' legacy_appeals: api_key: '' notice_of_disagreements: api_key: '' supplemental_claims: api_key: '' mvi_hca: url: http://example.com ogc: form21a_service_url: api_key: fake_key s3: bucket: fake_bucket region: us-gov-west-1 type: s3 uploads_enabled: false url: http://localhost:5000/api/v1/accreditation/applications/form21a oidc: isolated_audience: claims: ~ default: ~ old_secret_key_base: 8af0fe1e378586520e4324694897eb269bd0fffa1c5be6cc3b4ffb9dbde095d0bef5c7fdab73cd05685d8fe1dd589287d78b38e4de7116fbe14461e414072677 onsite_notifications: public_key: ~ template_ids: - f9947b27-df3b-4b09-875c-7f76594d766d - 7efc2b8b-e59a-4571-a2ff-0fd70253e973 pension_burial: prefill: true sftp: relative_path: VETSGOV_PENSION pension_ipf_vanotify_status_callback: bearer_token: ~ ppms: api_keys: Ocp-Apim-Subscription-Key-E: ~ Ocp-Apim-Subscription-Key-S: ~ fakekey: fakevalue ocp-apim-subscription-key: ~ apim_url: ~ open_timeout: 15 read_timeout: 55 url: https://some.fakesite.com preneeds: host: http://some.fakesite.com s3: aws_access_key_id: ~ aws_secret_access_key: ~ bucket: ~ region: ~ wsdl: config/preneeds/wsdl/preneeds.wsdl rack_timeout: service_timeout: ~ wait_overtime: ~ wait_timeout: ~ redis: app_data: url: redis://localhost:6379 host: localhost port: 6379 rails_cache: url: redis://localhost:6379 sidekiq: url: redis://localhost:6379 relative_url_root: "/" reports: aws: access_key_id: key bucket: bucket region: region secret_access_key: secret send_email: true spool10203_submission: emails: - Brian.Grubb@va.gov - dana.kuykendall@va.gov - Jennifer.Waltz2@va.gov - Joseph.Preisser@va.gov - Joshua.Lashbrook@va.gov - kathleen.dalfonso@va.gov - kyle.pietrosanto@va.gov - lihan@adhocteam.us - Lucas.Tickner@va.gov - Ricardo.DaSilva@va.gov - robert.shinners@va.gov - shay.norton@va.gov - tammy.hurley1@va.gov staging_emails: - Brian.Grubb@va.gov - Joseph.Preisser@va.gov - kyle.pietrosanto@va.gov - lihan@adhocteam.us - Lucas.Tickner@va.gov - Ricardo.DaSilva@va.gov - tammy.hurley1@va.gov - vfep_support_team@va.gov - eugenia.gina.ronat@accenturefederal.com - morgan.whaley@accenturefederal.com - m.c.shah@accenturefederal.com - d.a.barnes@accenturefederal.com - jacob.finnern@accenturefederal.com - hocine.halli@accenturefederal.com - adam.freemer@accenturefederal.com spool_submission: emails: - Brian.Grubb@va.gov - dana.kuykendall@va.gov - Jennifer.Waltz2@va.gov - Joseph.Preisser@va.gov - Joshua.Lashbrook@va.gov - kathleen.dalfonso@va.gov - kyle.pietrosanto@va.gov - lihan@adhocteam.us - Lucas.Tickner@va.gov - Ricardo.DaSilva@va.gov - shay.norton@va.gov - tammy.hurley1@va.gov staging_emails: - Brian.Grubb@va.gov - Joseph.Preisser@va.gov - kyle.pietrosanto@va.gov - lihan@adhocteam.us - Lucas.Tickner@va.gov - Ricardo.DaSilva@va.gov - tammy.hurley1@va.gov - vfep_support_team@va.gov - eugenia.gina.ronat@accenturefederal.com - morgan.whaley@accenturefederal.com - m.c.shah@accenturefederal.com - d.a.barnes@accenturefederal.com - jacob.finnern@accenturefederal.com - hocine.halli@accenturefederal.com - adam.freemer@accenturefederal.com year_to_date_report: emails: - 222A.VBAVACO@va.gov - 224B.VBAVACO@va.gov - 224C.VBAVACO@va.gov - Brandon.Scott2@va.gov - Brian.Grubb@va.gov - Christina.DiTucci@va.gov - EDU.VBAMUS@va.gov - John.McNeal@va.gov - Joseph.Preisser@va.gov - Joshua.Lashbrook@va.gov - kathleen.dalfonso@va.gov - kyle.pietrosanto@va.gov - Lucas.Tickner@va.gov - michele.mendola@va.gov - Ricardo.DaSilva@va.gov - shay.norton@va.gov - tammy.hurley1@va.gov staging_emails: - Brian.Grubb@va.gov - Joseph.Preisser@va.gov - kyle.pietrosanto@va.gov - lee.munson@va.gov - lihan@adhocteam.us - Lucas.Tickner@va.gov - matthew.ziolkowski@va.gov - Michael.Johnson19@va.gov - patrick.burk@va.gov - preston.sanders@va.gov - robyn.noles@va.gov - Ricardo.DaSilva@va.gov - tammy.hurley1@va.gov - vfep_support_team@va.gov - eugenia.gina.ronat@accenturefederal.com - morgan.whaley@accenturefederal.com - m.c.shah@accenturefederal.com - d.a.barnes@accenturefederal.com - jacob.finnern@accenturefederal.com - hocine.halli@accenturefederal.com - adam.freemer@accenturefederal.com res: api_key: fake_auth base_url: https://fake_url.com ch_31_case_details: mock: ~ ch_31_eligibility: mock: ~ mock_ch_31: ~ review_instance_slug: ~ rrd: alerts: recipients: - fake_email mas_all_claims_tracking: recipients: - fake_email mas_tracking: recipients: - fake_email pact_tracking: recipients: - fake_email salesforce: consumer_key: ~ env: dev salesforce-carma: url: https://fake-carma.salesforce.com salesforce-gibft: consumer_key: ~ env: ~ signing_key_path: ~ url: https://va--rdtcddev.cs33.my.salesforce.com/ saml: cert_path: spec/support/certificates/ruby-saml.crt key_path: spec/support/certificates/ruby-saml.key schema_contract: appointments_index: modules/vaos/app/schemas/appointments_index.json claims_and_appeals_get_claim: modules/mobile/app/schemas/claims_and_appeals_get_claim.json test_index: spec/fixtures/schema_contract/test_schema.json search: access_key: TESTKEY affiliate: va mock_search: false url: https://search.usa.gov/api/v2/search/i14y search_click_tracking: access_key: TESTKEY affiliate: va mock: ~ module_code: I14Y url: https://api.gsa.gov/technology/searchgov/v2 search_gsa: access_key: TESTKEY affiliate: va mock_search: false url: https://api.gsa.gov/technology/searchgov/v2/results/i14y search_typeahead: api_key: TEST_KEY name: va url: https://api.gsa.gov/technology/searchgov/v1 secret_key_base: be8e6b6b16993e899c2c4fd08f7c6a6e5ad5f295b369d22f126d4569d2a0e44c4f04b13c02d65ab701452ef0a24ed2db7af441214ed5ae98c6113442f5846605 sentry: dsn: ~ shrine: claims: access_key_id: ~ bucket: ~ path: moot region: ~ secret_access_key: ~ type: memory upload_options: acl: private server_side_encryption: AES256 local: path: testing-local type: local remotes3: access_key_id: ABCD1234 bucket: bucketname path: remote-testing region: us-gov-west-1 secret_access_key: 1234ABCD type: s3 sidekiq: github_api_key: ~ github_oauth_key: xxx000 github_oauth_secret: 000xxx github_organization: organization github_team: 0 sidekiq_admin_panel: false test_database_url: postgis:///vets-api-test test_user_dashboard: env: staging github_oauth: client_id: ~ client_secret: ~ token_validation: url: https://dev-api.va.gov/internal/auth travel_pay: base_url: https://btsss.gov client_number: '12345' mobile_client_number: '56789' mock: false service_name: BTSSS-API sts: scope: ~ service_account_id: ~ subscription_key: api_key subscription_key_e: ~ subscription_key_s: ~ veis: auth_url: https://auth.veis.gov client_id: client_id client_secret: client_secret resource: resource_id tenant_id: tenant_id va_forms: drupal_password: ~ drupal_url: ~ drupal_username: ~ form_reloader: enabled: ~ slack: api_key: ~ channel_id: ~ enabled: ~ va_mobile: claims_path: /services/claims/v2/veterans key_path: "/fake/client/key/path" mock: false patients_path: /vaos/v1/patients ppms_base_url: https://staff.apps.va.gov timeout: 25 url: https://veteran.apps.va.gov va_notify: status_callback: bearer_token: va_notify_bearer_token va_profile: address_validation: api_key: "<AV_KEY>" hostname: sandbox-api.va.gov contact_information: cache_enabled: false enabled: true mock: false timeout: 30 demographics: cache_enabled: false enabled: true mock: true timeout: 30 military_personnel: cache_enabled: false enabled: true mock: false timeout: 30 prefill: false url: https://int.vet360.va.gov v3: address_validation: api_key: "<AV_KEY>" veteran_status: cache_enabled: true enabled: true mock: false timeout: 30 vahb: version_requirement: allergies_oracle_health: '3.0.0' labs_oracle_health: '3.0.0' medications_oracle_health: '2.99.99' valid_va_file_number: false vanotify: callback_url: https://test-api.va.gov/va_notify/callbacks client_url: http://fakeapi.com links: connected_applications: https://www.va.gov/profile/connected-applications password_reset: https://www.va.gov/resources/signing-in-to-vagov/#what-if-i-cant-sign-in-to-vago mock: false service_callback_tokens: 1010_health_apps: 1010_health_apps_token benefits_decision_review: benefits_decision_review_token benefits_disability: benefits_disability_token benefits_management_tools: benefits_management_tools_token ivc_forms: ivc_forms_token va_gov: va_gov_token services: 21_0538: &vanotify_services_dependents_verification api_key: fake_secret email: error: flipper_id: dv_email_notification template_id: fake_dv_error received: flipper_id: dv_email_notification template_id: fake_dv_received submitted: flipper_id: dv_email_notification template_id: fake_dv_submitted 21_686c_674: &vanotify_services_dependents_benefits api_key: fake_secret email: error_674_only: flipper_id: dependents_benefits_error_email_notification template_id: form674_only_error_email_template_id error_686c_674: flipper_id: dependents_benefits_error_email_notification template_id: form686c_674_error_email_template_id error_686c_only: flipper_id: dependents_benefits_error_email_notification template_id: form686c_only_error_email_template_id received_674_only: flipper_id: dependents_benefits_received_email_notification template_id: form674_only_received_email_template_id received_686c_674: flipper_id: dependents_benefits_received_email_notification template_id: form686c_674_received_email_template_id received_686c_only: flipper_id: dependents_benefits_received_email_notification template_id: form686c_only_received_email_template_id submitted674_only: flipper_id: dependents_benefits_submitted_email_notification template_id: form674_only_submitted_email_template_id submitted686c674: flipper_id: dependents_benefits_submitted_email_notification template_id: form686c674_submitted_email_template_id submitted686c_only: flipper_id: dependents_benefits_submitted_email_notification template_id: form686c_only_submitted_email_template_id 21p_0969: &vanotify_services_income_and_assets api_key: fake_secret email: error: flipper_id: income_and_assets_error_email_notification template_id: form0969_error_email_template_id persistent_attachment_error: flipper_id: income_and_assets_persistent_attachment_error_email_notification template_id: form0969_persistent_attachment_error_email_template_id received: flipper_id: income_and_assets_received_email_notification template_id: form0969_received_email_template_id submitted: flipper_id: income_and_assets_submitted_email_notification template_id: form0969_submitted_email_template_id 21p_527ez: &vanotify_services_pension api_key: fake_secret email: confirmation: flipper_id: false template_id: form527ez_confirmation_email_template_id error: flipper_id: pension_error_email_notification template_id: form527ez_error_email_template_id persistent_attachment_error: flipper_id: pension_persistent_attachment_error_email_notification template_id: form527ez_persistent_attachment_error_email_template_id received: flipper_id: pension_received_email_notification template_id: form527ez_received_email_template_id submitted: flipper_id: pension_submitted_email_notification template_id: form527ez_submitted_email_template_id 21p_530ez: &vanotify_services_burial api_key: fake_secret email: confirmation: flipper_id: false template_id: burial_claim_confirmation_email_template_id error: flipper_id: burial_error_email_notification template_id: burial_claim_error_email_template_id persistent_attachment_error: flipper_id: burial_persistent_attachment_error_email_notification template_id: burial_persistent_attachment_error_email_template_id received: flipper_id: burial_received_email_notification template_id: burial_received_email_template_id submitted: flipper_id: burial_submitted_email_notification template_id: burial_submitted_email_template_id 21p_530: *vanotify_services_burial 21p_534ez: &vanotify_services_survivors_benefits api_key: fake_secret email: confirmation: flipper_id: false template_id: form527ez_confirmation_email_template_id error: flipper_id: survivors_benefits_error_email_notification template_id: form527ez_error_email_template_id persistent_attachment_error: flipper_id: survivors_benefits_persistent_attachment_error_email_notification template_id: form527ez_persistent_attachment_error_email_template_id received: flipper_id: survivors_benefits_received_email_notification template_id: form527ez_received_email_template_id submitted: flipper_id: survivors_benefits_submitted_email_notification template_id: form534ez_submitted_email_template_id 21p_530v2: *vanotify_services_burial 21p_8416: &vanotify_services_medical_expense_reports api_key: fake_secret email: confirmation: flipper_id: false template_id: form8416_confirmation_email_template_id error: flipper_id: survivors_benefits_error_email_notification template_id: form8416_error_email_template_id persistent_attachment_error: flipper_id: survivors_benefits_persistent_attachment_error_email_notification template_id: form8416_persistent_attachment_error_email_template_id received: flipper_id: survivors_benefits_received_email_notification template_id: form8416_received_email_template_id submitted: flipper_id: survivors_benefits_submitted_email_notification template_id: form8416_submitted_email_template_id accredited_representative_portal: api_key: fake_secret email: confirmation: template_id: arp_confirmation_email_template_id error: template_id: arp_error_email_template_id received: template_id: arp_received_email_template_id benefits_decision_review: api_key: fake_secret template_id: evidence_recovery_email: fake_evidence_recovery_template_id form_recovery_email: fake_form_recovery_template_id higher_level_review_form_error_email: fake_hlr_template_id notice_of_disagreement_evidence_error_email: fake_nod_evidence_template_id notice_of_disagreement_form_error_email: fake_nod_template_id supplemental_claim_evidence_error_email: fake_sc_evidence_template_id supplemental_claim_form_error_email: fake_sc_template_id supplemental_claim_secondary_form_error_email: fake_sc_secondary_form_template_id benefits_disability: api_key: fake_secret template_id: form0781_upload_failure_notification_template_id: form0781_upload_failure_notification_template_id form4142_upload_failure_notification_template_id: form4142_upload_failure_notification_template_id form526_document_upload_failure_notification_template_id: form526_document_upload_failure_notification_template_id form526_submission_failure_notification_template_id: form526_submission_failure_notification_template_id benefits_management_tools: api_key: fake_secret push_api_key: fake_secret template_id: decision_letter_ready_email: fake_template_id evidence_submission_failure_email: fake_template_id burials: *vanotify_services_burial check_in: api_key: check-in_aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa-bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb sms_sender_id: cie_fake_sms_sender_id template_id: claim_submission_duplicate_text: cie_fake_duplicate_template_id claim_submission_error_text: cie_fake_error_template_id claim_submission_failure_text: ~ claim_submission_success_text: cie_fake_success_template_id claim_submission_timeout_text: cie_fake_timeout_template_id dependents: api_key: fake_secret email: received674: template_id: fake_received674 received686: template_id: fake_received686 received686c674: template_id: fake_received686c674 submitted674: template_id: fake_submitted674 submitted686: template_id: fake_submitted686 submitted686c674: template_id: fake_submitted686c674 dependents_benefits: *vanotify_services_dependents_benefits dependents_verification: *vanotify_services_dependents_verification dmc: api_key: fake_secret template_id: digital_dispute_confirmation_email: fake_template_id digital_dispute_failure_email: fake_template_id digital_dispute_submission_email: fake_template_id fsr_confirmation_email: fake_template_id fsr_failed_email: fake_template_id fsr_step_1_submission_in_progress_email: fake_template_id fsr_streamlined_confirmation_email: fake_template_id vha_fsr_confirmation_email: ~ vha_new_copay_statement_email: fake_template_id health_apps_1010: api_key: fake_secret template_id: form1010_cg_failure_email: fake_template_id form1010_ez_failure_email: fake_template_id form1010_ezr_failure_email: fake_template_id income_and_assets: *vanotify_services_income_and_assets ivc_champva: api_key: fake_secret failure_email_threshold_days: 7 pega_inbox_address: fake_email_address template_id: form_10_10d_email: form_10_10d_email form_10_10d_failure_email: form_10_10d_failure_email form_10_7959a_email: form_10_7959a_email form_10_7959a_failure_email: form_10_7959a_failure_email form_10_7959c_email: form_10_7959c_email form_10_7959c_failure_email: form_10_7959c_failure_email form_10_7959f_1_email: form_10_7959f_1_email form_10_7959f_1_failure_email: form_10_7959f_1_failure_email form_10_7959f_2_email: form_10_7959f_2_email form_10_7959f_2_failure_email: form_10_7959f_2_failure_email pega_team_missing_status_email: pega_team_missing_status_email pega_team_zsf_email: pega_team_zsf_email lighthouse: api_key: fake_api_key template_id: connection_template: ~ disconnection_template: fake_template_id higher_level_review_received: ~ higher_level_review_received_claimant: ~ notice_of_disagreement_received: ~ notice_of_disagreement_received_claimant: ~ supplemental_claim_received: ~ supplemental_claim_received_claimant: ~ medical_expense_reports: *vanotify_services_medical_expense_reports oracle_health: sms_sender_id: oh_fake_sms_sender_id template_id: claim_submission_duplicate_text: oh_fake_duplicate_template_id claim_submission_error_text: oh_fake_error_template_id claim_submission_failure_text: ~ claim_submission_success_text: oh_fake_success_template_id claim_submission_timeout_text: oh_fake_timeout_template_id pensions: *vanotify_services_pension survivors_benefits: *vanotify_services_survivors_benefits va_gov: api_key: fake_secret template_id: accredited_representative_portal_poa_request_failure_claimant_email: accredited_representative_portal_poa_request_failure_claimant_email_template_id accredited_representative_portal_poa_request_failure_rep_email: accredited_representative_portal_poa_request_failure_rep_email_template_id appoint_a_representative_confirmation_email: appoint_a_representative_confirmation_email_template_id appoint_a_representative_digital_expiration_confirmation_email: appoint_a_representative_digital_expiration_confirmation_email_template_id appoint_a_representative_digital_expiration_warning_email: appoint_a_representative_digital_expiration_warning_email_template_id appoint_a_representative_digital_submit_confirmation_email: appoint_a_rep_v2_digital_submit_confirm_email_template_id appoint_a_representative_digital_submit_decline_email: appoint_a_rep_v2_digital_submit_decline_email_template_id career_counseling_confirmation_email: career_counseling_confirmation_email_template_id ch31_central_mail_form_confirmation_email: ch31_central_mail_fake_template_id ch31_vbms_form_confirmation_email: ch31_vbms_fake_template_id contact_email_address_change_confirmation_needed_email: contact_email_address_change_confirmation_needed_email_fake_template_id contact_email_address_confirmation_needed_email: contact_email_address_confirmation_needed_email_fake_template_id contact_email_address_confirmed_email: contact_email_address_confirmed_email_fake_template_id contact_info_change: fake_template_id covid_vaccine_registration: ~ direct_deposit: direct_deposit_template_id form0994_confirmation_email: form0994_confirmation_email_template_id form0994_extra_action_confirmation_email: form0994_extra_action_confirmation_email_template_id form1010ez_reminder_email: fake_template_id form10275_submission_email: form10275_submission_email_template_id form10297_confirmation_email: form10297_confirmation_email_template_id form1880_reminder_email: form1880_reminder_email_template_id form1900_action_needed_email: form1900_action_needed_email_template_id form1990_confirmation_email: form1990_confirmation_email_template_id form1990emeb_approved_confirmation_email: form1990emeb_approved_confirmation_email_template_id form1990emeb_denied_confirmation_email: form1990emeb_denied_confirmation_email_template_id form1990emeb_offramp_confirmation_email: form1990emeb_offramp_confirmation_email_template_id form1990meb_approved_confirmation_email: form1990meb_approved_confirmation_email_template_id form1990meb_denied_confirmation_email: form1990meb_denied_confirmation_email_template_id form1990meb_offramp_confirmation_email: form1990meb_offramp_confirmation_email_template_id form1995_confirmation_email: form1995_confirmation_email_template_id form20_10206_confirmation_email: form20_10206_confirmation_email_template_id form20_10206_error_email: form20_10206_error_email_template_id form20_10206_received_email: form20_10206_received_email_template_id form20_10207_confirmation_email: form20_10207_confirmation_email_template_id form20_10207_error_email: form20_10207_error_email_template_id form20_10207_received_email: form20_10207_received_email_template_id form21_0845_confirmation_email: form21_0845_confirmation_email_template_id form21_0845_error_email: form21_0845_error_email_template_id form21_0845_received_email: form21_0845_received_email_template_id form21_0966_confirmation_email: form21_0966_confirmation_email_template_id form21_0966_error_email: form21_0966_error_email_template_id form21_0966_itf_api_received_email: form21_0966_itf_api_received_email_template_id form21_0966_received_email: form21_0966_received_email_template_id form21_0972_confirmation_email: form21_0972_confirmation_email_template_id form21_0972_error_email: form21_0972_error_email_template_id form21_0972_received_email: form21_0972_received_email_template_id form21_10203_confirmation_email: form21_10203_confirmation_email_template_id form21_10210_confirmation_email: form21_10210_confirmation_email_template_id form21_10210_error_email: form21_10210_error_email_template_id form21_10210_received_email: form21_10210_received_email_template_id form21_4138_confirmation_email: form21_4138_confirmation_email_template_id form21_4138_error_email: form21_4138_error_email_template_id form21_4138_received_email: form21_4138_received_email_template_id form21_4142_confirmation_email: form21_4142_confirmation_email_template_id form21_4142_error_email: form21_4142_error_email_template_id form21_4142_received_email: form21_4142_received_email_template_id form21_674_action_needed_email: form21_674_action_needed_email_template_id form21_686c_674_action_needed_email: form21_686c_674_action_needed_email_template_id form21_686c_action_needed_email: form21_686c_action_needed_email_template_id form21p_0537_confirmation_email: form21p_0537_confirmation_email_template_id form21p_0537_error_email: form21p_0537_error_email_template_id form21p_0537_received_email: form21p_0537_received_email_template_id form21p_0847_confirmation_email: form21p_0847_confirmation_email_template_id form21p_0847_error_email: form21p_0847_error_email_template_id form21p_0847_received_email: form21p_0847_received_email_template_id form21p_601_confirmation_email: form21p_601_confirmation_email_template_id form21p_601_error_email: form21p_601_error_email_template_id form21p_601_received_email: form21p_601_received_email_template_id form26_4555_confirmation_email: form26_4555_confirmation_email_template_id form26_4555_duplicate_email: form26_4555_duplicate_email_template_id form26_4555_rejected_email: form26_4555_rejected_email_template_id form27_8832_action_needed_email: form27_8832_action_needed_email_template_id form40_0247_confirmation_email: form40_0247_confirmation_email_template_id form40_0247_error_email: form40_0247_error_email_template_id form40_10007_error_email: form40_10007_error_email_template_id form526_confirmation_email: fake_template_id form526_submission_failed_email: fake_template_id form526_submitted_email: fake_template_id form526ez_reminder_email: ~ form5490_confirmation_email: form5490_confirmation_email_template_id form5495_confirmation_email: form5495_confirmation_email_template_id form674_only_confirmation_email: 674_confirmation_template_id form686c_674_confirmation_email: 686c_674_confirmation_template_id form686c_confirmation_email: fake_template_id form686c_only_confirmation_email: 686c_confirmation_template_id form686c_reminder_email: fake_template_id form_upload_confirmation_email: form_upload_confirmation_template_id form_upload_error_email: form_upload_error_template_id form_upload_received_email: form_upload_received_template_id in_progress_reminder_email_generic: fake_template_id login_reactivation_email: reactivation_email_test_b preneeds_burial_form_email: preneeds_burial_form_email_template_id reactivation_email_test_b: ~ va_appointment_failure: fake_template_id veteran_readiness_and_employment: api_key: 'fake' email: confirmation_lighthouse: template_id: 'confirmation_lighthouse_email_template_id' confirmation_vbms: template_id: 'confirmation_vbms_email_template_id' error: template_id: 'error_email_template_id' status_callback: bearer_token: fake_bearer_token vaos: ccra: api_url: https://api.ccra.placeholder.va.local base_path: vaos/v1/patients mock: false redis_referral_expiry: 3600 eps: access_token_url: https://login.wellhive.com/oauth2/default/v1/token api_url: https://api.wellhive.com audience_claim_url: https://login.wellhive.com/oauth2/default/v1/token base_path: care-navigation/v1 client_assertion_type: urn:ietf:params:oauth:client-assertion-type:jwt-bearer client_id: fake_client_id grant_type: client_credentials key_path: modules/vaos/config/rsa/sandbox_rsa kid: fake_kid mock: false pagination_timeout_seconds: 45 scopes: care-nav referral: encryption: hex_iv: "0123456789abcdef0123456789abcdef" hex_secret: "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef" vass: api_url: <%= ENV['vass__api_url'] %> auth_url: https://login.microsoftonline.us client_id: <%= ENV['vass__client_id'] %> client_secret: <%= ENV['vass__client_secret'] %> mock: <%= ENV['vass__mock'] %> redis_otc_expiry: 600 redis_session_expiry: 7200 redis_token_expiry: 3540 scope: <%= ENV['vass__scope'] %> service_name: VASS-API subscription_key: <%= ENV['vass__subscription_key'] %> tenant_id: <%= ENV['vass__tenant_id'] %> vba_documents: custom_metadata_allow_list: ~ enable_download_endpoint: true enable_status_override: ~ enable_validate_document_endpoint: true location: prefix: http://some.fakesite.com/path replacement: http://another.fakesite.com/rewrittenpath monthly_report: false report_enabled: false s3: aws_access_key_id: aws_access_key_id aws_secret_access_key: aws_secret_access_key bucket: bucket enabled: false region: region slack: api_key: '' channel_id: '' default_alert_email: '' enabled: false in_flight_notification_hung_time_in_days: 14 renotification_in_minutes: 240 update_stalled_notification_in_minutes: 180 sns: region: us-gov-west-1 topic_arns: - vetsgov-arn - vagov-arn updater_enabled: ~ vbms: ca_cert: VBMS-Client-Signing-CA.crt cert: vetsapi.client.vbms.aide.oit.va.gov.crt client_keyfile: vetsapi.client.vbms.aide.oit.va.gov.p12 env: test environment_directory: "/app/secret" keypass: ~ saml: vetsapi.client.vbms.aide.oit.va.gov.saml-token.xml server_cert: vbms.aide.oit.va.gov.crt url: https://fwdproxy-dev.vfs.va.gov:4449 vbs: url: https://vbs.example.com/api/v1 vet360: address_validation: api_key: "<AV_KEY>" hostname: sandbox-api.va.gov url: https://sandbox-api.va.gov contact_information: cache_enabled: false enabled: true mock: false timeout: 30 demographics: cache_enabled: false enabled: true mock: true timeout: 30 military_personnel: cache_enabled: false enabled: true mock: false timeout: 30 profile_information: enabled: true timeout: 30 use_mocks: false url: https://int.vet360.va.gov v3: address_validation: api_key: "<AV_KEY>" veteran_status: cache_enabled: true enabled: true mock: false timeout: 30 veteran_enrollment_system: associations: api_key: ~ ee_summary: api_key: ~ enrollment_periods: api_key: ~ form1095b: api_key: ~ host: https://localhost open_timeout: 10 port: 4430 timeout: 30 veteran_onboarding: onboarding_threshold_days: ~ veteran_readiness_and_employment: auth_endpoint: https://fake_url.com/auth/oauth/token base_url: https://fake_url.com credentials: fake_auth daily_report: emails: - VRC.VBABOS@va.gov - VRE.VBAPRO@va.gov - VRE.VBANYN@va.gov - VRC.VBABUF@va.gov - VRE.VBAHAR@va.gov - vre.vbanew@va.gov - VREBDD.VBAPHI@va.gov - VRE.VBAPIT@va.gov - VRE.VBABAL@va.gov - VRE.VBAROA@va.gov - VRE.VBAHUN@va.gov - VRETMP.VBAATG@va.gov - VRE281900.VBASPT@va.gov - VRC.VBAWIN@va.gov - VRC.VBACMS@va.gov - VREAPPS.VBANAS@va.gov - VRC.VBANOL@va.gov - VRE.VBAMGY@va.gov - VRE.VBAJAC@va.gov - VRE.VBACLE@va.gov - VRE.VBAIND@va.gov - VRE.VBALOU@va.gov - VAVBACHI.VRE@va.gov - VRE.VBADET@va.gov - VREApplications.VBAMIW@va.gov - VRC.VBASTL@va.gov - VRE.VBADES@va.gov - VRE.VBALIN@va.gov - VRC.VBASPL@va.gov - VRE.VBADEN@va.gov - VRC.VBAALB@va.gov - VRE.VBASLC@va.gov - VRC.VBAOAK@va.gov - ROVRC.VBALAN@va.gov - VRE.VBAPHO@va.gov - VRE.VBASEA@va.gov - VRE.VBABOI@va.gov - VRE.VBAPOR@va.gov - VREAPPS.VBAWAC@va.gov - VRE.VBALIT@va.gov - VREBDD.VBAMUS@va.gov - VRE.VBAREN@va.gov - MBVRE.VBASAJ@va.gov - VRE.VBAMPI@va.gov - VRE.VBAHOU@va.gov - VRE.VBAWAS@va.gov - VRE.VBAMAN@va.gov - EBENAPPS.VBASDC@va.gov - VRE.VBATOG@va.gov - VRE.VBAMAN@va.gov - VRC.VBAFHM@va.gov - VRC.VBAFAR@va.gov - VRC.VBAFAR@va.gov - VRE.VBADEN@va.gov - VRE.VBAWIC@va.gov - VRC.VBAHON@va.gov - VAVBA/WIM/RO/VR&E@vba.va.gov - VRE.VBAANC@va.gov - VRE.VBAPIT@va.gov - VRE-CMS.VBAVACO@va.gov duplicate_submission_threshold_hours: 24 vetext: mock: ~ vetext_push: base_url: https://vetext1.r01.med.va.gov pass: secret user: vets-api-username va_mobile_app_debug_sid: mobile-app-debug-sid va_mobile_app_sid: mobile-app-sid vff_simple_forms: aws: bucket: ~ region: ~ vha: sharepoint: authentication_url: https://accounts.accesscontrol.windows.net base_path: "/sites/vhafinance/MDW" client_id: fake_sharepoint_client_id client_secret: fake_sharepoint_client_secret mock: false resource: 00000003-0000-0ff1-ce00-000000000000 service_name: VHA-SHAREPOINT sharepoint_url: dvagov.sharepoint.com tenant_id: fake_sharepoint_tenant_id vic: s3: aws_access_key_id: ~ aws_secret_access_key: ~ region: ~ signing_key_path: "/fake/signing/key/path" url: https://some.fakesite.com virtual_agent: cxdw_app_uri: fake_app_uri cxdw_client_id: fake_id cxdw_client_secret: fake_secret cxdw_dataverse_uri: fake_dataverse_uri cxdw_table_prefix: fake_table_prefix webchat_root_bot_secret: fake_secret virtual_hosts: - www.example.com - localhost - 127.0.0.1 - example.org vre_counseling: prefill: true vre_readiness: prefill: true vsp_environment: test vye: ivr_key: ~ s3: access_key_id: ~ bucket: ~ region: ~ secret_access_key: ~ scrypt: N: 16384 length: 16 p: 1 r: 8 salt: testing-vye-scrypt-salt web_origin: http://localhost:3000,http://localhost:3001,http://127.0.0.1:3000,http://127.0.0.1:3001,null web_origin_regex: "\\Ahttps?:\\/\\/www\\.va\\.gov\\z" websockets: require_https: ~ websocket_settings: false xlsx_file_fetcher: github_access_token: ~
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://sandbox-api.va.gov path: "/services/vba_documents" report: batch_size: 1000 stale_sla: 10 use_mocks: false version: v1 adapted_housing: prefill: true argocd: slack: api_key: ~ ask_va_api: crm_api: auth_url: https://login.microsoftonline.us base_url: https://dev.integration.d365.va.gov client_id: client_id client_secret: secret e_subscription_key: e_subscription_key ocp_apim_subscription_key: subscription_key resource: resource s_subscription_key: s_subscription_key service_name: VEIS-API tenant_id: abcdefgh-1234-5678-12345-11e8b8ce491e veis_api_path: eis/vagov.lob.ava/api prefill: true authorization_server_scopes_api: auth_server: url: https://sandbox-api.va.gov/internal/auth/v2/server avs: api_jwt: abcd1234abcd1234abcd1234abcd1234abcd1234 mock: true timeout: 55 url: https://something.fake.va.gov banners: drupal_password: test drupal_url: https://test.cms.va.gov/ drupal_username: banners_api bd: base_name: ~ benefits_intake_service: api_key: ~ aws: access_key_id: ~ bucket: ~ region: ~ secret_access_key: ~ enabled: true url: ~ betamocks: cache_dir: "../vets-api-mockdata" enabled: true recording: false services_config: config/betamocks/services_config.yml bgs: application: ~ client_station_id: ~ client_username: ~ env: ~ external_key: lighthouse-vets-api external_uid: lighthouse-vets-api mock_response_location: ~ mock_responses: ~ ssl_verify_mode: peer url: https://something.fake.va.gov bid: awards: base_url: ~ credentials: ~ mock: true binaries: clamdscan: "/usr/bin/clamdscan" pdfinfo: pdfinfo pdftk: pdftk bing: key: ~ bio: medical_expense_reports: bucket: ~ region: ~ survivors_benefits: bucket: ~ region: ~ bpds: jwt_secret: abcd1234abcd1234abcd1234abcd1234abcd1234 mock: false read_timeout: 20 # using the same timeout as lighthouse schema_version: test url: https://localhost:4000/api/v1/bpd # See the README for more information on how to run the BPDS locally brd: api_key: fake_key base_name: https://something.fake.va.gov breakers_disabled: ~ caseflow: app_token: PUBLICDEMO123 host: https://dsva-appeals-certification-dev-1895622301.us-gov-west-1.elb.amazonaws.com mock: true timeout: 119 central_mail: upload: enabled: true host: test2.domaonline.com/EmmsAPI token: "<CENTRAL_MAIL_TOKEN>" check_in: authentication: max_auth_retry_limit: 3 retry_attempt_expiry: 604800 chip_api_v2: base_path: dev base_path_v2: dev mock: false redis_session_prefix: check_in_chip_v2 service_name: CHIP-API timeout: 30 tmp_api_id: 2dcdrrn5zc tmp_api_id_v2: 2dcdrrn5zc tmp_api_user: TzY6DFrnjPE8dwxUMbFf9HjbFqRim2MgXpMpMciXJFVohyURUJAc7W99rpFzhfh2B3sVnn4 tmp_api_user_v2: TzY6DFrnjPE8dwxUMbFf9HjbFqRim2MgXpMpMciXJFVohyURUJAc7W99rpFzhfh2B3sVnn4 tmp_api_username: vetsapiTempUser tmp_api_username_v2: vetsapiTempUser url: https://vpce-06399548ef94bdb41-lk4qp2nd.execute-api.us-gov-west-1.vpce.amazonaws.com url_v2: https://vpce-06399548ef94bdb41-lk4qp2nd.execute-api.us-gov-west-1.vpce.amazonaws.com lorota_v2: api_id: 22t00c6f97 api_id_v2: 22t00c6f97 api_key: fake_key api_key_v2: fake_key base_path: dev base_path_v2: dev key_path: fake_api_path mock: false redis_session_prefix: check_in_lorota_v2 redis_token_expiry: 43200 service_name: LoROTA-API url: https://vpce-06399548ef94bdb41-lk4qp2nd.execute-api.us-gov-west-1.vpce.amazonaws.com url_v2: https://vpce-06399548ef94bdb41-lk4qp2nd.execute-api.us-gov-west-1.vpce.amazonaws.com map_api: service_name: MAP-API url: https://veteran.apps-staging.va.gov travel_reimbursement_api_v2: auth_url: https://fake.service.us auth_url_v2: ~ claims_base_path: ~ claims_base_path_v2: eis/api/btsss/travelclaim claims_url: https://fake.dev.va.gov claims_url_v2: https://fake.dev.va.gov client_id: ~ client_number: ~ client_number_oh: ~ client_secret: ~ e_subscription_key: ~ redis_token_expiry: 3540 s_subscription_key: ~ scope: ~ service_name: BTSSS-API subscription_key: ~ tenant_id: abcdefgh-1234-5678-12345-11e8b8ce491e travel_pay_client_id: ~ travel_pay_client_secret: secret travel_pay_client_secret_oh: secret travel_pay_resource: ~ vaos: mock: false chip: api_gtwy_id: 2dcdrrn5zc base_path: dev mobile_app: password: '12345' tenant_id: 6f1c8b41-9c77-469d-852d-269c51a7d380 username: testuser mock: true url: https://vpce-06399548ef94bdb41-lk4qp2nd.execute-api.us-gov-west-1.vpce.amazonaws.com claims_api: audit_enabled: false benefits_documents: auth: ccg: aud_claim_url: ~ client_id: ~ rsa_key: ~ secret_key: "/srv/vets-api/secret/claims_api_bd_secret.key" host: https://sandbox-api.va.gov use_mocks: false bgs: mock_responses: false claims_error_reporting: environment_name: ~ disability_claims_mock_override: false evss_container: auth_base_name: ~ client_id: ~ client_key: ~ client_secret: ~ fes: auth: ccg: aud_claim_url: https://deptva-eval.okta.com/oauth2/ausi3ui83fLa68IJv2p7/v1/token client_id: ~ host: https://qa.lighthouse.va.gov pdf_generator_526: content_type: application/vnd.api+json path: "/form-526ez-pdf-generator/v1/forms/" url: ~ poa_v2: disable_jobs: false report_enabled: false s3: aws_access_key_id: ~ aws_secret_access_key: ~ bucket: ~ region: ~ schema_dir: config/schemas slack: webhook_url: https://example.com token_validation: api_key: ~ url: ~ user_info: url: ~ v2_docs: enabled: false vanotify: accepted_representative_template_id: ~ accepted_service_organization_template_id: ~ client_url: ~ declined_representative_template_id: ~ declined_service_organization_template_id: ~ services: lighthouse: api_key: ~ notification_client_secret: ~ notify_service_id: ~ claims_evidence_api: base_url: https://claimevidence-api-fake.fake.bip.va.gov/api/v1/rest/ breakers_error_threshold: 80 include_request: false jwt_secret: fake-secret mock: false ssl: false timeout: open: 30 read: 30 clamav: host: 0.0.0.0 mock: true port: '33100' coe: prefill: true connected_apps_api: connected_apps: api_key: ~ auth_access_key: ~ revoke_url: https://sandbox-api.va.gov/internal/auth/v3/user/consent url: https://sandbox-api.va.gov/internal/auth/v3/user/connected-apps contention_classification_api: expanded_contention_classification_path: expanded-contention-classification hybrid_contention_classification_path: hybrid-contention-classification open_timeout: 5 read_timeout: 10 url: http://contention-classification-api-dev.vfs.va.gov/ coverband: github_api_key: ~ github_oauth_key: ~ github_oauth_secret: ~ github_organization: ~ github_team: ~ covid_vaccine: enrollment_service: job_enabled: ~ database_url: postgis:///vets-api decision_review: api_key: abcd1234abcd1234abcd1234abcd1234abcd1234 benchmark_performance: true mock: false pdf_validation: enabled: true url: https://sandbox-api.va.gov/services/vba_documents/v1 prefill: true s3: aws_access_key_id: ~ aws_secret_access_key: ~ bucket: bucket region: region url: https://sandbox-api.va.gov/services/appeals/v1/decision_reviews v1: url: https://sandbox-api.va.gov/services/appeals/v2/decision_reviews dependents: prefill: true dependents_verification: prefill: true dgi: jwt: private_key_path: modules/meb_api/spec/fixtures/dgi_private_test.pem public_key_path: modules/meb_api/spec/fixtures/dgi_public_test.pem sob: claimants: mock: ~ url: https://fake.sob.com jwt: private_key_path: modules/sob/spec/fixtures/test_private_key.pem public_key_path: modules/sob/spec/fixtures/test_public_key.pem vets: mock: false url: https://jenkins.ld.afsp.io:32512/vets-service/v1/ vye: jwt: kid: vye private_key_path: modules/vye/spec/fixtures/dgi_private_test.pem public_ica11_rca2_key_path: modules/vye/spec/fixtures/ICA11-RCA2-combined-cert.pem public_key_path: modules/vye/spec/fixtures/dgi_public_test.pem vets: mock: false url: '' dhp: fitbit: client_id: '' client_secret: '' code_challenge: '' code_verifier: '' redirect_uri: http://localhost:3000/dhp_connected_devices/fitbit-callback scope: heartrate activity nutrition sleep mock: false s3: aws_access_key_id: '' aws_secret_access_key: '' bucket: '' region: us-gov-west-1 directory: apikey: fake_apikey health_server_id: ~ key: ~ notification_service_flag: ~ url: http://example.com/services/apps/v0/ disability_max_ratings_api: open_timeout: 5 ratings_path: "/disability-max-ratings" read_timeout: 10 url: http://disability-max-ratings-api-dev.vfs.va.gov dispute_debt: prefill: true dmc: client_id: 0be3d60e3983438199f192b6e723a6f0 client_secret: secret debts_endpoint: debt-letter/get fsr_payment_window: 30 mock_debts: false mock_fsr: false url: https://fwdproxy-dev.vfs.va.gov:4465/api/v1/digital-services/ dogstatsd: enabled: false edu: prefill: true production_excel_contents: emails: - patricia.terry1@va.gov sftp: host: ~ key_path: ~ pass: ~ port: ~ relative_307_path: ~ relative_351_path: ~ relative_path: ~ user: ~ show_form: ~ slack: webhook_url: https://example.com spool_error: emails: - Joseph.Preisser@va.gov - Shay.Norton-Leonard@va.gov - PIERRE.BROWN@va.gov - VAVBAHIN/TIMS@vba.va.gov - EDUAPPMGMT.VBACO@VA.GOV - vfep_support_team@va.gov - eugenia.gina.ronat@accenturefederal.com - morgan.whaley@accenturefederal.com - m.c.shah@accenturefederal.com - patrick.arthur@accenturefederal.com - adam.freemer@accenturefederal.com - dan.brooking@accenturefederal.com - sebastian.cooper@accenturefederal.com - david.rowley@accenturefederal.com - nick.barthelemy@accenturefederal.com staging_emails: ~ staging_excel_contents: emails: - alex.chan1@va.gov - gregg.puhala@va.gov - noah.stern@va.gov - marelby.hernandez@va.gov - nawar.hussein@va.gov - engin.akman@va.gov staging_spool_contents: emails: - noah.stern@va.gov - gregg.puhala@va.gov - kara.ciprich@va.gov - vishnhav.ashok@va.gov - donna.saunders@va.gov - ariana.adili@govcio.com - marelby.hernandez@va.gov - nawar.hussein@va.gov - engin.akman@va.gov email_verification: jwt_secret: "b0a06b58cc2674005f300f5ca1bc3fbb29813b73ebcfd3dd2f8d4bede0b6ec34" evss: alternate_service_name: wss-form526-services-web-v2 aws: cert_path: ~ key_path: ~ root_ca: ~ url: http://fake.evss-reference-data-service.dev/v1 cert_path: ~ disability_compensation_form: submit_timeout: 355 timeout: 55 dvp: url: http://fake.dvp-docker-container international_postal_codes: config/evss/international_postal_codes.json key_path: ~ letters: timeout: 55 url: https://csraciapp6.evss.srarad.com mock_claims: false mock_common_service: true mock_disabilities_form: true mock_gi_bill_status: false mock_letters: false prefill: true root_cert_path: ~ s3: aws_access_key_id: EVSS_S3_AWS_ACCESS_KEY_ID_XYZ aws_secret_access_key: EVSS_S3_AWS_SECRET_ACCESS_KEY_XYZ bucket: evss_s3_bucket region: evss_s3_region uploads_enabled: false service_name: wss-form526-services-web url: https://csraciapp6.evss.srarad.com versions: claims: 3.6 common: 11.6 documents: 3.7 expiry_scanner: directories: ~ slack: channel_id: ~ flipper: github_api_key: ~ github_oauth_key: ~ github_oauth_secret: ~ github_organization: ~ github_team: ~ mute_logs: false form0781_remediation: aws: bucket: ~ region: ~ form1095_b: s3: aws_access_key_id: ~ aws_secret_access_key: ~ bucket: bucket region: region form526_backup: api_key: ~ aws: access_key_id: ~ bucket: ~ region: ~ secret_access_key: ~ enabled: true submission_method: single url: https://sandbox-api.va.gov/services/vba_documents/v1/ form526_export: aws: access_key_id: ~ bucket: ~ region: ~ secret_access_key: ~ form_10275: submission_email: form_10275@example.com form_10282: sftp: host: ~ key_path: ~ pass: ~ port: ~ relative_path: ~ user: ~ form_10_10cg: carma: mulesoft: async_timeout: 600 auth: auth_token_path: ~ client_id: ~ client_secret: ~ mock: false timeout: ~ token_url: ~ client_id: ~ client_secret: ~ host: ~ timeout: 30 poa: s3: aws_access_key_id: my-aws-key-id aws_secret_access_key: my-aws-access-key bucket: my-bucket enabled: true region: us-gov-west-1 form_mock_ae_design_patterns: prefill: true form_upload: prefill: true forms: mock: false url: https://sandbox-api.va.gov/services/va_forms/v0/ forms_api_benefits_intake: api_key: ~ url: https://sandbox-api.va.gov/services/vba_documents/v1/ fsr: prefill: true gclaws: accreditation: agents: url: http://localhost:5000/api/v2/accreditations/agents api_key: fake_key attorneys: url: http://localhost:5000/api/v2/accreditations/attorneys icn: url: http://localhost:5000/api/v2/accreditations/icn origin: fake_origin representatives: url: http://localhost:5000/api/v2/accreditations/representatives veteran_service_organizations: url: http://localhost:5000/api/v2/accreditations/veteranserviceorganizations genisis: base_url: ~ form_submission_path: "/formdata" pass: ~ service_path: ~ user: ~ gids: open_timeout: 1 read_timeout: 1 search: open_timeout: 10 read_timeout: 10 url: https://dev.va.gov/gids github_cvu: installation_id: ~ integration_id: ~ private_pem: ~ github_stats: token: fake_token username: github-stats-rake google_analytics: tracking_id: ~ url: https://fwdproxy-staging.vfs.va.gov:4473 google_analytics_cvu: auth_provider_x509_cert_url: https://www.googleapis.com/oauth2/v1/certs auth_uri: https://accounts.google.com/o/oauth2/auth client_email: va-gov-top-user-viewports@vsp-analytics-and-insights.iam.gserviceaccount.com client_id: ~ client_x509_cert_url: https://www.googleapis.com/robot/v1/metadata/x509/va-gov-top-user-viewports%40vsp-analytics-and-insights.iam.gserviceaccount.com private_key: ~ private_key_id: ~ project_id: vsp-analytics-and-insights token_uri: https://oauth2.googleapis.com/token type: service_account govdelivery: server: stage-tms.govdelivery.com staging_service: true token: ~ hca: ca: [] ee: endpoint: http://example.com pass: password user: HCASvcUsr endpoint: https://test-foo.vets.gov future_discharge_testing: ~ prefill: true s3: aws_access_key_id: ~ aws_secret_access_key: ~ bucket: ~ region: ~ timeout: 30 hostname: 127.0.0.1:3000 iam_ssoe: client_cert_path: spec/fixtures/iam_ssoe/oauth.crt client_id: Mobile_App_API_Server_LOWERS client_key_path: spec/fixtures/iam_ssoe/oauth.key oauth_url: https://int.fed.eauth.va.gov:444 timeout: 20 intent_to_file: prefill: true ivc_champva: pega_api: api_key: fake_api_key base_path: fake_base_path prefill: true ivc_champva_llm_processor_api: api_key: fake_llm_api_key host: fake_base_path ivc_champva_ves_api: api_key: fake_api_key app_id: ~ host: https://fwdproxy-staging.vfs.va.gov:4429 mock: false subject: "Proxy Client" ivc_forms: form_status_job: enabled: ~ slack_webhook_url: ~ s3: aws_access_key_id: ~ aws_secret_access_key: ~ bucket: bucket region: region sidekiq: missing_form_status_job: enabled: true old_records_cleanup_job: enabled: true kafka_producer: aws_region: "us-gov-west-1" aws_role_arn: "arn:aws:iam::123456789012:role/role-name" # this is an example broker_urls: ["localhost:19092"] # for local Kafka cluster in Docker sasl_mechanisms: 'GSSAPI' schema_registry_url: "http://localhost:8081" # for local Schema Registry in Docker security_protocol: 'plaintext' test_topic_name: submission_trace_mock_test topic_name: submission_trace_form_status_change_test kms_key_id: ~ lgy: api_key: ~ app_id: ~ base_url: http://www.example.com mock_coe: true lgy_sahsha: api_key: ~ app_id: ~ base_url: http://www.example.com mock_coe: ~ lighthouse: api_key: fake_key auth: ccg: client_id: ~ rsa_key: ~ benefits_claims: access_token: aud_claim_url: https://deptva-eval.okta.com/oauth2/ausdg7guis2TYDlFe2p7/v1/token client_id: ~ rsa_key: ~ aud_claim_url: ~ form526: access_token: aud_claim_url: https://deptva-eval.okta.com/oauth2/ausdg7guis2TYDlFe2p7/v1/token client_id: ~ rsa_key: ~ host: https://staging-api.va.gov use_mocks: false host: https://sandbox-api.va.gov use_mocks: false benefits_discovery: host: 'https://sandbox.lighthouse.va.gov' x_api_key: ~ x_app_id: ~ benefits_documents: access_token: aud_claim_url: https://deptva-eval.okta.com/oauth2/ausi3ui83fLa68IJv2p7/v1/token host: https://sandbox-api.va.gov timeout: 65 use_mocks: false benefits_education: access_token: aud_claim_url: https://deptva-eval.okta.com/oauth2/ausln2mo4jCAYRrlR2p7/v1/token client_id: ~ rsa_key: ~ host: https://sandbox-api.va.gov use_mocks: false benefits_intake: api_key: ~ breakers_error_threshold: 80 host: https://sandbox-api.va.gov path: "/services/vba_documents" report: batch_size: 1000 stale_sla: 10 use_mocks: false version: v1 benefits_reference_data: path: services/benefits-reference-data staging_url: https://staging-api.va.gov url: https://sandbox-api.va.gov version: v1 direct_deposit: access_token: aud_claim_url: https://deptva-eval.okta.com/oauth2/ausi0e21hbv5iElEh2p7/v1/token client_id: ~ rsa_key: ~ host: https://sandbox-api.va.gov use_mocks: false facilities: api_key: fake_key hqva_mobile: url: https://veteran.apps.va.gov url: https://sandbox-api.va.gov veterans_health: url: ~ healthcare_cost_and_coverage: access_token: aud_claim_url: https://deptva-eval.okta.com/oauth2/fake1tcityDg93hgKkd#/v1/token client_id: fake_client_id rsa_key: path/to/fake/pem host: https://test-api.va.gov scopes: - system/ChargeItem.read - system/Invoice.read - system/PaymentReconciliation.read - system/MedicationDispense.read - system/Encounter.read - system/Account.read - system/Medication.read - launch timeout: 30 use_mocks: false letters_generator: access_token: aud_claim_url: https://deptva-eval.okta.com/oauth2/ausftw7zk6eHr7gMN2p7/v1/token client_id: ~ path: oauth2/va-letter-generator/system/v1/token rsa_key: ~ path: "/services/va-letter-generator/v1/" url: https://sandbox-api.va.gov use_mocks: false s3: aws_access_key_id: ~ aws_secret_access_key: ~ bucket: lighthouse_s3_bucket region: lighthouse_s3_region uploads_enabled: false staging_api_key: fake_key veteran_verification: aud_claim_url: https://deptva-eval.okta.com/oauth2/ausi3u00gw66b9Ojk2p7/v1/token form526: access_token: client_id: ~ rsa_key: ~ aud_claim_url: ~ host: https://staging-api.va.gov use_mocks: true host: https://staging-api.va.gov status: access_token: client_id: ~ rsa_key: ~ host: https://staging-api.va.gov use_mocks: false use_mocks: false veterans_health: fast_tracker: api_key: "/app/secret/lighthouse_fast_track_api.key" api_scope: - launch - patient/AllergyIntolerance.read - patient/DiagnosticReport.read - patient/Patient.read - system/Patient.read - patient/Observation.read - patient/Practitioner.read - patient/MedicationRequest.read - patient/Condition.read aud_claim_url: https://deptva-eval.okta.com/oauth2/aus8nm1q0f7VQ0a482p7/v1/token client_assertion_type: urn:ietf:params:oauth:client-assertion-type:jwt-bearer client_id: 0oaaxkp0aeXEJkMFw2p7 grant_type: client_credentials url: https://sandbox-api.va.gov use_mocks: false lighthouse_health_immunization: access_token_url: https://sandbox-api.va.gov/oauth2/health/system/v1/token api_url: https://sandbox-api.va.gov/services/fhir/v0/r4 audience_claim_url: https://deptva-eval.okta.com/oauth2/aus8nm1q0f7VQ0a482p7/v1/token client_id: 0oad0xggirKLf2ger2p7 key_path: ~ scopes: - launch launch/patient - patient/Immunization.read - patient/Location.read locators: mock_gis: true vha: ~ vha_access_satisfaction: ~ vha_access_waittime: ~ lockbox: master_key: 0d78eaf0e90d4e7b8910c9112e16e66d8b00ec4054a89aa426e32712a13371e9 mail_automation: client_id: va_gov_test client_secret: fake_key endpoint: "/mas/api/test/masInsertAndInitiateApcasClaimProcessing" token_endpoint: "/pca/api/test/token" url: https://viccs-api-test.ibm-intelligent-automation.com maintenance: aws: access_key_id: ~ bucket: ~ region: ~ secret_access_key: ~ pagerduty_api_token: FAKE pagerduty_api_url: https://api.pagerduty.com service_query_prefix: 'External: ' services: 1010ez: ~ 1010ezr: ~ accredited_representative_portal: ~ appeals: P9S4RFU arcgis: P45YBFA askva: ~ avs: ~ bgs: P5Q2OCZ carma: P6XLE0T caseflow: ~ cie: ~ coe: PSY4HU1 community_care_ds: ~ decision_reviews: ~ dgi_claimants: ~ disability_compensation_form: ~ dmc: ~ dslogon: P9DJJAV es: PH7OPR4 evss: PZKWB6Y form1010d: ~ form1010d_ext: ~ form107959a: ~ form107959c: ~ form107959f1: ~ form107959f2: ~ form21p0537: ~ form21p601: ~ global: PLPSIB0 hcq: PWGA814 idme: PVWB4R8 lighthouse_benefits_claims: ~ lighthouse_benefits_education: ~ lighthouse_benefits_intake: ~ lighthouse_direct_deposit: ~ lighthouse_vshe: ~ logingov: P2SHMM9 mdot: PGT74RC mhv: PP2ZZ2V mhv_meds: ~ mhv_mr: ~ mhv_platform: ~ mhv_sm: ~ mvi: PCIPVGJ pcie: ~ pega: P3ZJCBK sahsha: ~ search: PRG8HJI ssoe: ~ ssoe_oauth: ~ tc: ~ tims: PUL8OQ4 travel_pay: ~ vaos: ~ vaosWarning: ~ vapro_contact_info: ~ vapro_health_care_contacts: ~ vapro_military_info: ~ vapro_notification_settings: ~ vapro_personal_info: ~ vbms: ~ vet360: PHVOGQ1 vetext_vaccine: P9PG8HG vic: P7LW3MS vre: ~ vre_ch31_eligibility: ~ mcp: notifications: batch_size: 10 job_interval: 10 vbs: api_key: abcd1234abcd1234abcd1234abcd1234abcd1234 base_path: "/base/path" host: fake_url.com:9000 mock: false mock_vista: false service_name: VBS url: https://fake_url.com:9000 vbs_client_key: abcd1234abcd1234abcd1234abcd1234abcd1234 vbs_v2: api_key: abcd1234abcd1234abcd1234abcd1234abcd1234 base_path: "/base/path" host: fake_url.com:9000 mock: false mock_vista: false service_name: VBS url: https://fake_url.com:9000 mdot: api_key: abcd1234abcd1234abcd1234abcd1234abcd1234 mock: false prefill: true url: https://fwdproxy-staging.vfs.va.gov:4466 memorials: prefill: true mhv: account: mock: false api_gateway: hosts: bluebutton: fake-host fhir: fake-host pharmacy: fake-host phrmgr: fake-host security: fake-host sm_patient: fake-host usermgmt: fake-host bb: collection_caching_enabled: true mock: true facility_range: - - 358 - 718 - - 720 - 740 - - 742 - 758 facility_specific: - 741MM inherited_proofing: app_token: ~ host: ~ medical_records: app_id: 103 app_token: fake-app-token host: fake-host mhv_x_api_key: ~ x_api_key: fake-x-api-key x_api_key_v2: fake-x-api-key-v2 x_auth_key: fake-x-auth-key oh_facility_checks: facilities_migrating_to_oh: 555, 001 facilities_ready_for_info_alert: 612, 555 pretransitioned_oh_facilities: 612, 357, 555, 757 rx: app_token: ~ base_path: mhv-api/patient/v1/ collection_caching_enabled: false gw_base_path: v1/ host: https://mhv-api.example.com mock: true x_api_key: fake-x-api-key sm: app_token: fake-app-token gw_base_path: v1/sm/patient/ mock: true timeout: <%= ENV['mhv__sm__timeout'] || 60 %> x_api_key: fake-x-api-key uhd: app_id: 1000 app_token: faketoken host: https://example.myhealth.va.gov labs_logging_date_range_days: 30 mock: true security_host: https://security.example.myhealth.va.gov subject: "Proxy Client" user_type: usertype x_api_key: fake-x-api-key mhv_mobile: rx: app_token: fake-app-token x_api_key: fake-x-api-key sm: app_token: fake-app-token x_api_key: fake-x-api-key mobile_lighthouse: client_id: 0oajpx78t3M8kurld2p7 rsa_key: ~ modules_appeals_api: documentation: notice_of_disagreements_v1: true path_enabled_flag: false wip_docs: ~ evidence_submissions: location: prefix: http://some.fakesite.com/path replacement: http://another.fakesite.com/rewrittenpath legacy_appeals_enabled: true notice_of_disagreement_pii_expunge_enabled: ~ notice_of_disagreement_updater_enabled: ~ reports: daily_decision_review: enabled: false recipients: ~ daily_error: enabled: ~ recipients: ~ weekly_decision_review: enabled: false recipients: ~ weekly_error: enabled: false recipients: ~ s3: aws_access_key_id: aws_access_key_id aws_secret_access_key: aws_secret_access_key bucket: bucket region: region uploads_enabled: false schema_dir: config/schemas slack: api_key: '' appeals_channel_id: '' status_simulation_enabled: false token_validation: appeals_status: api_key: '' contestable_issues: api_key: '' higher_level_reviews: api_key: '' legacy_appeals: api_key: '' notice_of_disagreements: api_key: '' supplemental_claims: api_key: '' mvi_hca: url: http://example.com ogc: form21a_service_url: api_key: fake_key s3: bucket: fake_bucket region: us-gov-west-1 type: s3 uploads_enabled: false url: http://localhost:5000/api/v1/accreditation/applications/form21a oidc: isolated_audience: claims: ~ default: ~ old_secret_key_base: 8af0fe1e378586520e4324694897eb269bd0fffa1c5be6cc3b4ffb9dbde095d0bef5c7fdab73cd05685d8fe1dd589287d78b38e4de7116fbe14461e414072677 onsite_notifications: public_key: ~ template_ids: - f9947b27-df3b-4b09-875c-7f76594d766d # staging - debt notification - 7efc2b8b-e59a-4571-a2ff-0fd70253e973 # production - debt notification pension_burial: prefill: true sftp: relative_path: "../VETSGOV_PENSION" pension_ipf_vanotify_status_callback: bearer_token: ~ ppms: api_keys: Ocp-Apim-Subscription-Key-E: ~ Ocp-Apim-Subscription-Key-S: ~ fakekey: fakevalue ocp-apim-subscription-key: ~ apim_url: ~ open_timeout: 15 read_timeout: 55 url: https://some.fakesite.com preneeds: host: http://some.fakesite.com s3: aws_access_key_id: ~ aws_secret_access_key: ~ bucket: ~ region: ~ wsdl: config/preneeds/wsdl/preneeds.wsdl rack_timeout: service_timeout: ~ wait_overtime: ~ wait_timeout: ~ redis: app_data: url: redis://localhost:6379 host: localhost port: 6379 rails_cache: url: redis://localhost:6379 sidekiq: url: redis://localhost:6379 relative_url_root: "/" reports: aws: access_key_id: ~ bucket: ~ region: ~ secret_access_key: ~ send_email: true spool10203_submission: emails: - Brian.Grubb@va.gov - dana.kuykendall@va.gov - Jennifer.Waltz2@va.gov - Joseph.Preisser@va.gov - Joshua.Lashbrook@va.gov - kathleen.dalfonso@va.gov - kyle.pietrosanto@va.gov - lihan@adhocteam.us - Lucas.Tickner@va.gov - Ricardo.DaSilva@va.gov - robert.shinners@va.gov - shay.norton@va.gov - tammy.hurley1@va.gov staging_emails: - Brian.Grubb@va.gov - Joseph.Preisser@va.gov - kyle.pietrosanto@va.gov - lihan@adhocteam.us - Lucas.Tickner@va.gov - Ricardo.DaSilva@va.gov - tammy.hurley1@va.gov - vfep_support_team@va.gov - eugenia.gina.ronat@accenturefederal.com - morgan.whaley@accenturefederal.com - m.c.shah@accenturefederal.com - d.a.barnes@accenturefederal.com - jacob.finnern@accenturefederal.com - hocine.halli@accenturefederal.com - adam.freemer@accenturefederal.com spool_submission: emails: - Brian.Grubb@va.gov - dana.kuykendall@va.gov - Jennifer.Waltz2@va.gov - Joseph.Preisser@va.gov - Joshua.Lashbrook@va.gov - kathleen.dalfonso@va.gov - kyle.pietrosanto@va.gov - lihan@adhocteam.us - Lucas.Tickner@va.gov - Ricardo.DaSilva@va.gov - shay.norton@va.gov - tammy.hurley1@va.gov staging_emails: - Brian.Grubb@va.gov - Joseph.Preisser@va.gov - kyle.pietrosanto@va.gov - lihan@adhocteam.us - Lucas.Tickner@va.gov - Ricardo.DaSilva@va.gov - tammy.hurley1@va.gov - vfep_support_team@va.gov - eugenia.gina.ronat@accenturefederal.com - morgan.whaley@accenturefederal.com - m.c.shah@accenturefederal.com - d.a.barnes@accenturefederal.com - jacob.finnern@accenturefederal.com - hocine.halli@accenturefederal.com - adam.freemer@accenturefederal.com year_to_date_report: emails: - 222A.VBAVACO@va.gov - 224B.VBAVACO@va.gov - 224C.VBAVACO@va.gov - Brandon.Scott2@va.gov - Brian.Grubb@va.gov - Christina.DiTucci@va.gov - EDU.VBAMUS@va.gov - John.McNeal@va.gov - Joseph.Preisser@va.gov - Joshua.Lashbrook@va.gov - kathleen.dalfonso@va.gov - kyle.pietrosanto@va.gov - Lucas.Tickner@va.gov - michele.mendola@va.gov - Ricardo.DaSilva@va.gov - shay.norton@va.gov - tammy.hurley1@va.gov staging_emails: - Brian.Grubb@va.gov - Joseph.Preisser@va.gov - kyle.pietrosanto@va.gov - lee.munson@va.gov - lihan@adhocteam.us - Lucas.Tickner@va.gov - matthew.ziolkowski@va.gov - Michael.Johnson19@va.gov - patrick.burk@va.gov - preston.sanders@va.gov - robyn.noles@va.gov - Ricardo.DaSilva@va.gov - tammy.hurley1@va.gov - vfep_support_team@va.gov - eugenia.gina.ronat@accenturefederal.com - morgan.whaley@accenturefederal.com - m.c.shah@accenturefederal.com - d.a.barnes@accenturefederal.com - jacob.finnern@accenturefederal.com - hocine.halli@accenturefederal.com - adam.freemer@accenturefederal.com res: api_key: ~ base_url: https://fake_url.com ch_31_case_details: mock: ~ ch_31_eligibility: mock: ~ mock_ch_31: ~ review_instance_slug: ~ rrd: alerts: recipients: - fake_email mas_all_claims_tracking: recipients: - fake_email mas_tracking: recipients: - fake_email pact_tracking: recipients: - fake_email salesforce: consumer_key: ~ env: dev salesforce-carma: url: https://fake-carma.salesforce.com salesforce-gibft: consumer_key: ~ env: ~ signing_key_path: ~ url: https://va--rdtcddev.cs33.my.salesforce.com/ saml: cert_path: ~ key_path: ~ schema_contract: appointments_index: modules/vaos/app/schemas/appointments_index.json claims_and_appeals_get_claim: modules/mobile/app/schemas/claims_and_appeals_get_claim.json test_index: spec/fixtures/schema_contract/test_schema.json search: access_key: SEARCH_GOV_ACCESS_KEY affiliate: va mock_search: false url: https://search.usa.gov/api/v2/search/i14y search_click_tracking: access_key: SEARCH_GOV_ACCESS_KEY affiliate: va mock: ~ module_code: ~ url: https://api.gsa.gov/technology/searchgov/v2 search_gsa: access_key: SEARCH_GOV_ACCESS_KEY affiliate: va mock_search: false url: https://api.gsa.gov/technology/searchgov/v2/results/i14y search_typeahead: api_key: API_GOV_ACCESS_KEY name: va url: https://api.gsa.gov/technology/searchgov/v1 secret_key_base: c1a13acb916e6ebf1d2a93a3924586520508b609e80e048364902cd36ab602c9ec6ddcb47ac66e7903dbc77ae876df5564658a4f786b50497440b0c7dc029361 sentry: dsn: ~ shrine: claims: access_key_id: ~ bucket: ~ path: claims region: ~ secret_access_key: ~ type: local upload_options: acl: private server_side_encryption: AES256 local: path: ~ type: ~ remotes3: access_key_id: ~ bucket: ~ path: ~ region: ~ secret_access_key: ~ type: ~ sidekiq: github_api_key: ~ github_oauth_key: ~ github_oauth_secret: ~ github_organization: ~ github_team: ~ sidekiq_admin_panel: false test_database_url: postgis:///vets-api-test test_user_dashboard: env: dev github_oauth: client_id: ~ client_secret: ~ token_validation: url: https://dev-api.va.gov/internal/auth travel_pay: base_url: ~ client_number: ~ mobile_client_number: ~ mock: true service_name: BTSSS-API sts: scope: ~ service_account_id: ~ subscription_key: ~ subscription_key_e: ~ subscription_key_s: ~ veis: auth_url: https://login.microsoftonline.us client_id: ~ client_secret: ~ resource: ~ tenant_id: ~ va_forms: drupal_password: ~ drupal_url: ~ drupal_username: ~ form_reloader: enabled: ~ slack: api_key: ~ channel_id: ~ enabled: ~ va_mobile: claims_path: /services/claims/v2/veterans key_path: "/fake/client/key/path" mock: false patients_path: /vaos/v1/patients ppms_base_url: https://staff.apps.va.gov timeout: 25 url: https://veteran.apps.va.gov va_notify: status_callback: bearer_token: ~ va_profile: address_validation: api_key: "<AV_KEY>" hostname: sandbox-api.va.gov contact_information: cache_enabled: false enabled: true mock: false timeout: 30 demographics: cache_enabled: false enabled: true mock: true timeout: 30 military_personnel: cache_enabled: ~ enabled: true mock: true timeout: 30 prefill: true url: https://int.vet360.va.gov v3: address_validation: api_key: "<AV_KEY>" veteran_status: cache_enabled: true enabled: true mock: false timeout: 30 vahb: version_requirement: allergies_oracle_health: '3.0.0' labs_oracle_health: '3.0.0' medications_oracle_health: '2.99.99' valid_va_file_number: false vanotify: callback_url: https://dev-api.va.gov/va_notify/callbacks client_url: http://fakeapi.com links: connected_applications: https://www.va.gov/profile/connected-applications password_reset: https://www.va.gov/resources/signing-in-to-vagov/#what-if-i-cant-sign-in-to-vago mock: false service_callback_tokens: 1010_health_apps: 1010_health_apps_token benefits_decision_review: benefits_decision_review_token benefits_disability: benefits_disability_token benefits_management_tools: benefits_management_tools_token ivc_forms: ivc_forms_token va_gov: va_gov_token services: 21_0538: &vanotify_services_dependents_verification api_key: fake_secret email: error: flipper_id: dv_email_notification template_id: fake_dv_error received: flipper_id: dv_email_notification template_id: fake_dv_received submitted: flipper_id: dv_email_notification template_id: fake_dv_submitted 21_686c_674: &vanotify_services_dependents_benefits api_key: fake_secret email: error_674_only: flipper_id: dependents_benefits_error_email_notification template_id: form674_only_error_email_template_id error_686c_674: flipper_id: dependents_benefits_error_email_notification template_id: form686c_674_error_email_template_id error_686c_only: flipper_id: dependents_benefits_error_email_notification template_id: form686c_only_error_email_template_id received_674_only: flipper_id: dependents_benefits_received_email_notification template_id: form674_only_received_email_template_id received_686c_674: flipper_id: dependents_benefits_received_email_notification template_id: form686c_674_received_email_template_id received_686c_only: flipper_id: dependents_benefits_received_email_notification template_id: form686c_only_received_email_template_id submitted674_only: flipper_id: dependents_benefits_submitted_email_notification template_id: form674_only_submitted_email_template_id submitted686c674: flipper_id: dependents_benefits_submitted_email_notification template_id: form686c674_submitted_email_template_id submitted686c_only: flipper_id: dependents_benefits_submitted_email_notification template_id: form686c_only_submitted_email_template_id 21p_0969: &vanotify_services_income_and_assets api_key: fake_secret email: error: flipper_id: income_and_assets_error_email_notification template_id: form0969_error_email_template_id persistent_attachment_error: flipper_id: income_and_assets_persistent_attachment_error_email_notification template_id: form0969_persistent_attachment_error_email_template_id received: flipper_id: income_and_assets_received_email_notification template_id: form0969_received_email_template_id submitted: flipper_id: income_and_assets_submitted_email_notification template_id: form0969_submitted_email_template_id 21p_527ez: &vanotify_services_pension api_key: fake_secret email: confirmation: flipper_id: false template_id: form527ez_confirmation_email_template_id error: flipper_id: pension_error_email_notification template_id: form527ez_error_email_template_id persistent_attachment_error: flipper_id: pension_persistent_attachment_error_email_notification template_id: form527ez_persistent_attachment_error_email_template_id received: flipper_id: pension_received_email_notification template_id: form527ez_received_email_template_id submitted: flipper_id: pension_submitted_email_notification template_id: form527ez_submitted_email_template_id 21p_530ez: &vanotify_services_burial api_key: fake_secret email: confirmation: flipper_id: false template_id: burial_claim_confirmation_email_template_id error: flipper_id: burial_error_email_notification template_id: burial_claim_error_email_template_id persistent_attachment_error: flipper_id: burial_persistent_attachment_error_email_notification template_id: burial_persistent_attachment_error_email_template_id received: flipper_id: burial_received_email_notification template_id: burial_received_email_template_id submitted: flipper_id: burial_submitted_email_notification template_id: burial_submitted_email_template_id 21p_530: *vanotify_services_burial 21p_534ez: &vanotify_services_survivors_benefits api_key: fake_secret email: confirmation: flipper_id: false template_id: form527ez_confirmation_email_template_id error: flipper_id: survivors_benefits_error_email_notification template_id: form527ez_error_email_template_id persistent_attachment_error: flipper_id: survivors_benefits_persistent_attachment_error_email_notification template_id: form527ez_persistent_attachment_error_email_template_id received: flipper_id: survivors_benefits_received_email_notification template_id: form527ez_received_email_template_id submitted: flipper_id: survivors_benefits_submitted_email_notification template_id: form527ez_submitted_email_template_id 21p_530v2: *vanotify_services_burial 21p_8416: &vanotify_services_medical_expense_reports api_key: fake_secret email: confirmation: flipper_id: false template_id: form8416_confirmation_email_template_id error: flipper_id: survivors_benefits_error_email_notification template_id: form8416_error_email_template_id persistent_attachment_error: flipper_id: survivors_benefits_persistent_attachment_error_email_notification template_id: form8416_persistent_attachment_error_email_template_id received: flipper_id: survivors_benefits_received_email_notification template_id: form8416_received_email_template_id submitted: flipper_id: survivors_benefits_submitted_email_notification template_id: form8416_submitted_email_template_id accredited_representative_portal: api_key: fake_secret email: confirmation: template_id: accredited_representative_portal_confirmation_email_template_id error: template_id: accredited_representative_portal_error_email_template_id received: template_id: accredited_representative_portal_received_email_template_id benefits_decision_review: api_key: fake_secret template_id: evidence_recovery_email: fake_evidence_recovery_template_id form_recovery_email: fake_form_recovery_template_id higher_level_review_form_error_email: fake_hlr_template_id notice_of_disagreement_evidence_error_email: fake_nod_evidence_template_id notice_of_disagreement_form_error_email: fake_nod_template_id supplemental_claim_evidence_error_email: fake_sc_evidence_template_id supplemental_claim_form_error_email: fake_sc_template_id supplemental_claim_secondary_form_error_email: fake_sc_secondary_form_template_id benefits_disability: api_key: fake_secret template_id: form0781_upload_failure_notification_template_id: form0781_upload_failure_notification_template_id form4142_upload_failure_notification_template_id: form4142_upload_failure_notification_template_id form526_document_upload_failure_notification_template_id: form526_document_upload_failure_notification_template_id form526_submission_failure_notification_template_id: form526_submission_failure_notification_template_id benefits_management_tools: api_key: fake_secret push_api_key: fake_secret template_id: decision_letter_ready_email: fake_template_id evidence_submission_failure_email: fake_template_id burials: *vanotify_services_burial check_in: api_key: fake_secret sms_sender_id: fake_secret template_id: claim_submission_duplicate_text: fake_template_id claim_submission_error_text: fake_template_id claim_submission_failure_text: ~ claim_submission_success_text: fake_template_id claim_submission_timeout_text: ~ dependents: api_key: fake_secret email: received674: template_id: fake_received674 received686: template_id: fake_received686 received686c674: template_id: fake_received686c674 submitted674: template_id: fake_submitted674 submitted686: template_id: fake_submitted686 submitted686c674: template_id: fake_submitted686c674 dependents_benefits: *vanotify_services_dependents_benefits dependents_verification: *vanotify_services_dependents_verification dmc: api_key: fake_secret template_id: digital_dispute_confirmation_email: fake_template_id digital_dispute_failure_email: fake_template_id digital_dispute_submission_email: fake_template_id fsr_confirmation_email: fake_template_id fsr_failed_email: fake_template_id fsr_step_1_submission_in_progress_email: fake_template_id fsr_streamlined_confirmation_email: fake_template_id vha_fsr_confirmation_email: ~ vha_new_copay_statement_email: fake_template_id health_apps_1010: api_key: fake_secret template_id: form1010_cg_failure_email: fake_template_id form1010_ez_failure_email: fake_template_id form1010_ezr_failure_email: fake_template_id income_and_assets: *vanotify_services_income_and_assets ivc_champva: api_key: fake_secret failure_email_threshold_days: 7 pega_inbox_address: fake_email_address template_id: form_10_10d_email: form_10_10d_email form_10_10d_failure_email: form_10_10d_failure_email form_10_7959a_email: form_10_7959a_email form_10_7959a_failure_email: form_10_7959a_failure_email form_10_7959c_email: form_10_7959c_email form_10_7959c_failure_email: form_10_7959c_failure_email form_10_7959f_1_email: form_10_7959f_1_email form_10_7959f_1_failure_email: form_10_7959f_1_failure_email form_10_7959f_2_email: form_10_7959f_2_email form_10_7959f_2_failure_email: form_10_7959f_2_failure_email pega_team_missing_status_email: pega_team_missing_status_email pega_team_zsf_email: pega_team_zsf_email lighthouse: api_key: fake_secret template_id: connection_template: ~ disconnection_template: ~ higher_level_review_received: ~ higher_level_review_received_claimant: ~ notice_of_disagreement_received: ~ notice_of_disagreement_received_claimant: ~ supplemental_claim_received: ~ supplemental_claim_received_claimant: ~ medical_expense_reports: *vanotify_services_medical_expense_reports oracle_health: sms_sender_id: fake_secret template_id: claim_submission_duplicate_text: fake_template_id claim_submission_error_text: fake_template_id claim_submission_failure_text: ~ claim_submission_success_text: fake_template_id claim_submission_timeout_text: ~ pensions: *vanotify_services_pension survivors_benefits: *vanotify_services_survivors_benefits va_gov: api_key: fake_secret template_id: accredited_representative_portal_poa_request_failure_claimant_email: accredited_representative_portal_poa_request_failure_claimant_email_template_id accredited_representative_portal_poa_request_failure_rep_email: accredited_representative_portal_poa_request_failure_rep_email_template_id appoint_a_representative_confirmation_email: appoint_a_representative_confirmation_email_template_id appoint_a_representative_digital_expiration_confirmation_email: appoint_a_representative_digital_expiration_confirmation_email_template_id appoint_a_representative_digital_expiration_warning_email: appoint_a_representative_digital_expiration_warning_email_template_id appoint_a_representative_digital_submit_confirmation_email: appoint_a_rep_v2_digital_submit_confirm_email_template_id appoint_a_representative_digital_submit_decline_email: appoint_a_rep_v2_digital_submit_decline_email_template_id career_counseling_confirmation_email: career_counseling_confirmation_email_template_id ch31_central_mail_form_confirmation_email: ch31_central_mail_fake_template_id ch31_vbms_form_confirmation_email: ch31_vbms_fake_template_id contact_email_address_change_confirmation_needed_email: contact_email_address_change_confirmation_needed_email_fake_template_id contact_email_address_confirmation_needed_email: contact_email_address_confirmation_needed_email_fake_template_id contact_email_address_confirmed_email: contact_email_address_confirmed_email_fake_template_id contact_info_change: fake_template_id covid_vaccine_registration: ~ direct_deposit: direct_deposit_template_id form0994_confirmation_email: form0994_confirmation_email_template_id form0994_extra_action_confirmation_email: form0994_extra_action_confirmation_email_template_id form1010ez_reminder_email: fake_template_id form10275_submission_email: form10275_submission_email_template_id form10297_confirmation_email: form10297_confirmation_email_template_id form1880_reminder_email: form1880_reminder_email_template_id form1900_action_needed_email: form1900_action_needed_email_template_id form1990_confirmation_email: form1990_confirmation_email_template_id form1990emeb_approved_confirmation_email: form1990emeb_approved_confirmation_email_template_id form1990emeb_denied_confirmation_email: form1990emeb_denied_confirmation_email_template_id form1990emeb_offramp_confirmation_email: form1990emeb_offramp_confirmation_email_template_id form1990meb_approved_confirmation_email: form1990meb_approved_confirmation_email_template_id form1990meb_denied_confirmation_email: form1990meb_denied_confirmation_email_template_id form1990meb_offramp_confirmation_email: form1990meb_offramp_confirmation_email_template_id form1995_confirmation_email: form1995_confirmation_email_template_id form20_10206_confirmation_email: form20_10206_confirmation_email_template_id form20_10206_error_email: form20_10206_error_email_template_id form20_10206_received_email: form20_10206_received_email_template_id form20_10207_confirmation_email: form20_10207_confirmation_email_template_id form20_10207_error_email: form20_10207_error_email_template_id form20_10207_received_email: form20_10207_received_email_template_id form21_0845_confirmation_email: form21_0845_confirmation_email_template_id form21_0845_error_email: form21_0845_error_email_template_id form21_0845_received_email: form21_0845_received_email_template_id form21_0966_confirmation_email: form21_0966_confirmation_email_template_id form21_0966_error_email: form21_0966_error_email_template_id form21_0966_itf_api_received_email: form21_0966_itf_api_received_email_template_id form21_0966_received_email: form21_0966_received_email_template_id form21_0972_confirmation_email: form21_0972_confirmation_email_template_id form21_0972_error_email: form21_0972_error_email_template_id form21_0972_received_email: form21_0972_received_email_template_id form21_10203_confirmation_email: form21_10203_confirmation_email_template_id form21_10210_confirmation_email: form21_10210_confirmation_email_template_id form21_10210_error_email: form21_10210_error_email_template_id form21_10210_received_email: form21_10210_received_email_template_id form21_4138_confirmation_email: form21_4138_confirmation_email_template_id form21_4138_error_email: form21_4138_error_email_template_id form21_4138_received_email: form21_4138_received_email_template_id form21_4142_confirmation_email: form21_4142_confirmation_email_template_id form21_4142_error_email: form21_4142_error_email_template_id form21_4142_received_email: form21_4142_received_email_template_id form21_674_action_needed_email: form21_674_action_needed_email_template_id form21_686c_674_action_needed_email: form21_686c_674_action_needed_email_template_id form21_686c_action_needed_email: form21_686c_action_needed_email_template_id form21p_0537_confirmation_email: form21p_0537_confirmation_email_template_id form21p_0537_error_email: form21p_0537_error_email_template_id form21p_0537_received_email: form21p_0537_received_email_template_id form21p_0847_confirmation_email: form21p_0847_confirmation_email_template_id form21p_0847_error_email: form21p_0847_error_email_template_id form21p_0847_received_email: form21p_0847_received_email_template_id form21p_601_confirmation_email: form21p_601_confirmation_email_template_id form21p_601_error_email: form21p_601_error_email_template_id form21p_601_received_email: form21p_601_received_email_template_id form26_4555_confirmation_email: form26_4555_confirmation_email_template_id form26_4555_duplicate_email: form26_4555_duplicate_email_template_id form26_4555_rejected_email: form26_4555_rejected_email_template_id form27_8832_action_needed_email: form27_8832_action_needed_email_template_id form40_0247_confirmation_email: form40_0247_confirmation_email_template_id form40_0247_error_email: form40_0247_error_email_template_id form40_10007_error_email: form40_10007_error_email_template_id form526_confirmation_email: fake_template_id form526_submission_failed_email: fake_template_id form526_submitted_email: fake_template_id form526ez_reminder_email: ~ form5490_confirmation_email: form5490_confirmation_email_template_id form5495_confirmation_email: form5495_confirmation_email_template_id form674_only_confirmation_email: 674_confirmation_template_id form686c_674_confirmation_email: 686c_674_confirmation_template_id form686c_confirmation_email: fake_template_id form686c_only_confirmation_email: 686c_confirmation_template_id form686c_reminder_email: fake_template_id form_upload_confirmation_email: form_upload_confirmation_template_id form_upload_error_email: form_upload_error_template_id form_upload_received_email: form_upload_received_template_id in_progress_reminder_email_generic: fake_template_id login_reactivation_email: reactivation_email_test_b preneeds_burial_form_email: preneeds_burial_form_email_template_id reactivation_email_test_b: ~ va_appointment_failure: fake_template_id veteran_readiness_and_employment: api_key: ~ email: confirmation_lighthouse: template_id: 'confirmation_lighthouse_email_template_id' confirmation_vbms: template_id: 'confirmation_vbms_email_template_id' error: template_id: 'error_email_template_id' status_callback: bearer_token: fake_bearer_token vaos: ccra: api_url: https://veteran.apps.va.gov base_path: vaos/v1/patients mock: false redis_referral_expiry: 3600 eps: access_token_url: https://login.wellhive.com/oauth2/default/v1/token api_url: https://api.wellhive.com audience_claim_url: https://login.wellhive.com/oauth2/default/v1/token base_path: care-navigation/v1 client_assertion_type: urn:ietf:params:oauth:client-assertion-type:jwt-bearer client_id: fake_client_id grant_type: client_credentials key_path: <%= ENV['vaos__eps__key_path'] %> kid: fake_kid mock: false pagination_timeout_seconds: 45 scopes: care-nav referral: encryption: hex_iv: "0123456789abcdef0123456789abcdef" hex_secret: "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef" vass: api_url: <%= ENV['vass__api_url'] %> auth_url: https://login.microsoftonline.us client_id: <%= ENV['vass__client_id'] %> client_secret: <%= ENV['vass__client_secret'] %> mock: <%= ENV['vass__mock'] %> redis_otc_expiry: 600 redis_session_expiry: 7200 redis_token_expiry: 3540 scope: <%= ENV['vass__scope'] %> service_name: VASS-API subscription_key: <%= ENV['vass__subscription_key'] %> tenant_id: <%= ENV['vass__tenant_id'] %> vba_documents: custom_metadata_allow_list: ~ enable_download_endpoint: ~ enable_status_override: ~ enable_validate_document_endpoint: true location: prefix: http://some.fakesite.com/path replacement: http://another.fakesite.com/rewrittenpath monthly_report: false report_enabled: false s3: aws_access_key_id: aws_access_key_id aws_secret_access_key: aws_secret_access_key bucket: bucket enabled: false region: region slack: api_key: '' channel_id: '' default_alert_email: '' enabled: false in_flight_notification_hung_time_in_days: 14 renotification_in_minutes: 240 update_stalled_notification_in_minutes: 180 sns: region: us-gov-west-1 topic_arns: - vetsgov-arn - vagov-arn updater_enabled: ~ vbms: ca_cert: VBMS-Client-Signing-CA.crt cert: vetsapi.client.vbms.aide.oit.va.gov.crt client_keyfile: vetsapi.client.vbms.aide.oit.va.gov.p12 env: test environment_directory: "/app/secret" keypass: ~ saml: vetsapi.client.vbms.aide.oit.va.gov.saml-token.xml server_cert: vbms.aide.oit.va.gov.crt url: https://fwdproxy-dev.vfs.va.gov:4449 vbs: url: https://vbs.example.com/api/v1 vet360: address_validation: api_key: "<AV_KEY>" hostname: sandbox-api.va.gov url: https://sandbox-api.va.gov contact_information: cache_enabled: false enabled: true mock: true timeout: 30 demographics: cache_enabled: false enabled: true mock: true timeout: 30 military_personnel: cache_enabled: false enabled: true mock: false timeout: 30 profile_information: enabled: true timeout: 30 use_mocks: false url: https://int.vet360.va.gov v3: address_validation: api_key: "<AV_KEY>" veteran_status: cache_enabled: true enabled: true mock: false timeout: 30 veteran_enrollment_system: associations: api_key: ~ ee_summary: api_key: ~ enrollment_periods: api_key: ~ form1095b: api_key: ~ host: https://localhost open_timeout: 10 port: 4430 timeout: 30 veteran_onboarding: onboarding_threshold_days: ~ veteran_readiness_and_employment: auth_endpoint: ~ base_url: ~ credentials: ~ daily_report: emails: - VRC.VBABOS@va.gov - VRE.VBAPRO@va.gov - VRE.VBANYN@va.gov - VRC.VBABUF@va.gov - VRE.VBAHAR@va.gov - vre.vbanew@va.gov - VREBDD.VBAPHI@va.gov - VRE.VBAPIT@va.gov - VRE.VBABAL@va.gov - VRE.VBAROA@va.gov - VRE.VBAHUN@va.gov - VRETMP.VBAATG@va.gov - VRE281900.VBASPT@va.gov - VRC.VBAWIN@va.gov - VRC.VBACMS@va.gov - VREAPPS.VBANAS@va.gov - VRC.VBANOL@va.gov - VRE.VBAMGY@va.gov - VRE.VBAJAC@va.gov - VRE.VBACLE@va.gov - VRE.VBAIND@va.gov - VRE.VBALOU@va.gov - VAVBACHI.VRE@va.gov - VRE.VBADET@va.gov - VREApplications.VBAMIW@va.gov - VRC.VBASTL@va.gov - VRE.VBADES@va.gov - VRE.VBALIN@va.gov - VRC.VBASPL@va.gov - VRE.VBADEN@va.gov - VRC.VBAALB@va.gov - VRE.VBASLC@va.gov - VRC.VBAOAK@va.gov - ROVRC.VBALAN@va.gov - VRE.VBAPHO@va.gov - VRE.VBASEA@va.gov - VRE.VBABOI@va.gov - VRE.VBAPOR@va.gov - VREAPPS.VBAWAC@va.gov - VRE.VBALIT@va.gov - VREBDD.VBAMUS@va.gov - VRE.VBAREN@va.gov - MBVRE.VBASAJ@va.gov - VRE.VBAMPI@va.gov - VRE.VBAHOU@va.gov - VRE.VBAWAS@va.gov - VRE.VBAMAN@va.gov - EBENAPPS.VBASDC@va.gov - VRE.VBATOG@va.gov - VRE.VBAMAN@va.gov - VRC.VBAFHM@va.gov - VRC.VBAFAR@va.gov - VRC.VBAFAR@va.gov - VRE.VBADEN@va.gov - VRE.VBAWIC@va.gov - VRC.VBAHON@va.gov - VAVBA/WIM/RO/VR&E@vba.va.gov - VRE.VBAANC@va.gov - VRE.VBAPIT@va.gov - VRE-CMS.VBAVACO@va.gov duplicate_submission_threshold_hours: 24 vetext: mock: ~ vetext_push: base_url: https://vetext1.r01.med.va.gov pass: secret user: vets-api-username va_mobile_app_debug_sid: mobile-app-debug-sid va_mobile_app_sid: mobile-app-sid vff_simple_forms: aws: bucket: ~ region: ~ vha: sharepoint: authentication_url: https://accounts.accesscontrol.windows.net base_path: "/sites/vhafinance/MDW" client_id: fake_sharepoint_client_id client_secret: fake_sharepoint_client_secret mock: true resource: 00000003-0000-0ff1-ce00-000000000000 service_name: VHA-SHAREPOINT sharepoint_url: dvagov.sharepoint.com tenant_id: fake_sharepoint_tenant_id vic: s3: aws_access_key_id: ~ aws_secret_access_key: ~ region: ~ signing_key_path: "/fake/signing/key/path" url: https://some.fakesite.com virtual_agent: cxdw_app_uri: fake_app_uri cxdw_client_id: fake_id cxdw_client_secret: fake_secret cxdw_dataverse_uri: fake_dataverse_uri cxdw_table_prefix: fake_table_prefix webchat_root_bot_secret: fake_secret virtual_hosts: - 127.0.0.1 - localhost - host.docker.internal vre_counseling: prefill: true vre_readiness: prefill: true vsp_environment: localhost vye: ivr_key: ~ s3: access_key_id: ~ bucket: ~ region: ~ secret_access_key: ~ scrypt: N: 16384 length: 16 p: 1 r: 8 salt: development-vye-scrypt-salt web_origin: http://localhost:3000,http://localhost:3001,http://127.0.0.1:3000,http://127.0.0.1:3001,http://host.docker.internal,null web_origin_regex: "\\Ahttps?:\\/\\/.*\\z" websockets: require_https: ~ websocket_settings: false xlsx_file_fetcher: github_access_token: ~
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`: # # <%= t('hello') %> # # To use a different locale, set it with `I18n.locale`: # # I18n.locale = :es # # This would use the information in config/locales/es.yml. # # To learn more, please read the Rails Internationalization guide # available at http://guides.rubyonrails.org/i18n.html. en: time: formats: pdf_stamp: "%Y-%m-%d" pdf_stamp4010007: "%m/%d/%Y" pdf_stamp_utc: "%Y-%m-%d %I:%M %p %Z" date: formats: pdf_stamp4010007: "%m/%d/%Y" dependency_claim_failure_mailer: subject: We can’t process your dependents application body_html: > <p>We’re sorry. Something went wrong when we tried to submit your application to add or remove a dependent on your VA benefits (VA Forms 21-686c and 21-674).</p> <p>Your online application didn’t go through because of a technical problem and we aren’t able to access your application.</p> <p>If you have general questions about adding or removing a dependent, you can call Veteran Benefits Assistance at 800-827-1000. We’re here Monday through Friday, 8:00 a.m. to 9:00 p.m. ET.</p> <p>We’re sorry for the extra work, <b>but after 24 hours</b>, you may need to go back and apply again at https://www.va.gov/manage-dependents/add-remove-form-21-686c-674/.</p> <p>Thank you for your service,</p> <p>VA.gov</p> <p><i>Note: This is an automated message sent from an unmonitored email account.</i></p> errors: messages: # begin carrierwave messages # from carrierwave https://github.com/carrierwaveuploader/carrierwave/blob/master/lib/carrierwave/locale/en.yml carrierwave_processing_error: We couldn’t process your file. carrierwave_integrity_error: We couldn’t upload your file because it’s not one of the allowed file types. carrierwave_download_error: We couldn’t download your file. extension_allowlist_error: "You can’t upload %{extension} files. The allowed file types are: %{allowed_types}" # extension_denylist_error: "You are not allowed to upload %{extension} files, prohibited types: %{prohibited_types}" content_type_allowlist_error: "You can’t upload %{content_type} files. The allowed file types are: %{allowed_types}" # content_type_denylist_error: "You are not allowed to upload %{content_type} files" # rmagick_processing_error: "Failed to manipulate with rmagick, maybe it is not an image?" # mini_magick_processing_error: "Failed to manipulate with MiniMagick, maybe it is not an image? Original Error: %{e}" min_size_error: "We couldn’t upload your file because it’s too small. File size needs to be greater than %{min_size}" max_size_error: "We couldn’t upload your file because it’s too large. File size needs to be less than %{max_size}" # end carrierwave messages uploads: content_type_mismatch: "We couldn’t upload your file because the content doesn’t match the extension." document_type_unknown: "We couldn’t upload your file because it’s not a known document type." encrypted: "We couldn’t upload your PDF because it’s encrypted. Save your file without a password and try uploading it again" malformed_pdf: "We couldn’t upload your PDF because the file is corrupted" ascii_encoded: "We couldn’t upload your file because we can’t read its characters. Text files must be ASCII-encoded." pdf: locked: We couldn’t upload your PDF because it’s encrypted. Save your file without a password and try uploading it again. invalid: We couldn’t open your PDF. Please save it and try uploading it again. incorrect_password: We couldn’t unlock your PDF. Save the PDF without a password and try again.
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 Status code # links: optional, could contain an 'about' link to further details # source: optional, an object containing references to the source of the error (pointer to json in validation) # meta: optional, contains information suitable for debugging, VISIBLE IN PRODUCTION # sentry_type: optional, defaults to 'error', supported values = debug, info, warn, error, fatal, and 'none' detail: ~ links: ~ source: ~ meta: ~ sentry_type: 'error' # INTERNAL EXCEPTIONS validation_errors: &validation_errors <<: *defaults title: Validation error code: 100 status: 422 validation_errors_bad_request: <<: *validation_errors status: 400 invalid_resource: <<: *defaults title: Invalid resource detail: "%{resource} is not a valid resource" code: 101 status: 400 invalid_field: <<: *defaults title: Invalid field detail: "\"%{field}\" is not a valid field for \"%{type}\"" code: 102 status: 400 invalid_field_value: <<: *defaults title: Invalid field value detail: "\"%{value}\" is not a valid value for \"%{field}\"" code: 103 status: 400 filter_not_allowed: <<: *defaults title: Filter not allowed detail: "\"%{filter}\" is not allowed for filtering" code: 104 status: 400 invalid_filters_syntax: <<: *defaults title: Invalid filters syntax detail: "%{filters} is not a valid syntax for filtering" code: 105 status: 400 invalid_sort_criteria: <<: *defaults title: Invalid sort criteria detail: "\"%{sort_criteria}\" is not a valid sort criteria for \"%{resource}\"" code: 106 status: 400 invalid_pagination_params: <<: *defaults title: Invalid pagination params detail: "%{params} are invalid" code: 107 status: 400 message_authenticity_error: <<: *defaults title: Message Authenticity Error detail: Failed to authenticate message from AWS SNS code: AWS_SNS_400 status: 400 parameter_missing: <<: *defaults title: Missing parameter detail: "The required parameter \"%{param}\", is missing" code: 108 status: 400 parameters_missing: <<: *defaults title: Missing parameter detail: "The required parameter \"%{param}\", is missing" code: 108 status: 400 schema_validation_errors: <<: *defaults title: Validation error code: 109 status: 422 not_a_safe_host_error: <<: *defaults title: Bad Request detail: "\"%{host}\" is not a safe host" code: 110 status: 400 bad_request: <<: *defaults title: Bad request code: 400 status: 400 unauthorized: <<: *defaults title: Not authorized code: 401 status: 401 sentry_type: 'none' forbidden: <<: *defaults title: Forbidden code: 403 status: 403 sentry_type: 'none' service_error: <<: *defaults title: Unknown Service Error code: 500 status: 500 record_not_found: <<: *defaults title: Record not found detail: "The record identified by %{id} could not be found" code: 404 status: 404 resource_not_found: <<: *defaults title: Resource not found detail: The requested resource could not be found code: 404 status: 404 payload_too_large: <<: *defaults title: Not authorized code: 413 status: 413 failed_dependency: <<: *defaults title: Failed Dependency detail: Failure occurred in a system dependency code: 424 status: 424 routing_error: <<: *defaults title: Not found detail: "There are no routes matching your request: %{path}" code: 411 status: 404 sentry_type: 'none' unknown_format: <<: *defaults title: Not acceptable detail: "The resource could not be returned in the requested format" code: 406 status: 406 unprocessable_entity: <<: *defaults title: Unprocessable Entity detail: The request was well-formed but was unable to be followed due to semantic or validation errors code: 422 status: 422 upstream_unprocessable_entity: <<: *defaults title: Unprocessable Entity detail: The request was well-formed but was unable to be followed due to semantic or validation errors code: 422 status: 422 too_many_requests: <<: *defaults title: Too Many Requests detail: The user has sent too many requests in a given amount of time code: 429 status: 429 client_disconnected: <<: *defaults title: Client Closed Request detail: The client disconnected before the server finished processing the request code: 499 status: 499 not_implemented: <<: *defaults title: Not Implemented detail: The client disconnected before the server finished processing the request code: 501 status: 501 internal_server_error: <<: *defaults title: Internal server error code: 500 status: 500 external_server_internal_server_error: <<: *defaults title: Internal server error detail: The external service sent back an internal server error code: 500 status: 500 timeout: <<: *defaults title: Net::ReadTimeout code: 500 status: 500 bad_gateway: <<: *defaults title: Bad Gateway code: 502 status: 502 prescription_refill_response_mismatch: <<: *defaults title: Prescription Refill Response Mismatch detail: The upstream service returned an incomplete response for prescription refill orders code: 502 status: 502 service_unavailable: <<: *defaults title: Service Unavailable code: 503 status: 503 service_outage: <<: *defaults title: Service unavailable detail: "An outage has been reported on the %{service} since %{since}" code: 503 status: 503 gateway_timeout: &gateway_timeout <<: *defaults title: Gateway timeout detail: "Did not receive a timely response from an upstream server" code: 504 status: 504 sentry_ignored_gateway_timeout: <<: *gateway_timeout id_card_attribute_error: <<: *defaults title: Request failed detail: "Could not complete ID card attribute request" code: "VIC001" status: 500 bing_service_error: <<: *defaults title: Bing Service Error code: 500 status: 500 ambiguous_request: <<: *defaults title: Ambiguous Request detail: "%{detail}" code: 108 status: 400 token_validation_error: <<: *defaults title: Token Validation Error detail: "%{detail}" code: 401 status: 401 open_id_service_error: <<: *defaults title: OpenId Service Error detail: "%{detail}" code: "%{code}" status: "%{status}" no_query_params_allowed: <<: *defaults title: No query params allowed detail: "No query params are allowed for this route" code: 400 status: 400 detailed_schema_errors: <<: *validation_errors # Fallbacks for missing translations data_type: <<: *defaults title: Invalid data type detail: Expected %{data_type} data code: 140 status: 422 enum: <<: *defaults title: Invalid option detail: "'%{value}' is not an available option" code: 141 status: 422 const: <<: *defaults title: Invalid value detail: "'%{value}' does not match the provided const" code: 148 status: 422 length: <<: *defaults title: Invalid length detail: "'%{value}' did not fit within the defined length limits" code: 142 status: 422 pattern: <<: *defaults title: Invalid pattern detail: "'%{value}' did not match the defined pattern" code: 143 status: 422 range: <<: *defaults title: Value outside range detail: "'%{value}' is outside the defined range" code: 144 status: 422 required: <<: *defaults title: Missing required fields detail: One or more expected fields were not found code: 145 status: 422 schema: <<: *defaults title: Schema mismatch detail: Unknown data provided code: 146 status: 422 array_items: <<: *defaults title: Invalid array detail: "The %{size} items provided did not match the definition" code: 147 status: 422 format: <<: *defaults title: Invalid format detail: "'%{value}' did not match the defined format" code: 149 status: 422 # EXTERNAL EXCEPTIONS # This is a Generic Error corresponding to backend services backend_service_exception: &external_defaults <<: *defaults title: 'Operation failed' # To be used when no external minor code is mappable code: 'VA900' status: 400 # All error codes below this line, use the same exception class bad_request # need to be mapped properly using specific codes described below # Below this line just define the minor code as key to be used by client error VA900: <<: *external_defaults SM100: <<: *validation_errors code: 'SM100' detail: 'The message body cannot be blank' SM101: <<: *external_defaults code: 'SM101' detail: 'Application authentication failed' status: 401 SM102: <<: *external_defaults code: 'SM102' detail: 'Application authorization failed' status: 401 SM103: <<: *external_defaults code: 'SM103' detail: 'Invalid User Credentials' status: 401 SM104: <<: *external_defaults code: 'SM104' detail: 'Missing User Credentials' status: 401 SM105: # What causes this? Perhaps then we can come up with more customized detail below <<: *external_defaults code: 'SM105' detail: 'User was not found' status: 422 SM106: <<: *external_defaults code: 'SM106' detail: 'User is not eligible because they are blocked' status: 403 SM111: <<: *external_defaults code: 'SM111' detail: 'Invalid user permissions (invalid user type for resource requested)' status: 403 SM112: # 'User is not owner of entity requested' (usually attachments) <<: *external_defaults code: 'SM112' detail: 'You do not have access to the requested resource' status: 403 SM113: <<: *external_defaults code: 'SM113' detail: 'Unable to read attachment' status: 422 SM114: <<: *external_defaults code: 'SM114' detail: 'Unable to move message' status: 400 SM115: <<: *external_defaults code: 'SM115' title: Record not found detail: 'Entity requested could not be found' status: 404 SM116: # 'The Folder must be empty before delete' <<: *external_defaults code: 'SM116' detail: 'Folder must be empty before you can delete it' status: 422 SM117: <<: *external_defaults code: 'SM117' detail: 'A data integrity issue was encountered' status: 502 SM118: <<: *external_defaults code: 'SM118' detail: 'It is not possible to move a message from the DRAFTS folder' status: 422 SM119: # 'Triage team does not exist' when trying to create new message <<: *external_defaults code: 'SM119' detail: 'Triage team does not exist' status: 422 SM120: <<: *validation_errors code: 'SM120' detail: 'The Page Number must be greater than zero' SM121: <<: *validation_errors code: 'SM121' detail: 'The Page Size must be greater than zero' SM122: <<: *validation_errors code: 'SM122' detail: 'The attachment file type is currently not supported' SM123: <<: *validation_errors code: 'SM123' detail: 'The filename is a required parameter' SM124: <<: *external_defaults code: 'SM124' detail: 'The attachment file size exceeds the supported size limits' status: 413 SM125: <<: *validation_errors code: 'SM125' detail: 'To create a folder the name is required' SM126: <<: *external_defaults code: 'SM126' detail: 'The folder already exists with the requested name' status: 422 SM127: <<: *validation_errors code: 'SM127' detail: 'The folder name should only contain letters, numbers, and spaces' SM128: <<: *external_defaults code: 'SM128' detail: 'The message you are attempting to send is not a draft ' status: 422 SM129: <<: *external_defaults code: 'SM129' detail: 'Unable to reply because you are no longer associated with this Triage Team' status: 422 SM130: <<: *external_defaults code: 'SM130' detail: 'Unable to reply because the source message is expired' status: 422 SM131: <<: *external_defaults code: 'SM131' detail: 'Unable to reply to a message that is a draft' status: 422 SM133: <<: *validation_errors code: 'SM133' detail: 'PageSize exceeds the maximum allowed limit' SM134: <<: *external_defaults code: 'SM134' detail: 'The message you are attempting to save is not a draft' status: 422 SM135: # 'User is not eligible because they have not accepted terms and conditions or opted-in' <<: *external_defaults code: 'SM135' detail: 'You have not accepted the MHV Terms and Conditions to use secure messaging' status: 403 SM151: # 'User is blocked from the Facility' What causes this?? <<: *external_defaults code: 'SM151' detail: 'User is blocked from the Facility' status: 422 SM152: <<: *validation_errors code: 'SM152' detail: 'Email address is invalid' SM154: <<: *validation_errors code: 'SM154' detail: 'Email Signature Name and Title is required' status: 400 SM172: <<: *external_defaults code: 'SM172' detail: 'Attachment scan failed' status: 400 SM900: # 'Mailbox Service Error' <<: *external_defaults code: 'SM900' detail: 'Service is temporarily unavailable' status: 503 SM901: # 'Authentication Service Error' (connection pool issue) <<: *external_defaults code: 'SM901' detail: 'Service is temporarily unavailable' status: 503 SM902: # 'Triage Group Service Error' <<: *external_defaults code: 'SM902' detail: 'Service is temporarily unavailable' status: 503 SM903: <<: *external_defaults code: 'SM903' detail: 'Service is temporarily unavailable' status: 503 SM904: # 'Message Service Error' - treating as 404, see gets_a_message_thread_id_error <<: *external_defaults code: 'SM904' detail: 'Message requested could not be found' status: 404 SM915: # 'No messages in the requested folder' <<: *external_defaults code: 'SM915' detail: 'No messages in the requested folder' status: 400 SM98: # 'Oracle Health message send failure' <<: *external_defaults code: 'SM98' detail: 'Oracle Health message send failed' status: 400 SM99: # 'Unknown application error occurred' <<: *external_defaults code: 'SM99' detail: 'Something went wrong. Please try again later.' status: 502 MEDICALRECORDS_401: <<: *external_defaults code: "MEDICALRECORDS_401" detail: "Authentication failed on the upstream server" status: 400 MEDICALRECORDS_403: <<: *external_defaults code: "MEDICALRECORDS_403" detail: "This user is forbidden from performing requests on the upstream server" status: 403 MEDICALRECORDS_404: <<: *external_defaults code: "MEDICALRECORDS_404" detail: "The resource could not be found" status: 404 BBINTERNAL_400: <<: *external_defaults code: "BBINTERNAL_400" detail: "Upstream service responded with Bad Request" status: 400 BBINTERNAL_401: <<: *external_defaults code: "BBINTERNAL_401" detail: "Authentication failed on the upstream server" status: 400 BBINTERNAL_403: <<: *external_defaults code: "BBINTERNAL_403" detail: "This user is forbidden from performing requests on the upstream server" status: 403 BBINTERNAL_404: <<: *external_defaults code: "BBINTERNAL_404" detail: "The resource could not be found" status: 404 HCA422: <<: *external_defaults code: 'HCA422' detail: 'Validation error' status: 422 BB99: # 'Unknown application error occurred' <<: *external_defaults code: 'BB99' detail: 'Something went wrong. Please try again later.' status: 502 RX99: # 'Unknown application error occurred' <<: *external_defaults code: 'RX99' detail: 'Something went wrong. Please try again later.' status: 502 RX99LOCKED: # record is locked <<: *external_defaults code: 'RX99LOCKED' detail: 'Record is locked. Please try again later.' status: 409 RX135: # 'The User has not accepted the Rx Agreement. Please login to MHV to accept it' <<: *external_defaults code: 'RX135' detail: 'You have not accepted the MHV Terms and Conditions to use prescriptions' status: 403 RX138: # 'Prescription is not Found' <<: *external_defaults code: 'RX138' detail: 'Prescription requested could not be found' status: 404 RX139: <<: *external_defaults code: 'RX139' detail: 'Prescription is not refillable' status: 400 RX157: <<: *validation_errors code: 'RX157' detail: 'Email address is invalid' rx_gateway_timeout: <<: *gateway_timeout detail: "Did not receive a timely response from an upstream server" code: 408 status: 408 MHVACCTCREATION99: # 'Unknown application error occurred' <<: *external_defaults code: 'MHVACCTCREATION99' detail: 'Something went wrong. Please try again later.' status: 400 MHVACCTCREATION150: <<: *external_defaults code: 'MHVACCTCREATION150' detail: 'MVI Unknown Issue Occurred' status: 502 MHVACCTCREATION155: # TODO: Might be able to remove this <<: *external_defaults code: 'MHVAC155' detail: 'Account is already upgraded' status: 422 MHVACCTCREATION158: # 'Sign-in Partner Blocked' <<: *external_defaults code: 'MHVACCTCREATION158' detail: 'Something went wrong. Please try again later.' status: 502 MHVACCTCREATION159: <<: *external_defaults code: 'MHVACCTCREATION159' detail: 'User is not matched or correlated in MVI' status: 422 AUTHTOKEN_404: <<: *external_defaults title: Not found code: 'AUTHTOKEN_404' detail: Auth service responded that data for token was not found status: 404 AUTHTOKEN_502: <<: *external_defaults title: Unexpected response body code: 'AUTHTOKEN_502' detail: Auth service responded with something other than the necessary information status: 502 CASEFLOWSTATUS401: <<: *external_defaults title: 'Bad Gateway' code: 'CASEFLOWSTATUS401' detail: 'Received a not authorized response from the upstream server' status: 502 CASEFLOWSTATUS403: <<: *external_defaults title: 'Forbiden' code: 'CASEFLOWSTATUS403' detail: 'You do not have access to the requested resource' status: 403 CASEFLOWSTATUS404: <<: *external_defaults title: 'Not found' code: 'CASEFLOWSTATUS404' detail: 'Appeals data for a veteran with that SSN was not found' status: 404 CASEFLOWSTATUS422: <<: *external_defaults title: 'Unprocessable entity' code: 'CASEFLOWSTATUS422' detail: 'One or more unprocessable properties or validation errors' status: 422 CASEFLOWSTATUS500: <<: *external_defaults title: 'Bad Gateway' code: 'CASEFLOWSTATUS500' detail: 'Received a 500 response from the upstream server' status: 502 CASEFLOWSTATUS502: <<: *external_defaults title: 'Bad Gateway' code: 'CASEFLOWSTATUS502' detail: 'Received an invalid response from the upstream server' status: 502 DMC400: <<: *external_defaults title: 'Bad Request' code: 'DMC400' detail: 'Received a bad request response from the upstream server' status: 400 GI404: <<: *external_defaults title: 'Record not found' code: 'GI404' detail: 'Record with the specified code was not found' status: 404 EVSS400: <<: *external_defaults title: Bad Request code: 'EVSS502' detail: 'Received a bad request response from the upstream server' status: 400 EVSS502: <<: *external_defaults title: Bad Gateway code: 'EVSS502' detail: 'Received an an invalid response from the upstream server' status: 502 EVSS503: <<: *external_defaults title: Service Unavailable code: 'EVSS503' detail: 'The server is currently unable to handle the request due to a temporary overload or scheduled maintenance, which will likely be alleviated after some delay' status: 503 EVSS504: <<: *external_defaults title: Gateway Timeout code: 'EVSS504' detail: 'The server, while acting as a gateway or proxy, did not receive a timely response from an upstream server it needed to access in order to complete the request' status: 504 BGS_RTG_502: <<: *external_defaults title: Unexpected response body code: 'BGS502' detail: BGS service responded with something other than the expected disability rating response. status: 502 BGS_686c_SERVICE_403: <<: *external_defaults title: Unexpected response body code: 'BGS_686c_SERVICE_403' detail: BGS service understood submisssion but could not process. status: 403 EMIS_STATUS502: <<: *external_defaults title: Unexpected response body code: 'EMIS_STATUS502' detail: EMIS service responded with something other than veteran status information status: 502 FORMS_502: <<: *external_defaults title: Unexpected response body code: 'FORMS_400' detail: The Forms service responded with something other than the expected array of forms status: 502 MVI_404: <<: *external_defaults title: Record not found detail: "The record for the requested user could not be found" code: 'MVI_404' status: 404 MVI_502: <<: *external_defaults title: Bad Gateway detail: "MVI service returned an invalid response" code: 'MVI_502' status: 502 MVI_502_DUP: <<: *external_defaults title: Duplicate Keys detail: "The user has duplicate identifier keys" code: 'MVI_502' status: 502 MVI_503: <<: *external_defaults title: Service unavailable detail: "MVI service is currently unavailable" code: 'MVI_503' status: 503 MVI_504: <<: *external_defaults title: Gateway timeout detail: "Did not receive a timely response from an upstream server" code: 'MVI_504' status: 504 MVI_BD502: <<: *external_defaults title: Unexpected response body code: 'MVI_BD502' detail: MVI service responded without a birthday or a gender. status: 502 PAGERDUTY_429: <<: *external_defaults title: Exceeded rate limit code: 'PAGERDUTY_429' detail: "Exceeded PagerDuty's API rate limit" status: 429 PPMS_502: <<: *external_defaults title: Bad Gateway code: 'PPMS_502' detail: 'PPMS returned an invalid response' status: 502 RES_CH31_CASE_DETAILS_400: <<: *external_defaults title: Bad Request code: 'RES_CH31_CASE_DETAILS_400' detail: 'Bad Request' status: 400 RES_CH31_CASE_DETAILS_403: <<: *external_defaults title: Forbidden code: 'RES_CH31_CASE_DETAILS_403' detail: 'Forbidden' status: 403 RES_CH31_CASE_DETAILS_500: <<: *external_defaults title: Internal Server Error code: 'RES_CH31_CASE_DETAILS_500' detail: 'Internal Server Error' RES_CH31_CASE_DETAILS_503: <<: *external_defaults title: Service Unavailable code: 'RES_CH31_CASE_DETAILS_503' detail: 'Service Unavailable' status: 503 RES_CH31_ELIGIBILITY_400: <<: *external_defaults title: Bad Request code: 'RES_CH31_ELIGIBILITY_400' detail: 'Bad Request' status: 400 RES_CH31_ELIGIBILITY_403: <<: *external_defaults title: Forbidden code: 'RES_CH31_ELIGIBILITY_403' detail: 'Forbidden' status: 403 RES_CH31_ELIGIBILITY_500: <<: *external_defaults title: Internal Server Error code: 'RES_CH31_ELIGIBILITY_500' detail: 'Internal Server Error' RES_CH31_ELIGIBILITY_503: <<: *external_defaults title: Service Unavailable code: 'RES_CH31_ELIGIBILITY_503' detail: 'Service Unavailable' status: 503 SEARCH_400: <<: *external_defaults title: Bad Request code: 'SEARCH_400' detail: 'Search.gov service responded with a Bad Request' status: 400 SEARCH_429: <<: *external_defaults title: Exceeded rate limit code: 'SEARCH_429' detail: 'Exceeded Search.gov rate limit' status: 429 SEARCH_503: <<: *external_defaults title: Service Unavailable code: 'SEARCH_503' detail: 'Search.gov service is currently unavailable' status: 503 SEARCH_504: <<: *external_defaults title: Gateway Timeout code: 'SEARCH_504' detail: 'Did not receive a timely response from Search.gov' status: 504 SEARCH_GSA_400: <<: *external_defaults title: Bad Request code: 'SEARCH_GSA_400' detail: 'api.gsa.gov service responded with a Bad Request' status: 400 SEARCH_GSA_429: <<: *external_defaults title: Exceeded rate limit code: 'SEARCH_GSA_429' detail: 'Exceeded api.gsa.gov rate limit' status: 429 SEARCH_GSA_503: <<: *external_defaults title: Service Unavailable code: 'SEARCH_GSA_503' detail: 'api.gsa.gov service is currently unavailable' status: 503 SEARCH_GSA_504: <<: *external_defaults title: Gateway Timeout code: 'SEARCH_GSA_504' detail: 'Did not receive a timely response from api.gsa.gov' status: 504 SEARCH_TYPEAHEAD_400: <<: *external_defaults title: Bad Request code: 'SEARCH_TYPEAHEAD_400' detail: 'Missing Query' status: 400 SEARCH_CLICK_TRACKING_400: <<: *external_defaults title: Bad Request code: 'SEARCH_CLICK_TRACKING_400' detail: 'Missing query parameter' status: 400 VAOS_409A: <<: *external_defaults title: Conflict code: 'VAOS_409A' detail: # deliberately left nil to reference response.body which is unparsable string (not json) status: 409 sentry_type: 'warn' VAOS_400: <<: *external_defaults title: Bad Request code: 'VAOS_400' detail: # deliberately left nil to reference response.body which is unparsable string (not json) status: 400 VAOS_204: <<: *external_defaults title: Bad Request code: 'VAOS_400' detail: 'Appointment request id is invalid' status: 400 VAOS_403: <<: *external_defaults title: Forbidden code: 'VAOS_403' detail: 'This user is forbidden from performing requests on the upstream server' status: 403 VAOS_404: <<: *external_defaults title: Not Found code: 'VAOS_404' detail: 'The resource could not be found' status: 404 VAOS_502: <<: *external_defaults title: Bad Gateway code: 'VAOS_502' detail: 'Received an an invalid response from the upstream server' status: 502 CHECK_IN_400: <<: *external_defaults title: Bad Request code: 'CHECK_IN_400' detail: 'Appointment request id is invalid' status: 400 CHECK_IN_403: <<: *external_defaults title: Forbidden code: 'CHECK_IN_403' detail: 'This user is forbidden from performing requests on the upstream server' status: 403 CHECK_IN_404: <<: *external_defaults title: Not Found code: 'CHECK_IN_404' detail: 'The resource could not be found' status: 404 CHECK_IN_502: <<: *external_defaults title: Bad Gateway code: 'CHECK_IN_502' detail: 'Received an an invalid response from the upstream server' status: 502 IAM_SSOE_400: <<: *defaults title: Bad Request detail: ~ code: IAM_SSOE_400 status: 400 IAM_SSOE_502: <<: *defaults title: Bad Gateway code: IAM_SSOE_502 detail: Received an an invalid response from the upstream server status: 502 SHAREPOINT_PDF_400: <<: *external_defaults title: Bad Request code: SHAREPOINT_PDF_400 detail: Malformed PDF request to SharePoint status: 400 SHAREPOINT_PDF_502: <<: *external_defaults title: Bad Gateway code: SHAREPOINT_PDF_502 detail: Received an an invalid response from the upstream server status: 502 SHAREPOINT_PDF_UNKNOWN: <<: *external_defaults title: Unexpected SharePoint Error code: SHAREPOINT_PDF_UNKNOWN detail: An unexpected error occurred while communicating with SharePoint status: 500 SHAREPOINT_400: <<: *external_defaults title: Bad Request code: SHAREPOINT_400 detail: Malformed request to SharePoint status: 400 SHAREPOINT_502: <<: *external_defaults title: Bad Gateway code: SHAREPOINT_502 detail: Received an an invalid response from the upstream server status: 502 SHAREPOINT_UNKNOWN: <<: *external_defaults title: Unexpected SharePoint Error code: SHAREPOINT_UNKNOWN detail: An unexpected error occurred while communicating with SharePoint status: 500 SOB_CH33_STATUS_400: <<: *external_defaults title: Bad Request code: SOB_CH33_STATUS_400 detail: 'Bad Request' status: 400 SOB_CH33_STATUS_403: <<: *external_defaults title: Forbidden code: SOB_CH33_STATUS_403 detail: 'Forbidden' status: 403 SOB_CH33_STATUS_404: <<: *external_defaults title: Not Found code: SOB_CH33_STATUS_404 detail: 'Claimant not found' status: 404 SOB_CH33_STATUS_500: <<: *external_defaults title: Internal Server Error code: SOB_CH33_STATUS_500 detail: 'Internal Server Error' status: 500 SOB_CH33_STATUS_503: <<: *external_defaults title: Bad Gateway code: SOB_CH33_STATUS_503 detail: 'Bad Gateway' status: 503 VET360_502: <<: *external_defaults title: Bad Gateway code: 'VET360_502' detail: 'Received an an invalid response from the upstream server' status: 502 VET360_AV_ERROR: <<: *external_defaults title: Address Validation Error code: VET360_AV_ERROR status: 400 VET360_ADDR101: <<: *external_defaults title: Address Type Size code: VET360_ADDR101 detail: Address type size must be between 0 and 35. status: 400 VET360_ADDR102: <<: *external_defaults title: Invalid effective start date code: VET360_ADDR102 detail: Effective Start Date is invalid status: 400 VET360_ADDR103: <<: *external_defaults title: Invalid effective end date code: VET360_ADDR103 detail: Effective End Date is invalid status: 400 VET360_ADDR104: <<: *external_defaults title: Invalid confirmation date code: VET360_ADDR104 detail: Confirmation Date is invalid status: 400 VET360_ADDR105: <<: *external_defaults title: Invalid source date code: VET360_ADDR105 detail: Source Date is invalid status: 400 VET360_ADDR106: <<: *external_defaults title: Missing time stamp code: VET360_ADDR106 detail: Missing time stamp status: 400 VET360_ADDR107: <<: *external_defaults title: Bad address ID code: VET360_ADDR107 detail: Address Id provided does not exist status: 400 VET360_ADDR108: <<: *external_defaults title: Address Line 1 Size code: VET360_ADDR108 detail: Size must be between 0 and 100. status: 400 VET360_ADDR109: <<: *external_defaults title: Requires alphanumeric address 1 code: VET360_ADDR109 detail: Address Line 1 must be alphanumeric status: 400 VET360_ADDR110: <<: *external_defaults title: Address Line 2 Size code: VET360_ADDR110 detail: Size must be between 0 and 100. status: 400 VET360_ADDR111: <<: *external_defaults title: Requires alphanumeric address 2 code: VET360_ADDR111 detail: Address Line 2 must be alphanumeric status: 400 VET360_ADDR112: <<: *external_defaults title: Address Line 3 Size code: VET360_ADDR112 detail: Size must be between 0 and 100. status: 400 VET360_ADDR113: <<: *external_defaults title: Requires alphanumeric address 3 code: VET360_ADDR113 detail: Address Line 3 must be alphanumeric status: 400 VET360_ADDR114: <<: *external_defaults title: Bad address indicator response code: VET360_ADDR114 detail: Bad Address Indicator must be Yes or Null status: 400 VET360_ADDR115: <<: *external_defaults title: Bad address indicator size code: VET360_ADDR115 detail: Bad address indicator size must be between 0 and 35. status: 400 VET360_ADDR116: <<: *external_defaults title: Bad address indicator length code: VET360_ADDR116 detail: Bad Address indicator cannot be more than 35 characters status: 400 VET360_ADDR117: <<: *external_defaults title: Bad address indicator content code: VET360_ADDR117 detail: Bad Address indicator must be alphanumeric status: 400 VET360_ADDR118: <<: *external_defaults title: City Name Size code: VET360_ADDR118 detail: City name size must be between 0 and 100. status: 400 VET360_ADDR119: <<: *external_defaults title: Requires alphanumeric city code: VET360_ADDR119 detail: City Name must be alphanumeric status: 400 VET360_ADDR120: <<: *external_defaults title: State Code Size code: VET360_ADDR120 detail: State code size must be 2. status: 400 VET360_ADDR121: <<: *external_defaults title: State Code Pattern code: VET360_ADDR121 detail: State code pattern must match "^[a-zA-Z]+$". status: 400 VET360_ADDR122: <<: *external_defaults title: Zip Code 5 Size code: VET360_ADDR122 detail: Zip code 5 size must be between 0 and 5. status: 400 VET360_ADDR123: <<: *external_defaults title: Requires alphanumeric zip code code: VET360_ADDR123 detail: ZipCode 5 must be alphanumeric status: 400 VET360_ADDR124: <<: *external_defaults title: Zip Code 4 Size code: VET360_ADDR124 detail: Zip code 4 size must be between 0 and 4. status: 400 VET360_ADDR125: <<: *external_defaults title: Zip Code 4 Pattern code: VET360_ADDR125 detail: Zip code 4 pattern must match "[0-9]+". status: 400 VET360_ADDR126: <<: *external_defaults title: Province Name Size code: VET360_ADDR126 detail: Province name size must be between 0 and 100. status: 400 VET360_ADDR127: <<: *external_defaults title: Requires alphanumeric province code: VET360_ADDR127 detail: Province Name must be alphanumeric status: 400 VET360_ADDR128: <<: *external_defaults title: Int Postal Code Size code: VET360_ADDR128 detail: International postal code size must be between 0 and 100. status: 400 VET360_ADDR129: <<: *external_defaults title: Requires alphanumeric int postal code code: VET360_ADDR129 detail: Int Postal Code must be alphanumeric status: 400 VET360_ADDR130: <<: *external_defaults title: Country Name Size code: VET360_ADDR130 detail: Country name size must be between 0 and 35. status: 400 VET360_ADDR131: <<: *external_defaults title: Country Name Pattern code: VET360_ADDR131 detail: Country name pattern must match "^[a-zA-Z]+$" status: 400 VET360_ADDR132: <<: *external_defaults title: Country code FIPS size code: VET360_ADDR132 detail: Country code FIPS size must be between 0 and 3. status: 400 VET360_ADDR133: <<: *external_defaults title: Country code FIPS pattern code: VET360_ADDR133 detail: Country code FIPS pattern must match "^[a-zA-Z]+$" status: 400 VET360_ADDR134: <<: *external_defaults title: County Code ISO2 Size code: VET360_ADDR134 detail: County code size must be between 0 and 3. status: 400 VET360_ADDR135: <<: *external_defaults title: County Code ISO2 Pattern code: VET360_ADDR135 detail: County code pattern must match "^[a-zA-Z]+$" status: 400 VET360_ADDR136: <<: *external_defaults title: County Code ISO3 Size code: VET360_ADDR136 detail: County code size must be between 0 and 3. status: 400 VET360_ADDR137: <<: *external_defaults title: County Code ISO3 Pattern code: VET360_ADDR137 detail: County code pattern must match "^[a-zA-Z]+$" status: 400 VET360_ADDR138: <<: *external_defaults title: Latitude size code: VET360_ADDR138 detail: Latitude size must be between 0 and 35. status: 400 VET360_ADDR139: <<: *external_defaults title: Latitude must be alphanumeric code: VET360_ADDR139 detail: Latitude must be alphanumeric status: 400 VET360_ADDR140: <<: *external_defaults title: Longitude size code: VET360_ADDR140 detail: Longitude size must be between 0 and 35. status: 400 VET360_ADDR141: <<: *external_defaults title: Longitude must be alphanumeric code: VET360_ADDR141 detail: Longitude must be alphanumeric status: 400 VET360_ADDR142: <<: *external_defaults title: Geocode precision size code: VET360_ADDR142 detail: Geocode precision size must be between 0 and 35. status: 400 VET360_ADDR143: <<: *external_defaults title: Geocode Precision must be alphanumeric code: VET360_ADDR143 detail: Geocode Precision must be alphanumeric status: 400 VET360_ADDR144: <<: *external_defaults title: Geocode date length code: VET360_ADDR144 detail: Geocode Date cannot be more than 35 characters status: 400 VET360_ADDR145: <<: *external_defaults title: Geocode date must be a date code: VET360_ADDR145 detail: Geocode Date must be a date status: 400 VET360_ADDR146: <<: *external_defaults title: Address POU Null code: VET360_ADDR146 detail: Address POU may not be null status: 400 VET360_ADDR147: <<: *external_defaults title: County value not found code: VET360_ADDR147 detail: County Value does not match Lookup Service status: 400 VET360_ADDR148: <<: *external_defaults title: State value not found code: VET360_ADDR148 detail: State Value does not match Lookup Service status: 400 VET360_ADDR149: <<: *external_defaults title: Zip code not found code: VET360_ADDR149 detail: Zip Code Value does not match Lookup Service status: 400 VET360_ADDR150: <<: *external_defaults title: Address not found code: VET360_ADDR150 detail: Unknown Address per UAM Address Validation status: 400 VET360_ADDR200: <<: *external_defaults title: Address ID Not Null code: VET360_ADDR200 detail: Address ID must be null. status: 400 VET360_ADDR201: <<: *external_defaults title: Address ID Null code: VET360_ADDR201 detail: Address ID may not be null. status: 400 VET360_ADDR202: <<: *external_defaults title: Invalid effective start date code: VET360_ADDR202 detail: Effective Start Date can not be more than 6 months after source Date status: 400 VET360_ADDR203: <<: *external_defaults title: Effective end date presence code: VET360_ADDR203 detail: Effective End Date cannot be present when adding an address status: 400 VET360_ADDR204: <<: *external_defaults title: Confirmation Date can not be in future code: VET360_ADDR204 detail: Confirmation Date can not be in future status: 400 VET360_ADDR205: <<: *external_defaults title: Invalid effective end date code: VET360_ADDR205 detail: Effective End Date can not be in past and must be after EffectiveStartDate status: 400 VET360_ADDR206: <<: *external_defaults title: Invalid confirmation date code: VET360_ADDR206 detail: ConfirmationDate can not be greater than sourceDate status: 400 VET360_ADDR300: <<: *external_defaults title: Address Inactive code: VET360_ADDR300 detail: Cannot modify an existing inactive record. status: 400 VET360_ADDR301: <<: *external_defaults title: Address POU code: VET360_ADDR301 detail: Cannot insert a record for an address POU that already exists. status: 400 VET360_ADDR304: <<: *external_defaults title: Duplicate Address POU code: VET360_ADDR304 detail: Cannot accept a request with multiple addresses of the same POU. status: 400 VET360_ADDR305: <<: *external_defaults title: Delivery Point Not Confirmed code: VET360_ADDR305 detail: Delivery Point is Not Confirmed for Domestic Residence. status: 400 VET360_ADDR306: <<: *external_defaults title: Low confidence score code: VET360_ADDR306 detail: Confidence Score less than 80. status: 400 VET360_ADDR307: <<: *external_defaults title: Additional Input code: VET360_ADDR307 detail: Additional input found. Please review. status: 400 VET360_ADDR308: <<: *external_defaults title: Multiple Addresses Returned code: VET360_ADDR308 detail: Multiple Addresses Returned status: 400 VET360_ADDR309: <<: *external_defaults title: UAM address validation not available code: VET360_ADDR309 detail: UAM address validation not available status: 400 VET360_ADDRVAL101: <<: *external_defaults title: Address Service Error code: VET360_ADDRVAL101 detail: The address service returned an error status: 400 VET360_ADDRVAL102: <<: *external_defaults title: Address Not Found code: VET360_ADDRVAL102 detail: Address Not Found status: 400 VET360_ADDRVAL103: <<: *external_defaults title: Country Lookup Service Error code: VET360_ADDRVAL103 detail: The country lookup service returned an error status: 400 VET360_ADDRVAL105: <<: *external_defaults title: Invalid Request Error code: VET360_ADDRVAL105 detail: The request was invalid status: 400 VET360_ADDRVAL106: <<: *external_defaults title: Country Length Error code: VET360_ADDRVAL106 detail: Country length must be between 0 and 255 status: 400 VET360_ADDRVAL107: <<: *external_defaults title: Province Length Error code: VET360_ADDRVAL107 detail: Province length must be between 0 and 255 status: 400 VET360_ADDRVAL201: <<: *external_defaults title: Invalid Request Country code: VET360_ADDRVAL201 detail: Either country name or country code is required status: 400 VET360_ADDRVAL202: <<: *external_defaults title: Invalid Request State code: VET360_ADDRVAL202 detail: Either state name or state code is required status: 400 VET360_ADDRVAL203: <<: *external_defaults title: Invalid Request Street Address code: VET360_ADDRVAL203 detail: One address line must be provided status: 400 VET360_ADDRVAL204: <<: *external_defaults title: Invalid Request Non-Street Address code: VET360_ADDRVAL204 detail: The request needs at least one address line and one non-address line field populated in order to process the request status: 400 VET360_ADDRVAL205: <<: *external_defaults title: Invalid Request Postal Code code: VET360_ADDRVAL205 detail: Either zip code or international postal code is required status: 400 VET360_ADDRVAL206: <<: *external_defaults title: Multiple Address Error code: VET360_ADDRVAL206 detail: Multiple matches found for this address status: 400 VET360_CORE100: <<: *external_defaults title: Unexpected Error code: VET360_CORE100 detail: There was an error encountered processing the request status: 400 VET360_CORE101: <<: *external_defaults title: Access Denied code: VET360_CORE101 detail: You do not have access to perform the requested operation status: 403 VET360_CORE102: <<: *external_defaults title: Data integrity violation code: VET360_CORE102 detail: The operation could not be fulfilled due to a data integrity violation. status: 400 VET360_CORE103: <<: *external_defaults title: Not Found code: VET360_CORE103 detail: The Vet360 id could not be found status: 400 VET360_CORE104: <<: *external_defaults title: No changes detected code: VET360_CORE104 detail: Your request was received and processed without error, however no differences were detected between current data and the data you sent. This message is informational only, please verify your request if you believe you sent actual changes that should be applied. status: 400 VET360_CORE105: <<: *external_defaults title: Malformed Request code: VET360_CORE105 detail: The request was malformed and could not be processed status: 400 VET360_CORE106: <<: *external_defaults title: Null Request code: VET360_CORE106 detail: The request cannot be null status: 400 VET360_CORE107: <<: *external_defaults title: Invalid txAuditId key code: VET360_CORE107 detail: The operation could not be completed due to invalid txAuditId. status: 400 VET360_CORE108: <<: *external_defaults title: Null version hash code: VET360_CORE108 detail: Version Hash is null for Type {0} with a ID of {1}. status: 400 VET360_CORE109: <<: *external_defaults title: Incorrect Result Size code: VET360_CORE109 detail: Incorrect Result Set Size status: 400 VET360_CORE110: <<: *external_defaults title: Source date version violation code: VET360_CORE110 detail: Source dates are invalid for Type {0} with a ID of {1}. Previous source date was {2} but received new source date of {3}. Source dates may not be null, and new must be greater than the previous. Please correct your request and try again! status: 400 VET360_CORE111: <<: *external_defaults title: Check Address Line code: 'VET360_CORE111' detail: 'Required data set missing.' status: 400 VET360_CORE300: <<: *external_defaults title: Bio not null code: VET360_CORE300 detail: The submitted person contact bio is invalid/null and cannot be. status: 400 VET360_CORE301: <<: *external_defaults title: ID not null code: VET360_CORE301 detail: ID not null status: 400 VET360_CORE302: <<: *external_defaults title: Null Request code: VET360_CORE302 detail: The request may not be null status: 400 VET360_CORE303: <<: *external_defaults title: Null Transaction Audit ID code: VET360_CORE303 detail: The transaction audit id may not be null status: 400 VET360_CORE500: <<: *external_defaults title: Source date not null code: VET360_CORE500 detail: Source date may not be null status: 400 VET360_CORE501: <<: *external_defaults title: Originating source system size code: VET360_CORE501 detail: Originating source system size must be between 0 and 255. status: 400 VET360_CORE502: <<: *external_defaults title: Source system user size code: VET360_CORE502 detail: Source system user size must be between 0 and 255. status: 400 VET360_CORE503: <<: *external_defaults title: SourceSys length code: VET360_CORE503 detail: SourceSys must be between 0 and 255 characters status: 400 VET360_EMAIL101: <<: *external_defaults title: Email Address Text Null code: VET360_EMAIL101 detail: Email address may not be null status: 400 VET360_EMAIL102: <<: *external_defaults title: Invalid effective start date code: VET360_EMAIL102 detail: EffectiveStartDate is invalid status: 400 VET360_EMAIL103: <<: *external_defaults title: Invalid effective end date code: VET360_EMAIL103 detail: EffectiveEndDate is invalid status: 400 VET360_EMAIL104: <<: *external_defaults title: Email Permission Indicator must be True or False code: VET360_EMAIL104 detail: Email Permission Indicator must be True or False status: 400 VET360_EMAIL105: <<: *external_defaults title: Invalid email status code code: VET360_EMAIL105 detail: Email Status Code must match "(no known problem)(returned undeliverable)(incorrect address)" status: 400 VET360_EMAIL106: <<: *external_defaults title: Invalid confirmation date code: VET360_EMAIL106 detail: Confirmation Date is invalid status: 400 VET360_EMAIL107: <<: *external_defaults title: EffectiveStartDate may not be null code: VET360_EMAIL107 detail: EffectiveStartDate may not be null status: 400 VET360_EMAIL108: <<: *external_defaults title: SourceDate is invalid code: VET360_EMAIL108 detail: SourceDate is invalid status: 400 VET360_EMAIL109: <<: *external_defaults title: Source date missing time stamp code: VET360_EMAIL109 detail: Source Date is missing time stamp status: 400 VET360_EMAIL110: <<: *external_defaults title: Email ID does not exist code: VET360_EMAIL110 detail: Email ID provided does not exist status: 400 VET360_EMAIL200: <<: *external_defaults title: Email ID Not Null code: VET360_EMAIL200 detail: Email ID must be null. status: 400 VET360_EMAIL201: <<: *external_defaults title: Email ID Null code: VET360_EMAIL201 detail: Email ID may not be null status: 400 VET360_EMAIL202: <<: *external_defaults title: Invalid effective start date code: VET360_EMAIL202 detail: EffectiveStartDate can not be more than 6 months after sourceDate status: 400 VET360_EMAIL203: <<: *external_defaults title: EffectiveEndDate cannot be present when adding a email code: VET360_EMAIL203 detail: EffectiveEndDate cannot be present when adding a email status: 400 VET360_EMAIL204: <<: *external_defaults title: Confirmation Date can not be in future code: VET360_EMAIL204 detail: Confirmation Date can not be in future status: 400 VET360_EMAIL205: <<: *external_defaults title: Invalid effective end date code: VET360_EMAIL205 detail: EffectiveEndDate can not be in past and must be after EffectiveStartDate status: 400 VET360_EMAIL206: <<: *external_defaults title: Confirmation Date can not be greater than sourceDate code: VET360_EMAIL206 detail: Confirmation Date can not be greater than sourceDate status: 400 VET360_EMAIL300: <<: *external_defaults title: Modifying inactive record code: VET360_EMAIL300 detail: Cannot modify an existing inactive record status: 400 VET360_EMAIL301: <<: *external_defaults title: Email Address Already Exists code: VET360_EMAIL301 detail: Can not insert a record for an email address that already exists. Pull the email record and update it using the emailId provided. status: 400 VET360_EMAIL302: <<: *external_defaults title: Email Address Size code: VET360_EMAIL302 detail: Email address text must be between 1 and 255 status: 400 VET360_EMAIL303: <<: *external_defaults title: Check email local part code: VET360_EMAIL303 detail: AlphaNumeric LocalPart of email must be <= 64 Characters. status: 400 VET360_EMAIL304: <<: *external_defaults title: Check Email Domain code: VET360_EMAIL304 detail: AlphaNumeric ToplevelDomainName must be <= 63 Characters. status: 400 VET360_EMAIL305: <<: *external_defaults title: Check Email Address code: VET360_EMAIL305 detail: 'Email address cannot have 2 @ symbols, must have at least one period ''.'' after the @ character, and cannot have ''.%'' or ''%.'' or ''%..%'' or " ( ) , : ; < > @ [ ] or space unless in a quoted string in the local part.' status: 400 VET360_EMAIL306: <<: *external_defaults title: Duplicate Email Address code: VET360_EMAIL306 detail: Cannot accept a request with multiple emailAddress records. status: 400 VET360_EMAIL307: <<: *external_defaults title: Email Inactive code: VET360_EMAIL307 detail: Cannot modify an existing inactive record. status: 400 VET360_MVI100: <<: *external_defaults title: MVI identifier invalid code: VET360_MVI100 detail: MVI invalid request identifier. status: 400 VET360_MVI101: <<: *external_defaults title: MVI identifier mismatch code: VET360_MVI101 detail: The person was found in MVI but the vet360Id returned did not match the submitted vet360Id. status: 400 VET360_MVI200: <<: *external_defaults title: MVI error code: VET360_MVI200 detail: The MVI Service returned an error. status: 400 VET360_MVI201: <<: *external_defaults title: MVI not found code: VET360_MVI201 detail: The person with the identifier requested was not found in MVI. status: 400 VET360_MVI202: <<: *external_defaults title: MVI duplicate correlations code: VET360_MVI202 detail: The MVI Service returned duplicate correlations for the requested identifier. status: 400 VET360_MVI203: <<: *external_defaults title: MVI response error code: VET360_MVI203 detail: The MVI Service returned an error response for the requested identifier. status: 400 VET360_MVI204: <<: *external_defaults title: Vet360 ID already exists code: VET360_MVI204 detail: MVI Service returned an existing Vet360 ID Identifier status: 400 VET360_MVI209: <<: *external_defaults title: MVIIdentifierPCE code: VET360_MVI209 detail: PCE request identifier status: 400 VET360_MVI300: <<: *external_defaults title: MVI person deceased code: VET360_MVI300 detail: The MVI Service returned that the requested veteran is deceased. status: 400 VET360_PERS100: <<: *external_defaults title: vet360Id must match code: VET360_PERS100 detail: The vet360Id in the person contact sub-bio(s) must match the vet360Id in the Person bio. status: 404 VET360_PERS101: <<: *external_defaults title: vet360Id not null code: VET360_PERS101 detail: The vet360Id cannot be null. status: 400 VET360_PERS104: <<: *external_defaults title: Effective start date may not be null code: VET360_PERS104 detail: Effective Start Date may not be null status: 400 VET360_PERS200: <<: *external_defaults title: Duplicate create veteran code: 'VET360_PERS200' detail: 'The veteran with the id requested has already been created.' status: 400 VET360_PERS300: <<: *external_defaults title: Check EffectiveStartDate code: VET360_PERS300 detail: EffectiveStartDate can not be more than 6 months after current date. status: 400 VET360_PERS301: <<: *external_defaults title: Check EffectiveEndDate code: VET360_PERS301 detail: EffectiveEndDate must be after EffectiveStartDate. status: 400 VET360_PERS302: <<: *external_defaults title: confirmationDate past code: VET360_PERS302 detail: confirmationDate cannot be in the future. status: 400 VET360_PERS303: <<: *external_defaults title: Invalid effective end date code: VET360_PERS303 detail: Effective End Date must be in future status: 400 VET360_PERS304: <<: *external_defaults title: Check confirmationDate code: VET360_PERS304 detail: ConfirmationDate can not be greater than sourceDate. status: 400 VET360_PHON100: <<: *external_defaults title: Null International Indicator code: VET360_PHON100 detail: International indicator may not be null status: 400 VET360_PHON101: <<: *external_defaults title: International Indicator must be true or false code: VET360_PHON101 detail: International Indicator must be true or false status: 400 VET360_PHON102: <<: *external_defaults title: County code length code: VET360_PHON102 detail: Country Code must be between 1 and 3 characters status: 400 VET360_PHON103: <<: *external_defaults title: Invalid country code code: VET360_PHON103 detail: Country Code must be one of valid country codes status: 400 VET360_PHON104: <<: *external_defaults title: Area Code Size code: VET360_PHON104 detail: Area code size must be 3 status: 400 VET360_PHON105: <<: *external_defaults title: Null Phone Number code: VET360_PHON105 detail: Phone number may not be null status: 400 VET360_PHON106: <<: *external_defaults title: Null Phone Pattern code: VET360_PHON106 detail: Phone number pattern must match must match "[^a-zA-Z]+" status: 400 VET360_PHON107: <<: *external_defaults title: Phone Number Size code: VET360_PHON107 detail: Phone number size must be between 1 and 14 status: 400 VET360_PHON108: <<: *external_defaults title: Phone Number Ext Pattern code: VET360_PHON108 detail: Phone number pattern must match "^[a-zA-Z0-9]+$" status: 400 VET360_PHON109: <<: *external_defaults title: Null Phone Type code: VET360_PHON109 detail: Phone type may not be null status: 400 VET360_PHON110: <<: *external_defaults title: Phone Ext Size code: VET360_PHON110 detail: Phone extension must be between 1 and 10 status: 400 VET360_PHON111: <<: *external_defaults title: Invalid effective start date code: VET360_PHON111 detail: Effective Start Date is invalid status: 400 VET360_PHON112: <<: *external_defaults title: Invalid effective end date code: VET360_PHON112 detail: Effective End Date is invalid status: 400 VET360_PHON113: <<: *external_defaults title: Text Message Capable must be True or False code: VET360_PHON113 detail: Text Message Capable must be True or False status: 400 VET360_PHON114: <<: *external_defaults title: Text Message Permission must be True or False code: VET360_PHON114 detail: Text Message Permission must be True or False status: 400 VET360_PHON115: <<: *external_defaults title: Voice Mail Acceptable must be True or False code: VET360_PHON115 detail: Voice Mail Acceptable must be True or False status: 400 VET360_PHON116: <<: *external_defaults title: TTY Indicator must be True or False code: VET360_PHON116 detail: TTY Indicator must be True or False status: 400 VET360_PHON117: <<: *external_defaults title: Connection Status is invalid code: VET360_PHON117 detail: Connection Status must match "(no known problem)(no answer)(non working number)(no correct number null)" status: 400 VET360_PHON118: <<: *external_defaults title: Confirmation Date is invalid code: VET360_PHON118 detail: Confirmation Date is invalid status: 400 VET360_PHON119: <<: *external_defaults title: Source Date may not be null code: VET360_PHON119 detail: Source Date may not be null status: 400 VET360_PHON120: <<: *external_defaults title: Source Date is invalid code: VET360_PHON120 detail: Source Date is invalid status: 400 VET360_PHON121: <<: *external_defaults title: Source Date is missing time stamp code: VET360_PHON121 detail: Source Date is missing time stamp status: 400 VET360_PHON123: <<: *external_defaults title: Telephone ID provided does not exist code: VET360_PHON123 detail: Telephone ID provided does not exist status: 400 VET360_PHON124: <<: *external_defaults title: Phone ID Not Null code: VET360_PHON124 detail: Phone ID must be null status: 400 VET360_PHON125: <<: *external_defaults title: Null Phone ID code: VET360_PHON125 detail: Phone ID may not be null status: 400 VET360_PHON126: <<: *external_defaults title: Area Code Pattern code: VET360_PHON126 detail: Phone area code pattern must match "[0-9]+" status: 400 VET360_PHON200: <<: *external_defaults title: Invalid effective start date code: VET360_PHON200 detail: EffectiveStartDate can not be more than 6 months after current date status: 400 VET360_PHON204: <<: *external_defaults title: Effective end date not valid code: VET360_PHON204 detail: Effective End Date cannot be present when adding a non temporary phone status: 400 VET360_PHON205: <<: *external_defaults title: Area Code contains an invalid value code: VET360_PHON205 detail: Area Code contains an invalid value status: 400 VET360_PHON206: <<: *external_defaults title: ConfirmationDate can not be in future code: VET360_PHON206 detail: ConfirmationDate can not be in future status: 400 VET360_PHON207: <<: *external_defaults title: Check Domestic Phone Number code: VET360_PHON207 detail: Domestic phone number size must be 7 characters, and can not start with a 0 or 1. status: 400 VET360_PHON208: <<: *external_defaults title: Check International Phone Number code: VET360_PHON208 detail: International phone number must have 12 characters or less. status: 400 VET360_PHON209: <<: *external_defaults title: Check Phone Domestic Number Indicator code: VET360_PHON209 detail: Domestic numbers must have an area code and country code must be 1. status: 400 VET360_PHON210: <<: *external_defaults title: Check Phone International Number Indicator code: VET360_PHON210 detail: International numbers must have a valid country code that is not 1, and no area code. status: 400 VET360_PHON211: <<: *external_defaults title: Area Code Pattern code: VET360_PHON211 detail: Area Codes do not end with the same two digits status: 400 VET360_PHON213: <<: *external_defaults title: Area Code Pattern code: VET360_PHON213 detail: Area Codes do not include 9 as the middle digit status: 400 VET360_PHON300: <<: *external_defaults title: Phone Inactive code: VET360_PHON300 detail: Cannot modify an existing inactive record. status: 400 VET360_PHON301: <<: *external_defaults title: Telephone Type code: VET360_PHON301 detail: Can not insert a record for a phone type that already exists. status: 400 VET360_PHON302: <<: *external_defaults title: Invalid effective end date code: VET360_PHON302 detail: EffectiveEndDate can not be in past and must be after EffectiveStartDate status: 400 VET360_PHON303: <<: *external_defaults title: Check Phone End Date code: VET360_PHON303 detail: EffectiveEndDate cannot be present when adding a non temporary phone, and must be present for a temporary phone. status: 400 VET360_PHON304: <<: *external_defaults title: Duplicate Telephone Type code: VET360_PHON304 detail: Cannot accept a request with multiple phones of the same type. status: 400 VET360_PHON305: <<: *external_defaults title: Cannot update record if phoneType is not matching code: VET360_PHON305 detail: Cannot update record if phoneType is not matching status: 400 VET360_PERM101: <<: *external_defaults title: Permission ID Not Null code: VET360_PERM101 detail: Permission ID must be null status: 400 VETEXT_400: <<: *external_defaults title: Bad Request detail: # deliberately left nil to reference response.body which is unparsable string (not json) code: # deliberately left nil to reference response.body which is unparsable string (not json) status: 400 VETEXT_502: <<: *external_defaults title: Bad Gateway detail: # deliberately left nil to reference response.body which is unparsable string (not json) code: # deliberately left nil to reference response.body which is unparsable string (not json) status: 502 LIGHTHOUSE_FACILITIES400: <<: *external_defaults title: Bad Request detail: Bad Request code: LIGHTHOUSE_FACILITIES400 status: 400 LIGHTHOUSE_FACILITIES401: <<: *external_defaults title: Invalid authentication credentials detail: Invalid authentication credentials code: LIGHTHOUSE_FACILITIES401 status: 401 LIGHTHOUSE_FACILITIES404: title: Record not found detail: Record not found code: LIGHTHOUSE_FACILITIES404 status: 404 VANOTIFY_400: <<: *external_defaults title: Bad request detail: Bad request code: VANOTIFY_400 status: 400 VANOTIFY_403: <<: *external_defaults title: Authentication error detail: Authentication error code: VANOTIFY_403 status: 403 VANOTIFY_404: <<: *external_defaults title: Not found detail: Not found code: VANOTIFY_404 status: 404 VANOTIFY_429: <<: *external_defaults title: Exceeded rate or send limits detail: Exceeded rate or send limits code: VANOTIFY_429 status: 429 VANOTIFY_500: <<: *external_defaults title: Internal server error detail: Internal server error code: VANOTIFY_500 status: 500 VETEXT_PUSH_400: <<: *external_defaults code: 'VETEXT_PUSH_400' detail: The request to the upstream service was malformed and could not be processed status: 400 VETEXT_PUSH_502: <<: *external_defaults code: 'VETEXT_PUSH_502' detail: Received an invalid response from the upstream server status: 502 decision_review: exceptions: unmapped_service_exception: <<: *defaults title: Internal Server Error detail: The upstream server returned an error code that is unmapped code: unmapped_service_exception status: 400 DR_500: <<: *defaults title: Internal server error code: DR_500 detail: Received an invalid response from the upstream server status: 500 DR_502: <<: *defaults title: Bad Gateway code: DR_502 detail: Received an invalid response from the upstream server status: 502 DR_503: <<: *defaults title: Service Unavailable code: DR_503 detail: The downstream server is currently unavailable status: 503 DR_504: <<: *defaults title: Gateway Timeout code: DR_504 detail: Did not receive a timely response from the downstream server status: 504 DR_401: <<: *defaults title: Invalid API Key code: DR_401 detail: Invalid api_key for the upstream server status: 502 DR_422: &DR_422 <<: *defaults title: Malformed Request detail: The request was malformed and could not be processed code: DR_malformed_request status: 422 DR_REQUEST_BODY_IS_NOT_A_HASH: <<: *DR_422 detail: The request body isn't a JSON object DR_404: <<: *defaults title: Not Found detail: Not Found code: DR_not_found status: 404 lighthouse: letters_generator: bad_request: <<: *defaults code: LH_bad_request status: 400 not_authorized: <<: *defaults code: LH_not_authorized status: 401 forbidden: <<: *defaults code: LH_forbidden status: 403 not_found: <<: *defaults code: LH_not_found status: 404 not_acceptable: <<: *defaults code: LH_not_acceptable status: 406 payload_too_large: <<: *defaults code: LH_payload_too_large status: 413 unprocessable_entity: <<: *defaults code: LH_unprocessable_entity status: 422 too_many_requests: <<: *defaults code: LH_too_many_requests status: 429 gateway_timeout: <<: *defaults code: LH_gateway_timeout status: 504 evss: external_service_unavailable: <<: *defaults title: External service unavailable detail: 'EVSS received an error calling external service' code: 113 status: 503 letters: unable_to_determine_eligibilty: <<: *defaults title: Proxy error detail: 'Can not determine eligibility for potential letters due to upstream server error' code: 110 status: 502 not_eligible: <<: *defaults title: Proxy error detail: 'Upstream server returned not eligible response' code: 111 status: 502 unprocessable_entity: <<: *defaults title: Unprocessable Entity detail: 'One or more unprocessable letter destination properties' code: 112 status: 422 gi_bill_status: outside_working_hours: <<: *defaults title: External service unavailable detail: 'EVSS GI Bill Status is not available outside of working hours' code: 114 status: 503 disability_compensation_form: not_eligible: <<: *defaults title: Not eligible detail: 'Upstream server returned not eligible response' code: 120 status: 502 form_in_process: <<: *defaults title: Form in process detail: 'This form has already been submitted' code: 122 status: 409 disabled: <<: *defaults title: Form disabled detail: 'Form submissions are currently disabled by EVSS' code: 123 status: 502 marshall_error: <<: *defaults title: Marshall error detail: 'Unexpected marshalling error' code: 124 status: 500 start_batch_job_error: <<: *defaults title: Start batch error detail: 'Cannot launch the 526 post submit batch job' code: 125 status: 502 max_ep_code: <<: *defaults title: Max EP codes detail: 'The Maximum number of EP codes have been reached for this benefit type claim code' code: 126 status: 409 pif_in_use: <<: *defaults title: PIF in use detail: 'Claim could not be established. Contact the BDN team and have them run the WIPP process to delete Cancelled/Cleared PIFs' code: 127 status: 409 ws_client_exception: <<: *defaults title: Java Error (gov.va.wss.partner.veteranrecord.ws.client.VeteranRecordWsClientException) detail: 'An exception occurred on the server. The request cannot be fulfilled. Sidekiq Job will be retried.' code: 129 status: 500 unmapped_service_exception: <<: *defaults title: Internal Server Error detail: 'The upstream server returned an error code that is unmapped' code: 128 status: 400 intent_to_file: partner_service_error: <<: *defaults title: Partner Service Error detail: 'Error calling out to partner service' code: 131 status: 502 internal_service_error: <<: *defaults title: Internal Service Error detail: 'Internal service error' code: 132 status: 502 intent_type_invalid: <<: *defaults title: Intent Type Invalid detail: 'Invalid intent type' code: 133 status: 400 partner_service_invalid: <<: *defaults title: Partner Service Invalid detail: 'Error on data from external service' code: 134 status: 502 mdot: exceptions: default_exception: <<: *defaults title: Internal Server Error detail: The upstream server returned an error code that is unmapped code: unmapped_service_exception status: 400 MDOT_internal_server_error: <<: *defaults title: Internal Server Error detail: The system of record was unable to process this request. code: MDOT_internal_server_error status: 500 MDOT_502: <<: *defaults title: Bad Gateway detail: Received an an invalid response from the upstream server code: MDOT_502 status: 502 MDOT_service_unavailable: <<: *defaults title: Service Unavailable detail: The DLC API is currently unavailable code: MDOT_service_unavailable status: 503 MDOT_malformed_request: <<: *defaults title: Malformed Request detail: The request was malformed and could not be processed code: MDOT_malformed_request status: 400 MDOT_unauthorized: <<: *defaults title: Unauthorized detail: We could not authenticate your credentials for this resource code: MDOT_unauthorized status: 401 MDOT_forbidden: <<: *defaults title: Forbidden detail: User is forbidden from accessing this resource code: MDOT_forbidden status: 403 MDOT_deceased: <<: *defaults title: Veteran is Deceased detail: The veteran is deceased; supplies cannot be ordered code: MDOT_deceased status: 403 MDOT_invalid: <<: *defaults title: Veteran Not Found detail: The veteran could not be found code: MDOT_invalid status: 404 MDOT_supplies_not_found: <<: *defaults title: Supplies Not Found detail: The medical supplies could not be found code: MDOT_supplies_not_found status: 404 MDOT_supplies_not_selected: <<: *defaults title: Supplies Not Selected detail: No supplies were selected to order code: MDOT_supplies_not_selected status: 422 MDOT_unprocessable_entity: <<: *defaults title: Order unable to be processed detail: Order unable to be processed code: MDOT_unprocessable_entity status: 422 chip: exceptions: unmapped_service_exception: <<: *defaults title: 'Operation failed' detail: The upstream server returned an error code that is unmapped code: unmapped_service_exception status: 400 CHIP_400: <<: *defaults title: 'Unsuccessful Operation' code: CHIP_400 status: 400 CHIP_500: <<: *defaults title: 'Internal Server Error' code: CHIP_500 status: 500
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:idm="http://vaww.oed.oit.va.gov" xmlns:xsi="http://www.w3.org/2001/XMLSchema‐instance" xsi:schemaLocation="urn:hl7‐org:v3 ../../schema/HL7V3/NE2008/multicacheschemas/PRPA_IN201305UV02.xsd" xmlns="urn:hl7‐org:v3" ITSVersion="XML_1.0"> <id extension="{{ msg_id }}" root="22a0f9e0-4454-11dc-a6be-3603d6866807"/> <creationTime value="{{ date_of_request }}"/> <versionCode code="4.1"/> <interactionId extension="PRPA_IN201301UV02" root="2.16.840.1.113883.1.6"/> <processingCode code="{{ processing_code }}"/> <processingModeCode code="T"/> <acceptAckCode code="AL"/> <receiver typeCode="RCV"> <device determinerCode="INSTANCE" classCode="DEV"> <id root="2.16.840.1.113883.4.349"/> </device> </receiver> <sender typeCode="SND"> <device determinerCode="INSTANCE" classCode="DEV"> <id extension="200VGOV" root="2.16.840.1.113883.4.349"/> </device> </sender> <controlActProcess classCode="CACT" moodCode="EVN"> <subject typeCode="SUBJ"> <registrationEvent classCode="REG" moodCode="EVN"> <id nullFlavor="UNK"/> <statusCode code="active"/> <subject1 typeCode="SBJ"> <patient classCode="PAT"> <id nullFlavor="UNK"/> <statusCode code="active"/> <patientPerson> <name use="L"> <given>{{ first_name }}</given> <family>{{ last_name }}</family> </name> <birthTime value="{{ date_of_birth }}"/> <id extension="{{ csp_uuid }}^PN^{{ csp_identifier }}^USDVA^A" root="2.16.840.1.113883.4.349"/> <asOtherIDs classCode="SSN"> <id extension="{{ ssn }}" root="2.16.840.1.113883.4.1"/> <scopingOrganization determinerCode="INSTANCE" classCode="ORG"> <id root="2.16.840.1.113883.4.1"/> </scopingOrganization> </asOtherIDs> <asOtherIDs classCode="PAT"> <id extension="{{ csp_uuid }}^PN^{{ csp_identifier }}^USDVA^A" root="2.16.840.1.113883.4.349"/> <scopingOrganization classCode="ORG" determinerCode="INSTANCE"> <id root="2.16.840.1.113883.4.349" /> </scopingOrganization> </asOtherIDs> </patientPerson> <providerOrganization determinerCode="INSTANCE" classCode="ORG"> <id root="2.16.840.1.113883.3.933"/> <name>Good Health Clinic</name> <contactParty classCode="CON"> <telecom value="3425558394"/> </contactParty> </providerOrganization> </patient> </subject1> <custodian typeCode="CST"> <assignedEntity classCode="ASSIGNED"> <id root="2.16.840.1.113883.3.933"/> <assignedOrganization determinerCode="INSTANCE" classCode="ORG"> <name>Good Health Clinic</name> </assignedOrganization> </assignedEntity> </custodian> </registrationEvent> </subject> </controlActProcess> </idm:PRPA_IN201301UV02> </soap:Body> </soap:Envelope>
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:idm="http://vaww.oed.oit.va.gov" xmlns:xsi="http://www.w3.org/2001/XMLSchema‐instance" xsi:schemaLocation="urn:hl7‐org:v3 ../../schema/HL7V3/NE2008/multicacheschemas/PRPA_IN201302UV02.xsd" xmlns="urn:hl7‐org:v3" ITSVersion="XML_1.0"> <id extension="{{ msg_id }}" root="22a0f9e0-4454-11dc-a6be-3603d6866807"/> <creationTime value="{{ date_of_request }}"/> <versionCode code="4.1"/> <interactionId extension="PRPA_IN201302UV02" root="2.16.840.1.113883.1.6"/> <processingCode code="{{ processing_code }}"/> <processingModeCode code="T"/> <acceptAckCode code="AL"/> <receiver typeCode="RCV"> <device determinerCode="INSTANCE" classCode="DEV"> <id root="2.16.840.1.113883.4.349"/> </device> </receiver> <sender typeCode="SND"> <device determinerCode="INSTANCE" classCode="DEV"> <id extension="200VGOV" root="2.16.840.1.113883.4.349"/> </device> </sender> <controlActProcess classCode="CACT" moodCode="EVN"> <subject typeCode="SUBJ"> <registrationEvent classCode="REG" moodCode="EVN"> <id nullFlavor="NA"/> <statusCode code="active"/> <subject1 typeCode="SBJ"> <patient classCode="PAT"> <id extension="{{ user_identity }}" root="2.16.840.1.113883.4.349"/> <statusCode code="active"/> <patientPerson> <name use="L"> <given>{{ first_name }}</given> <family>{{ last_name }}</family> </name> <birthTime value="{{ date_of_birth }}"/> <id extension="{{ csp_uuid }}^{{ csp_identifier }}^A" root="{{ identifier_root }}"/> <asOtherIDs classCode="SSN"> <id extension="{{ ssn }}" root="2.16.840.1.113883.4.1"/> <scopingOrganization determinerCode="INSTANCE" classCode="ORG"> <id root="2.16.840.1.113883.4.1"/> </scopingOrganization> </asOtherIDs> <asOtherIDs classCode="PAT"> <id extension="{{ csp_uuid }}^{{ csp_identifier }}^A" root="{{ identifier_root }}"/> <scopingOrganization classCode="ORG" determinerCode="INSTANCE"> <id root="2.16.840.1.113883.4.349" /> </scopingOrganization> </asOtherIDs> </patientPerson> <providerOrganization determinerCode="INSTANCE" classCode="ORG"> <id root="2.16.840.1.113883.3.933"/> <name>Good Health Clinic</name> <contactParty classCode="CON"> <telecom value="3425558394"/> </contactParty> </providerOrganization> </patient> </subject1> <custodian typeCode="CST"> <assignedEntity classCode="ASSIGNED"> <id root="2.16.840.1.113883.3.933"/> <assignedOrganization determinerCode="INSTANCE" classCode="ORG"> <name>Good Health Clinic</name> </assignedOrganization> </assignedEntity> </custodian> </registrationEvent> </subject> </controlActProcess> </idm:PRPA_IN201302UV02> </soap:Body> </soap:Envelope>
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:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soap12enc="http://www.w3.org/2003/05/soap-encoding" xmlns:conv="http://www.openuri.org/2002/04/wsdl/conversation/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://vaww.oed.oit.va.gov"> <types xmlns:tns="http://vaww.oed.oit.va.gov" xmlns:wsr="http://www.openuri.org/2002/10/soap/reliability/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soap12enc="http://www.w3.org/2003/05/soap-encoding" xmlns:conv="http://www.openuri.org/2002/04/wsdl/conversation/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/"> <xsd:schema xmlns="urn:hl7-org:v3" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:stns="http://vaww.oed.oit.va.gov" xmlns:hl7v3="urn:hl7-org:v3" elementFormDefault="qualified" attributeFormDefault="qualified" targetNamespace="http://vaww.oed.oit.va.gov"> <xsd:import namespace="urn:hl7-org:v3" schemaLocation="./HL7v3/multicacheschemas/PRPA_IN201305UV02.xsd"></xsd:import> <xsd:import namespace="urn:hl7-org:v3" schemaLocation="./HL7v3/multicacheschemas/PRPA_IN201306UV02.xsd"></xsd:import> <xsd:import namespace="urn:hl7-org:v3" schemaLocation="./HL7v3/multicacheschemas/PRPA_IN201301UV02.xsd"></xsd:import> <xsd:import namespace="urn:hl7-org:v3" schemaLocation="./HL7v3/multicacheschemas/PRPA_IN201302UV02.xsd"></xsd:import> <xsd:import namespace="urn:hl7-org:v3" schemaLocation="./HL7v3/multicacheschemas/MCCI_IN000002UV01.xsd"></xsd:import> <xsd:element name="PRPA_IN201305UV02" nillable="true"> </xsd:element> <xsd:element name="PRPA_IN201306UV02" nillable="true"> </xsd:element> <xsd:element name="PRPA_IN201301UV02" nillable="true"> </xsd:element> <xsd:element name="PRPA_IN201302UV02" nillable="true"> </xsd:element> <xsd:element name="MCCI_IN000002UV01" nillable="true"> </xsd:element> </xsd:schema> </types> <message name="PRPA_IN201305UV02"> <part xmlns:partns="http://vaww.oed.oit.va.gov" name="inboundXML" element="partns:PRPA_IN201305UV02"> </part> </message> <message name="PRPA_IN201306UV02"> <part xmlns:partns="http://vaww.oed.oit.va.gov" name="returnXML" element="partns:PRPA_IN201306UV02"> </part> </message> <message name="PRPA_IN201301UV02"> <part xmlns:partns="http://vaww.oed.oit.va.gov" name="inboundXML" element="partns:PRPA_IN201301UV02"> </part> </message> <message name="PRPA_IN201302UV02"> <part xmlns:partns="http://vaww.oed.oit.va.gov" name="inboundXML" element="partns:PRPA_IN201302UV02"> </part> </message> <message name="MCCI_IN000002UV01"> <part xmlns:partns="http://vaww.oed.oit.va.gov" name="returnXML" element="partns:MCCI_IN000002UV01"> </part> </message> <portType name="VAIdMPort"> <operation name="PRPA_IN201305UV02"> <input message="tns:PRPA_IN201305UV02"></input> <output message="tns:PRPA_IN201306UV02"></output> </operation> <operation name="PRPA_IN201301UV02"> <input message="tns:PRPA_IN201301UV02"></input> <output message="tns:MCCI_IN000002UV01"></output> </operation> <operation name="PRPA_IN201302UV02"> <input message="tns:PRPA_IN201302UV02"></input> <output message="tns:MCCI_IN000002UV01"></output> </operation> </portType> <binding type="tns:VAIdMPort" name="VAIdMPort"> <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" /> <operation name="PRPA_IN201305UV02"> <soap:operation style="document" soapAction="" /> <input> <soap:body use="literal" /> </input> <output> <soap:body use="literal" /> </output> </operation> <operation name="PRPA_IN201301UV02"> <soap:operation style="document" soapAction="" /> <input> <soap:body use="literal" /> </input> <output> <soap:body use="literal" /> </output> </operation> <operation name="PRPA_IN201302UV02"> <soap:operation style="document" soapAction="" /> <input> <soap:body use="literal" /> </input> <output> <soap:body use="literal" /> </output> </operation> </binding> <service name="VAIdM"> <port name="VAIdMPort" binding="tns:VAIdMPort"> <soap:address location="<%= IdentitySettings.mvi.url %>" /> </port> </service> </definitions>
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_IN201306UV02 xmlns:idm="http://vaww.oed.oit.va.gov" xmlns="urn:hl7-org:v3" ITSVersion="XML_1.0" xsi:schemaLocation="urn:hl7-org:v3 ../../schema/HL7V3/NE2008/multicacheschemas/PRPA_IN201306UV02.xsd"> <id extension="WSDOC1609131753362231779394902" root="2.16.840.1.113883.4.349" /> <creationTime value="20160913175336" /> <versionCode code="3.0" /> <interactionId extension="PRPA_IN201306UV02" root="2.16.840.1.113883.1.6" /> <processingCode code="T" /> <processingModeCode code="T" /> <acceptAckCode code="NE" /> <receiver typeCode="RCV"> <device determinerCode="INSTANCE" classCode="DEV"> <id extension="200VGOV" root="2.16.840.1.113883.4.349" /> </device> </receiver> <sender typeCode="SND"> <device determinerCode="INSTANCE" classCode="DEV"> <id extension="200M" root="2.16.840.1.113883.4.349" /> </device> </sender> <acknowledgement> <typeCode code="AA" /> <targetMessage> <id extension="MCID-12345" root="1.2.840.114350.1.13.0.1.7.1.1" /> </targetMessage> <acknowledgementDetail> <code codeSystemName="MVI" code="132" displayName="IMT" /> <text>Identity Match Threshold</text> </acknowledgementDetail> <acknowledgementDetail> <code codeSystemName="MVI" code="120" displayName="PDT" /> <text>Potential Duplicate Threshold</text> </acknowledgementDetail> </acknowledgement> <controlActProcess classCode="CACT" moodCode="EVN"> <code codeSystem="2.16.840.1.113883.1.6" code="PRPA_TE201306UV02" /> <subject typeCode="SUBJ"> <registrationEvent classCode="REG" moodCode="EVN"> <id nullFlavor="NA" /> <statusCode code="active" /> <subject1 typeCode="SBJ"> <patient classCode="PAT"> <statusCode code="active" /> <patientPerson> <name use="L"> {% for name in profile.given_names %}<given>{{ name }}</given>{% endfor %} <family>{{ profile.family_name }}</family> <prefix></prefix> <suffix>{{ profile.suffix }}</suffix> </name> <name use="P"> <delimiter>101</delimiter> <family>{{ profile.family_name }}</family> </name> <name use="C"> <family>{{ profile.family_name }}</family> </name> <telecom value="1112223333" use="HP" /> <administrativeGenderCode code="{{ profile.gender }}" /> <birthTime value="{{ profile.birth_date }}" /> <addr use="PHYS"> <streetAddressLine>{{ profile.address.street }}</streetAddressLine> <city>{{ profile.address.city }}</city> <state>{{ profile.address.state }}</state> <postalCode>{{ profile.address.postal_code }}</postalCode> <country>{{ profile.address.country }}</country> </addr> <multipleBirthInd value="true" /> <asOtherIDs classCode="SSN"> <id extension="{{ profile.ssn }}" root="2.16.840.1.113883.4.1" /> <scopingOrganization determinerCode="INSTANCE" classCode="ORG"> <id root="1.2.840.114350.1.13.99997.2.3412" /> </scopingOrganization> </asOtherIDs> <birthPlace> <addr> <city>JOHNSON CITY</city> <state>MS</state> <country>USA</country> </addr> </birthPlace> </patientPerson> <subjectOf1> <queryMatchObservation classCode="COND" moodCode="EVN"> <code code="IHE_PDQ" /> <value value="162" xsi:type="INT" /> </queryMatchObservation> </subjectOf1> </patient> </subject1> <custodian typeCode="CST"> <assignedEntity classCode="ASSIGNED"> <id root="2.16.840.1.113883.4.349" /> </assignedEntity> </custodian> </registrationEvent> </subject> <queryAck> <queryId extension="18204" root="2.16.840.1.113883.3.933" /> <queryResponseCode code="OK" /> <resultCurrentQuantity value="1" /> </queryAck> <queryByParameter> <queryId extension="18204" root="2.16.840.1.113883.3.933" /> <statusCode code="new" /> <modifyCode code="MVI.COMP1.RMS" /> <initialQuantity value="1" /> <parameterList> <livingSubjectName> <value use="L"> {% for name in profile.given_names %}<given>{{ name }}</given>{% endfor %} <family>{{ profile.family_name }}</family> </value> <semanticsText>LivingSubject.name</semanticsText> </livingSubjectName> <livingSubjectBirthTime> <value value="{{ profile.birth_date }}" /> <semanticsText>LivingSubject..birthTime</semanticsText> </livingSubjectBirthTime> <livingSubjectId> <value extension="{{ profile.ssn }}" root="2.16.840.1.113883.4.1" /> <semanticsText>SSN</semanticsText> </livingSubjectId> </parameterList> </queryByParameter> </controlActProcess> </idm:PRPA_IN201306UV02> </env:Body> </env:Envelope>
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.va.gov" xmlns:xsi="http://www.w3.org/2001/XMLSchema‐instance" xsi:schemaLocation="urn:hl7‐org:v3 ../../schema/HL7V3/NE2008/multicacheschemas/PRPA_IN201305UV02.xsd" xmlns="urn:hl7‐org:v3" ITSVersion="XML_1.0"> <id root="1.2.840.114350.1.13.0.1.7.1.1" extension="200VGOV-ba391f62-69c6-4b71-bfb3-d5fe2877b805"/> <creationTime value="20210218175714"/> <versionCode code="4.1"/> <interactionId root="2.16.840.1.113883.1.6" extension="PRPA_IN201305UV02"/> <processingCode code="T"/> <processingModeCode code="T"/> <acceptAckCode code="AL"/> <receiver typeCode="RCV"> <device classCode="DEV" determinerCode="INSTANCE"> <id root="1.2.840.114350.1.13.999.234" extension="200M"/> </device> </receiver> <sender typeCode="SND"> <device classCode="DEV" determinerCode="INSTANCE"> <id root="2.16.840.1.113883.4.349" extension="200VGOV"/> </device> </sender> <controlActProcess classCode="CACT" moodCode="EVN"> <code code="PRPA_TE201305UV02" codeSystem="2.16.840.1.113883.1.6"/> <queryByParameter> <queryId root="1.2.840.114350.1.13.28.1.18.5.999" extension="18204"/> <statusCode code="new"/> <modifyCode code="MVI.COMP1.RMS"/> <initialQuantity value="1"/> <parameterList> <id root="2.16.840.1.113883.4.349" extension="{{ icn }}"/> </parameterList> </queryByParameter> </controlActProcess> </idm:PRPA_IN201305UV02> </env:Body> </env:Envelope>
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="http://vaww.oed.oit.va.gov" xmlns:xsi="http://www.w3.org/2001/XMLSchema‐instance" xsi:schemaLocation="urn:hl7‐org:v3 ../../schema/HL7V3/NE2008/multicacheschemas/PRPA_IN201305UV02.xsd" xmlns="urn:hl7‐org:v3" ITSVersion="XML_1.0"> <id extension="{{ msg_id }}" root="22a0f9e0-4454-11dc-a6be-3603d6866807"/> <creationTime value="{{ date_of_request }}"/> <versionCode code="4.1"/> <interactionId extension="PRPA_IN201301UV02" root="2.16.840.1.113883.1.6"/> <processingCode code="{{ processing_code }}"/> <processingModeCode code="T"/> <acceptAckCode code="AL"/> <receiver typeCode="RCV"> <device determinerCode="INSTANCE" classCode="DEV"> <id root="2.16.840.1.113883.4.349"/> </device> </receiver> <sender typeCode="SND"> <device determinerCode="INSTANCE" classCode="DEV"> <id extension="200VGOV" root="2.16.840.1.113883.4.349"/> </device> </sender> <attentionLine> <keyWordText>Search.Token</keyWordText> <value xsi:type="ST">{{ search_token }}</value> </attentionLine> <controlActProcess classCode="CACT" moodCode="EVN"> <dataEnterer contextControlCode="AP" typeCode="ENT"> <assignedPerson classCode="ASSIGNED"> <id extension="{{ user_identity }}" root="2.16.840.1.113883.4.349"/> <assignedPerson determinerCode="INSTANCE" classCode="PSN"> <name> <given>{{ first_name }}</given> <family>{{ last_name }}</family> </name> </assignedPerson> <representedOrganization determinerCode="INSTANCE" classCode="ORG"> <id extension="dslogon.{{ edipi }}" root="2.16.840.1.113883.4.349"/> <code code="{{ current_datetime }}"/> <desc>vagov</desc> <telecom value="{{ ip_address }}"/> </representedOrganization> </assignedPerson> </dataEnterer> <subject typeCode="SUBJ"> <registrationEvent classCode="REG" moodCode="EVN"> <id nullFlavor="NA"/> <statusCode code="active"/> <subject1 typeCode="SBJ"> <patient classCode="PAT"> <id extension="{{ user_identity }}" root="2.16.840.1.113883.4.349"/> <statusCode code="active"/> <patientPerson> <name use="L"> <given>{{ first_name}}</given> <family>{{ last_name }}</family> </name> <birthTime value="{{ date_of_birth }}"/> <asOtherIDs classCode="SSN"> <id extension="{{ ssn }}" root="2.16.840.1.113883.4.1"/> <scopingOrganization determinerCode="INSTANCE" classCode="ORG"> <id root="2.16.840.1.113883.4.1"/> </scopingOrganization> </asOtherIDs> <asOtherIDs classCode="PAT"> <id extension="PROXY_ADD^PI^200VBA^USVBA" root="2.16.840.1.113883.4.349"/> <scopingOrganization determinerCode="INSTANCE" classCode="ORG"> <id extension="VBA" root="2.16.840.1.113883.4.349"/> <name>MVI.ORCHESTRATION</name> </scopingOrganization> </asOtherIDs> </patientPerson> <providerOrganization determinerCode="INSTANCE" classCode="ORG"> <id root="2.16.840.1.113883.3.933"/> <name>Good Health Clinic</name> <contactParty classCode="CON"> <telecom value="3425558394"/> </contactParty> </providerOrganization> </patient> </subject1> <custodian typeCode="CST"> <assignedEntity classCode="ASSIGNED"> <id root="2.16.840.1.113883.3.933"/> <assignedOrganization determinerCode="INSTANCE" classCode="ORG"> <name>Good Health Clinic</name> </assignedOrganization> </assignedEntity> </custodian> </registrationEvent> </subject> </controlActProcess> </idm:PRPA_IN201301UV02> </soap:Body> </soap:Envelope>
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:annotation> <xs:documentation> Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 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 retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. All advertising materials mentioning features or use of this software must display the following acknowledgement: This product includes software developed by Health Level Seven. THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Generated by $Id: datatypes.xsd,v 1.1.2.1 2010/09/15 16:12:11 cchin Exp $ </xs:documentation> </xs:annotation> <xs:include schemaLocation="datatypes-base.xsd"/> <!-- Instantiated templates --> <xs:complexType name="PIVL_TS"> <xs:annotation> <xs:documentation> Note: because this type is defined as an extension of SXCM_T, all of the attributes and elements accepted for T are also accepted by this definition. However, they are NOT allowed by the normative description of this type. Unfortunately, we cannot write a general purpose schematron contraints to provide that extra validation, thus applications must be aware that instance (fragments) that pass validation with this might might still not be legal. </xs:documentation> </xs:annotation> <xs:complexContent> <xs:extension base="SXCM_TS"> <xs:sequence> <xs:element name="phase" minOccurs="0" maxOccurs="1" type="IVL_TS"> <xs:annotation> <xs:documentation> A prototype of the repeating interval specifying the duration of each occurrence and anchors the periodic interval sequence at a certain point in time. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="period" minOccurs="0" maxOccurs="1" type="PQ"> <xs:annotation> <xs:documentation> A time duration specifying a reciprocal measure of the frequency at which the periodic interval repeats. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> <xs:attribute name="alignment" type="CalendarCycle" use="optional"> <xs:annotation> <xs:documentation> Specifies if and how the repetitions are aligned to the cycles of the underlying calendar (e.g., to distinguish every 30 days from "the 5th of every month".) A non-aligned periodic interval recurs independently from the calendar. An aligned periodic interval is synchronized with the calendar. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="institutionSpecified" type="bl" use="optional" default="false"> <xs:annotation> <xs:documentation> Indicates whether the exact timing is up to the party executing the schedule (e.g., to distinguish "every 8 hours" from "3 times a day".) </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="EIVL_TS"> <xs:annotation> <xs:documentation> Note: because this type is defined as an extension of SXCM_T, all of the attributes and elements accepted for T are also accepted by this definition. However, they are NOT allowed by the normative description of this type. Unfortunately, we cannot write a general purpose schematron contraints to provide that extra validation, thus applications must be aware that instance (fragments) that pass validation with this might might still not be legal. </xs:documentation> </xs:annotation> <xs:complexContent> <xs:extension base="SXCM_TS"> <xs:sequence> <xs:element name="event" type="EIVL.event" minOccurs="0" maxOccurs="1"> <xs:annotation> <xs:documentation> A code for a common (periodical) activity of daily living based on which the event related periodic interval is specified. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="offset" minOccurs="0" maxOccurs="1" type="IVL_PQ"> <xs:annotation> <xs:documentation> An interval of elapsed time (duration, not absolute point in time) that marks the offsets for the beginning, width and end of the event-related periodic interval measured from the time each such event actually occurred. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="IVL_PQ"> <xs:complexContent> <xs:extension base="SXCM_PQ"> <xs:choice minOccurs="0"> <xs:sequence> <xs:element name="low" minOccurs="1" maxOccurs="1" type="IVXB_PQ"> <xs:annotation> <xs:documentation> The low limit of the interval. </xs:documentation> </xs:annotation> </xs:element> <xs:choice minOccurs="0"> <xs:element name="width" minOccurs="0" maxOccurs="1" type="PQ"> <xs:annotation> <xs:documentation> The difference between high and low boundary. The purpose of distinguishing a width property is to handle all cases of incomplete information symmetrically. In any interval representation only two of the three properties high, low, and width need to be stated and the third can be derived. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="high" minOccurs="0" maxOccurs="1" type="IVXB_PQ"> <xs:annotation> <xs:documentation> The high limit of the interval. </xs:documentation> </xs:annotation> </xs:element> </xs:choice> </xs:sequence> <xs:element name="high" minOccurs="1" maxOccurs="1" type="IVXB_PQ"> <xs:annotation> <xs:documentation/> </xs:annotation> </xs:element> <xs:sequence> <xs:element name="width" minOccurs="1" maxOccurs="1" type="PQ"> <xs:annotation> <xs:documentation> The difference between high and low boundary. The purpose of distinguishing a width property is to handle all cases of incomplete information symmetrically. In any interval representation only two of the three properties high, low, and width need to be stated and the third can be derived. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="high" minOccurs="0" maxOccurs="1" type="IVXB_PQ"> <xs:annotation> <xs:documentation> The high limit of the interval. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> <xs:sequence> <xs:element name="center" minOccurs="1" maxOccurs="1" type="PQ"> <xs:annotation> <xs:documentation> The arithmetic mean of the interval (low plus high divided by 2). The purpose of distinguishing the center as a semantic property is for conversions of intervals from and to point values. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="width" minOccurs="0" maxOccurs="1" type="PQ"> <xs:annotation> <xs:documentation> The difference between high and low boundary. The purpose of distinguishing a width property is to handle all cases of incomplete information symmetrically. In any interval representation only two of the three properties high, low, and width need to be stated and the third can be derived. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> </xs:choice> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="SXCM_PQ"> <xs:complexContent> <xs:extension base="PQ"> <xs:attribute name="operator" type="SetOperator" use="optional" default="I"> <xs:annotation> <xs:documentation> A code specifying whether the set component is included (union) or excluded (set-difference) from the set, or other set operations with the current set component and the set as constructed from the representation stream up to the current point. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="IVXB_PQ"> <xs:complexContent> <xs:extension base="PQ"> <xs:attribute name="inclusive" type="bl" use="optional" default="true"> <xs:annotation> <xs:documentation> Specifies whether the limit is included in the interval (interval is closed) or excluded from the interval (interval is open). </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="PPD_TS"> <xs:annotation> <xs:appinfo> <diff>PPD_PQ</diff> </xs:appinfo> </xs:annotation> <xs:complexContent> <xs:extension base="TS"> <xs:sequence> <xs:element name="standardDeviation" minOccurs="0" maxOccurs="1" type="PQ"> <xs:annotation> <xs:documentation> The primary measure of variance/uncertainty of the value (the square root of the sum of the squares of the differences between all data points and the mean). The standard deviation is used to normalize the data for computing the distribution function. Applications that cannot deal with probability distributions can still get an idea about the confidence level by looking at the standard deviation. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> <xs:attribute name="distributionType" type="ProbabilityDistributionType" use="optional"> <xs:annotation> <xs:documentation> A code specifying the type of probability distribution. Possible values are as shown in the attached table. The NULL value (unknown) for the type code indicates that the probability distribution type is unknown. In that case, the standard deviation has the meaning of an informal guess. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="PPD_PQ"> <xs:annotation> <xs:appinfo> <diff>PPD_PQ</diff> </xs:appinfo> </xs:annotation> <xs:complexContent> <xs:extension base="PQ"> <xs:sequence> <xs:element name="standardDeviation" minOccurs="0" maxOccurs="1" type="PQ"> <xs:annotation> <xs:documentation> The primary measure of variance/uncertainty of the value (the square root of the sum of the squares of the differences between all data points and the mean). The standard deviation is used to normalize the data for computing the distribution function. Applications that cannot deal with probability distributions can still get an idea about the confidence level by looking at the standard deviation. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> <xs:attribute name="distributionType" type="ProbabilityDistributionType" use="optional"> <xs:annotation> <xs:documentation> A code specifying the type of probability distribution. Possible values are as shown in the attached table. The NULL value (unknown) for the type code indicates that the probability distribution type is unknown. In that case, the standard deviation has the meaning of an informal guess. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="PIVL_PPD_TS"> <xs:annotation> <xs:documentation> Note: because this type is defined as an extension of SXCM_T, all of the attributes and elements accepted for T are also accepted by this definition. However, they are NOT allowed by the normative description of this type. Unfortunately, we cannot write a general purpose schematron contraints to provide that extra validation, thus applications must be aware that instance (fragments) that pass validation with this might might still not be legal. </xs:documentation> </xs:annotation> <xs:complexContent> <xs:extension base="SXCM_PPD_TS"> <xs:sequence> <xs:element name="phase" minOccurs="0" maxOccurs="1" type="IVL_PPD_TS"> <xs:annotation> <xs:documentation> A prototype of the repeating interval specifying the duration of each occurrence and anchors the periodic interval sequence at a certain point in time. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="period" minOccurs="0" maxOccurs="1" type="PPD_PQ"> <xs:annotation> <xs:documentation> A time duration specifying a reciprocal measure of the frequency at which the periodic interval repeats. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> <xs:attribute name="alignment" type="CalendarCycle" use="optional"> <xs:annotation> <xs:documentation> Specifies if and how the repetitions are aligned to the cycles of the underlying calendar (e.g., to distinguish every 30 days from "the 5th of every month".) A non-aligned periodic interval recurs independently from the calendar. An aligned periodic interval is synchronized with the calendar. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="institutionSpecified" type="bl" use="optional" default="false"> <xs:annotation> <xs:documentation> Indicates whether the exact timing is up to the party executing the schedule (e.g., to distinguish "every 8 hours" from "3 times a day".) </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="SXCM_PPD_TS"> <xs:complexContent> <xs:extension base="PPD_TS"> <xs:attribute name="operator" type="SetOperator" use="optional" default="I"> <xs:annotation> <xs:documentation> A code specifying whether the set component is included (union) or excluded (set-difference) from the set, or other set operations with the current set component and the set as constructed from the representation stream up to the current point. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="IVL_PPD_TS"> <xs:complexContent> <xs:extension base="SXCM_PPD_TS"> <xs:choice minOccurs="0"> <xs:sequence> <xs:element name="low" minOccurs="1" maxOccurs="1" type="IVXB_PPD_TS"> <xs:annotation> <xs:documentation> The low limit of the interval. </xs:documentation> </xs:annotation> </xs:element> <xs:choice minOccurs="0"> <xs:element name="width" minOccurs="0" maxOccurs="1" type="PPD_PQ"> <xs:annotation> <xs:documentation> The difference between high and low boundary. The purpose of distinguishing a width property is to handle all cases of incomplete information symmetrically. In any interval representation only two of the three properties high, low, and width need to be stated and the third can be derived. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="high" minOccurs="0" maxOccurs="1" type="IVXB_PPD_TS"> <xs:annotation> <xs:documentation> The high limit of the interval. </xs:documentation> </xs:annotation> </xs:element> </xs:choice> </xs:sequence> <xs:element name="high" minOccurs="1" maxOccurs="1" type="IVXB_PPD_TS"> <xs:annotation> <xs:documentation/> </xs:annotation> </xs:element> <xs:sequence> <xs:element name="width" minOccurs="1" maxOccurs="1" type="PPD_PQ"> <xs:annotation> <xs:documentation> The difference between high and low boundary. The purpose of distinguishing a width property is to handle all cases of incomplete information symmetrically. In any interval representation only two of the three properties high, low, and width need to be stated and the third can be derived. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="high" minOccurs="0" maxOccurs="1" type="IVXB_PPD_TS"> <xs:annotation> <xs:documentation> The high limit of the interval. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> <xs:sequence> <xs:element name="center" minOccurs="1" maxOccurs="1" type="PPD_TS"> <xs:annotation> <xs:documentation> The arithmetic mean of the interval (low plus high divided by 2). The purpose of distinguishing the center as a semantic property is for conversions of intervals from and to point values. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="width" minOccurs="0" maxOccurs="1" type="PPD_PQ"> <xs:annotation> <xs:documentation> The difference between high and low boundary. The purpose of distinguishing a width property is to handle all cases of incomplete information symmetrically. In any interval representation only two of the three properties high, low, and width need to be stated and the third can be derived. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> </xs:choice> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="IVXB_PPD_TS"> <xs:complexContent> <xs:extension base="PPD_TS"> <xs:attribute name="inclusive" type="bl" use="optional" default="true"> <xs:annotation> <xs:documentation> Specifies whether the limit is included in the interval (interval is closed) or excluded from the interval (interval is open). </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="EIVL_PPD_TS"> <xs:annotation> <xs:documentation> Note: because this type is defined as an extension of SXCM_T, all of the attributes and elements accepted for T are also accepted by this definition. However, they are NOT allowed by the normative description of this type. Unfortunately, we cannot write a general purpose schematron contraints to provide that extra validation, thus applications must be aware that instance (fragments) that pass validation with this might might still not be legal. </xs:documentation> </xs:annotation> <xs:complexContent> <xs:extension base="SXCM_PPD_TS"> <xs:sequence> <xs:element name="event" type="EIVL.event" minOccurs="0" maxOccurs="1"> <xs:annotation> <xs:documentation> A code for a common (periodical) activity of daily living based on which the event related periodic interval is specified. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="offset" minOccurs="0" maxOccurs="1" type="IVL_PPD_PQ"> <xs:annotation> <xs:documentation> An interval of elapsed time (duration, not absolute point in time) that marks the offsets for the beginning, width and end of the event-related periodic interval measured from the time each such event actually occurred. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="IVL_PPD_PQ"> <xs:complexContent> <xs:extension base="SXCM_PPD_PQ"> <xs:choice minOccurs="0"> <xs:sequence> <xs:element name="low" minOccurs="1" maxOccurs="1" type="IVXB_PPD_PQ"> <xs:annotation> <xs:documentation> The low limit of the interval. </xs:documentation> </xs:annotation> </xs:element> <xs:choice minOccurs="0"> <xs:element name="width" minOccurs="0" maxOccurs="1" type="PPD_PQ"> <xs:annotation> <xs:documentation> The difference between high and low boundary. The purpose of distinguishing a width property is to handle all cases of incomplete information symmetrically. In any interval representation only two of the three properties high, low, and width need to be stated and the third can be derived. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="high" minOccurs="0" maxOccurs="1" type="IVXB_PPD_PQ"> <xs:annotation> <xs:documentation> The high limit of the interval. </xs:documentation> </xs:annotation> </xs:element> </xs:choice> </xs:sequence> <xs:element name="high" minOccurs="1" maxOccurs="1" type="IVXB_PPD_PQ"> <xs:annotation> <xs:documentation/> </xs:annotation> </xs:element> <xs:sequence> <xs:element name="width" minOccurs="1" maxOccurs="1" type="PPD_PQ"> <xs:annotation> <xs:documentation> The difference between high and low boundary. The purpose of distinguishing a width property is to handle all cases of incomplete information symmetrically. In any interval representation only two of the three properties high, low, and width need to be stated and the third can be derived. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="high" minOccurs="0" maxOccurs="1" type="IVXB_PPD_PQ"> <xs:annotation> <xs:documentation> The high limit of the interval. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> <xs:sequence> <xs:element name="center" minOccurs="1" maxOccurs="1" type="PPD_PQ"> <xs:annotation> <xs:documentation> The arithmetic mean of the interval (low plus high divided by 2). The purpose of distinguishing the center as a semantic property is for conversions of intervals from and to point values. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="width" minOccurs="0" maxOccurs="1" type="PPD_PQ"> <xs:annotation> <xs:documentation> The difference between high and low boundary. The purpose of distinguishing a width property is to handle all cases of incomplete information symmetrically. In any interval representation only two of the three properties high, low, and width need to be stated and the third can be derived. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> </xs:choice> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="SXCM_PPD_PQ"> <xs:complexContent> <xs:extension base="PPD_PQ"> <xs:attribute name="operator" type="SetOperator" use="optional" default="I"> <xs:annotation> <xs:documentation> A code specifying whether the set component is included (union) or excluded (set-difference) from the set, or other set operations with the current set component and the set as constructed from the representation stream up to the current point. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="IVXB_PPD_PQ"> <xs:complexContent> <xs:extension base="PPD_PQ"> <xs:attribute name="inclusive" type="bl" use="optional" default="true"> <xs:annotation> <xs:documentation> Specifies whether the limit is included in the interval (interval is closed) or excluded from the interval (interval is open). </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="SXPR_TS"> <xs:complexContent> <xs:extension base="SXCM_TS"> <xs:sequence> <xs:element name="comp" minOccurs="2" maxOccurs="unbounded" type="SXCM_TS"> <xs:annotation> <xs:documentation/> </xs:annotation> </xs:element> </xs:sequence> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="SXCM_CD"> <xs:complexContent> <xs:extension base="CD"> <xs:attribute name="operator" type="SetOperator" use="optional" default="I"> <xs:annotation> <xs:documentation> A code specifying whether the set component is included (union) or excluded (set-difference) from the set, or other set operations with the current set component and the set as constructed from the representation stream up to the current point. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="SXCM_MO"> <xs:complexContent> <xs:extension base="MO"> <xs:attribute name="operator" type="SetOperator" use="optional" default="I"> <xs:annotation> <xs:documentation> A code specifying whether the set component is included (union) or excluded (set-difference) from the set, or other set operations with the current set component and the set as constructed from the representation stream up to the current point. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="SXCM_INT"> <xs:complexContent> <xs:extension base="INT"> <xs:attribute name="operator" type="SetOperator" use="optional" default="I"> <xs:annotation> <xs:documentation> A code specifying whether the set component is included (union) or excluded (set-difference) from the set, or other set operations with the current set component and the set as constructed from the representation stream up to the current point. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="SXCM_REAL"> <xs:complexContent> <xs:extension base="REAL"> <xs:attribute name="operator" type="SetOperator" use="optional" default="I"> <xs:annotation> <xs:documentation> A code specifying whether the set component is included (union) or excluded (set-difference) from the set, or other set operations with the current set component and the set as constructed from the representation stream up to the current point. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="IVL_INT"> <xs:complexContent> <xs:extension base="SXCM_INT"> <xs:choice minOccurs="0"> <xs:sequence> <xs:element name="low" minOccurs="1" maxOccurs="1" type="IVXB_INT"> <xs:annotation> <xs:documentation> The low limit of the interval. </xs:documentation> </xs:annotation> </xs:element> <xs:choice minOccurs="0"> <xs:element name="width" minOccurs="0" maxOccurs="1" type="INT"> <xs:annotation> <xs:documentation> The difference between high and low boundary. The purpose of distinguishing a width property is to handle all cases of incomplete information symmetrically. In any interval representation only two of the three properties high, low, and width need to be stated and the third can be derived. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="high" minOccurs="0" maxOccurs="1" type="IVXB_INT"> <xs:annotation> <xs:documentation> The high limit of the interval. </xs:documentation> </xs:annotation> </xs:element> </xs:choice> </xs:sequence> <xs:element name="high" minOccurs="1" maxOccurs="1" type="IVXB_INT"> <xs:annotation> <xs:documentation/> </xs:annotation> </xs:element> <xs:sequence> <xs:element name="width" minOccurs="1" maxOccurs="1" type="INT"> <xs:annotation> <xs:documentation> The difference between high and low boundary. The purpose of distinguishing a width property is to handle all cases of incomplete information symmetrically. In any interval representation only two of the three properties high, low, and width need to be stated and the third can be derived. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="high" minOccurs="0" maxOccurs="1" type="IVXB_INT"> <xs:annotation> <xs:documentation> The high limit of the interval. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> <xs:sequence> <xs:element name="center" minOccurs="1" maxOccurs="1" type="INT"> <xs:annotation> <xs:documentation> The arithmetic mean of the interval (low plus high divided by 2). The purpose of distinguishing the center as a semantic property is for conversions of intervals from and to point values. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="width" minOccurs="0" maxOccurs="1" type="INT"> <xs:annotation> <xs:documentation> The difference between high and low boundary. The purpose of distinguishing a width property is to handle all cases of incomplete information symmetrically. In any interval representation only two of the three properties high, low, and width need to be stated and the third can be derived. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> </xs:choice> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="IVXB_INT"> <xs:complexContent> <xs:extension base="INT"> <xs:attribute name="inclusive" type="bl" use="optional" default="true"> <xs:annotation> <xs:documentation> Specifies whether the limit is included in the interval (interval is closed) or excluded from the interval (interval is open). </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="IVL_REAL"> <xs:complexContent> <xs:extension base="SXCM_REAL"> <xs:choice minOccurs="0"> <xs:sequence> <xs:element name="low" minOccurs="1" maxOccurs="1" type="IVXB_REAL"> <xs:annotation> <xs:documentation> The low limit of the interval. </xs:documentation> </xs:annotation> </xs:element> <xs:choice minOccurs="0"> <xs:element name="width" minOccurs="0" maxOccurs="1" type="REAL"> <xs:annotation> <xs:documentation> The difference between high and low boundary. The purpose of distinguishing a width property is to handle all cases of incomplete information symmetrically. In any interval representation only two of the three properties high, low, and width need to be stated and the third can be derived. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="high" minOccurs="0" maxOccurs="1" type="IVXB_REAL"> <xs:annotation> <xs:documentation> The high limit of the interval. </xs:documentation> </xs:annotation> </xs:element> </xs:choice> </xs:sequence> <xs:element name="high" minOccurs="1" maxOccurs="1" type="IVXB_REAL"> <xs:annotation> <xs:documentation/> </xs:annotation> </xs:element> <xs:sequence> <xs:element name="width" minOccurs="1" maxOccurs="1" type="REAL"> <xs:annotation> <xs:documentation> The difference between high and low boundary. The purpose of distinguishing a width property is to handle all cases of incomplete information symmetrically. In any interval representation only two of the three properties high, low, and width need to be stated and the third can be derived. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="high" minOccurs="0" maxOccurs="1" type="IVXB_REAL"> <xs:annotation> <xs:documentation> The high limit of the interval. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> <xs:sequence> <xs:element name="center" minOccurs="1" maxOccurs="1" type="REAL"> <xs:annotation> <xs:documentation> The arithmetic mean of the interval (low plus high divided by 2). The purpose of distinguishing the center as a semantic property is for conversions of intervals from and to point values. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="width" minOccurs="0" maxOccurs="1" type="REAL"> <xs:annotation> <xs:documentation> The difference between high and low boundary. The purpose of distinguishing a width property is to handle all cases of incomplete information symmetrically. In any interval representation only two of the three properties high, low, and width need to be stated and the third can be derived. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> </xs:choice> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="IVXB_REAL"> <xs:complexContent> <xs:extension base="REAL"> <xs:attribute name="inclusive" type="bl" use="optional" default="true"> <xs:annotation> <xs:documentation> Specifies whether the limit is included in the interval (interval is closed) or excluded from the interval (interval is open). </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="IVL_MO"> <xs:complexContent> <xs:extension base="SXCM_MO"> <xs:choice minOccurs="0"> <xs:sequence> <xs:element name="low" minOccurs="1" maxOccurs="1" type="IVXB_MO"> <xs:annotation> <xs:documentation> The low limit of the interval. </xs:documentation> </xs:annotation> </xs:element> <xs:choice minOccurs="0"> <xs:element name="width" minOccurs="0" maxOccurs="1" type="MO"> <xs:annotation> <xs:documentation> The difference between high and low boundary. The purpose of distinguishing a width property is to handle all cases of incomplete information symmetrically. In any interval representation only two of the three properties high, low, and width need to be stated and the third can be derived. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="high" minOccurs="0" maxOccurs="1" type="IVXB_MO"> <xs:annotation> <xs:documentation> The high limit of the interval. </xs:documentation> </xs:annotation> </xs:element> </xs:choice> </xs:sequence> <xs:element name="high" minOccurs="1" maxOccurs="1" type="IVXB_MO"> <xs:annotation> <xs:documentation/> </xs:annotation> </xs:element> <xs:sequence> <xs:element name="width" minOccurs="1" maxOccurs="1" type="MO"> <xs:annotation> <xs:documentation> The difference between high and low boundary. The purpose of distinguishing a width property is to handle all cases of incomplete information symmetrically. In any interval representation only two of the three properties high, low, and width need to be stated and the third can be derived. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="high" minOccurs="0" maxOccurs="1" type="IVXB_MO"> <xs:annotation> <xs:documentation> The high limit of the interval. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> <xs:sequence> <xs:element name="center" minOccurs="1" maxOccurs="1" type="MO"> <xs:annotation> <xs:documentation> The arithmetic mean of the interval (low plus high divided by 2). The purpose of distinguishing the center as a semantic property is for conversions of intervals from and to point values. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="width" minOccurs="0" maxOccurs="1" type="MO"> <xs:annotation> <xs:documentation> The difference between high and low boundary. The purpose of distinguishing a width property is to handle all cases of incomplete information symmetrically. In any interval representation only two of the three properties high, low, and width need to be stated and the third can be derived. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> </xs:choice> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="IVXB_MO"> <xs:complexContent> <xs:extension base="MO"> <xs:attribute name="inclusive" type="bl" use="optional" default="true"> <xs:annotation> <xs:documentation> Specifies whether the limit is included in the interval (interval is closed) or excluded from the interval (interval is open). </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="HXIT_PQ"> <xs:complexContent> <xs:extension base="PQ"> <xs:sequence> <xs:element name="validTime" minOccurs="0" maxOccurs="1" type="IVL_TS"> <xs:annotation> <xs:documentation> The time interval during which the given information was, is, or is expected to be valid. The interval can be open or closed, as well as infinite or undefined on either side. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="HXIT_CE"> <xs:complexContent> <xs:extension base="CE"> <xs:sequence> <xs:element name="validTime" minOccurs="0" maxOccurs="1" type="IVL_TS"> <xs:annotation> <xs:documentation> The time interval during which the given information was, is, or is expected to be valid. The interval can be open or closed, as well as infinite or undefined on either side. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="BXIT_CD"> <xs:complexContent> <xs:extension base="CD"> <xs:attribute name="qty" type="int" use="optional" default="1"> <xs:annotation> <xs:documentation> The quantity in which the bag item occurs in its containing bag. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="BXIT_IVL_PQ"> <xs:complexContent> <xs:extension base="IVL_PQ"> <xs:attribute name="qty" type="int" use="optional" default="1"> <xs:annotation> <xs:documentation> The quantity in which the bag item occurs in its containing bag. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="SLIST_PQ"> <xs:complexContent> <xs:extension base="ANY"> <xs:sequence> <xs:element name="origin" minOccurs="1" maxOccurs="1" type="PQ"> <xs:annotation> <xs:documentation> The origin of the list item value scale, i.e., the physical quantity that a zero-digit in the sequence would represent. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="scale" minOccurs="1" maxOccurs="1" type="PQ"> <xs:annotation> <xs:documentation> A ratio-scale quantity that is factored out of the digit sequence. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="digits" minOccurs="1" maxOccurs="1" type="list_int"> <xs:annotation> <xs:documentation> A sequence of raw digits for the sample values. This is typically the raw output of an A/D converter. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> </xs:extension> </xs:complexContent> </xs:complexType> <xs:simpleType name="list_int"> <xs:list itemType="int"/> </xs:simpleType> <xs:complexType name="SLIST_TS"> <xs:complexContent> <xs:extension base="ANY"> <xs:sequence> <xs:element name="origin" minOccurs="1" maxOccurs="1" type="TS"> <xs:annotation> <xs:documentation> The origin of the list item value scale, i.e., the physical quantity that a zero-digit in the sequence would represent. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="scale" minOccurs="1" maxOccurs="1" type="PQ"> <xs:annotation> <xs:documentation> A ratio-scale quantity that is factored out of the digit sequence. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="digits" minOccurs="1" maxOccurs="1" type="list_int"> <xs:annotation> <xs:documentation> A sequence of raw digits for the sample values. This is typically the raw output of an A/D converter. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="GLIST_TS"> <xs:complexContent> <xs:extension base="ANY"> <xs:sequence> <xs:element name="head" minOccurs="1" maxOccurs="1" type="TS"> <xs:annotation> <xs:documentation> This is the start-value of the generated list. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="increment" minOccurs="1" maxOccurs="1" type="PQ"> <xs:annotation> <xs:documentation> The difference between one value and its previous different value. For example, to generate the sequence (1; 4; 7; 10; 13; ...) the increment is 3; likewise to generate the sequence (1; 1; 4; 4; 7; 7; 10; 10; 13; 13; ...) the increment is also 3. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> <xs:attribute name="period" type="int" use="optional"> <xs:annotation> <xs:documentation> If non-NULL, specifies that the sequence alternates, i.e., after this many increments, the sequence item values roll over to start from the initial sequence item value. For example, the sequence (1; 2; 3; 1; 2; 3; 1; 2; 3; ...) has period 3; also the sequence (1; 1; 2; 2; 3; 3; 1; 1; 2; 2; 3; 3; ...) has period 3 too. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="denominator" type="int" use="optional"> <xs:annotation> <xs:documentation> The integer by which the index for the sequence is divided, effectively the number of times the sequence generates the same sequence item value before incrementing to the next sequence item value. For example, to generate the sequence (1; 1; 1; 2; 2; 2; 3; 3; 3; ...) the denominator is 3. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="GLIST_PQ"> <xs:complexContent> <xs:extension base="ANY"> <xs:sequence> <xs:element name="head" minOccurs="1" maxOccurs="1" type="PQ"> <xs:annotation> <xs:documentation> This is the start-value of the generated list. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="increment" minOccurs="1" maxOccurs="1" type="PQ"> <xs:annotation> <xs:documentation> The difference between one value and its previous different value. For example, to generate the sequence (1; 4; 7; 10; 13; ...) the increment is 3; likewise to generate the sequence (1; 1; 4; 4; 7; 7; 10; 10; 13; 13; ...) the increment is also 3. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> <xs:attribute name="period" type="int" use="optional"> <xs:annotation> <xs:documentation> If non-NULL, specifies that the sequence alternates, i.e., after this many increments, the sequence item values roll over to start from the initial sequence item value. For example, the sequence (1; 2; 3; 1; 2; 3; 1; 2; 3; ...) has period 3; also the sequence (1; 1; 2; 2; 3; 3; 1; 1; 2; 2; 3; 3; ...) has period 3 too. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="denominator" type="int" use="optional"> <xs:annotation> <xs:documentation> The integer by which the index for the sequence is divided, effectively the number of times the sequence generates the same sequence item value before incrementing to the next sequence item value. For example, to generate the sequence (1; 1; 1; 2; 2; 2; 3; 3; 3; ...) the denominator is 3. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="RTO_PQ_PQ"> <xs:annotation> <xs:appinfo> <diff>RTO_PQ_PQ</diff> </xs:appinfo> </xs:annotation> <xs:complexContent> <xs:extension base="QTY"> <xs:sequence> <xs:element name="numerator" type="PQ"> <xs:annotation> <xs:documentation> The quantity that is being divided in the ratio. The default is the integer number 1 (one). </xs:documentation> </xs:annotation> </xs:element> <xs:element name="denominator" type="PQ"> <xs:annotation> <xs:documentation> The quantity that devides the numerator in the ratio. The default is the integer number 1 (one). The denominator must not be zero. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="RTO_MO_PQ"> <xs:annotation> <xs:appinfo> <diff>RTO_MO_PQ</diff> </xs:appinfo> </xs:annotation> <xs:complexContent> <xs:extension base="QTY"> <xs:sequence> <xs:element name="numerator" type="MO"> <xs:annotation> <xs:documentation> The quantity that is being divided in the ratio. The default is the integer number 1 (one). </xs:documentation> </xs:annotation> </xs:element> <xs:element name="denominator" type="PQ"> <xs:annotation> <xs:documentation> The quantity that devides the numerator in the ratio. The default is the integer number 1 (one). The denominator must not be zero. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="UVP_TS"> <xs:complexContent> <xs:extension base="TS"> <xs:attribute name="probability" type="probability" use="optional"> <xs:annotation> <xs:documentation> The probability assigned to the value, a decimal number between 0 (very uncertain) and 1 (certain). </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> </xs:schema>
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 schemaLocation="datatypes.xsd"/> <xs:simpleType name="Classes"> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ABCcodes"> <xs:annotation> <xs:documentation>vocSet: E0 (C-0-E0-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="AcknowledgementCondition"> <xs:annotation> <xs:documentation>vocSet: T155 (C-0-T155-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AL"/> <xs:enumeration value="ER"/> <xs:enumeration value="NE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="AcknowledgementDetailCode"> <xs:annotation> <xs:documentation>vocSet: T19638 (C-0-T19638-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AcknowledgementDetailNotSupportedCode AcknowledgementDetailSyntaxErrorCode"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="RTUDEST"/> <xs:enumeration value="INTERR"/> <xs:enumeration value="RTEDEST"/> <xs:enumeration value="RTWDEST"/> <xs:enumeration value="NOSTORE"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="AcknowledgementDetailNotSupportedCode"> <xs:annotation> <xs:documentation>abstDomain: A19640 (C-0-T19638-A19640-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="NS260"/> <xs:enumeration value="NS261"/> <xs:enumeration value="NS200"/> <xs:enumeration value="NS250"/> <xs:enumeration value="NS202"/> <xs:enumeration value="NS203"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="AcknowledgementDetailSyntaxErrorCode"> <xs:annotation> <xs:documentation>specDomain: S22075 (C-0-T19638-S22075-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SYN"/> <xs:enumeration value="SYN102"/> <xs:enumeration value="SYN104"/> <xs:enumeration value="SYN110"/> <xs:enumeration value="SYN112"/> <xs:enumeration value="SYN100"/> <xs:enumeration value="SYN101"/> <xs:enumeration value="SYN103"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="AcknowledgementDetailType"> <xs:annotation> <xs:documentation>vocSet: T19358 (C-0-T19358-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="E"/> <xs:enumeration value="I"/> <xs:enumeration value="W"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="AcknowledgementMessageCode"> <xs:annotation> <xs:documentation>vocSet: D23 (C-0-D23-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="AcknowledgementType"> <xs:annotation> <xs:documentation>vocSet: T8 (C-0-T8-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CA"/> <xs:enumeration value="CE"/> <xs:enumeration value="CR"/> <xs:enumeration value="AA"/> <xs:enumeration value="AE"/> <xs:enumeration value="AR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActClass"> <xs:annotation> <xs:documentation>vocSet: T11527 (C-0-T11527-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActClassRoot x_ActClassCareProvisionEncounter x_ActClassCareProvisionObservation x_ActClassCareProvisionProcedure x_ActClassDocumentEntryAct x_ActClassDocumentEntryOrganizer x_ActOrderableOrBillable x_LabProcessClassCodes"/> </xs:simpleType> <xs:simpleType name="ActClassRoot"> <xs:annotation> <xs:documentation>specDomain: S13856 (C-0-T11527-S13856-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActClassCareProvision ActClassContainer ActClassContract ActClassControlAct ActClassExposure ActClassObservation ActClassPolicy ActClassProcedure ActClassSupply"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="ACT"/> <xs:enumeration value="SUBST"/> <xs:enumeration value="ACSN"/> <xs:enumeration value="ACCM"/> <xs:enumeration value="ACCT"/> <xs:enumeration value="CTTEVENT"/> <xs:enumeration value="CONS"/> <xs:enumeration value="CONTREG"/> <xs:enumeration value="DISPACT"/> <xs:enumeration value="ADJUD"/> <xs:enumeration value="XACT"/> <xs:enumeration value="INC"/> <xs:enumeration value="INFRM"/> <xs:enumeration value="INVE"/> <xs:enumeration value="MPROT"/> <xs:enumeration value="REG"/> <xs:enumeration value="REV"/> <xs:enumeration value="SPCTRT"/> <xs:enumeration value="SBADM"/> <xs:enumeration value="TRFR"/> <xs:enumeration value="TRNS"/> <xs:enumeration value="LIST"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActClassCareProvision"> <xs:annotation> <xs:documentation>specDomain: S18964 (C-0-T11527-S13856-S18964-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PCPR"/> <xs:enumeration value="ENC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActClassContainer"> <xs:annotation> <xs:documentation>abstDomain: A19445 (C-0-T11527-S13856-A19445-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActClassComposition ActClassEntry ActClassExtract ActClassOrganizer"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="FOLDER"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActClassComposition"> <xs:annotation> <xs:documentation>specDomain: S20083 (C-0-T11527-S13856-A19445-S20083-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActClassDocument"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="COMPOSITION"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActClassDocument"> <xs:annotation> <xs:documentation>specDomain: S18938 (C-0-T11527-S13856-A19445-S20083-S18938-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActClassClinicalDocument"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="DOC"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActClassClinicalDocument"> <xs:annotation> <xs:documentation>specDomain: S13948 (C-0-T11527-S13856-A19445-S20083-S18938-S13948-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DOCCLIN"/> <xs:enumeration value="CDALVLONE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActClassEntry"> <xs:annotation> <xs:documentation>specDomain: S20087 (C-0-T11527-S13856-A19445-S20087-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ENTRY"/> <xs:enumeration value="CLUSTER"/> <xs:enumeration value="BATTERY"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActClassExtract"> <xs:annotation> <xs:documentation>specDomain: S20080 (C-0-T11527-S13856-A19445-S20080-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EXTRACT"/> <xs:enumeration value="EHR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActClassOrganizer"> <xs:annotation> <xs:documentation>specDomain: S20084 (C-0-T11527-S13856-A19445-S20084-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ORGANIZER"/> <xs:enumeration value="CATEGORY"/> <xs:enumeration value="DOCBODY"/> <xs:enumeration value="DOCSECT"/> <xs:enumeration value="TOPIC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActClassContract"> <xs:annotation> <xs:documentation>specDomain: S14002 (C-0-T11527-S13856-S14002-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActClassFinancialContract"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="CNTRCT"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActClassFinancialContract"> <xs:annotation> <xs:documentation>specDomain: S14003 (C-0-T11527-S13856-S14002-S14003-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="FCNTRCT"/> <xs:enumeration value="COV"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActClassControlAct"> <xs:annotation> <xs:documentation>specDomain: S11534 (C-0-T11527-S13856-S11534-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CACT"/> <xs:enumeration value="ACTN"/> <xs:enumeration value="INFO"/> <xs:enumeration value="STC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActClassExposure"> <xs:annotation> <xs:documentation>specDomain: S21980 (C-0-T11527-S13856-S21980-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EXPOS"/> <xs:enumeration value="AEXPOS"/> <xs:enumeration value="TEXPOS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActClassObservation"> <xs:annotation> <xs:documentation>specDomain: S11529 (C-0-T11527-S13856-S11529-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActClassCondition ActClassGenomicObservation ActClassObservationSeries ActClassPosition ActClassROI ActClassSubjectPhysicalPosition"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="OBS"/> <xs:enumeration value="CNOD"/> <xs:enumeration value="VERIF"/> <xs:enumeration value="CLNTRL"/> <xs:enumeration value="ALRT"/> <xs:enumeration value="DGIMG"/> <xs:enumeration value="INVSTG"/> <xs:enumeration value="SPCOBS"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActClassCondition"> <xs:annotation> <xs:documentation>specDomain: S18862 (C-0-T11527-S13856-S11529-S18862-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActClassPublicHealthCase"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="COND"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActClassPublicHealthCase"> <xs:annotation> <xs:documentation>specDomain: S11530 (C-0-T11527-S13856-S11529-S18862-S11530-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CASE"/> <xs:enumeration value="OUTB"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActClassGenomicObservation"> <xs:annotation> <xs:documentation>specDomain: S21997 (C-0-T11527-S13856-S11529-S21997-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="GEN"/> <xs:enumeration value="SEQ"/> <xs:enumeration value="SEQVAR"/> <xs:enumeration value="DETPOL"/> <xs:enumeration value="EXP"/> <xs:enumeration value="LOC"/> <xs:enumeration value="PHN"/> <xs:enumeration value="POL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActClassObservationSeries"> <xs:annotation> <xs:documentation>specDomain: S18875 (C-0-T11527-S13856-S11529-S18875-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="OBSSER"/> <xs:enumeration value="OBSCOR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActClassPosition"> <xs:annotation> <xs:documentation>specDomain: S21646 (C-0-T11527-S13856-S11529-S21646-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="POS"/> <xs:enumeration value="POSACC"/> <xs:enumeration value="POSCOORD"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActClassROI"> <xs:annotation> <xs:documentation>abstDomain: A17893 (C-0-T11527-S13856-S11529-A17893-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ROIBND"/> <xs:enumeration value="ROIOVL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActClassSubjectPhysicalPosition"> <xs:annotation> <xs:documentation>abstDomain: A19796 (C-0-T11527-S13856-S11529-A19796-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActClassSubjectBodyPosition"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="_ImagingSubjectOrientation"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActClassSubjectBodyPosition"> <xs:annotation> <xs:documentation>abstDomain: A19798 (C-0-T11527-S13856-S11529-A19796-A19798-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActClassSupine"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="SFWL"/> <xs:enumeration value="LLD"/> <xs:enumeration value="PRN"/> <xs:enumeration value="RLD"/> <xs:enumeration value="SIT"/> <xs:enumeration value="STN"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActClassSupine"> <xs:annotation> <xs:documentation>specDomain: S21935 (C-0-T11527-S13856-S11529-A19796-A19798-S21935-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SUP"/> <xs:enumeration value="RTRD"/> <xs:enumeration value="TRD"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActClassPolicy"> <xs:annotation> <xs:documentation>specDomain: S21981 (C-0-T11527-S13856-S21981-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="POLICY"/> <xs:enumeration value="JURISPOL"/> <xs:enumeration value="ORGPOL"/> <xs:enumeration value="SCOPOL"/> <xs:enumeration value="STDPOL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActClassProcedure"> <xs:annotation> <xs:documentation>specDomain: S11532 (C-0-T11527-S13856-S11532-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PROC"/> <xs:enumeration value="SPECCOLLECT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActClassSupply"> <xs:annotation> <xs:documentation>specDomain: S11535 (C-0-T11527-S13856-S11535-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SPLY"/> <xs:enumeration value="DIET"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActClassCareProvisionEncounter"> <xs:annotation> <xs:documentation>abstDomain: A19887 (C-0-T11527-A19887-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PCPR"/> <xs:enumeration value="ENC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActClassCareProvisionObservation"> <xs:annotation> <xs:documentation>abstDomain: A19888 (C-0-T11527-A19888-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PCPR"/> <xs:enumeration value="OBS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActClassCareProvisionProcedure"> <xs:annotation> <xs:documentation>abstDomain: A19889 (C-0-T11527-A19889-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PCPR"/> <xs:enumeration value="PROC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActClassDocumentEntryAct"> <xs:annotation> <xs:documentation>abstDomain: A19599 (C-0-T11527-A19599-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ACCM"/> <xs:enumeration value="ACT"/> <xs:enumeration value="PCPR"/> <xs:enumeration value="CTTEVENT"/> <xs:enumeration value="CONS"/> <xs:enumeration value="INC"/> <xs:enumeration value="INFRM"/> <xs:enumeration value="REG"/> <xs:enumeration value="SPCTRT"/> <xs:enumeration value="TRNS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActClassDocumentEntryOrganizer"> <xs:annotation> <xs:documentation>abstDomain: A19598 (C-0-T11527-A19598-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CLUSTER"/> <xs:enumeration value="BATTERY"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActOrderableOrBillable"> <xs:annotation> <xs:documentation>abstDomain: A19822 (C-0-T11527-A19822-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ACCM"/> <xs:enumeration value="PCPR"/> <xs:enumeration value="ENC"/> <xs:enumeration value="SBADM"/> <xs:enumeration value="TRNS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_LabProcessClassCodes"> <xs:annotation> <xs:documentation>abstDomain: A19657 (C-0-T11527-A19657-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ACSN"/> <xs:enumeration value="CONTREG"/> <xs:enumeration value="PROC"/> <xs:enumeration value="SPCTRT"/> <xs:enumeration value="TRNS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActClassAccession"> <xs:annotation> <xs:documentation>vocSet: O20195 (C-0-O20195-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassAccommodation"> <xs:annotation> <xs:documentation>vocSet: O20193 (C-0-O20193-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassAccount"> <xs:annotation> <xs:documentation>vocSet: O20194 (C-0-O20194-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassAcquisitionExposure"> <xs:annotation> <xs:documentation>vocSet: O20198 (C-0-O20198-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassAction"> <xs:annotation> <xs:documentation>vocSet: O20196 (C-0-O20196-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassBattery"> <xs:annotation> <xs:documentation>vocSet: O20200 (C-0-O20200-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassBioSequence"> <xs:annotation> <xs:documentation>vocSet: O20247 (C-0-O20247-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassBioSequenceVariation"> <xs:annotation> <xs:documentation>vocSet: O20248 (C-0-O20248-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassBoundedRoi"> <xs:annotation> <xs:documentation>vocSet: O20242 (C-0-O20242-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassCategory"> <xs:annotation> <xs:documentation>vocSet: O20201 (C-0-O20201-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassCdaLevelOneClinicalDocument"> <xs:annotation> <xs:documentation>vocSet: O20202 (C-0-O20202-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassClinicalTrial"> <xs:annotation> <xs:documentation>vocSet: O20203 (C-0-O20203-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassClinicalTrialTimepointEvent"> <xs:annotation> <xs:documentation>vocSet: O20209 (C-0-O20209-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassCluster"> <xs:annotation> <xs:documentation>vocSet: O20204 (C-0-O20204-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassConditionNode"> <xs:annotation> <xs:documentation>vocSet: O20205 (C-0-O20205-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassConsent"> <xs:annotation> <xs:documentation>vocSet: O20206 (C-0-O20206-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassContainerRegistration"> <xs:annotation> <xs:documentation>vocSet: O20207 (C-0-O20207-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassCorrelatedObservationSequences"> <xs:annotation> <xs:documentation>vocSet: O20230 (C-0-O20230-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassCoverage"> <xs:annotation> <xs:documentation>vocSet: O20208 (C-0-O20208-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassDetectedIssue"> <xs:annotation> <xs:documentation>vocSet: O20199 (C-0-O20199-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassDeterminantPeptide"> <xs:annotation> <xs:documentation>vocSet: O20210 (C-0-O20210-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassDiagnosticImage"> <xs:annotation> <xs:documentation>vocSet: O20211 (C-0-O20211-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassDiet"> <xs:annotation> <xs:documentation>vocSet: O20212 (C-0-O20212-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassDisciplinaryAction"> <xs:annotation> <xs:documentation>vocSet: O20213 (C-0-O20213-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassDocumentBody"> <xs:annotation> <xs:documentation>vocSet: O20214 (C-0-O20214-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassDocumentSection"> <xs:annotation> <xs:documentation>vocSet: O20215 (C-0-O20215-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassElectronicHealthRecord"> <xs:annotation> <xs:documentation>vocSet: O20216 (C-0-O20216-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassEncounter"> <xs:annotation> <xs:documentation>vocSet: O20217 (C-0-O20217-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassExpressionLevel"> <xs:annotation> <xs:documentation>vocSet: O20218 (C-0-O20218-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassFinancialAdjudication"> <xs:annotation> <xs:documentation>vocSet: O20197 (C-0-O20197-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassFinancialTransaction"> <xs:annotation> <xs:documentation>vocSet: O20263 (C-0-O20263-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassFolder"> <xs:annotation> <xs:documentation>vocSet: O20219 (C-0-O20219-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassIncident"> <xs:annotation> <xs:documentation>vocSet: O20220 (C-0-O20220-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassInform"> <xs:annotation> <xs:documentation>vocSet: O20222 (C-0-O20222-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassInformation"> <xs:annotation> <xs:documentation>vocSet: O20221 (C-0-O20221-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassInvestigation"> <xs:annotation> <xs:documentation>vocSet: O20224 (C-0-O20224-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassInvoiceElement"> <xs:annotation> <xs:documentation>vocSet: O20223 (C-0-O20223-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassJurisdictionalPolicy"> <xs:annotation> <xs:documentation>vocSet: O20225 (C-0-O20225-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassLeftLateralDecubitus"> <xs:annotation> <xs:documentation>vocSet: O20227 (C-0-O20227-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassLocus"> <xs:annotation> <xs:documentation>vocSet: O20228 (C-0-O20228-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassMonitoringProgram"> <xs:annotation> <xs:documentation>vocSet: O20229 (C-0-O20229-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassOrganizationalPolicy"> <xs:annotation> <xs:documentation>vocSet: O20231 (C-0-O20231-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassOutbreak"> <xs:annotation> <xs:documentation>vocSet: O20232 (C-0-O20232-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassOverlayRoi"> <xs:annotation> <xs:documentation>vocSet: O20243 (C-0-O20243-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassPhenotype"> <xs:annotation> <xs:documentation>vocSet: O20234 (C-0-O20234-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassPolypeptide"> <xs:annotation> <xs:documentation>vocSet: O20235 (C-0-O20235-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassPositionAccuracy"> <xs:annotation> <xs:documentation>vocSet: O20236 (C-0-O20236-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassPositionCoordinate"> <xs:annotation> <xs:documentation>vocSet: O20237 (C-0-O20237-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassProne"> <xs:annotation> <xs:documentation>vocSet: O20238 (C-0-O20238-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassRegistration"> <xs:annotation> <xs:documentation>vocSet: O20239 (C-0-O20239-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassReverseTrendelenburg"> <xs:annotation> <xs:documentation>vocSet: O20244 (C-0-O20244-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassReview"> <xs:annotation> <xs:documentation>vocSet: O20240 (C-0-O20240-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassRightLateralDecubitus"> <xs:annotation> <xs:documentation>vocSet: O20241 (C-0-O20241-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassScopeOfPracticePolicy"> <xs:annotation> <xs:documentation>vocSet: O20246 (C-0-O20246-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassSemiFowlers"> <xs:annotation> <xs:documentation>vocSet: O20249 (C-0-O20249-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassSitting"> <xs:annotation> <xs:documentation>vocSet: O20250 (C-0-O20250-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassSpecimenCollection"> <xs:annotation> <xs:documentation>vocSet: O19666 (C-0-O19666-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassSpecimenObservation"> <xs:annotation> <xs:documentation>vocSet: O20251 (C-0-O20251-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassSpecimenTreatment"> <xs:annotation> <xs:documentation>vocSet: O20252 (C-0-O20252-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassStandardOfPracticePolicy"> <xs:annotation> <xs:documentation>vocSet: O20254 (C-0-O20254-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassStanding"> <xs:annotation> <xs:documentation>vocSet: O20255 (C-0-O20255-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassStateTransitionControl"> <xs:annotation> <xs:documentation>vocSet: O20253 (C-0-O20253-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassStorage"> <xs:annotation> <xs:documentation>vocSet: T19664 (C-0-T19664-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassSubstanceAdministration"> <xs:annotation> <xs:documentation>vocSet: O20245 (C-0-O20245-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassSubstitution"> <xs:annotation> <xs:documentation>vocSet: O20256 (C-0-O20256-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassTopic"> <xs:annotation> <xs:documentation>vocSet: O20258 (C-0-O20258-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassTransfer"> <xs:annotation> <xs:documentation>vocSet: O20260 (C-0-O20260-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassTransmissionExposure"> <xs:annotation> <xs:documentation>vocSet: O20257 (C-0-O20257-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassTransportation"> <xs:annotation> <xs:documentation>vocSet: O20261 (C-0-O20261-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassTrendelenburg"> <xs:annotation> <xs:documentation>vocSet: O20259 (C-0-O20259-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassVerification"> <xs:annotation> <xs:documentation>vocSet: O20262 (C-0-O20262-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActClassWorkingList"> <xs:annotation> <xs:documentation>vocSet: O20226 (C-0-O20226-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActCode"> <xs:annotation> <xs:documentation>vocSet: T13953 (C-0-T13953-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActCareProvisionCode ActClaimAttachmentCode ActCognitiveProfessionalServiceCode ActConsentType ActInformationAccessCode ActInformationCategoryCode ActInjuryCode ActInvoicePaymentCode ActNonObservationIndicationCode ActProcedureCode ActTaskCode ActTransportationModeCode EPSG-GeodeticParameterDataset ExternallyDefinedActCodes HL7DefinedActCodes IndividualCaseSafetyReportCriteria IndividualCaseSafetyReportProductCharacteristic ObservationType SCDHEC-GISSpatialAccuracyTiers x_ActBillableCode x_LabProcessCodes"/> </xs:simpleType> <xs:simpleType name="ActCareProvisionCode"> <xs:annotation> <xs:documentation>abstDomain: A19789 (C-0-T13953-A19789-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActCredentialedCareCode ActEncounterCode cs"/> </xs:simpleType> <xs:simpleType name="ActCredentialedCareCode"> <xs:annotation> <xs:documentation>abstDomain: A19790 (C-0-T13953-A19789-A19790-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActCredentialedCareProvisionPersonCode ActCredentialedCareProvisionProgramCode cs"/> </xs:simpleType> <xs:simpleType name="ActCredentialedCareProvisionPersonCode"> <xs:annotation> <xs:documentation>abstDomain: A19791 (C-0-T13953-A19789-A19790-A19791-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CPGC"/> <xs:enumeration value="CAMC"/> <xs:enumeration value="CAIC"/> <xs:enumeration value="CACC"/> <xs:enumeration value="CAPC"/> <xs:enumeration value="CANC"/> <xs:enumeration value="CBGC"/> <xs:enumeration value="CCCC"/> <xs:enumeration value="CCGC"/> <xs:enumeration value="CMGC"/> <xs:enumeration value="CCPC"/> <xs:enumeration value="CCSC"/> <xs:enumeration value="CDEC"/> <xs:enumeration value="CDRC"/> <xs:enumeration value="CEMC"/> <xs:enumeration value="CFPC"/> <xs:enumeration value="CIMC"/> <xs:enumeration value="CNSC"/> <xs:enumeration value="CNEC"/> <xs:enumeration value="CNQC"/> <xs:enumeration value="CNMC"/> <xs:enumeration value="COGC"/> <xs:enumeration value="COMC"/> <xs:enumeration value="COPC"/> <xs:enumeration value="COSC"/> <xs:enumeration value="COTC"/> <xs:enumeration value="CPEC"/> <xs:enumeration value="CPRC"/> <xs:enumeration value="CPSC"/> <xs:enumeration value="CPYC"/> <xs:enumeration value="CPHC"/> <xs:enumeration value="CROC"/> <xs:enumeration value="CRPC"/> <xs:enumeration value="CSUC"/> <xs:enumeration value="CTSC"/> <xs:enumeration value="CURC"/> <xs:enumeration value="CVSC"/> <xs:enumeration value="LGPC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActCredentialedCareProvisionProgramCode"> <xs:annotation> <xs:documentation>abstDomain: A19792 (C-0-T13953-A19789-A19790-A19792-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AAMC"/> <xs:enumeration value="AALC"/> <xs:enumeration value="ABHC"/> <xs:enumeration value="ACAC"/> <xs:enumeration value="AHOC"/> <xs:enumeration value="ACHC"/> <xs:enumeration value="ALTC"/> <xs:enumeration value="AOSC"/> <xs:enumeration value="CACS"/> <xs:enumeration value="CAMI"/> <xs:enumeration value="CAST"/> <xs:enumeration value="CBAR"/> <xs:enumeration value="CCAR"/> <xs:enumeration value="COPD"/> <xs:enumeration value="CCAD"/> <xs:enumeration value="CDEP"/> <xs:enumeration value="CDIA"/> <xs:enumeration value="CDGD"/> <xs:enumeration value="CEPI"/> <xs:enumeration value="CFEL"/> <xs:enumeration value="CHFC"/> <xs:enumeration value="CHRO"/> <xs:enumeration value="CHYP"/> <xs:enumeration value="CMIH"/> <xs:enumeration value="CMSC"/> <xs:enumeration value="CONC"/> <xs:enumeration value="CORT"/> <xs:enumeration value="COJR"/> <xs:enumeration value="CPAD"/> <xs:enumeration value="CPND"/> <xs:enumeration value="CPST"/> <xs:enumeration value="CSIC"/> <xs:enumeration value="CSLD"/> <xs:enumeration value="CSPT"/> <xs:enumeration value="CSDM"/> <xs:enumeration value="CTBU"/> <xs:enumeration value="CVDC"/> <xs:enumeration value="CWOH"/> <xs:enumeration value="CWMA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActClaimAttachmentCode"> <xs:annotation> <xs:documentation>abstDomain: A19672 (C-0-T13953-A19672-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActConsentType"> <xs:annotation> <xs:documentation>abstDomain: A19897 (C-0-T13953-A19897-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActInformationAccess ActResearchInformationAccess"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="ICOL"/> <xs:enumeration value="IDSCL"/> <xs:enumeration value="IRDSCL"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActInformationAccess"> <xs:annotation> <xs:documentation>specDomain: S22200 (C-0-T13953-A19897-S22200-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="INFA"/> <xs:enumeration value="INFASO"/> <xs:enumeration value="INFAO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActResearchInformationAccess"> <xs:annotation> <xs:documentation>specDomain: S22206 (C-0-T13953-A19897-S22206-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="RESEARCH"/> <xs:enumeration value="RSDID"/> <xs:enumeration value="RSREID"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActInformationAccessCode"> <xs:annotation> <xs:documentation>abstDomain: A19910 (C-0-T13953-A19910-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ACADR"/> <xs:enumeration value="ACALLG"/> <xs:enumeration value="ACOBS"/> <xs:enumeration value="ACDEMO"/> <xs:enumeration value="ACIMMUN"/> <xs:enumeration value="ACLAB"/> <xs:enumeration value="ACMEDC"/> <xs:enumeration value="ACMED"/> <xs:enumeration value="ACPOLPRG"/> <xs:enumeration value="ACPSERV"/> <xs:enumeration value="ACPROV"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActInformationCategoryCode"> <xs:annotation> <xs:documentation>abstDomain: A19752 (C-0-T13953-A19752-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ALLGCAT"/> <xs:enumeration value="COBSCAT"/> <xs:enumeration value="DEMOCAT"/> <xs:enumeration value="DICAT"/> <xs:enumeration value="IMMUCAT"/> <xs:enumeration value="LABCAT"/> <xs:enumeration value="MEDCCAT"/> <xs:enumeration value="RXCAT"/> <xs:enumeration value="PSVCCAT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActInvoicePaymentCode"> <xs:annotation> <xs:documentation>abstDomain: A19673 (C-0-T13953-A19673-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="BONUS"/> <xs:enumeration value="CFWD"/> <xs:enumeration value="EPYMT"/> <xs:enumeration value="EDU"/> <xs:enumeration value="GARN"/> <xs:enumeration value="PINV"/> <xs:enumeration value="PPRD"/> <xs:enumeration value="PROA"/> <xs:enumeration value="RECOV"/> <xs:enumeration value="RETRO"/> <xs:enumeration value="INVOICE"/> <xs:enumeration value="TRAN"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActNonObservationIndicationCode"> <xs:annotation> <xs:documentation>abstDomain: A19778 (C-0-T13953-A19778-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IND02"/> <xs:enumeration value="IND01"/> <xs:enumeration value="IND05"/> <xs:enumeration value="IND03"/> <xs:enumeration value="IND04"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActTaskCode"> <xs:annotation> <xs:documentation>abstDomain: A19846 (C-0-T13953-A19846-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActTaskOrderEntryCode ActTaskPatientDocumentationCode ActTaskPatientInformationReviewCode cs"/> </xs:simpleType> <xs:simpleType name="ActTaskOrderEntryCode"> <xs:annotation> <xs:documentation>specDomain: S22048 (C-0-T13953-A19846-S22048-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="OE"/> <xs:enumeration value="LABOE"/> <xs:enumeration value="MEDOE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActTaskPatientDocumentationCode"> <xs:annotation> <xs:documentation>specDomain: S22067 (C-0-T13953-A19846-S22067-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActTaskClinicalNoteEntryCode"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="PATDOC"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActTaskClinicalNoteEntryCode"> <xs:annotation> <xs:documentation>specDomain: S22068 (C-0-T13953-A19846-S22067-S22068-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CLINNOTEE"/> <xs:enumeration value="DIAGLISTE"/> <xs:enumeration value="DISCHSUME"/> <xs:enumeration value="PATREPE"/> <xs:enumeration value="PROBLISTE"/> <xs:enumeration value="RADREPE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActTaskPatientInformationReviewCode"> <xs:annotation> <xs:documentation>specDomain: S22051 (C-0-T13953-A19846-S22051-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActTaskClinicalNoteReviewCode ActTaskMedicationListReviewCode ActTaskMicrobiologyResultsReviewCode ActTaskRiskAssessmentInstrumentCode"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="PATINFO"/> <xs:enumeration value="DIAGLISTREV"/> <xs:enumeration value="LABRREV"/> <xs:enumeration value="OREV"/> <xs:enumeration value="PATREPREV"/> <xs:enumeration value="PROBLISTREV"/> <xs:enumeration value="RADREPREV"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActTaskClinicalNoteReviewCode"> <xs:annotation> <xs:documentation>specDomain: S22065 (C-0-T13953-A19846-S22051-S22065-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CLINNOTEREV"/> <xs:enumeration value="DISCHSUMREV"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActTaskMedicationListReviewCode"> <xs:annotation> <xs:documentation>specDomain: S22053 (C-0-T13953-A19846-S22051-S22053-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="MLREV"/> <xs:enumeration value="MARWLREV"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActTaskMicrobiologyResultsReviewCode"> <xs:annotation> <xs:documentation>specDomain: S22056 (C-0-T13953-A19846-S22051-S22056-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="MICRORREV"/> <xs:enumeration value="MICROORGRREV"/> <xs:enumeration value="MICROSENSRREV"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActTaskRiskAssessmentInstrumentCode"> <xs:annotation> <xs:documentation>specDomain: S22063 (C-0-T13953-A19846-S22051-S22063-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="RISKASSESS"/> <xs:enumeration value="FALLRISK"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ExternallyDefinedActCodes"> <xs:annotation> <xs:documentation>abstDomain: A16493 (C-0-T13953-A16493-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DocumentSectionType DocumentType cs"/> </xs:simpleType> <xs:simpleType name="DocumentSectionType"> <xs:annotation> <xs:documentation>abstDomain: A10871 (C-0-T13953-A16493-A10871-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="DocumentType"> <xs:annotation> <xs:documentation>abstDomain: A10870 (C-0-T13953-A16493-A10870-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActIdentityDocumentCode ActMedicationDocumentCode cs"/> </xs:simpleType> <xs:simpleType name="ActIdentityDocumentCode"> <xs:annotation> <xs:documentation>abstDomain: A19917 (C-0-T13953-A16493-A10870-A19917-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActMedicationDocumentCode"> <xs:annotation> <xs:documentation>abstDomain: A19723 (C-0-T13953-A16493-A10870-A19723-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="HL7DefinedActCodes"> <xs:annotation> <xs:documentation>abstDomain: A13954 (C-0-T13953-A13954-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActAccountCode ActAdjudicationCode ActAdjudicationGroupCode ActAdjudicationInformationCode ActAdjudicationResultActionCode ActBillableModifierCode ActBillableTreatmentPlanCode ActBillingArrangementCode ActBoundedROICode ActContainerRegistrationCode ActControlVariable ActCoverageConfirmationCode ActCoverageLimitCode ActCoverageTypeCode ActDetectedIssueCode ActDetectedIssueManagementCode ActDietCode ActDisciplinaryActionCode ActEncounterAccommodationCode ActExposureCode ActFinancialTransactionCode ActIncidentCode ActInformationAccessContextCode ActInvoiceElementCode ActInvoiceElementSummaryCode ActInvoiceOverrideCode ActListCode ActMonitoringProtocolCode ActObservationVerificationType ActOrderCode ActPaymentCode ActPharmacySupplyType ActPolicyType ActPrivilegeCategorization ActProcedureCode ActProductAcquisitionCode ActSpecObsCode ActSpecimenTreatmentCode ActSubstanceAdminSubstitutionCode ActSubstanceAdministrationCode AdvanceBeneficiaryNoticeType CanadianActProcedureCode HL7TriggerEventCode ROIOverlayShape x_ActFinancialProductAcquisitionCode"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="_ActClaimAttachmentCode"/> <xs:enumeration value="_ActRegistryCode"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActAccountCode"> <xs:annotation> <xs:documentation>abstDomain: A14809 (C-0-T13953-A13954-A14809-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CreditCard"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="CASH"/> <xs:enumeration value="ACCTRECEIVABLE"/> <xs:enumeration value="PBILLACCT"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="CreditCard"> <xs:annotation> <xs:documentation>abstDomain: A14811 (C-0-T13953-A13954-A14809-A14811-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AE"/> <xs:enumeration value="DN"/> <xs:enumeration value="DV"/> <xs:enumeration value="MC"/> <xs:enumeration value="V"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActAdjudicationCode"> <xs:annotation> <xs:documentation>abstDomain: A17616 (C-0-T13953-A13954-A17616-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AdjudicatedWithAdjustments"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="AR"/> <xs:enumeration value="AS"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="AdjudicatedWithAdjustments"> <xs:annotation> <xs:documentation>specDomain: S19347 (C-0-T13953-A13954-A17616-S19347-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AA"/> <xs:enumeration value="ANF"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActAdjudicationGroupCode"> <xs:annotation> <xs:documentation>abstDomain: A17968 (C-0-T13953-A13954-A17968-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CONT"/> <xs:enumeration value="DAY"/> <xs:enumeration value="LOC"/> <xs:enumeration value="MONTH"/> <xs:enumeration value="PERIOD"/> <xs:enumeration value="PROV"/> <xs:enumeration value="WEEK"/> <xs:enumeration value="YEAR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActAdjudicationInformationCode"> <xs:annotation> <xs:documentation>abstDomain: A19383 (C-0-T13953-A13954-A19383-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActAdjudicationResultActionCode"> <xs:annotation> <xs:documentation>abstDomain: A17472 (C-0-T13953-A13954-A17472-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DISPLAY"/> <xs:enumeration value="FORM"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActBillableModifierCode"> <xs:annotation> <xs:documentation>abstDomain: A19821 (C-0-T13953-A13954-A19821-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CPTM"/> <xs:enumeration value="HCPCSA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActBillableTreatmentPlanCode"> <xs:annotation> <xs:documentation>abstDomain: A19440 (C-0-T13953-A13954-A19440-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActBillingArrangementCode"> <xs:annotation> <xs:documentation>abstDomain: A17478 (C-0-T13953-A13954-A17478-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="FirstFillPartialPharmacySupplyType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="BLK"/> <xs:enumeration value="CAP"/> <xs:enumeration value="CONTF"/> <xs:enumeration value="FINBILL"/> <xs:enumeration value="ROST"/> <xs:enumeration value="SESS"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActBoundedROICode"> <xs:annotation> <xs:documentation>abstDomain: A17896 (C-0-T13953-A13954-A17896-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ROIFS"/> <xs:enumeration value="ROIPS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActContainerRegistrationCode"> <xs:annotation> <xs:documentation>abstDomain: A14058 (C-0-T13953-A13954-A14058-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="X"/> <xs:enumeration value="ID"/> <xs:enumeration value="IP"/> <xs:enumeration value="O"/> <xs:enumeration value="L"/> <xs:enumeration value="M"/> <xs:enumeration value="R"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActControlVariable"> <xs:annotation> <xs:documentation>abstDomain: A16857 (C-0-T13953-A13954-A16857-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ECGControlVariable"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="AUTO"/> <xs:enumeration value="ENDC"/> <xs:enumeration value="REFLEX"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ECGControlVariable"> <xs:annotation> <xs:documentation>abstDomain: A19331 (C-0-T13953-A13954-A16857-A19331-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ECGControlVariableMDC cs"/> </xs:simpleType> <xs:simpleType name="ECGControlVariableMDC"> <xs:annotation> <xs:documentation>abstDomain: A19336 (C-0-T13953-A13954-A16857-A19331-A19336-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActCoverageConfirmationCode"> <xs:annotation> <xs:documentation>abstDomain: A17487 (C-0-T13953-A13954-A17487-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActCoverageAuthorizationConfirmationCode ActCoverageEligibilityConfirmationCode cs"/> </xs:simpleType> <xs:simpleType name="ActCoverageAuthorizationConfirmationCode"> <xs:annotation> <xs:documentation>abstDomain: A17491 (C-0-T13953-A13954-A17487-A17491-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AUTH"/> <xs:enumeration value="NAUTH"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActCoverageEligibilityConfirmationCode"> <xs:annotation> <xs:documentation>abstDomain: A17488 (C-0-T13953-A13954-A17487-A17488-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActCoverageLimitCode"> <xs:annotation> <xs:documentation>abstDomain: A17496 (C-0-T13953-A13954-A17496-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActCoverageMaximaCodes ActCoverageQuantityLimitCode ActCoveredPartyLimitCode cs"/> </xs:simpleType> <xs:simpleType name="ActCoverageMaximaCodes"> <xs:annotation> <xs:documentation>specDomain: S22239 (C-0-T13953-A13954-A17496-S22239-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="COVMX"/> <xs:enumeration value="LFEMX"/> <xs:enumeration value="PRDMX"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActCoverageQuantityLimitCode"> <xs:annotation> <xs:documentation>abstDomain: A19933 (C-0-T13953-A13954-A17496-A19933-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="NETAMT"/> <xs:enumeration value="NETAMT"/> <xs:enumeration value="UNITPRICE"/> <xs:enumeration value="UNITPRICE"/> <xs:enumeration value="UNITQTY"/> <xs:enumeration value="UNITQTY"/> <xs:enumeration value="COVPRD"/> <xs:enumeration value="COVPRD"/> <xs:enumeration value="LFEMX"/> <xs:enumeration value="PRDMX"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActCoveredPartyLimitCode"> <xs:annotation> <xs:documentation>abstDomain: A19934 (C-0-T13953-A13954-A17496-A19934-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActCoveragePartyLimitGroupCode cs"/> </xs:simpleType> <xs:simpleType name="ActCoveragePartyLimitGroupCode"> <xs:annotation> <xs:documentation>abstDomain: A19935 (C-0-T13953-A13954-A17496-A19934-A19935-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActCoverageTypeCode"> <xs:annotation> <xs:documentation>abstDomain: A19855 (C-0-T13953-A13954-A19855-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActInsurancePolicyCode ActInsuranceTypeCode ActProgramTypeCode cs"/> </xs:simpleType> <xs:simpleType name="ActInsurancePolicyCode"> <xs:annotation> <xs:documentation>abstDomain: A19350 (C-0-T13953-A13954-A19855-A19350-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActInsurancePolicyCodeAutomobileByBOT ActInsurancePolicyCodePublicHealthcareByBOT"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="EHCPOL"/> <xs:enumeration value="HSAPOL"/> <xs:enumeration value="WCBPOL"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActInsurancePolicyCodeAutomobileByBOT"> <xs:annotation> <xs:documentation>specDomain: S19721 (C-0-T13953-A13954-A19855-A19350-S19721-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AUTOPOL"/> <xs:enumeration value="COL"/> <xs:enumeration value="UNINSMOT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActInsurancePolicyCodePublicHealthcareByBOT"> <xs:annotation> <xs:documentation>specDomain: S19718 (C-0-T13953-A13954-A19855-A19350-S19718-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActInsurancePolicyCodeDiseaseProgramByBOT ActInsurancePolicyCodeSubsidizedHealthProgramByBOT"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="PUBLICPOL"/> <xs:enumeration value="DENTPRG"/> <xs:enumeration value="MANDPOL"/> <xs:enumeration value="MENTPRG"/> <xs:enumeration value="SAFNET"/> <xs:enumeration value="SUBPRG"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActInsurancePolicyCodeDiseaseProgramByBOT"> <xs:annotation> <xs:documentation>specDomain: S22133 (C-0-T13953-A13954-A19855-A19350-S19718-S22133-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DISEASEPRG"/> <xs:enumeration value="HIVAIDS"/> <xs:enumeration value="CANPRG"/> <xs:enumeration value="ENDRENAL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActInsurancePolicyCodeSubsidizedHealthProgramByBOT"> <xs:annotation> <xs:documentation>specDomain: S22137 (C-0-T13953-A13954-A19855-A19350-S19718-S22137-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SUBSIDIZ"/> <xs:enumeration value="SUBSIDMC"/> <xs:enumeration value="SUBSUPP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActInsuranceTypeCode"> <xs:annotation> <xs:documentation>abstDomain: A19856 (C-0-T13953-A13954-A19855-A19856-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActHealthInsuranceTypeCode AutomobileInsurancePolicy LifeInsurancePolicy"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="DIS"/> <xs:enumeration value="EWB"/> <xs:enumeration value="FLEXP"/> <xs:enumeration value="PNC"/> <xs:enumeration value="REI"/> <xs:enumeration value="SURPL"/> <xs:enumeration value="UMBRL"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActHealthInsuranceTypeCode"> <xs:annotation> <xs:documentation>abstDomain: A19857 (C-0-T13953-A13954-A19855-A19856-A19857-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ManagedCarePolicy"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="DENTAL"/> <xs:enumeration value="DISEASE"/> <xs:enumeration value="DRUGPOL"/> <xs:enumeration value="EHCPOL"/> <xs:enumeration value="EHCPOL"/> <xs:enumeration value="HIP"/> <xs:enumeration value="HSAPOL"/> <xs:enumeration value="HSAPOL"/> <xs:enumeration value="LTC"/> <xs:enumeration value="MENTPOL"/> <xs:enumeration value="POS"/> <xs:enumeration value="SUBPOL"/> <xs:enumeration value="VISPOL"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ManagedCarePolicy"> <xs:annotation> <xs:documentation>specDomain: S22147 (C-0-T13953-A13954-A19855-A19856-A19857-S22147-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="MCPOL"/> <xs:enumeration value="HMO"/> <xs:enumeration value="POS"/> <xs:enumeration value="PPO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="AutomobileInsurancePolicy"> <xs:annotation> <xs:documentation>specDomain: S19721 (C-0-T13953-A13954-A19855-A19856-S19721-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AUTOPOL"/> <xs:enumeration value="COL"/> <xs:enumeration value="UNINSMOT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="LifeInsurancePolicy"> <xs:annotation> <xs:documentation>specDomain: S22148 (C-0-T13953-A13954-A19855-A19856-S22148-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="LIFE"/> <xs:enumeration value="ANNU"/> <xs:enumeration value="TLIFE"/> <xs:enumeration value="ULIFE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActProgramTypeCode"> <xs:annotation> <xs:documentation>abstDomain: A19858 (C-0-T13953-A13954-A19855-A19858-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="PublicHealthcareProgram"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="CHAR"/> <xs:enumeration value="CRIME"/> <xs:enumeration value="EAP"/> <xs:enumeration value="GOVEMP"/> <xs:enumeration value="HIRISK"/> <xs:enumeration value="IND"/> <xs:enumeration value="MILITARY"/> <xs:enumeration value="RETIRE"/> <xs:enumeration value="SOCIAL"/> <xs:enumeration value="VET"/> <xs:enumeration value="WCBPOL"/> <xs:enumeration value="WCBPOL"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="PublicHealthcareProgram"> <xs:annotation> <xs:documentation>specDomain: S19718 (C-0-T13953-A13954-A19855-A19858-S19718-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DiseaseProgram SubsidizedHealthProgram"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="PUBLICPOL"/> <xs:enumeration value="DENTPRG"/> <xs:enumeration value="MANDPOL"/> <xs:enumeration value="MENTPRG"/> <xs:enumeration value="SAFNET"/> <xs:enumeration value="SUBPRG"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DiseaseProgram"> <xs:annotation> <xs:documentation>specDomain: S22133 (C-0-T13953-A13954-A19855-A19858-S19718-S22133-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DISEASEPRG"/> <xs:enumeration value="HIVAIDS"/> <xs:enumeration value="CANPRG"/> <xs:enumeration value="ENDRENAL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SubsidizedHealthProgram"> <xs:annotation> <xs:documentation>specDomain: S22137 (C-0-T13953-A13954-A19855-A19858-S19718-S22137-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SUBSIDIZ"/> <xs:enumeration value="SUBSIDMC"/> <xs:enumeration value="SUBSUPP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActDetectedIssueManagementCode"> <xs:annotation> <xs:documentation>abstDomain: A16695 (C-0-T13953-A13954-A16695-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActAdministrativeDetectedIssueManagementCode ActFinancialDetectedIssueManagementCode OtherActionTakenManagementCode SupplyAppropriateManagementCode TherapyAppropriateManagementCode cs"/> </xs:simpleType> <xs:simpleType name="ActAdministrativeDetectedIssueManagementCode"> <xs:annotation> <xs:documentation>abstDomain: A19431 (C-0-T13953-A13954-A16695-A19431-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AuthorizationIssueManagementCode cs"/> </xs:simpleType> <xs:simpleType name="AuthorizationIssueManagementCode"> <xs:annotation> <xs:documentation>abstDomain: A19619 (C-0-T13953-A13954-A16695-A19431-A19619-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EMAUTH"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActFinancialDetectedIssueManagementCode"> <xs:annotation> <xs:documentation>abstDomain: A19430 (C-0-T13953-A13954-A16695-A19430-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="OtherActionTakenManagementCode"> <xs:annotation> <xs:documentation>specDomain: S16703 (C-0-T13953-A13954-A16695-S16703-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="8"/> <xs:enumeration value="11"/> <xs:enumeration value="9"/> <xs:enumeration value="10"/> <xs:enumeration value="13"/> <xs:enumeration value="12"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SupplyAppropriateManagementCode"> <xs:annotation> <xs:documentation>specDomain: S16709 (C-0-T13953-A13954-A16695-S16709-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="14"/> <xs:enumeration value="18"/> <xs:enumeration value="15"/> <xs:enumeration value="16"/> <xs:enumeration value="17"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TherapyAppropriateManagementCode"> <xs:annotation> <xs:documentation>specDomain: S16696 (C-0-T13953-A13954-A16695-S16696-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ConsultedPrescriberManagementCode"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="1"/> <xs:enumeration value="2"/> <xs:enumeration value="4"/> <xs:enumeration value="19"/> <xs:enumeration value="7"/> <xs:enumeration value="3"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ConsultedPrescriberManagementCode"> <xs:annotation> <xs:documentation>specDomain: S16700 (C-0-T13953-A13954-A16695-S16696-S16700-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="5"/> <xs:enumeration value="6"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActDietCode"> <xs:annotation> <xs:documentation>abstDomain: A10376 (C-0-T13953-A13954-A10376-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="BR"/> <xs:enumeration value="DM"/> <xs:enumeration value="FAST"/> <xs:enumeration value="GF"/> <xs:enumeration value="LQ"/> <xs:enumeration value="LF"/> <xs:enumeration value="LP"/> <xs:enumeration value="LS"/> <xs:enumeration value="VLI"/> <xs:enumeration value="NF"/> <xs:enumeration value="N"/> <xs:enumeration value="PAR"/> <xs:enumeration value="PAF"/> <xs:enumeration value="RD"/> <xs:enumeration value="SCH"/> <xs:enumeration value="T"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActDisciplinaryActionCode"> <xs:annotation> <xs:documentation>abstDomain: A19642 (C-0-T13953-A13954-A19642-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActExposureCode"> <xs:annotation> <xs:documentation>abstDomain: A19938 (C-0-T13953-A13954-A19938-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="HOMECARE"/> <xs:enumeration value="CONVEYNC"/> <xs:enumeration value="PLACE"/> <xs:enumeration value="SUBSTNCE"/> <xs:enumeration value="TRAVINT"/> <xs:enumeration value="CHLDCARE"/> <xs:enumeration value="HLTHCARE"/> <xs:enumeration value="PTNTCARE"/> <xs:enumeration value="HOSPPTNT"/> <xs:enumeration value="HOSPVSTR"/> <xs:enumeration value="HOUSEHLD"/> <xs:enumeration value="INMATE"/> <xs:enumeration value="INTIMATE"/> <xs:enumeration value="LTRMCARE"/> <xs:enumeration value="SCHOOL2"/> <xs:enumeration value="SOCIAL2"/> <xs:enumeration value="WORK2"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActFinancialTransactionCode"> <xs:annotation> <xs:documentation>abstDomain: A14804 (C-0-T13953-A13954-A14804-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CHRG"/> <xs:enumeration value="REV"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActIncidentCode"> <xs:annotation> <xs:documentation>abstDomain: A16508 (C-0-T13953-A13954-A16508-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActPatientSafetyIncidentCode"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="MVA"/> <xs:enumeration value="SCHOOL"/> <xs:enumeration value="SPT"/> <xs:enumeration value="WPA"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActPatientSafetyIncidentCode"> <xs:annotation> <xs:documentation>abstDomain: A19915 (C-0-T13953-A13954-A16508-A19915-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActInformationAccessContextCode"> <xs:annotation> <xs:documentation>abstDomain: A19928 (C-0-T13953-A13954-A19928-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="INFCON"/> <xs:enumeration value="INFDNG"/> <xs:enumeration value="INFPWR"/> <xs:enumeration value="INFEMER"/> <xs:enumeration value="INFCRT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActInvoiceElementCode"> <xs:annotation> <xs:documentation>abstDomain: A19397 (C-0-T13953-A13954-A19397-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActInvoiceAdjudicationPaymentCode ActInvoiceDetailCode ActInvoiceGroupCode cs"/> </xs:simpleType> <xs:simpleType name="ActInvoiceAdjudicationPaymentCode"> <xs:annotation> <xs:documentation>abstDomain: A19412 (C-0-T13953-A13954-A19397-A19412-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActInvoiceAdjudicationPaymentGroupCode ActInvoiceAdjudicationPaymentSummaryCode cs"/> </xs:simpleType> <xs:simpleType name="ActInvoiceAdjudicationPaymentGroupCode"> <xs:annotation> <xs:documentation>abstDomain: A19414 (C-0-T13953-A13954-A19397-A19412-A19414-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActInvoiceAdjudicationPaymentSummaryCode"> <xs:annotation> <xs:documentation>abstDomain: A19413 (C-0-T13953-A13954-A19397-A19412-A19413-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CONT"/> <xs:enumeration value="DAY"/> <xs:enumeration value="INVTYPE"/> <xs:enumeration value="LOC"/> <xs:enumeration value="MONTH"/> <xs:enumeration value="PAYEE"/> <xs:enumeration value="PAYOR"/> <xs:enumeration value="PERIOD"/> <xs:enumeration value="PROV"/> <xs:enumeration value="SENDAPP"/> <xs:enumeration value="WEEK"/> <xs:enumeration value="YEAR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActInvoiceDetailCode"> <xs:annotation> <xs:documentation>abstDomain: A19401 (C-0-T13953-A13954-A19397-A19401-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActInvoiceDetailClinicalProductCode ActInvoiceDetailClinicalServiceCode ActInvoiceDetailDrugProductCode ActInvoiceDetailGenericCode ActInvoiceDetailPreferredAccommodationCode CanadianActInvoiceDetailClinicalProductCode CanadianActInvoiceDetailClinicalServiceCode x_ActInvoiceDetailPharmacyCode x_ActInvoiceDetailPreferredAccommodationCode cs"/> </xs:simpleType> <xs:simpleType name="CanadianActInvoiceDetailClinicalProductCode"> <xs:annotation> <xs:documentation>abstDomain: A19432 (C-0-T13953-A13954-A19397-A19401-A19432-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="CanadianActInvoiceDetailClinicalServiceCode"> <xs:annotation> <xs:documentation>abstDomain: A19434 (C-0-T13953-A13954-A19397-A19401-A19434-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="x_ActInvoiceDetailPharmacyCode"> <xs:annotation> <xs:documentation>abstDomain: A19415 (C-0-T13953-A13954-A19397-A19401-A19415-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActInvoiceDetailClinicalProductCode ActInvoiceDetailClinicalServiceCode ActInvoiceDetailDrugProductCode ActInvoiceDetailGenericCode cs"/> </xs:simpleType> <xs:simpleType name="ActInvoiceDetailClinicalProductCode"> <xs:annotation> <xs:documentation>abstDomain: A19404 (C-0-T13953-A13954-A19397-A19401-A19415-A19404-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CPT4 UNSPSC cs"/> </xs:simpleType> <xs:simpleType name="UNSPSC"> <xs:annotation> <xs:documentation>abstDomain: A19883 (C-0-T13953-A13954-A19397-A19401-A19415-A19404-A19883-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActInvoiceDetailClinicalServiceCode"> <xs:annotation> <xs:documentation>abstDomain: A19405 (C-0-T13953-A13954-A19397-A19401-A19415-A19405-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CPT4 CPT5 HCPCS ICD10PCS ICD9PCS cs"/> </xs:simpleType> <xs:simpleType name="ActInvoiceDetailDrugProductCode"> <xs:annotation> <xs:documentation>abstDomain: A19402 (C-0-T13953-A13954-A19397-A19401-A19415-A19402-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="GTIN UPC cs"/> </xs:simpleType> <xs:simpleType name="GTIN"> <xs:annotation> <xs:documentation>abstDomain: A19885 (C-0-T13953-A13954-A19397-A19401-A19415-A19402-A19885-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="UPC"> <xs:annotation> <xs:documentation>abstDomain: A19884 (C-0-T13953-A13954-A19397-A19401-A19415-A19402-A19884-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActInvoiceDetailGenericCode"> <xs:annotation> <xs:documentation>abstDomain: A19407 (C-0-T13953-A13954-A19397-A19401-A19415-A19407-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActInvoiceDetailGenericAdjudicatorCode ActInvoiceDetailGenericModifierCode ActInvoiceDetailGenericProviderCode ActInvoiceDetailTaxCode cs"/> </xs:simpleType> <xs:simpleType name="ActInvoiceDetailGenericAdjudicatorCode"> <xs:annotation> <xs:documentation>abstDomain: A19411 (C-0-T13953-A13954-A19397-A19401-A19415-A19407-A19411-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="COIN"/> <xs:enumeration value="DEDUCTIBLE"/> <xs:enumeration value="COPAYMENT"/> <xs:enumeration value="PAY"/> <xs:enumeration value="SPEND"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActInvoiceDetailGenericModifierCode"> <xs:annotation> <xs:documentation>abstDomain: A19410 (C-0-T13953-A13954-A19397-A19401-A19415-A19407-A19410-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ISOL"/> <xs:enumeration value="AFTHRS"/> <xs:enumeration value="OOO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActInvoiceDetailGenericProviderCode"> <xs:annotation> <xs:documentation>abstDomain: A19408 (C-0-T13953-A13954-A19397-A19401-A19415-A19407-A19408-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CANCAPT"/> <xs:enumeration value="DSC"/> <xs:enumeration value="ESA"/> <xs:enumeration value="FFSTOP"/> <xs:enumeration value="FNLFEE"/> <xs:enumeration value="FRSTFEE"/> <xs:enumeration value="MARKUP"/> <xs:enumeration value="MISSAPT"/> <xs:enumeration value="PERMBNS"/> <xs:enumeration value="PERFEE"/> <xs:enumeration value="RESTOCK"/> <xs:enumeration value="TRAVEL"/> <xs:enumeration value="URGENT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActInvoiceDetailTaxCode"> <xs:annotation> <xs:documentation>abstDomain: A19409 (C-0-T13953-A13954-A19397-A19401-A19415-A19407-A19409-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="FST"/> <xs:enumeration value="HST"/> <xs:enumeration value="PST"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActInvoiceDetailPreferredAccommodationCode"> <xs:annotation> <xs:documentation>abstDomain: A19416 (C-0-T13953-A13954-A19397-A19401-A19416-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActInvoiceDetailPreferredAccommodationCode cs"/> </xs:simpleType> <xs:simpleType name="ActInvoiceDetailPreferredAccommodationCode"> <xs:annotation> <xs:documentation>abstDomain: A19406 (C-0-T13953-A13954-A19397-A19401-A19416-A19406-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActEncounterAccommodationCode cs"/> </xs:simpleType> <xs:simpleType name="ActInvoiceGroupCode"> <xs:annotation> <xs:documentation>abstDomain: A19398 (C-0-T13953-A13954-A19397-A19398-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActInvoiceInterGroupCode ActInvoiceRootGroupCode cs"/> </xs:simpleType> <xs:simpleType name="ActInvoiceInterGroupCode"> <xs:annotation> <xs:documentation>abstDomain: A19400 (C-0-T13953-A13954-A19397-A19398-A19400-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CPNDDRGING"/> <xs:enumeration value="CPNDINDING"/> <xs:enumeration value="CPNDSUPING"/> <xs:enumeration value="DRUGING"/> <xs:enumeration value="FRAMEING"/> <xs:enumeration value="LENSING"/> <xs:enumeration value="PRDING"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActInvoiceRootGroupCode"> <xs:annotation> <xs:documentation>abstDomain: A19399 (C-0-T13953-A13954-A19397-A19398-A19399-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="RXCINV"/> <xs:enumeration value="RXDINV"/> <xs:enumeration value="CPINV"/> <xs:enumeration value="CSPINV"/> <xs:enumeration value="CSINV"/> <xs:enumeration value="FININV"/> <xs:enumeration value="OHSINV"/> <xs:enumeration value="PAINV"/> <xs:enumeration value="SBFINV"/> <xs:enumeration value="VRXINV"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActInvoiceElementSummaryCode"> <xs:annotation> <xs:documentation>abstDomain: A17522 (C-0-T13953-A13954-A17522-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="InvoiceElementAdjudicated InvoiceElementPaid InvoiceElementSubmitted cs"/> </xs:simpleType> <xs:simpleType name="InvoiceElementAdjudicated"> <xs:annotation> <xs:documentation>abstDomain: A17530 (C-0-T13953-A13954-A17522-A17530-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ADNPPPELAT"/> <xs:enumeration value="ADNPPPELCT"/> <xs:enumeration value="ADNPPPMNAT"/> <xs:enumeration value="ADNPPPMNCT"/> <xs:enumeration value="ADNPSPELAT"/> <xs:enumeration value="ADNPSPELCT"/> <xs:enumeration value="ADNPSPMNAT"/> <xs:enumeration value="ADNPSPMNCT"/> <xs:enumeration value="ADNFPPELAT"/> <xs:enumeration value="ADNFPPELCT"/> <xs:enumeration value="ADNFPPMNAT"/> <xs:enumeration value="ADNFPPMNCT"/> <xs:enumeration value="ADNFSPELAT"/> <xs:enumeration value="ADNFSPELCT"/> <xs:enumeration value="ADNFSPMNAT"/> <xs:enumeration value="ADNFSPMNCT"/> <xs:enumeration value="ADPPPPELAT"/> <xs:enumeration value="ADPPPPELCT"/> <xs:enumeration value="ADPPPPMNAT"/> <xs:enumeration value="ADPPPPMNCT"/> <xs:enumeration value="ADPPSPELAT"/> <xs:enumeration value="ADPPSPELCT"/> <xs:enumeration value="ADPPSPMNAT"/> <xs:enumeration value="ADPPSPMNCT"/> <xs:enumeration value="ADRFPPELAT"/> <xs:enumeration value="ADRFPPELCT"/> <xs:enumeration value="ADRFPPMNAT"/> <xs:enumeration value="ADRFPPMNCT"/> <xs:enumeration value="ADRFSPELAT"/> <xs:enumeration value="ADRFSPELCT"/> <xs:enumeration value="ADRFSPMNAT"/> <xs:enumeration value="ADRFSPMNCT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="InvoiceElementPaid"> <xs:annotation> <xs:documentation>abstDomain: A17563 (C-0-T13953-A13954-A17522-A17563-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PDNPPPELAT"/> <xs:enumeration value="PDNPPPELCT"/> <xs:enumeration value="PDNPPPMNAT"/> <xs:enumeration value="PDNPPPMNCT"/> <xs:enumeration value="PDNPSPELAT"/> <xs:enumeration value="PDNPSPELCT"/> <xs:enumeration value="PDNPSPMNAT"/> <xs:enumeration value="PDNPSPMNCT"/> <xs:enumeration value="PDNFPPELAT"/> <xs:enumeration value="PDNFPPELCT"/> <xs:enumeration value="PDNFPPMNAT"/> <xs:enumeration value="PDNFPPMNCT"/> <xs:enumeration value="PDNFSPELAT"/> <xs:enumeration value="PDNFSPELCT"/> <xs:enumeration value="PDNFSPMNAT"/> <xs:enumeration value="PDNFSPMNCT"/> <xs:enumeration value="PDPPPPELAT"/> <xs:enumeration value="PDPPPPELCT"/> <xs:enumeration value="PDPPPPMNAT"/> <xs:enumeration value="PDPPPPMNCT"/> <xs:enumeration value="PDPPSPELAT"/> <xs:enumeration value="PDPPSPELCT"/> <xs:enumeration value="PDPPSPMNAT"/> <xs:enumeration value="PDPPSPMNCT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="InvoiceElementSubmitted"> <xs:annotation> <xs:documentation>abstDomain: A17523 (C-0-T13953-A13954-A17522-A17523-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SBBLELAT"/> <xs:enumeration value="SBBLELCT"/> <xs:enumeration value="SBNFELCT"/> <xs:enumeration value="SBNFELAT"/> <xs:enumeration value="SBPDELAT"/> <xs:enumeration value="SBPDELCT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActInvoiceOverrideCode"> <xs:annotation> <xs:documentation>abstDomain: A17590 (C-0-T13953-A13954-A17590-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="COVGE"/> <xs:enumeration value="PYRDELAY"/> <xs:enumeration value="EFORM"/> <xs:enumeration value="FAX"/> <xs:enumeration value="GFTH"/> <xs:enumeration value="LATE"/> <xs:enumeration value="MANUAL"/> <xs:enumeration value="ORTHO"/> <xs:enumeration value="OOJ"/> <xs:enumeration value="PAPER"/> <xs:enumeration value="PIE"/> <xs:enumeration value="REFNR"/> <xs:enumeration value="REPSERV"/> <xs:enumeration value="UNRELAT"/> <xs:enumeration value="VERBAUTH"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActListCode"> <xs:annotation> <xs:documentation>abstDomain: A19364 (C-0-T13953-A13954-A19364-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActMedicationList ActObservationList ActProcedureCategoryList ActTherapyDurationWorkingListCode cs"/> </xs:simpleType> <xs:simpleType name="ActMedicationList"> <xs:annotation> <xs:documentation>specDomain: S19976 (C-0-T13953-A13954-A19364-S19976-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="MEDLIST"/> <xs:enumeration value="CURMEDLIST"/> <xs:enumeration value="DISCMEDLIST"/> <xs:enumeration value="HISTMEDLIST"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActObservationList"> <xs:annotation> <xs:documentation>abstDomain: A19370 (C-0-T13953-A13954-A19364-A19370-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActConditionList"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="CARELIST"/> <xs:enumeration value="GOALLIST"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActConditionList"> <xs:annotation> <xs:documentation>specDomain: S21322 (C-0-T13953-A13954-A19364-A19370-S21322-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CONDLIST"/> <xs:enumeration value="INTOLIST"/> <xs:enumeration value="PROBLIST"/> <xs:enumeration value="RISKLIST"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActProcedureCategoryList"> <xs:annotation> <xs:documentation>abstDomain: A19847 (C-0-T13953-A13954-A19364-A19847-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActTherapyDurationWorkingListCode"> <xs:annotation> <xs:documentation>abstDomain: A19710 (C-0-T13953-A13954-A19364-A19710-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActMedicationTherapyDurationWorkingListCode cs"/> </xs:simpleType> <xs:simpleType name="ActMedicationTherapyDurationWorkingListCode"> <xs:annotation> <xs:documentation>abstDomain: A19788 (C-0-T13953-A13954-A19364-A19710-A19788-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PRN"/> <xs:enumeration value="CHRON"/> <xs:enumeration value="ONET"/> <xs:enumeration value="ACU"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActMonitoringProtocolCode"> <xs:annotation> <xs:documentation>abstDomain: A16231 (C-0-T13953-A13954-A16231-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ControlledSubstanceMonitoringProtocol"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="LU"/> <xs:enumeration value="SAC"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ControlledSubstanceMonitoringProtocol"> <xs:annotation> <xs:documentation>specDomain: S16232 (C-0-T13953-A13954-A16231-S16232-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DEADrugSchedule"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="CTLSUB"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DEADrugSchedule"> <xs:annotation> <xs:documentation>abstDomain: A19254 (C-0-T13953-A13954-A16231-S16232-A19254-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActObservationVerificationType"> <xs:annotation> <xs:documentation>abstDomain: A19794 (C-0-T13953-A13954-A19794-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActOrderCode"> <xs:annotation> <xs:documentation>abstDomain: A19586 (C-0-T13953-A13954-A19586-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActPaymentCode"> <xs:annotation> <xs:documentation>abstDomain: A17610 (C-0-T13953-A13954-A17610-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ACH"/> <xs:enumeration value="CHK"/> <xs:enumeration value="DDP"/> <xs:enumeration value="NON"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActPharmacySupplyType"> <xs:annotation> <xs:documentation>abstDomain: A16208 (C-0-T13953-A13954-A16208-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="EmergencyPharmacySupplyType FirstFillPharmacySupplyType RefillPharmacySupplyType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="DF"/> <xs:enumeration value="FS"/> <xs:enumeration value="MS"/> <xs:enumeration value="UD"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="EmergencyPharmacySupplyType"> <xs:annotation> <xs:documentation>specDomain: S16220 (C-0-T13953-A13954-A16208-S16220-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EM"/> <xs:enumeration value="SO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="FirstFillPharmacySupplyType"> <xs:annotation> <xs:documentation>specDomain: S16209 (C-0-T13953-A13954-A16208-S16209-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="FirstFillCompletePharmacySupplyType FirstFillPartialPharmacySupplyType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="FF"/> <xs:enumeration value="FFP"/> <xs:enumeration value="TF"/> <xs:enumeration value="TFS"/> <xs:enumeration value="FFPS"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="FirstFillCompletePharmacySupplyType"> <xs:annotation> <xs:documentation>specDomain: S16210 (C-0-T13953-A13954-A16208-S16209-S16210-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="FFC"/> <xs:enumeration value="FFCS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="FirstFillPartialPharmacySupplyType"> <xs:annotation> <xs:documentation>specDomain: S17479 (C-0-T13953-A13954-A16208-S16209-S17479-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="FFS"/> <xs:enumeration value="FFCS"/> <xs:enumeration value="TFS"/> <xs:enumeration value="FFPS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RefillPharmacySupplyType"> <xs:annotation> <xs:documentation>specDomain: S16215 (C-0-T13953-A13954-A16208-S16215-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RefillCompletePharmacySupplyType RefillFirstHerePharmacySupplyType RefillPartFillPharmacySupplyType RefillTrialBalancePharmacySupplyType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="RF"/> <xs:enumeration value="DF"/> <xs:enumeration value="UD"/> <xs:enumeration value="RFS"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RefillCompletePharmacySupplyType"> <xs:annotation> <xs:documentation>specDomain: S16216 (C-0-T13953-A13954-A16208-S16215-S16216-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="RFC"/> <xs:enumeration value="RFCS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RefillFirstHerePharmacySupplyType"> <xs:annotation> <xs:documentation>specDomain: S16218 (C-0-T13953-A13954-A16208-S16215-S16218-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="RFF"/> <xs:enumeration value="RFFS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RefillPartFillPharmacySupplyType"> <xs:annotation> <xs:documentation>specDomain: S16217 (C-0-T13953-A13954-A16208-S16215-S16217-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="RFP"/> <xs:enumeration value="RFPS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RefillTrialBalancePharmacySupplyType"> <xs:annotation> <xs:documentation>specDomain: S16213 (C-0-T13953-A13954-A16208-S16215-S16213-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TB"/> <xs:enumeration value="TBS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActPolicyType"> <xs:annotation> <xs:documentation>abstDomain: A19886 (C-0-T13953-A13954-A19886-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="COVPOL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActPrivilegeCategorization"> <xs:annotation> <xs:documentation>abstDomain: A19725 (C-0-T13953-A13954-A19725-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActProductAcquisitionCode"> <xs:annotation> <xs:documentation>abstDomain: A17958 (C-0-T13953-A13954-A17958-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Loan Transfer cs"/> </xs:simpleType> <xs:simpleType name="Loan"> <xs:annotation> <xs:documentation>specDomain: S17961 (C-0-T13953-A13954-A17958-S17961-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="LOAN"/> <xs:enumeration value="RENT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Transfer"> <xs:annotation> <xs:documentation>specDomain: S17959 (C-0-T13953-A13954-A17958-S17959-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TRANSFER"/> <xs:enumeration value="SALE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActSpecObsCode"> <xs:annotation> <xs:documentation>abstDomain: A13957 (C-0-T13953-A13954-A13957-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActSpecObsDilutionCode ActSpecObsInterferenceCode ActSpecObsVolumeCode"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="ARTBLD"/> <xs:enumeration value="EVNFCTS"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActSpecObsDilutionCode"> <xs:annotation> <xs:documentation>specDomain: S14352 (C-0-T13953-A13954-A13957-S14352-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DILUTION"/> <xs:enumeration value="AUTO-HIGH"/> <xs:enumeration value="AUTO-LOW"/> <xs:enumeration value="PRE"/> <xs:enumeration value="RERUN"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActSpecObsInterferenceCode"> <xs:annotation> <xs:documentation>specDomain: S14382 (C-0-T13953-A13954-A13957-S14382-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="INTFR"/> <xs:enumeration value="FIBRIN"/> <xs:enumeration value="HEMOLYSIS"/> <xs:enumeration value="ICTERUS"/> <xs:enumeration value="LIPEMIA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActSpecObsVolumeCode"> <xs:annotation> <xs:documentation>specDomain: S14369 (C-0-T13953-A13954-A13957-S14369-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="VOLUME"/> <xs:enumeration value="AVAILABLE"/> <xs:enumeration value="CONSUMPTION"/> <xs:enumeration value="CURRENT"/> <xs:enumeration value="INITIAL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActSpecimenTreatmentCode"> <xs:annotation> <xs:documentation>abstDomain: A14040 (C-0-T13953-A13954-A14040-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ACID"/> <xs:enumeration value="ALK"/> <xs:enumeration value="DEFB"/> <xs:enumeration value="FILT"/> <xs:enumeration value="LDLP"/> <xs:enumeration value="NEUT"/> <xs:enumeration value="RECA"/> <xs:enumeration value="UFIL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActSubstanceAdminSubstitutionCode"> <xs:annotation> <xs:documentation>abstDomain: A16621 (C-0-T13953-A13954-A16621-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="SubstanceAdminGenericSubstitution"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="F"/> <xs:enumeration value="N"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="SubstanceAdminGenericSubstitution"> <xs:annotation> <xs:documentation>specDomain: S16623 (C-0-T13953-A13954-A16621-S16623-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="G"/> <xs:enumeration value="TE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActSubstanceAdministrationCode"> <xs:annotation> <xs:documentation>abstDomain: A19708 (C-0-T13953-A13954-A19708-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActSubstanceAdministrationImmunizationCode x_MedicationOrImmunization"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="DRUG"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActSubstanceAdministrationImmunizationCode"> <xs:annotation> <xs:documentation>specDomain: S21519 (C-0-T13953-A13954-A19708-S21519-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IMMUNIZ"/> <xs:enumeration value="BOOSTER"/> <xs:enumeration value="INITIMMUNIZ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_MedicationOrImmunization"> <xs:annotation> <xs:documentation>abstDomain: A19745 (C-0-T13953-A13954-A19708-A19745-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DRUG"/> <xs:enumeration value="IMMUNIZ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="AdvanceBeneficiaryNoticeType"> <xs:annotation> <xs:documentation>abstDomain: A19854 (C-0-T13953-A13954-A19854-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="CanadianActProcedureCode"> <xs:annotation> <xs:documentation>abstDomain: A19433 (C-0-T13953-A13954-A19433-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="HL7TriggerEventCode"> <xs:annotation> <xs:documentation>abstDomain: A19427 (C-0-T13953-A13954-A19427-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ROIOverlayShape"> <xs:annotation> <xs:documentation>abstDomain: A16117 (C-0-T13953-A13954-A16117-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CIRCLE"/> <xs:enumeration value="ELLIPSE"/> <xs:enumeration value="POINT"/> <xs:enumeration value="POLY"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActFinancialProductAcquisitionCode"> <xs:annotation> <xs:documentation>abstDomain: A17963 (C-0-T13953-A13954-A17963-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="RENT"/> <xs:enumeration value="SALE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IndividualCaseSafetyReportCriteria"> <xs:annotation> <xs:documentation>abstDomain: A19849 (C-0-T13953-A19849-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="IndividualCaseSafetyReportProductCharacteristic"> <xs:annotation> <xs:documentation>abstDomain: A19850 (C-0-T13953-A19850-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="x_ActBillableCode"> <xs:annotation> <xs:documentation>abstDomain: A19820 (C-0-T13953-A19820-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActCognitiveProfessionalServiceCode ActEncounterAccommodationCode ActEncounterCode ActProcedureCode ActTransportationModeCode ObservationType cs"/> </xs:simpleType> <xs:simpleType name="ActCognitiveProfessionalServiceCode"> <xs:annotation> <xs:documentation>abstDomain: A19706 (C-0-T13953-A19820-A19706-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActEncounterAccommodationCode"> <xs:annotation> <xs:documentation>abstDomain: A16130 (C-0-T13953-A19820-A16130-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="HCPCSAccommodationCode HL7AccommodationCode cs"/> </xs:simpleType> <xs:simpleType name="HCPCSAccommodationCode"> <xs:annotation> <xs:documentation>abstDomain: A19865 (C-0-T13953-A19820-A16130-A19865-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="HL7AccommodationCode"> <xs:annotation> <xs:documentation>abstDomain: A19866 (C-0-T13953-A19820-A16130-A19866-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="I"/> <xs:enumeration value="P"/> <xs:enumeration value="SP"/> <xs:enumeration value="S"/> <xs:enumeration value="W"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActEncounterCode"> <xs:annotation> <xs:documentation>abstDomain: A13955 (C-0-T13953-A19820-A13955-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActInpatientEncounterCode ActMedicalServiceCode"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="AMB"/> <xs:enumeration value="EMER"/> <xs:enumeration value="FLD"/> <xs:enumeration value="HH"/> <xs:enumeration value="SS"/> <xs:enumeration value="VR"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActInpatientEncounterCode"> <xs:annotation> <xs:documentation>specDomain: S16847 (C-0-T13953-A19820-A13955-S16847-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IMP"/> <xs:enumeration value="ACUTE"/> <xs:enumeration value="NONAC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActMedicalServiceCode"> <xs:annotation> <xs:documentation>abstDomain: A17449 (C-0-T13953-A19820-A13955-A17449-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ALC"/> <xs:enumeration value="CARD"/> <xs:enumeration value="CHR"/> <xs:enumeration value="DNTL"/> <xs:enumeration value="DRGRHB"/> <xs:enumeration value="GENRL"/> <xs:enumeration value="MED"/> <xs:enumeration value="OBS"/> <xs:enumeration value="ONC"/> <xs:enumeration value="PALL"/> <xs:enumeration value="PED"/> <xs:enumeration value="PHAR"/> <xs:enumeration value="PHYRHB"/> <xs:enumeration value="PSYCH"/> <xs:enumeration value="SURG"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActBillableServiceCode"> <xs:annotation> <xs:documentation>abstDomain: A19900 (C-0-T13953-A19820-A16535-A19900-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActMedicalBillableServiceCode ActNonMedicalBillableServiceCode cs"/> </xs:simpleType> <xs:simpleType name="ActMedicalBillableServiceCode"> <xs:annotation> <xs:documentation>abstDomain: A19901 (C-0-T13953-A19820-A16535-A19900-A19901-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActNonMedicalBillableServiceCode"> <xs:annotation> <xs:documentation>abstDomain: A19902 (C-0-T13953-A19820-A16535-A19900-A19902-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActOralHealthProcedureCode"> <xs:annotation> <xs:documentation>abstDomain: A19882 (C-0-T13953-A19820-A16535-A19882-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="CPT5"> <xs:annotation> <xs:documentation>abstDomain: A19881 (C-0-T13953-A19820-A16535-A19881-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="HCPCS"> <xs:annotation> <xs:documentation>abstDomain: A19880 (C-0-T13953-A19820-A16535-A19880-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ICD10PCS"> <xs:annotation> <xs:documentation>abstDomain: A19878 (C-0-T13953-A19820-A16535-A19878-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ICD9PCS"> <xs:annotation> <xs:documentation>abstDomain: A19879 (C-0-T13953-A19820-A16535-A19879-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActTransportationModeCode"> <xs:annotation> <xs:documentation>abstDomain: A19732 (C-0-T13953-A19820-A19732-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActPatientTransportationModeCode cs"/> </xs:simpleType> <xs:simpleType name="ActPatientTransportationModeCode"> <xs:annotation> <xs:documentation>abstDomain: A19733 (C-0-T13953-A19820-A19732-A19733-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Ambulance"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="LAWENF"/> <xs:enumeration value="AFOOT"/> <xs:enumeration value="PRVTRN"/> <xs:enumeration value="PUBTRN"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="Ambulance"> <xs:annotation> <xs:documentation>specDomain: S21547 (C-0-T13953-A19820-A19732-A19733-S21547-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AMBT"/> <xs:enumeration value="AMBAIR"/> <xs:enumeration value="AMBGRND"/> <xs:enumeration value="AMBHELO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationType"> <xs:annotation> <xs:documentation>abstDomain: A16226 (C-0-T13953-A19820-A16226-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActPrivilegeCategorizationType AdverseSubstanceAdministrationEventActionTakenType AnnotationType CommonClinicalObservationType DiagnosticImageCode IndividualCaseSafetyReportType LogicalObservationIdentifierNamesAndCodes MedicationObservationType ObservationActContextAgeType ObservationAllergyTestCode ObservationAllergyTestType ObservationCausalityAssessmentType ObservationDiagnosisTypes ObservationDosageDefinitionPreconditionType ObservationGenomicFamilyHistoryType ObservationIndicationType ObservationIntoleranceType ObservationIssueTriggerCodedObservationType ObservationIssueTriggerMeasuredObservationType ObservationQueryMatchType ObservationSequenceType ObservationSeriesType ObservationVisionPrescriptionType PatientCharacteristicObservationType PrescriptionObservationType SimpleMeasurableClinicalObservationType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="ADVERSE_REACTION"/> <xs:enumeration value="ASSERTION"/> <xs:enumeration value="_FDALabelData"/> <xs:enumeration value="SEV"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActPrivilegeCategorizationType"> <xs:annotation> <xs:documentation>abstDomain: A19750 (C-0-T13953-A19820-A16226-A19750-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="AdverseSubstanceAdministrationEventActionTakenType"> <xs:annotation> <xs:documentation>abstDomain: A19916 (C-0-T13953-A19820-A16226-A19916-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="AnnotationType"> <xs:annotation> <xs:documentation>abstDomain: A19329 (C-0-T13953-A19820-A16226-A19329-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ECGAnnotationType cs"/> </xs:simpleType> <xs:simpleType name="ECGAnnotationType"> <xs:annotation> <xs:documentation>abstDomain: A19330 (C-0-T13953-A19820-A16226-A19329-A19330-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ECGAnnotationTypeMDC cs"/> </xs:simpleType> <xs:simpleType name="ECGAnnotationTypeMDC"> <xs:annotation> <xs:documentation>abstDomain: A19335 (C-0-T13953-A19820-A16226-A19329-A19330-A19335-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="CommonClinicalObservationType"> <xs:annotation> <xs:documentation>abstDomain: A19715 (C-0-T13953-A19820-A16226-A19715-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="DiagnosticImageCode"> <xs:annotation> <xs:documentation>abstDomain: A19737 (C-0-T13953-A19820-A16226-A19737-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="IndividualCaseSafetyReportType"> <xs:annotation> <xs:documentation>abstDomain: A19622 (C-0-T13953-A19820-A16226-A19622-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="LogicalObservationIdentifierNamesAndCodes"> <xs:annotation> <xs:documentation>abstDomain: A16492 (C-0-T13953-A19820-A16226-A16492-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="MedicationObservationType"> <xs:annotation> <xs:documentation>abstDomain: A19751 (C-0-T13953-A19820-A16226-A19751-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SPLCOATING"/> <xs:enumeration value="SPLCOLOR"/> <xs:enumeration value="SPLIMAGE"/> <xs:enumeration value="SPLIMPRINT"/> <xs:enumeration value="REP_HALF_LIFE"/> <xs:enumeration value="SPLSCORING"/> <xs:enumeration value="SPLSHAPE"/> <xs:enumeration value="SPLSIZE"/> <xs:enumeration value="SPLSYMBOL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationActContextAgeType"> <xs:annotation> <xs:documentation>abstDomain: A19757 (C-0-T13953-A19820-A16226-A19757-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="LOINCObservationActContextAgeType ObservationActAgeGroupType cs"/> </xs:simpleType> <xs:simpleType name="LOINCObservationActContextAgeType"> <xs:annotation> <xs:documentation>abstDomain: A19758 (C-0-T13953-A19820-A16226-A19757-A19758-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="30972-4"/> <xs:enumeration value="29553-5"/> <xs:enumeration value="30525-0"/> <xs:enumeration value="21611-9"/> <xs:enumeration value="21612-7"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationActAgeGroupType"> <xs:annotation> <xs:documentation>abstDomain: A19837 (C-0-T13953-A19820-A16226-A19757-A19837-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ObservationAllergyTestCode"> <xs:annotation> <xs:documentation>abstDomain: A19801 (C-0-T13953-A19820-A16226-A19801-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ObservationAllergyTestType"> <xs:annotation> <xs:documentation>abstDomain: A19695 (C-0-T13953-A19820-A16226-A19695-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ObservationCausalityAssessmentType"> <xs:annotation> <xs:documentation>abstDomain: A19800 (C-0-T13953-A19820-A16226-A19800-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ObservationDiagnosisTypes"> <xs:annotation> <xs:documentation>specDomain: S20927 (C-0-T13953-A19820-A16226-S20927-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DX"/> <xs:enumeration value="ADMDX"/> <xs:enumeration value="DISDX"/> <xs:enumeration value="INTDX"/> <xs:enumeration value="NOI"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationDosageDefinitionPreconditionType"> <xs:annotation> <xs:documentation>abstDomain: A19783 (C-0-T13953-A19820-A16226-A19783-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ObservationGenomicFamilyHistoryType"> <xs:annotation> <xs:documentation>abstDomain: A19834 (C-0-T13953-A19820-A16226-A19834-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ObservationIndicationType"> <xs:annotation> <xs:documentation>abstDomain: A19728 (C-0-T13953-A19820-A16226-A19728-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ObservationIntoleranceType"> <xs:annotation> <xs:documentation>specDomain: S21498 (C-0-T13953-A19820-A16226-S21498-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ObservationAllergyType ObservationDrugIntoleranceType ObservationEnvironmentalIntoleranceType ObservationFoodIntoleranceType ObservationNonAllergyIntoleranceType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="OINT"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ObservationAllergyType"> <xs:annotation> <xs:documentation>specDomain: S21499 (C-0-T13953-A19820-A16226-S21498-S21499-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ALG"/> <xs:enumeration value="DALG"/> <xs:enumeration value="EALG"/> <xs:enumeration value="FALG"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationDrugIntoleranceType"> <xs:annotation> <xs:documentation>specDomain: S21501 (C-0-T13953-A19820-A16226-S21498-S21501-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DINT"/> <xs:enumeration value="DALG"/> <xs:enumeration value="DNAINT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationEnvironmentalIntoleranceType"> <xs:annotation> <xs:documentation>specDomain: S21503 (C-0-T13953-A19820-A16226-S21498-S21503-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EINT"/> <xs:enumeration value="EALG"/> <xs:enumeration value="ENAINT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationFoodIntoleranceType"> <xs:annotation> <xs:documentation>specDomain: S21502 (C-0-T13953-A19820-A16226-S21498-S21502-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="FINT"/> <xs:enumeration value="FALG"/> <xs:enumeration value="FNAINT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationNonAllergyIntoleranceType"> <xs:annotation> <xs:documentation>specDomain: S21500 (C-0-T13953-A19820-A16226-S21498-S21500-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="NAINT"/> <xs:enumeration value="DNAINT"/> <xs:enumeration value="ENAINT"/> <xs:enumeration value="FNAINT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationIssueTriggerCodedObservationType"> <xs:annotation> <xs:documentation>abstDomain: A19712 (C-0-T13953-A19820-A16226-A19712-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CaseTransmissionMode cs"/> </xs:simpleType> <xs:simpleType name="CaseTransmissionMode"> <xs:annotation> <xs:documentation>abstDomain: A19795 (C-0-T13953-A19820-A16226-A19712-A19795-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AIRTRNS"/> <xs:enumeration value="ANANTRNS"/> <xs:enumeration value="ANHUMTRNS"/> <xs:enumeration value="BLDTRNS"/> <xs:enumeration value="BDYFLDTRNS"/> <xs:enumeration value="ENVTRNS"/> <xs:enumeration value="FECTRNS"/> <xs:enumeration value="FOMTRNS"/> <xs:enumeration value="FOODTRNS"/> <xs:enumeration value="HUMHUMTRNS"/> <xs:enumeration value="INDTRNS"/> <xs:enumeration value="LACTTRNS"/> <xs:enumeration value="NOSTRNS"/> <xs:enumeration value="PARTRNS"/> <xs:enumeration value="SEXTRNS"/> <xs:enumeration value="DERMTRNS"/> <xs:enumeration value="TRNSFTRNS"/> <xs:enumeration value="PLACTRNS"/> <xs:enumeration value="VECTRNS"/> <xs:enumeration value="WATTRNS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationIssueTriggerMeasuredObservationType"> <xs:annotation> <xs:documentation>abstDomain: A19713 (C-0-T13953-A19820-A16226-A19713-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ObservationQueryMatchType"> <xs:annotation> <xs:documentation>abstDomain: A19914 (C-0-T13953-A19820-A16226-A19914-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ObservationSequenceType"> <xs:annotation> <xs:documentation>abstDomain: A19325 (C-0-T13953-A19820-A16226-A19325-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ECGObservationSequenceType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="TIME_ABSOLUTE"/> <xs:enumeration value="TIME_RELATIVE"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ECGObservationSequenceType"> <xs:annotation> <xs:documentation>abstDomain: A19328 (C-0-T13953-A19820-A16226-A19325-A19328-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ECGLeadTypeMDC cs"/> </xs:simpleType> <xs:simpleType name="ECGLeadTypeMDC"> <xs:annotation> <xs:documentation>abstDomain: A19334 (C-0-T13953-A19820-A16226-A19325-A19328-A19334-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ObservationSeriesType"> <xs:annotation> <xs:documentation>abstDomain: A19321 (C-0-T13953-A19820-A16226-A19321-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ECGObservationSeriesType cs"/> </xs:simpleType> <xs:simpleType name="ECGObservationSeriesType"> <xs:annotation> <xs:documentation>abstDomain: A19322 (C-0-T13953-A19820-A16226-A19321-A19322-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="REPRESENTATIVE_BEAT"/> <xs:enumeration value="RHYTHM"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationVisionPrescriptionType"> <xs:annotation> <xs:documentation>abstDomain: A19909 (C-0-T13953-A19820-A16226-A19909-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="PatientCharacteristicObservationType"> <xs:annotation> <xs:documentation>abstDomain: A19714 (C-0-T13953-A19820-A16226-A19714-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="PrescriptionObservationType"> <xs:annotation> <xs:documentation>abstDomain: A19616 (C-0-T13953-A19820-A16226-A19616-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="SimpleMeasurableClinicalObservationType"> <xs:annotation> <xs:documentation>abstDomain: A19711 (C-0-T13953-A19820-A16226-A19711-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="x_LabProcessCodes"> <xs:annotation> <xs:documentation>abstDomain: A19656 (C-0-T13953-A19656-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActInfoPersistCode ActObservationVerificationCode ActSpecimenAccessionCode ActSpecimenLabelCode ActSpecimenManifestCode ActSpecimenTransportCode cs"/> </xs:simpleType> <xs:simpleType name="ActInfoPersistCode"> <xs:annotation> <xs:documentation>abstDomain: A19659 (C-0-T13953-A19656-A19659-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActObservationVerificationCode"> <xs:annotation> <xs:documentation>abstDomain: A19658 (C-0-T13953-A19656-A19658-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActSpecimenAccessionCode"> <xs:annotation> <xs:documentation>abstDomain: A19662 (C-0-T13953-A19656-A19662-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActSpecimenLabelCode"> <xs:annotation> <xs:documentation>abstDomain: A19660 (C-0-T13953-A19656-A19660-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActSpecimenManifestCode"> <xs:annotation> <xs:documentation>abstDomain: A19661 (C-0-T13953-A19656-A19661-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActSpecimenTransportCode"> <xs:annotation> <xs:documentation>abstDomain: A19663 (C-0-T13953-A19656-A19663-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SSTOR"/> <xs:enumeration value="STRAN"/> <xs:enumeration value="SREC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActExposureLevelCode"> <xs:annotation> <xs:documentation>vocSet: T19939 (C-0-T19939-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="HIGH"/> <xs:enumeration value="LOW"/> <xs:enumeration value="MEDIUM"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActInjuryCode"> <xs:annotation> <xs:documentation>vocSet: T19348 (C-0-T19348-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActInvoiceElementModifier"> <xs:annotation> <xs:documentation>vocSet: T17704 (C-0-T17704-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EFORM"/> <xs:enumeration value="FAX"/> <xs:enumeration value="LINV"/> <xs:enumeration value="PAPER"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActMood"> <xs:annotation> <xs:documentation>vocSet: T10196 (C-0-T10196-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActMoodCompletionTrack ActMoodPredicate x_ActMoodDefEvn x_ActMoodDefEvnRqo x_ActMoodDefEvnRqoPrmsPrp x_ActMoodDocumentObservation x_ActMoodEvnOrdPrmsPrp x_ActMoodIntentEvent x_ActMoodOrdPrms x_ActMoodOrdPrmsEvn x_ActMoodPermPermrq x_ActMoodRequestEvent x_ActMoodRqoPrpAptArq x_ClinicalStatementActMood x_ClinicalStatementEncounterMood x_ClinicalStatementObservationMood x_ClinicalStatementProcedureMood x_ClinicalStatementSubstanceMood x_ClinicalStatementSupplyMood x_DocumentActMood x_DocumentEncounterMood x_DocumentProcedureMood x_DocumentSubstanceMood"/> </xs:simpleType> <xs:simpleType name="ActMoodCompletionTrack"> <xs:annotation> <xs:documentation>abstDomain: A10197 (C-0-T10196-A10197-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActMoodIntent"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="DEF"/> <xs:enumeration value="EVN"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActMoodIntent"> <xs:annotation> <xs:documentation>specDomain: S10199 (C-0-T10196-A10197-S10199-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActMoodProposal"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="INT"/> <xs:enumeration value="APT"/> <xs:enumeration value="ARQ"/> <xs:enumeration value="PRMS"/> <xs:enumeration value="RQO"/> <xs:enumeration value="SLOT"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActMoodProposal"> <xs:annotation> <xs:documentation>specDomain: S16726 (C-0-T10196-A10197-S10199-S16726-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PRP"/> <xs:enumeration value="RMD"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActMoodPredicate"> <xs:annotation> <xs:documentation>abstDomain: A10202 (C-0-T10196-A10202-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActMoodCriterion"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="GOL"/> <xs:enumeration value="EXPEC"/> <xs:enumeration value="OPT"/> <xs:enumeration value="PERM"/> <xs:enumeration value="PERMRQ"/> <xs:enumeration value="RSK"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActMoodCriterion"> <xs:annotation> <xs:documentation>specDomain: S22042 (C-0-T10196-A10202-S22042-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CRT"/> <xs:enumeration value="EVN.CRT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActMoodDefEvn"> <xs:annotation> <xs:documentation>abstDomain: A19375 (C-0-T10196-A19375-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DEF"/> <xs:enumeration value="EVN"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActMoodDefEvnRqo"> <xs:annotation> <xs:documentation>abstDomain: A19762 (C-0-T10196-A19762-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DEF"/> <xs:enumeration value="EVN"/> <xs:enumeration value="RQO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActMoodDefEvnRqoPrmsPrp"> <xs:annotation> <xs:documentation>abstDomain: A19371 (C-0-T10196-A19371-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DEF"/> <xs:enumeration value="EVN"/> <xs:enumeration value="PRMS"/> <xs:enumeration value="PRP"/> <xs:enumeration value="RQO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActMoodDocumentObservation"> <xs:annotation> <xs:documentation>abstDomain: A18943 (C-0-T10196-A18943-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="GOL"/> <xs:enumeration value="DEF"/> <xs:enumeration value="EVN"/> <xs:enumeration value="INT"/> <xs:enumeration value="PRMS"/> <xs:enumeration value="PRP"/> <xs:enumeration value="RQO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActMoodEvnOrdPrmsPrp"> <xs:annotation> <xs:documentation>abstDomain: A18965 (C-0-T10196-A18965-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EVN"/> <xs:enumeration value="PRMS"/> <xs:enumeration value="PRP"/> <xs:enumeration value="RQO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActMoodIntentEvent"> <xs:annotation> <xs:documentation>abstDomain: A16742 (C-0-T10196-A16742-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EVN"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActMoodOrdPrms"> <xs:annotation> <xs:documentation>abstDomain: A16735 (C-0-T10196-A16735-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PRMS"/> <xs:enumeration value="RQO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActMoodOrdPrmsEvn"> <xs:annotation> <xs:documentation>abstDomain: A16730 (C-0-T10196-A16730-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EVN"/> <xs:enumeration value="PRMS"/> <xs:enumeration value="RQO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActMoodPermPermrq"> <xs:annotation> <xs:documentation>abstDomain: A19689 (C-0-T10196-A19689-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PERM"/> <xs:enumeration value="PERMRQ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActMoodRequestEvent"> <xs:annotation> <xs:documentation>abstDomain: A19763 (C-0-T10196-A19763-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EVN"/> <xs:enumeration value="RQO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActMoodRqoPrpAptArq"> <xs:annotation> <xs:documentation>abstDomain: A19372 (C-0-T10196-A19372-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="APT"/> <xs:enumeration value="ARQ"/> <xs:enumeration value="PRP"/> <xs:enumeration value="RQO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ClinicalStatementActMood"> <xs:annotation> <xs:documentation>abstDomain: A19649 (C-0-T10196-A19649-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="APT"/> <xs:enumeration value="ARQ"/> <xs:enumeration value="DEF"/> <xs:enumeration value="EVN"/> <xs:enumeration value="INT"/> <xs:enumeration value="PRMS"/> <xs:enumeration value="PRP"/> <xs:enumeration value="RQO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ClinicalStatementEncounterMood"> <xs:annotation> <xs:documentation>abstDomain: A19648 (C-0-T10196-A19648-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="APT"/> <xs:enumeration value="ARQ"/> <xs:enumeration value="EVN"/> <xs:enumeration value="INT"/> <xs:enumeration value="PRMS"/> <xs:enumeration value="PRP"/> <xs:enumeration value="RQO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ClinicalStatementObservationMood"> <xs:annotation> <xs:documentation>abstDomain: A19644 (C-0-T10196-A19644-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="GOL"/> <xs:enumeration value="APT"/> <xs:enumeration value="ARQ"/> <xs:enumeration value="DEF"/> <xs:enumeration value="EVN"/> <xs:enumeration value="INT"/> <xs:enumeration value="PRMS"/> <xs:enumeration value="PRP"/> <xs:enumeration value="RQO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ClinicalStatementProcedureMood"> <xs:annotation> <xs:documentation>abstDomain: A19647 (C-0-T10196-A19647-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="APT"/> <xs:enumeration value="ARQ"/> <xs:enumeration value="DEF"/> <xs:enumeration value="EVN"/> <xs:enumeration value="INT"/> <xs:enumeration value="PRMS"/> <xs:enumeration value="PRP"/> <xs:enumeration value="RQO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ClinicalStatementSubstanceMood"> <xs:annotation> <xs:documentation>abstDomain: A19645 (C-0-T10196-A19645-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EVN"/> <xs:enumeration value="INT"/> <xs:enumeration value="PRMS"/> <xs:enumeration value="PRP"/> <xs:enumeration value="RQO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ClinicalStatementSupplyMood"> <xs:annotation> <xs:documentation>abstDomain: A19646 (C-0-T10196-A19646-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EVN"/> <xs:enumeration value="INT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_DocumentActMood"> <xs:annotation> <xs:documentation>abstDomain: A19458 (C-0-T10196-A19458-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="APT"/> <xs:enumeration value="ARQ"/> <xs:enumeration value="DEF"/> <xs:enumeration value="EVN"/> <xs:enumeration value="INT"/> <xs:enumeration value="PRMS"/> <xs:enumeration value="PRP"/> <xs:enumeration value="RQO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_DocumentEncounterMood"> <xs:annotation> <xs:documentation>abstDomain: A19459 (C-0-T10196-A19459-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="APT"/> <xs:enumeration value="ARQ"/> <xs:enumeration value="EVN"/> <xs:enumeration value="INT"/> <xs:enumeration value="PRMS"/> <xs:enumeration value="PRP"/> <xs:enumeration value="RQO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_DocumentProcedureMood"> <xs:annotation> <xs:documentation>abstDomain: A19460 (C-0-T10196-A19460-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="APT"/> <xs:enumeration value="ARQ"/> <xs:enumeration value="DEF"/> <xs:enumeration value="EVN"/> <xs:enumeration value="INT"/> <xs:enumeration value="PRMS"/> <xs:enumeration value="PRP"/> <xs:enumeration value="RQO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_DocumentSubstanceMood"> <xs:annotation> <xs:documentation>abstDomain: A19461 (C-0-T10196-A19461-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EVN"/> <xs:enumeration value="INT"/> <xs:enumeration value="PRMS"/> <xs:enumeration value="PRP"/> <xs:enumeration value="RQO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActMoodAppointment"> <xs:annotation> <xs:documentation>vocSet: O20264 (C-0-O20264-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActMoodAppointmentRequest"> <xs:annotation> <xs:documentation>vocSet: O20265 (C-0-O20265-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActMoodDefinition"> <xs:annotation> <xs:documentation>vocSet: O20266 (C-0-O20266-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActMoodEventCriterion"> <xs:annotation> <xs:documentation>vocSet: O20268 (C-0-O20268-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActMoodEventOccurrence"> <xs:annotation> <xs:documentation>vocSet: O20267 (C-0-O20267-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActMoodExpectation"> <xs:annotation> <xs:documentation>vocSet: O20269 (C-0-O20269-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActMoodGoal"> <xs:annotation> <xs:documentation>vocSet: O19941 (C-0-O19941-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActMoodOption"> <xs:annotation> <xs:documentation>vocSet: O19942 (C-0-O19942-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActMoodPermission"> <xs:annotation> <xs:documentation>vocSet: O19943 (C-0-O19943-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActMoodPermissionRequest"> <xs:annotation> <xs:documentation>vocSet: O19944 (C-0-O19944-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActMoodPromise"> <xs:annotation> <xs:documentation>vocSet: O19945 (C-0-O19945-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActMoodRecommendation"> <xs:annotation> <xs:documentation>vocSet: O19946 (C-0-O19946-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActMoodRequest"> <xs:annotation> <xs:documentation>vocSet: O19947 (C-0-O19947-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActMoodResourceSlot"> <xs:annotation> <xs:documentation>vocSet: O19949 (C-0-O19949-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActMoodRisk"> <xs:annotation> <xs:documentation>vocSet: O19948 (C-0-O19948-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActPriority"> <xs:annotation> <xs:documentation>vocSet: T16866 (C-0-T16866-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActPriorityCallback x_EncounterAdmissionUrgency"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="A"/> <xs:enumeration value="PRN"/> <xs:enumeration value="CR"/> <xs:enumeration value="EL"/> <xs:enumeration value="EM"/> <xs:enumeration value="P"/> <xs:enumeration value="R"/> <xs:enumeration value="RR"/> <xs:enumeration value="S"/> <xs:enumeration value="T"/> <xs:enumeration value="UR"/> <xs:enumeration value="UD"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActPriorityCallback"> <xs:annotation> <xs:documentation>specDomain: S16871 (C-0-T16866-S16871-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CS"/> <xs:enumeration value="CSP"/> <xs:enumeration value="CSR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_EncounterAdmissionUrgency"> <xs:annotation> <xs:documentation>abstDomain: A19457 (C-0-T16866-A19457-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EL"/> <xs:enumeration value="EM"/> <xs:enumeration value="R"/> <xs:enumeration value="UR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActProcedureCode"> <xs:annotation> <xs:documentation>vocSet: T19349 (C-0-T19349-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActReason"> <xs:annotation> <xs:documentation>vocSet: T14878 (C-0-T14878-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActAccommodationReason ActAdjudicationReason ActBillableServiceReason ActConsentInformationAccessOverrideReason ActCoverageReason ActImmunizationReason ActNoImmunizationReason ActSupplyFulfillmentRefusalReason ClinicalResearchReason ControlActReason NonPerformanceReasonCode PharmacySupplyEventStockReasonCode PharmacySupplyRequestRenewalRefusalReasonCode ReasonForNotEvaluatingDevice ReferralReasonCode SchedulingActReason SubstanceAdminSubstitutionNotAllowedReason SubstanceAdminSubstitutionReason TransferActReason x_ActEncounterReason"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="MEDNEC"/> <xs:enumeration value="PAT"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActAccommodationReason"> <xs:annotation> <xs:documentation>abstDomain: A17425 (C-0-T14878-A17425-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ACCREQNA"/> <xs:enumeration value="FLRCNV"/> <xs:enumeration value="MEDNEC"/> <xs:enumeration value="PAT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActAdjudicationReason"> <xs:annotation> <xs:documentation>abstDomain: A19385 (C-0-T14878-A19385-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActBillableServiceReason"> <xs:annotation> <xs:documentation>abstDomain: A19898 (C-0-T14878-A19898-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActBillableClinicalServiceReason cs"/> </xs:simpleType> <xs:simpleType name="ActBillableClinicalServiceReason"> <xs:annotation> <xs:documentation>abstDomain: A19388 (C-0-T14878-A19898-A19388-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="MedicallyNecessaryDuplicateProcedureReason cs"/> </xs:simpleType> <xs:simpleType name="MedicallyNecessaryDuplicateProcedureReason"> <xs:annotation> <xs:documentation>abstDomain: A19899 (C-0-T14878-A19898-A19388-A19899-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActConsentInformationAccessOverrideReason"> <xs:annotation> <xs:documentation>abstDomain: A19894 (C-0-T14878-A19894-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="OVRER"/> <xs:enumeration value="OVRPJ"/> <xs:enumeration value="OVRPS"/> <xs:enumeration value="OVRTPS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActCoverageReason"> <xs:annotation> <xs:documentation>abstDomain: A19871 (C-0-T14878-A19871-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActCoverageProviderReason ActCoverageServiceReason CoverageExclusionReason CoverageFinancialParticipationReason CoverageLimitationReason EligibilityActReasonCode cs"/> </xs:simpleType> <xs:simpleType name="ActCoverageProviderReason"> <xs:annotation> <xs:documentation>abstDomain: A19875 (C-0-T14878-A19871-A19875-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActCoverageServiceReason"> <xs:annotation> <xs:documentation>abstDomain: A19876 (C-0-T14878-A19871-A19876-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="CoverageExclusionReason"> <xs:annotation> <xs:documentation>abstDomain: A19872 (C-0-T14878-A19871-A19872-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="CoverageFinancialParticipationReason"> <xs:annotation> <xs:documentation>abstDomain: A19873 (C-0-T14878-A19871-A19873-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="CoverageLimitationReason"> <xs:annotation> <xs:documentation>abstDomain: A19874 (C-0-T14878-A19871-A19874-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EligibilityActReasonCode"> <xs:annotation> <xs:documentation>abstDomain: A19694 (C-0-T14878-A19871-A19694-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActIneligibilityReason CoverageEligibilityReason cs"/> </xs:simpleType> <xs:simpleType name="ActIneligibilityReason"> <xs:annotation> <xs:documentation>abstDomain: A19355 (C-0-T14878-A19871-A19694-A19355-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="COVSUS"/> <xs:enumeration value="DECSD"/> <xs:enumeration value="REGERR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="CoverageEligibilityReason"> <xs:annotation> <xs:documentation>abstDomain: A19735 (C-0-T14878-A19871-A19694-A19735-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AGE"/> <xs:enumeration value="CRIME"/> <xs:enumeration value="DIS"/> <xs:enumeration value="EMPLOY"/> <xs:enumeration value="FINAN"/> <xs:enumeration value="HEALTH"/> <xs:enumeration value="VEHIC"/> <xs:enumeration value="MULTI"/> <xs:enumeration value="PNC"/> <xs:enumeration value="STATUTORY"/> <xs:enumeration value="WORK"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActImmunizationReason"> <xs:annotation> <xs:documentation>abstDomain: A19848 (C-0-T14878-A19848-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActNoImmunizationReason"> <xs:annotation> <xs:documentation>abstDomain: A19717 (C-0-T14878-A19717-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IMMUNE"/> <xs:enumeration value="MEDPREC"/> <xs:enumeration value="OSTOCK"/> <xs:enumeration value="PATOBJ"/> <xs:enumeration value="PHILISOP"/> <xs:enumeration value="RELIG"/> <xs:enumeration value="VACEFF"/> <xs:enumeration value="VACSAF"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActSupplyFulfillmentRefusalReason"> <xs:annotation> <xs:documentation>abstDomain: A19718 (C-0-T14878-A19718-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="FRR05"/> <xs:enumeration value="FRR03"/> <xs:enumeration value="FRR01"/> <xs:enumeration value="FRR04"/> <xs:enumeration value="FRR02"/> <xs:enumeration value="FRR06"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ClinicalResearchReason"> <xs:annotation> <xs:documentation>abstDomain: A19754 (C-0-T14878-A19754-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ClinicalResearchEventReason ClinicalResearchObservationReason cs"/> </xs:simpleType> <xs:simpleType name="ClinicalResearchEventReason"> <xs:annotation> <xs:documentation>abstDomain: A19755 (C-0-T14878-A19754-A19755-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="RET"/> <xs:enumeration value="SCH"/> <xs:enumeration value="TRM"/> <xs:enumeration value="UNS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ClinicalResearchObservationReason"> <xs:annotation> <xs:documentation>abstDomain: A19756 (C-0-T14878-A19754-A19756-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="NPT"/> <xs:enumeration value="UPT"/> <xs:enumeration value="PPT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ControlActReason"> <xs:annotation> <xs:documentation>abstDomain: A19692 (C-0-T14878-A19692-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CombinedPharmacyOrderSuspendReasonCode ConrolActNullificationReasonCode ControlActReasonConditionNullify GenericUpdateReasonCode MedicationOrderAbortReasonCode MedicationOrderReleaseReasonCode PatientProfileQueryReasonCode PharmacySupplyRequestRenewalRefusalReasonCode SupplyOrderAbortReasonCode cs"/> </xs:simpleType> <xs:simpleType name="CombinedPharmacyOrderSuspendReasonCode"> <xs:annotation> <xs:documentation>abstDomain: A19779 (C-0-T14878-A19692-A19779-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="HOSPADM"/> <xs:enumeration value="SALG"/> <xs:enumeration value="SDDI"/> <xs:enumeration value="DRUGHIGH"/> <xs:enumeration value="SDUPTHER"/> <xs:enumeration value="SINTOL"/> <xs:enumeration value="LABINT"/> <xs:enumeration value="PREG"/> <xs:enumeration value="NON-AVAIL"/> <xs:enumeration value="SURG"/> <xs:enumeration value="CLARIF"/> <xs:enumeration value="ALTCHOICE"/> <xs:enumeration value="WASHOUT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ConrolActNullificationReasonCode"> <xs:annotation> <xs:documentation>abstDomain: A19826 (C-0-T14878-A19692-A19826-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ALTD"/> <xs:enumeration value="EIE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ControlActReasonConditionNullify"> <xs:annotation> <xs:documentation>abstDomain: A19693 (C-0-T14878-A19692-A19693-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="GenericUpdateReasonCode"> <xs:annotation> <xs:documentation>abstDomain: A19777 (C-0-T14878-A19692-A19777-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="FIXDATA"/> <xs:enumeration value="CHGDATA"/> <xs:enumeration value="NEWDATA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MedicationOrderAbortReasonCode"> <xs:annotation> <xs:documentation>abstDomain: A19781 (C-0-T14878-A19692-A19781-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActDetectedIssueCode"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="DOSECHG"/> <xs:enumeration value="INEFFECT"/> <xs:enumeration value="NOREQ"/> <xs:enumeration value="NOTCOVER"/> <xs:enumeration value="PREFUS"/> <xs:enumeration value="DISCONT"/> <xs:enumeration value="RECALL"/> <xs:enumeration value="MONIT"/> <xs:enumeration value="UNABLE"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActDetectedIssueCode"> <xs:annotation> <xs:documentation>abstDomain: A16124 (C-0-T14878-A19692-A19781-A16124-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActAdministrativeDetectedIssueCode ActFinancialDetectedIssueCode ActSuppliedItemDetectedIssueCode ClinicalActionDetectedIssueCode cs"/> </xs:simpleType> <xs:simpleType name="ActAdministrativeDetectedIssueCode"> <xs:annotation> <xs:documentation>abstDomain: A19429 (C-0-T14878-A19692-A19781-A16124-A19429-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActAdministrativeAuthorizationDetectedIssueCode ActAdministrativeRuleDetectedIssueCode cs"/> </xs:simpleType> <xs:simpleType name="ActAdministrativeAuthorizationDetectedIssueCode"> <xs:annotation> <xs:documentation>abstDomain: A19620 (C-0-T14878-A19692-A19781-A16124-A19429-A19620-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ValidationIssue"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="NAT"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ValidationIssue"> <xs:annotation> <xs:documentation>specDomain: S21651 (C-0-T14878-A19692-A19781-A16124-A19429-A19620-S21651-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CodeIsNotValid ComplianceAlert DosageProblem LengthOutOfRange ObservationAlert RepetitionsOutOfRange"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="VALIDAT"/> <xs:enumeration value="KEY205"/> <xs:enumeration value="KEY205"/> <xs:enumeration value="KEY204"/> <xs:enumeration value="KEY204"/> <xs:enumeration value="BUS"/> <xs:enumeration value="MISSCOND"/> <xs:enumeration value="NODUPS"/> <xs:enumeration value="ILLEGAL"/> <xs:enumeration value="FORMAT"/> <xs:enumeration value="MISSMAND"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="CodeIsNotValid"> <xs:annotation> <xs:documentation>specDomain: S21659 (C-0-T14878-A19692-A19781-A16124-A19429-A19620-S21651-S21659-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CODE_INVAL"/> <xs:enumeration value="CODE_DEPREC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ComplianceAlert"> <xs:annotation> <xs:documentation>specDomain: S16687 (C-0-T14878-A19692-A19781-A16124-A19429-A19620-S21651-S16687-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DuplicateTherapyAlert"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="COMPLY"/> <xs:enumeration value="PLYDOC"/> <xs:enumeration value="PLYPHRM"/> <xs:enumeration value="ABUSE"/> <xs:enumeration value="FRAUD"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DuplicateTherapyAlert"> <xs:annotation> <xs:documentation>specDomain: S16688 (C-0-T14878-A19692-A19781-A16124-A19429-A19620-S21651-S16687-S16688-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DUPTHPY"/> <xs:enumeration value="DUPTHPGEN"/> <xs:enumeration value="DUPTHPCLS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DosageProblem"> <xs:annotation> <xs:documentation>specDomain: S16680 (C-0-T14878-A19692-A19781-A16124-A19429-A19620-S21651-S16680-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DOSE"/> <xs:enumeration value="DOSEDUR"/> <xs:enumeration value="DOSEIVL"/> <xs:enumeration value="DOSEH"/> <xs:enumeration value="DOSEL"/> <xs:enumeration value="DOSECOND"/> <xs:enumeration value="MDOSE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="LengthOutOfRange"> <xs:annotation> <xs:documentation>specDomain: S21656 (C-0-T14878-A19692-A19781-A16124-A19429-A19620-S21651-S21656-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="LEN_RANGE"/> <xs:enumeration value="LEN_LONG"/> <xs:enumeration value="LEN_SHORT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationAlert"> <xs:annotation> <xs:documentation>specDomain: S16664 (C-0-T14878-A19692-A19781-A16124-A19429-A19620-S21651-S16664-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="OBSA"/> <xs:enumeration value="AGE"/> <xs:enumeration value="COND"/> <xs:enumeration value="GEND"/> <xs:enumeration value="GEN"/> <xs:enumeration value="LAB"/> <xs:enumeration value="REACT"/> <xs:enumeration value="RREACT"/> <xs:enumeration value="CREACT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RepetitionsOutOfRange"> <xs:annotation> <xs:documentation>specDomain: S21662 (C-0-T14878-A19692-A19781-A16124-A19429-A19620-S21651-S21662-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="REP_RANGE"/> <xs:enumeration value="MAXOCCURS"/> <xs:enumeration value="MINOCCURS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActAdministrativeRuleDetectedIssueCode"> <xs:annotation> <xs:documentation>abstDomain: A19621 (C-0-T14878-A19692-A19781-A16124-A19429-A19621-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="KEY205"/> <xs:enumeration value="KEY204"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActFinancialDetectedIssueCode"> <xs:annotation> <xs:documentation>abstDomain: A19428 (C-0-T14878-A19692-A19781-A16124-A19428-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActSuppliedItemDetectedIssueCode"> <xs:annotation> <xs:documentation>abstDomain: A16656 (C-0-T14878-A19692-A19781-A16124-A16656-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AdministrationDetectedIssueCode SupplyDetectedIssueCode cs"/> </xs:simpleType> <xs:simpleType name="AdministrationDetectedIssueCode"> <xs:annotation> <xs:documentation>abstDomain: A16657 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AdministrationDetectedIssueCodeDuplicateTherapyAlertByBOT AppropriatenessDetectedIssueCode ComplianceDetectedIssueCode DosageProblemDetectedIssueCode TimingDetectedIssueCode"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="_DrugActionDetectedIssueCode"/> <xs:enumeration value="DACT"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="AdministrationDetectedIssueCodeDuplicateTherapyAlertByBOT"> <xs:annotation> <xs:documentation>specDomain: S16688 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-S16688-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DUPTHPY"/> <xs:enumeration value="DUPTHPGEN"/> <xs:enumeration value="DUPTHPCLS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="AppropriatenessDetectedIssueCode"> <xs:annotation> <xs:documentation>abstDomain: A16658 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-A16658-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="InteractionDetectedIssueCode ObservationDetectedIssueCode cs"/> </xs:simpleType> <xs:simpleType name="InteractionDetectedIssueCode"> <xs:annotation> <xs:documentation>abstDomain: A16659 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-A16658-A16659-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="TherapeuticProductDetectedIssueCode"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="FOOD"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="TherapeuticProductDetectedIssueCode"> <xs:annotation> <xs:documentation>specDomain: S17807 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-A16658-A16659-S17807-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TPROD"/> <xs:enumeration value="DRG"/> <xs:enumeration value="NHP"/> <xs:enumeration value="NONRX"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationDetectedIssueCode"> <xs:annotation> <xs:documentation>specDomain: S16664 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-A16658-S16664-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AgeDetectedIssueCode ConditionDetectedIssueCode ReactionDetectedIssueCode RelatedReactionDetectedIssueCode"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="OBSA"/> <xs:enumeration value="GEND"/> <xs:enumeration value="GEN"/> <xs:enumeration value="LAB"/> <xs:enumeration value="CREACT"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="AgeDetectedIssueCode"> <xs:annotation> <xs:documentation>specDomain: S16669 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-A16658-S16664-S16669-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AGE"/> <xs:enumeration value="DOSEHINDA"/> <xs:enumeration value="DOSELINDA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ConditionDetectedIssueCode"> <xs:annotation> <xs:documentation>specDomain: S16665 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-A16658-S16664-S16665-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="HeightSurfaceAreaAlert WeightAlert"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="COND"/> <xs:enumeration value="LACT"/> <xs:enumeration value="PREG"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="HeightSurfaceAreaAlert"> <xs:annotation> <xs:documentation>abstDomain: A17795 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-A16658-S16664-S16665-A17795-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DOSEHINDSA"/> <xs:enumeration value="DOSELINDSA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="WeightAlert"> <xs:annotation> <xs:documentation>abstDomain: A17794 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-A16658-S16664-S16665-A17794-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DOSEHINDW"/> <xs:enumeration value="DOSELINDW"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ReactionDetectedIssueCode"> <xs:annotation> <xs:documentation>specDomain: S16672 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-A16658-S16664-S16672-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="REACT"/> <xs:enumeration value="ALGY"/> <xs:enumeration value="INT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RelatedReactionDetectedIssueCode"> <xs:annotation> <xs:documentation>specDomain: S16676 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-A16658-S16664-S16676-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="RREACT"/> <xs:enumeration value="RALG"/> <xs:enumeration value="RINT"/> <xs:enumeration value="RAR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ComplianceDetectedIssueCode"> <xs:annotation> <xs:documentation>specDomain: S16687 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-S16687-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ComplianceDetectedIssueCodeDuplicateTherapyAlertByBOT"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="COMPLY"/> <xs:enumeration value="PLYDOC"/> <xs:enumeration value="PLYPHRM"/> <xs:enumeration value="ABUSE"/> <xs:enumeration value="FRAUD"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ComplianceDetectedIssueCodeDuplicateTherapyAlertByBOT"> <xs:annotation> <xs:documentation>specDomain: S16688 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-S16687-S16688-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DUPTHPY"/> <xs:enumeration value="DUPTHPGEN"/> <xs:enumeration value="DUPTHPCLS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DosageProblemDetectedIssueCode"> <xs:annotation> <xs:documentation>specDomain: S16680 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-S16680-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DoseDurationDetectedIssueCode DoseHighDetectedIssueCode DoseIntervalDetectedIssueCode DoseLowDetectedIssueCode"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="DOSE"/> <xs:enumeration value="DOSECOND"/> <xs:enumeration value="MDOSE"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DoseDurationDetectedIssueCode"> <xs:annotation> <xs:documentation>specDomain: S16684 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-S16680-S16684-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DoseDurationHighDetectedIssueCode DoseDurationLowDetectedIssueCode"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="DOSEDUR"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DoseDurationHighDetectedIssueCode"> <xs:annotation> <xs:documentation>specDomain: S16686 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-S16680-S16684-S16686-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DOSEDURH"/> <xs:enumeration value="DOSEDURHIND"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DoseDurationLowDetectedIssueCode"> <xs:annotation> <xs:documentation>specDomain: S16685 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-S16680-S16684-S16685-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DOSEDURL"/> <xs:enumeration value="DOSEDURLIND"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DoseHighDetectedIssueCode"> <xs:annotation> <xs:documentation>specDomain: S16681 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-S16680-S16681-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DOSEH"/> <xs:enumeration value="DOSEHINDA"/> <xs:enumeration value="DOSEHINDSA"/> <xs:enumeration value="DOSEHIND"/> <xs:enumeration value="DOSEHINDW"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DoseIntervalDetectedIssueCode"> <xs:annotation> <xs:documentation>specDomain: S16683 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-S16680-S16683-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DOSEIVL"/> <xs:enumeration value="DOSEIVLIND"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DoseLowDetectedIssueCode"> <xs:annotation> <xs:documentation>specDomain: S16682 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-S16680-S16682-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DOSEL"/> <xs:enumeration value="DOSELINDA"/> <xs:enumeration value="DOSELINDSA"/> <xs:enumeration value="DOSELIND"/> <xs:enumeration value="DOSELINDW"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TimingDetectedIssueCode"> <xs:annotation> <xs:documentation>specDomain: S21700 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-S21700-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TIME"/> <xs:enumeration value="ENDLATE"/> <xs:enumeration value="STRTLATE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SupplyDetectedIssueCode"> <xs:annotation> <xs:documentation>abstDomain: A16691 (C-0-T14878-A19692-A19781-A16124-A16656-A16691-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TOOLATE"/> <xs:enumeration value="TOOSOON"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ClinicalActionDetectedIssueCode"> <xs:annotation> <xs:documentation>abstDomain: A17814 (C-0-T14878-A19692-A19781-A16124-A17814-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="MedicationOrderReleaseReasonCode"> <xs:annotation> <xs:documentation>abstDomain: A19782 (C-0-T14878-A19692-A19782-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="HOLDINAP"/> <xs:enumeration value="HOLDDONE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PatientProfileQueryReasonCode"> <xs:annotation> <xs:documentation>abstDomain: A19784 (C-0-T14878-A19692-A19784-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ADMREV"/> <xs:enumeration value="PATCAR"/> <xs:enumeration value="PATREQ"/> <xs:enumeration value="PRCREV"/> <xs:enumeration value="REGUL"/> <xs:enumeration value="RSRCH"/> <xs:enumeration value="LEGAL"/> <xs:enumeration value="VALIDATION"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SupplyOrderAbortReasonCode"> <xs:annotation> <xs:documentation>abstDomain: A19787 (C-0-T14878-A19692-A19787-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IMPROV"/> <xs:enumeration value="INTOL"/> <xs:enumeration value="NEWSTR"/> <xs:enumeration value="NEWTHER"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NonPerformanceReasonCode"> <xs:annotation> <xs:documentation>abstDomain: A19744 (C-0-T14878-A19744-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="PharmacySupplyEventStockReasonCode"> <xs:annotation> <xs:documentation>abstDomain: A19785 (C-0-T14878-A19785-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="FLRSTCK"/> <xs:enumeration value="LTC"/> <xs:enumeration value="OFFICE"/> <xs:enumeration value="PHARM"/> <xs:enumeration value="PROG"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PharmacySupplyRequestRenewalRefusalReasonCode"> <xs:annotation> <xs:documentation>abstDomain: A19786 (C-0-T14878-A19786-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="FAMPHYS"/> <xs:enumeration value="ONHOLD"/> <xs:enumeration value="MODIFY"/> <xs:enumeration value="ALREADYRX"/> <xs:enumeration value="NEEDAPMT"/> <xs:enumeration value="NOTPAT"/> <xs:enumeration value="NOTAVAIL"/> <xs:enumeration value="DISCONT"/> <xs:enumeration value="TOOEARLY"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ReasonForNotEvaluatingDevice"> <xs:annotation> <xs:documentation>abstDomain: A19636 (C-0-T14878-A19636-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ReferralReasonCode"> <xs:annotation> <xs:documentation>abstDomain: A19743 (C-0-T14878-A19743-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="SchedulingActReason"> <xs:annotation> <xs:documentation>abstDomain: A14879 (C-0-T14878-A14879-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="MTG"/> <xs:enumeration value="MED"/> <xs:enumeration value="FIN"/> <xs:enumeration value="DEC"/> <xs:enumeration value="PAT"/> <xs:enumeration value="PHY"/> <xs:enumeration value="BLK"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SubstanceAdminSubstitutionNotAllowedReason"> <xs:annotation> <xs:documentation>abstDomain: A19719 (C-0-T14878-A19719-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PAT"/> <xs:enumeration value="ALGINT"/> <xs:enumeration value="TRIAL"/> <xs:enumeration value="COMPCON"/> <xs:enumeration value="THERCHAR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SubstanceAdminSubstitutionReason"> <xs:annotation> <xs:documentation>abstDomain: A19377 (C-0-T14878-A19377-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CT"/> <xs:enumeration value="FP"/> <xs:enumeration value="OS"/> <xs:enumeration value="RR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TransferActReason"> <xs:annotation> <xs:documentation>abstDomain: A15983 (C-0-T14878-A15983-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ER"/> <xs:enumeration value="RQ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActEncounterReason"> <xs:annotation> <xs:documentation>abstDomain: A19456 (C-0-T14878-A19456-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="MEDNEC"/> <xs:enumeration value="PAT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActRelationshipAdjunctCurativeIndication"> <xs:annotation> <xs:documentation>vocSet: O19975 (C-0-O19975-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipAdjunctMitigation"> <xs:annotation> <xs:documentation>vocSet: O19994 (C-0-O19994-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipArrival"> <xs:annotation> <xs:documentation>vocSet: O19964 (C-0-O19964-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipAssignsName"> <xs:annotation> <xs:documentation>vocSet: O19995 (C-0-O19995-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipAuthorizedBy"> <xs:annotation> <xs:documentation>vocSet: O19965 (C-0-O19965-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipBlocks"> <xs:annotation> <xs:documentation>vocSet: O19966 (C-0-O19966-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipCheckpoint"> <xs:annotation> <xs:documentation>vocSet: T10349 (C-0-T10349-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="B"/> <xs:enumeration value="E"/> <xs:enumeration value="S"/> <xs:enumeration value="X"/> <xs:enumeration value="T"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActRelationshipCheckpointBeginning"> <xs:annotation> <xs:documentation>vocSet: O19950 (C-0-O19950-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipCheckpointEnd"> <xs:annotation> <xs:documentation>vocSet: O19951 (C-0-O19951-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipCheckpointEntry"> <xs:annotation> <xs:documentation>vocSet: O19952 (C-0-O19952-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipCheckpointExit"> <xs:annotation> <xs:documentation>vocSet: O19954 (C-0-O19954-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipCheckpointThrough"> <xs:annotation> <xs:documentation>vocSet: O19953 (C-0-O19953-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipCoveredBy"> <xs:annotation> <xs:documentation>vocSet: O19971 (C-0-O19971-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipCurativeIndication"> <xs:annotation> <xs:documentation>vocSet: O19974 (C-0-O19974-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipDeparture"> <xs:annotation> <xs:documentation>vocSet: O19977 (C-0-O19977-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipDiagnosis"> <xs:annotation> <xs:documentation>vocSet: O19978 (C-0-O19978-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipDocuments"> <xs:annotation> <xs:documentation>vocSet: O19979 (C-0-O19979-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipEpisodelink"> <xs:annotation> <xs:documentation>vocSet: O19981 (C-0-O19981-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipEvaluatesGoal"> <xs:annotation> <xs:documentation>vocSet: O19985 (C-0-O19985-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipExcerptVerbatim"> <xs:annotation> <xs:documentation>vocSet: O20020 (C-0-O20020-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipHasBoundedSupport"> <xs:annotation> <xs:documentation>vocSet: O20013 (C-0-O20013-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipHasCharge"> <xs:annotation> <xs:documentation>vocSet: O19968 (C-0-O19968-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipHasContinuingObjective"> <xs:annotation> <xs:documentation>vocSet: O19996 (C-0-O19996-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipHasContra-indication"> <xs:annotation> <xs:documentation>vocSet: O19969 (C-0-O19969-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipHasControlVariable"> <xs:annotation> <xs:documentation>vocSet: O19973 (C-0-O19973-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipHasCost"> <xs:annotation> <xs:documentation>vocSet: O19970 (C-0-O19970-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipHasCredit"> <xs:annotation> <xs:documentation>vocSet: O19972 (C-0-O19972-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipHasDebit"> <xs:annotation> <xs:documentation>vocSet: O19976 (C-0-O19976-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipHasExplanation"> <xs:annotation> <xs:documentation>vocSet: O19983 (C-0-O19983-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipHasFinalObjective"> <xs:annotation> <xs:documentation>vocSet: O19997 (C-0-O19997-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipHasGeneralization"> <xs:annotation> <xs:documentation>vocSet: O19984 (C-0-O19984-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipHasGoal"> <xs:annotation> <xs:documentation>vocSet: O19986 (C-0-O19986-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipHasOption"> <xs:annotation> <xs:documentation>vocSet: O19999 (C-0-O19999-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipHasPre-condition"> <xs:annotation> <xs:documentation>vocSet: O20001 (C-0-O20001-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipHasPreviousInstance"> <xs:annotation> <xs:documentation>vocSet: O20002 (C-0-O20002-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipHasReferenceValues"> <xs:annotation> <xs:documentation>vocSet: O20006 (C-0-O20006-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipHasRisk"> <xs:annotation> <xs:documentation>vocSet: O20008 (C-0-O20008-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipHasSubject"> <xs:annotation> <xs:documentation>vocSet: O20014 (C-0-O20014-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipHasTrigger"> <xs:annotation> <xs:documentation>vocSet: O20018 (C-0-O20018-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipInstantiatesMaster"> <xs:annotation> <xs:documentation>vocSet: O19987 (C-0-O19987-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipIsAppendage"> <xs:annotation> <xs:documentation>vocSet: O19963 (C-0-O19963-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipIsDerivedFrom"> <xs:annotation> <xs:documentation>vocSet: O19980 (C-0-O19980-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipIsEtiologyFor"> <xs:annotation> <xs:documentation>vocSet: O19967 (C-0-O19967-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipIsManifestationOf"> <xs:annotation> <xs:documentation>vocSet: O19990 (C-0-O19990-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipItemsLocated"> <xs:annotation> <xs:documentation>vocSet: O19988 (C-0-O19988-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipJoin"> <xs:annotation> <xs:documentation>vocSet: T10360 (C-0-T10360-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="D"/> <xs:enumeration value="X"/> <xs:enumeration value="K"/> <xs:enumeration value="W"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActRelationshipJoinDetached"> <xs:annotation> <xs:documentation>vocSet: O19955 (C-0-O19955-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipJoinExclusiveWait"> <xs:annotation> <xs:documentation>vocSet: O19958 (C-0-O19958-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipJoinKill"> <xs:annotation> <xs:documentation>vocSet: O19956 (C-0-O19956-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipJoinWait"> <xs:annotation> <xs:documentation>vocSet: O19957 (C-0-O19957-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipLimitedBy"> <xs:annotation> <xs:documentation>vocSet: O19989 (C-0-O19989-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipMatchesTrigger"> <xs:annotation> <xs:documentation>vocSet: O19993 (C-0-O19993-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipModifies"> <xs:annotation> <xs:documentation>vocSet: O19992 (C-0-O19992-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipOccurrence"> <xs:annotation> <xs:documentation>vocSet: O19998 (C-0-O19998-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipProvidesEvidenceFor"> <xs:annotation> <xs:documentation>vocSet: O19982 (C-0-O19982-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipRe-challenge"> <xs:annotation> <xs:documentation>vocSet: O20003 (C-0-O20003-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipRecovery"> <xs:annotation> <xs:documentation>vocSet: O20004 (C-0-O20004-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipReferencesOrder"> <xs:annotation> <xs:documentation>vocSet: O20000 (C-0-O20000-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipRefersTo"> <xs:annotation> <xs:documentation>vocSet: O20005 (C-0-O20005-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipReplaces"> <xs:annotation> <xs:documentation>vocSet: O20009 (C-0-O20009-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipReverses"> <xs:annotation> <xs:documentation>vocSet: O20007 (C-0-O20007-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipSchedulesRequest"> <xs:annotation> <xs:documentation>vocSet: O20012 (C-0-O20012-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipSplit"> <xs:annotation> <xs:documentation>vocSet: T10355 (C-0-T10355-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="E1"/> <xs:enumeration value="EW"/> <xs:enumeration value="I1"/> <xs:enumeration value="IW"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActRelationshipSplitExclusiveTryOnce"> <xs:annotation> <xs:documentation>vocSet: O19959 (C-0-O19959-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipSplitExclusiveWait"> <xs:annotation> <xs:documentation>vocSet: O19960 (C-0-O19960-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipSplitInclusiveTryOnce"> <xs:annotation> <xs:documentation>vocSet: O19961 (C-0-O19961-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipSplitInclusiveWait"> <xs:annotation> <xs:documentation>vocSet: O19962 (C-0-O19962-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipStartsAfterEndOf"> <xs:annotation> <xs:documentation>vocSet: O20010 (C-0-O20010-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipStartsAfterStartOf"> <xs:annotation> <xs:documentation>vocSet: O20011 (C-0-O20011-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipSubset"> <xs:annotation> <xs:documentation>vocSet: T19613 (C-0-T19613-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ExpectedSubset ParticipationSubset PastSubset"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="MAX"/> <xs:enumeration value="MIN"/> <xs:enumeration value="SUM"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ParticipationSubset"> <xs:annotation> <xs:documentation>abstDomain: A19736 (C-0-T19613-A19736-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ExpectedSubset PastSubset"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="SUM"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ExpectedSubset"> <xs:annotation> <xs:documentation>specDomain: S21368 (C-0-T19613-A19736-S21368-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="FUTURE"/> <xs:enumeration value="LAST"/> <xs:enumeration value="NEXT"/> <xs:enumeration value="FUTSUM"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PastSubset"> <xs:annotation> <xs:documentation>specDomain: S21367 (C-0-T19613-S21367-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PAST"/> <xs:enumeration value="FIRST"/> <xs:enumeration value="RECENT"/> <xs:enumeration value="PREVSUM"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActRelationshipSucceeds"> <xs:annotation> <xs:documentation>vocSet: O20015 (C-0-O20015-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipSummarizedBy"> <xs:annotation> <xs:documentation>vocSet: O20016 (C-0-O20016-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipSymptomaticRelief"> <xs:annotation> <xs:documentation>vocSet: O20017 (C-0-O20017-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipTransformation"> <xs:annotation> <xs:documentation>vocSet: O20021 (C-0-O20021-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipType"> <xs:annotation> <xs:documentation>vocSet: T10317 (C-0-T10317-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActRelationshipConditional ActRelationshipHasComponent ActRelationshipOutcome ActRelationshipPertains ActRelationshipSequel x_ActRelationshipDocument x_ActRelationshipEntry x_ActRelationshipEntryRelationship x_ActRelationshipExternalReference x_ActRelationshipPatientTransport x_ActRelationshipPertinentInfo x_ActRelationshipRelatedAuthorizations x_ActReplaceOrRevise x_SUCC_REPL_PREV"/> </xs:simpleType> <xs:simpleType name="ActRelationshipConditional"> <xs:annotation> <xs:documentation>abstDomain: A18977 (C-0-T10317-A18977-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActRelationshipReason"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="CIND"/> <xs:enumeration value="PRCN"/> <xs:enumeration value="TRIG"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActRelationshipReason"> <xs:annotation> <xs:documentation>specDomain: S10321 (C-0-T10317-A18977-S10321-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActRelationshipMitigates"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="RSON"/> <xs:enumeration value="BLOCK"/> <xs:enumeration value="CURE.ADJ"/> <xs:enumeration value="MTGT.ADJ"/> <xs:enumeration value="CURE"/> <xs:enumeration value="DIAG"/> <xs:enumeration value="SYMP"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActRelationshipMitigates"> <xs:annotation> <xs:documentation>specDomain: S19986 (C-0-T10317-A18977-S10321-S19986-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="MITGT"/> <xs:enumeration value="RCVY"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActRelationshipHasComponent"> <xs:annotation> <xs:documentation>specDomain: S10318 (C-0-T10317-S10318-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="COMP"/> <xs:enumeration value="ARR"/> <xs:enumeration value="DEP"/> <xs:enumeration value="CTRLV"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActRelationshipOutcome"> <xs:annotation> <xs:documentation>specDomain: S10324 (C-0-T10317-S10324-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActRelationshipObjective"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="OUTC"/> <xs:enumeration value="GOAL"/> <xs:enumeration value="RISK"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActRelationshipObjective"> <xs:annotation> <xs:documentation>abstDomain: A19617 (C-0-T10317-S10324-A19617-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="OBJC"/> <xs:enumeration value="OBJF"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActRelationshipPertains"> <xs:annotation> <xs:documentation>specDomain: S10329 (C-0-T10317-S10329-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActRelationshipAccounting ActRelationshipHasSupport ActRelationshipTemporallyPertains"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="PERT"/> <xs:enumeration value="NAME"/> <xs:enumeration value="AUTH"/> <xs:enumeration value="COVBY"/> <xs:enumeration value="ELNK"/> <xs:enumeration value="EXPL"/> <xs:enumeration value="PREV"/> <xs:enumeration value="REFV"/> <xs:enumeration value="SUBJ"/> <xs:enumeration value="DRIV"/> <xs:enumeration value="CAUS"/> <xs:enumeration value="MFST"/> <xs:enumeration value="ITEMSLOC"/> <xs:enumeration value="LIMIT"/> <xs:enumeration value="EVID"/> <xs:enumeration value="REFR"/> <xs:enumeration value="SUMM"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActRelationshipAccounting"> <xs:annotation> <xs:documentation>abstDomain: A14900 (C-0-T10317-S10329-A14900-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActRelationshipCostTracking ActRelationshipPosting cs"/> </xs:simpleType> <xs:simpleType name="ActRelationshipCostTracking"> <xs:annotation> <xs:documentation>abstDomain: A19610 (C-0-T10317-S10329-A14900-A19610-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CHRG"/> <xs:enumeration value="COST"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActRelationshipPosting"> <xs:annotation> <xs:documentation>abstDomain: A19609 (C-0-T10317-S10329-A14900-A19609-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CREDIT"/> <xs:enumeration value="DEBIT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActRelationshipHasSupport"> <xs:annotation> <xs:documentation>specDomain: S10330 (C-0-T10317-S10329-S10330-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SPRT"/> <xs:enumeration value="SPRTBND"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActRelationshipTemporallyPertains"> <xs:annotation> <xs:documentation>abstDomain: A19587 (C-0-T10317-S10329-A19587-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SAE"/> <xs:enumeration value="SAS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActRelationshipSequel"> <xs:annotation> <xs:documentation>specDomain: S10337 (C-0-T10317-S10337-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActRelationshipExcerpt ActRelationshipFulfills"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="SEQL"/> <xs:enumeration value="DOC"/> <xs:enumeration value="GEVL"/> <xs:enumeration value="GEN"/> <xs:enumeration value="OPTN"/> <xs:enumeration value="INST"/> <xs:enumeration value="APND"/> <xs:enumeration value="MTCH"/> <xs:enumeration value="MOD"/> <xs:enumeration value="RCHAL"/> <xs:enumeration value="RPLC"/> <xs:enumeration value="REV"/> <xs:enumeration value="SUCC"/> <xs:enumeration value="XFRM"/> <xs:enumeration value="UPDT"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActRelationshipExcerpt"> <xs:annotation> <xs:documentation>specDomain: S18660 (C-0-T10317-S10337-S18660-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="XCRPT"/> <xs:enumeration value="VRXCRPT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActRelationshipFulfills"> <xs:annotation> <xs:documentation>specDomain: S10342 (C-0-T10317-S10337-S10342-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="FLFS"/> <xs:enumeration value="OCCR"/> <xs:enumeration value="OREF"/> <xs:enumeration value="SCH"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActRelationshipDocument"> <xs:annotation> <xs:documentation>abstDomain: A11610 (C-0-T10317-A11610-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="APND"/> <xs:enumeration value="RPLC"/> <xs:enumeration value="XFRM"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActRelationshipEntry"> <xs:annotation> <xs:documentation>abstDomain: A19446 (C-0-T10317-A19446-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="COMP"/> <xs:enumeration value="DRIV"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActRelationshipEntryRelationship"> <xs:annotation> <xs:documentation>abstDomain: A19447 (C-0-T10317-A19447-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="XCRPT"/> <xs:enumeration value="GEVL"/> <xs:enumeration value="COMP"/> <xs:enumeration value="RSON"/> <xs:enumeration value="SUBJ"/> <xs:enumeration value="SPRT"/> <xs:enumeration value="CAUS"/> <xs:enumeration value="MFST"/> <xs:enumeration value="REFR"/> <xs:enumeration value="SAS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActRelationshipExternalReference"> <xs:annotation> <xs:documentation>abstDomain: A19000 (C-0-T10317-A19000-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="XCRPT"/> <xs:enumeration value="ELNK"/> <xs:enumeration value="SUBJ"/> <xs:enumeration value="SPRT"/> <xs:enumeration value="REFR"/> <xs:enumeration value="RPLC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActRelationshipPatientTransport"> <xs:annotation> <xs:documentation>abstDomain: A19005 (C-0-T10317-A19005-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ARR"/> <xs:enumeration value="DEP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActRelationshipPertinentInfo"> <xs:annotation> <xs:documentation>abstDomain: A19562 (C-0-T10317-A19562-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SUBJ"/> <xs:enumeration value="SPRT"/> <xs:enumeration value="CAUS"/> <xs:enumeration value="MFST"/> <xs:enumeration value="REFR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActRelationshipRelatedAuthorizations"> <xs:annotation> <xs:documentation>abstDomain: A19825 (C-0-T10317-A19825-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AUTH"/> <xs:enumeration value="REFR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActReplaceOrRevise"> <xs:annotation> <xs:documentation>abstDomain: A19764 (C-0-T10317-A19764-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="MOD"/> <xs:enumeration value="RPLC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_SUCC_REPL_PREV"> <xs:annotation> <xs:documentation>abstDomain: A19753 (C-0-T10317-A19753-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PREV"/> <xs:enumeration value="RPLC"/> <xs:enumeration value="SUCC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActRelationshipUpdatesCondition"> <xs:annotation> <xs:documentation>vocSet: O20019 (C-0-O20019-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActSite"> <xs:annotation> <xs:documentation>vocSet: T16537 (C-0-T16537-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AnimalActSite HumanActSite"/> </xs:simpleType> <xs:simpleType name="AnimalActSite"> <xs:annotation> <xs:documentation>abstDomain: A16539 (C-0-T16537-A16539-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="HumanActSite"> <xs:annotation> <xs:documentation>abstDomain: A16538 (C-0-T16537-A16538-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CanadianActInjurySite Dentition HumanSubstanceAdministrationSite InjuryActSite cs"/> </xs:simpleType> <xs:simpleType name="CanadianActInjurySite"> <xs:annotation> <xs:documentation>abstDomain: A19439 (C-0-T16537-A16538-A19439-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="Dentition"> <xs:annotation> <xs:documentation>abstDomain: A19346 (C-0-T16537-A16538-A19346-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ArtificialDentition PermanentDentition PrimaryDentition SupernumeraryTooth cs"/> </xs:simpleType> <xs:simpleType name="ArtificialDentition"> <xs:annotation> <xs:documentation>abstDomain: A19345 (C-0-T16537-A16538-A19346-A19345-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TID10a"/> <xs:enumeration value="TID10i"/> <xs:enumeration value="TID10p"/> <xs:enumeration value="TID10pd"/> <xs:enumeration value="TID10pm"/> <xs:enumeration value="TID11a"/> <xs:enumeration value="TID11i"/> <xs:enumeration value="TID11p"/> <xs:enumeration value="TID11pd"/> <xs:enumeration value="TID11pm"/> <xs:enumeration value="TID12a"/> <xs:enumeration value="TID12i"/> <xs:enumeration value="TID12p"/> <xs:enumeration value="TID12pd"/> <xs:enumeration value="TID12pm"/> <xs:enumeration value="TID13a"/> <xs:enumeration value="TID13i"/> <xs:enumeration value="TID13p"/> <xs:enumeration value="TID13pd"/> <xs:enumeration value="TID13pm"/> <xs:enumeration value="TID14a"/> <xs:enumeration value="TID14i"/> <xs:enumeration value="TID14p"/> <xs:enumeration value="TID14pd"/> <xs:enumeration value="TID14pm"/> <xs:enumeration value="TID15a"/> <xs:enumeration value="TID15i"/> <xs:enumeration value="TID15p"/> <xs:enumeration value="TID15pd"/> <xs:enumeration value="TID15pm"/> <xs:enumeration value="TID16a"/> <xs:enumeration value="TID16i"/> <xs:enumeration value="TID16p"/> <xs:enumeration value="TID16pd"/> <xs:enumeration value="TID16pm"/> <xs:enumeration value="TID17a"/> <xs:enumeration value="TID17ad"/> <xs:enumeration value="TID17am"/> <xs:enumeration value="TID17i"/> <xs:enumeration value="TID17id"/> <xs:enumeration value="TID17im"/> <xs:enumeration value="TID17p"/> <xs:enumeration value="TID17pd"/> <xs:enumeration value="TID17pm"/> <xs:enumeration value="TID18a"/> <xs:enumeration value="TID18ad"/> <xs:enumeration value="TID18am"/> <xs:enumeration value="TID18i"/> <xs:enumeration value="TID18id"/> <xs:enumeration value="TID18im"/> <xs:enumeration value="TID18p"/> <xs:enumeration value="TID18pd"/> <xs:enumeration value="TID18pm"/> <xs:enumeration value="TID19a"/> <xs:enumeration value="TID19ad"/> <xs:enumeration value="TID19am"/> <xs:enumeration value="TID19i"/> <xs:enumeration value="TID19id"/> <xs:enumeration value="TID19im"/> <xs:enumeration value="TID19p"/> <xs:enumeration value="TID19pd"/> <xs:enumeration value="TID19pm"/> <xs:enumeration value="TID1a"/> <xs:enumeration value="TID1i"/> <xs:enumeration value="TID1p"/> <xs:enumeration value="TID1pd"/> <xs:enumeration value="TID1pm"/> <xs:enumeration value="TID20a"/> <xs:enumeration value="TID20i"/> <xs:enumeration value="TID20p"/> <xs:enumeration value="TID20pd"/> <xs:enumeration value="TID20pm"/> <xs:enumeration value="TID21a"/> <xs:enumeration value="TID21i"/> <xs:enumeration value="TID21p"/> <xs:enumeration value="TID21pd"/> <xs:enumeration value="TID21pm"/> <xs:enumeration value="TID22a"/> <xs:enumeration value="TID22i"/> <xs:enumeration value="TID22p"/> <xs:enumeration value="TID22pd"/> <xs:enumeration value="TID22pm"/> <xs:enumeration value="TID23a"/> <xs:enumeration value="TID23i"/> <xs:enumeration value="TID23p"/> <xs:enumeration value="TID23pd"/> <xs:enumeration value="TID23pm"/> <xs:enumeration value="TID24a"/> <xs:enumeration value="TID24i"/> <xs:enumeration value="TID24p"/> <xs:enumeration value="TID24pd"/> <xs:enumeration value="TID24pm"/> <xs:enumeration value="TID25a"/> <xs:enumeration value="TID25i"/> <xs:enumeration value="TID25p"/> <xs:enumeration value="TID25pd"/> <xs:enumeration value="TID25pm"/> <xs:enumeration value="TID26a"/> <xs:enumeration value="TID26i"/> <xs:enumeration value="TID26p"/> <xs:enumeration value="TID26pd"/> <xs:enumeration value="TID26pm"/> <xs:enumeration value="TID27a"/> <xs:enumeration value="TID27i"/> <xs:enumeration value="TID27p"/> <xs:enumeration value="TID27pd"/> <xs:enumeration value="TID27pm"/> <xs:enumeration value="TID28a"/> <xs:enumeration value="TID28i"/> <xs:enumeration value="TID28p"/> <xs:enumeration value="TID28pd"/> <xs:enumeration value="TID28pm"/> <xs:enumeration value="TID29a"/> <xs:enumeration value="TID29i"/> <xs:enumeration value="TID29p"/> <xs:enumeration value="TID29pd"/> <xs:enumeration value="TID29pm"/> <xs:enumeration value="TID2a"/> <xs:enumeration value="TID2i"/> <xs:enumeration value="TID2p"/> <xs:enumeration value="TID2pd"/> <xs:enumeration value="TID2pm"/> <xs:enumeration value="TID30a"/> <xs:enumeration value="TID30ad"/> <xs:enumeration value="TID30am"/> <xs:enumeration value="TID30i"/> <xs:enumeration value="TID30id"/> <xs:enumeration value="TID30im"/> <xs:enumeration value="TID30p"/> <xs:enumeration value="TID30pd"/> <xs:enumeration value="TID30pm"/> <xs:enumeration value="TID31a"/> <xs:enumeration value="TID31ad"/> <xs:enumeration value="TID31am"/> <xs:enumeration value="TID31i"/> <xs:enumeration value="TID31id"/> <xs:enumeration value="TID31im"/> <xs:enumeration value="TID31p"/> <xs:enumeration value="TID31pd"/> <xs:enumeration value="TID31pm"/> <xs:enumeration value="TID32a"/> <xs:enumeration value="TID32ad"/> <xs:enumeration value="TID32am"/> <xs:enumeration value="TID32i"/> <xs:enumeration value="TID32id"/> <xs:enumeration value="TID32im"/> <xs:enumeration value="TID32p"/> <xs:enumeration value="TID32pd"/> <xs:enumeration value="TID32pm"/> <xs:enumeration value="TID3a"/> <xs:enumeration value="TID3i"/> <xs:enumeration value="TID3p"/> <xs:enumeration value="TID3pd"/> <xs:enumeration value="TID3pm"/> <xs:enumeration value="TID4a"/> <xs:enumeration value="TID4i"/> <xs:enumeration value="TID4p"/> <xs:enumeration value="TID4pd"/> <xs:enumeration value="TID4pm"/> <xs:enumeration value="TID5a"/> <xs:enumeration value="TID5i"/> <xs:enumeration value="TID5p"/> <xs:enumeration value="TID5pd"/> <xs:enumeration value="TID5pm"/> <xs:enumeration value="TID6a"/> <xs:enumeration value="TID6i"/> <xs:enumeration value="TID6p"/> <xs:enumeration value="TID6pd"/> <xs:enumeration value="TID6pm"/> <xs:enumeration value="TID7a"/> <xs:enumeration value="TID7i"/> <xs:enumeration value="TID7p"/> <xs:enumeration value="TID7pd"/> <xs:enumeration value="TID7pm"/> <xs:enumeration value="TID8a"/> <xs:enumeration value="TID8i"/> <xs:enumeration value="TID8p"/> <xs:enumeration value="TID8pd"/> <xs:enumeration value="TID8pm"/> <xs:enumeration value="TID9a"/> <xs:enumeration value="TID9i"/> <xs:enumeration value="TID9p"/> <xs:enumeration value="TID9pd"/> <xs:enumeration value="TID9pm"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PermanentDentition"> <xs:annotation> <xs:documentation>abstDomain: A19342 (C-0-T16537-A16538-A19346-A19342-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TID1"/> <xs:enumeration value="TID10"/> <xs:enumeration value="TID11"/> <xs:enumeration value="TID12"/> <xs:enumeration value="TID13"/> <xs:enumeration value="TID14"/> <xs:enumeration value="TID15"/> <xs:enumeration value="TID16"/> <xs:enumeration value="TID17"/> <xs:enumeration value="TID17d"/> <xs:enumeration value="TID17m"/> <xs:enumeration value="TID18"/> <xs:enumeration value="TID18d"/> <xs:enumeration value="TID18m"/> <xs:enumeration value="TID19"/> <xs:enumeration value="TID19d"/> <xs:enumeration value="TID19m"/> <xs:enumeration value="TID2"/> <xs:enumeration value="TID20"/> <xs:enumeration value="TID21"/> <xs:enumeration value="TID22"/> <xs:enumeration value="TID23"/> <xs:enumeration value="TID24"/> <xs:enumeration value="TID25"/> <xs:enumeration value="TID26"/> <xs:enumeration value="TID27"/> <xs:enumeration value="TID28"/> <xs:enumeration value="TID29"/> <xs:enumeration value="TID3"/> <xs:enumeration value="TID30"/> <xs:enumeration value="TID30d"/> <xs:enumeration value="TID30m"/> <xs:enumeration value="TID31"/> <xs:enumeration value="TID31d"/> <xs:enumeration value="TID31m"/> <xs:enumeration value="TID32"/> <xs:enumeration value="TID32d"/> <xs:enumeration value="TID32m"/> <xs:enumeration value="TID4"/> <xs:enumeration value="TID5"/> <xs:enumeration value="TID6"/> <xs:enumeration value="TID7"/> <xs:enumeration value="TID8"/> <xs:enumeration value="TID9"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PrimaryDentition"> <xs:annotation> <xs:documentation>abstDomain: A19344 (C-0-T16537-A16538-A19346-A19344-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TIDA"/> <xs:enumeration value="TIDB"/> <xs:enumeration value="TIDC"/> <xs:enumeration value="TIDD"/> <xs:enumeration value="TIDE"/> <xs:enumeration value="TIDF"/> <xs:enumeration value="TIDG"/> <xs:enumeration value="TIDH"/> <xs:enumeration value="TIDI"/> <xs:enumeration value="TIDJ"/> <xs:enumeration value="TIDK"/> <xs:enumeration value="TIDL"/> <xs:enumeration value="TIDM"/> <xs:enumeration value="TIDN"/> <xs:enumeration value="TIDO"/> <xs:enumeration value="TIDP"/> <xs:enumeration value="TIDQ"/> <xs:enumeration value="TIDR"/> <xs:enumeration value="TIDS"/> <xs:enumeration value="TIDT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SupernumeraryTooth"> <xs:annotation> <xs:documentation>abstDomain: A19343 (C-0-T16537-A16538-A19346-A19343-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TID10s"/> <xs:enumeration value="TID11s"/> <xs:enumeration value="TID12s"/> <xs:enumeration value="TID13s"/> <xs:enumeration value="TID14s"/> <xs:enumeration value="TID15s"/> <xs:enumeration value="TID16s"/> <xs:enumeration value="TID17s"/> <xs:enumeration value="TID18s"/> <xs:enumeration value="TID19s"/> <xs:enumeration value="TID1s"/> <xs:enumeration value="TID20s"/> <xs:enumeration value="TID21s"/> <xs:enumeration value="TID22s"/> <xs:enumeration value="TID23s"/> <xs:enumeration value="TID24s"/> <xs:enumeration value="TID25s"/> <xs:enumeration value="TID26s"/> <xs:enumeration value="TID27s"/> <xs:enumeration value="TID28s"/> <xs:enumeration value="TID29s"/> <xs:enumeration value="TID2s"/> <xs:enumeration value="TID30s"/> <xs:enumeration value="TID31s"/> <xs:enumeration value="TID32s"/> <xs:enumeration value="TID3s"/> <xs:enumeration value="TID4s"/> <xs:enumeration value="TID5s"/> <xs:enumeration value="TID6s"/> <xs:enumeration value="TID7s"/> <xs:enumeration value="TID8s"/> <xs:enumeration value="TID9s"/> <xs:enumeration value="TIDAs"/> <xs:enumeration value="TIDBs"/> <xs:enumeration value="TIDCs"/> <xs:enumeration value="TIDDs"/> <xs:enumeration value="TIDEs"/> <xs:enumeration value="TIDFs"/> <xs:enumeration value="TIDGs"/> <xs:enumeration value="TIDHs"/> <xs:enumeration value="TIDIs"/> <xs:enumeration value="TIDJs"/> <xs:enumeration value="TIDKs"/> <xs:enumeration value="TIDLs"/> <xs:enumeration value="TIDMs"/> <xs:enumeration value="TIDNs"/> <xs:enumeration value="TIDOs"/> <xs:enumeration value="TIDPs"/> <xs:enumeration value="TIDQs"/> <xs:enumeration value="TIDRs"/> <xs:enumeration value="TIDSs"/> <xs:enumeration value="TIDTs"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="HumanSubstanceAdministrationSite"> <xs:annotation> <xs:documentation>abstDomain: A19724 (C-0-T16537-A16538-A19724-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="BE"/> <xs:enumeration value="OU"/> <xs:enumeration value="BU"/> <xs:enumeration value="LACF"/> <xs:enumeration value="LAC"/> <xs:enumeration value="LA"/> <xs:enumeration value="LD"/> <xs:enumeration value="LE"/> <xs:enumeration value="LEJ"/> <xs:enumeration value="OS"/> <xs:enumeration value="LF"/> <xs:enumeration value="LG"/> <xs:enumeration value="LH"/> <xs:enumeration value="LIJ"/> <xs:enumeration value="LLAQ"/> <xs:enumeration value="LLFA"/> <xs:enumeration value="LMFA"/> <xs:enumeration value="LN"/> <xs:enumeration value="LPC"/> <xs:enumeration value="LSC"/> <xs:enumeration value="LT"/> <xs:enumeration value="LUAQ"/> <xs:enumeration value="LUA"/> <xs:enumeration value="LUFA"/> <xs:enumeration value="LVL"/> <xs:enumeration value="LVG"/> <xs:enumeration value="PA"/> <xs:enumeration value="PERIN"/> <xs:enumeration value="RACF"/> <xs:enumeration value="RAC"/> <xs:enumeration value="RA"/> <xs:enumeration value="RD"/> <xs:enumeration value="RE"/> <xs:enumeration value="REJ"/> <xs:enumeration value="OD"/> <xs:enumeration value="RF"/> <xs:enumeration value="RG"/> <xs:enumeration value="RH"/> <xs:enumeration value="RIJ"/> <xs:enumeration value="RLAQ"/> <xs:enumeration value="RLFA"/> <xs:enumeration value="RMFA"/> <xs:enumeration value="RPC"/> <xs:enumeration value="RSC"/> <xs:enumeration value="RT"/> <xs:enumeration value="RUAQ"/> <xs:enumeration value="RUA"/> <xs:enumeration value="RUFA"/> <xs:enumeration value="RVL"/> <xs:enumeration value="RVG"/> <xs:enumeration value="BN"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="InjuryActSite"> <xs:annotation> <xs:documentation>abstDomain: A19438 (C-0-T16537-A16538-A19438-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActStatus"> <xs:annotation> <xs:documentation>vocSet: T15933 (C-0-T15933-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActStatusNormal x_ActStatusActiveComplete x_ActStatusActiveSuspended x_DocumentStatus"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="nullified"/> <xs:enumeration value="obsolete"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActStatusNormal"> <xs:annotation> <xs:documentation>specDomain: S15936 (C-0-T15933-S15936-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="normal"/> <xs:enumeration value="aborted"/> <xs:enumeration value="active"/> <xs:enumeration value="cancelled"/> <xs:enumeration value="completed"/> <xs:enumeration value="held"/> <xs:enumeration value="new"/> <xs:enumeration value="suspended"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActStatusActiveComplete"> <xs:annotation> <xs:documentation>abstDomain: A19890 (C-0-T15933-A19890-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="active"/> <xs:enumeration value="completed"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ActStatusActiveSuspended"> <xs:annotation> <xs:documentation>abstDomain: A19891 (C-0-T15933-A19891-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="active"/> <xs:enumeration value="suspended"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_DocumentStatus"> <xs:annotation> <xs:documentation>abstDomain: A16916 (C-0-T15933-A16916-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="active"/> <xs:enumeration value="cancelled"/> <xs:enumeration value="new"/> <xs:enumeration value="obsolete"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ActStatusAborted"> <xs:annotation> <xs:documentation>vocSet: O20022 (C-0-O20022-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActStatusActive"> <xs:annotation> <xs:documentation>vocSet: O20023 (C-0-O20023-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActStatusCancelled"> <xs:annotation> <xs:documentation>vocSet: O20024 (C-0-O20024-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActStatusCompleted"> <xs:annotation> <xs:documentation>vocSet: O20025 (C-0-O20025-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActStatusHeld"> <xs:annotation> <xs:documentation>vocSet: O20026 (C-0-O20026-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActStatusNew"> <xs:annotation> <xs:documentation>vocSet: O20027 (C-0-O20027-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActStatusNullified"> <xs:annotation> <xs:documentation>vocSet: O20028 (C-0-O20028-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActStatusObsolete"> <xs:annotation> <xs:documentation>vocSet: O20029 (C-0-O20029-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActStatusSuspended"> <xs:annotation> <xs:documentation>vocSet: O20030 (C-0-O20030-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ActUncertainty"> <xs:annotation> <xs:documentation>vocSet: T16899 (C-0-T16899-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="N"/> <xs:enumeration value="U"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="AddressPartType"> <xs:annotation> <xs:documentation>vocSet: T10642 (C-0-T10642-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AdditionalLocator DeliveryAddressLine StreetAddressLine"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="CAR"/> <xs:enumeration value="CEN"/> <xs:enumeration value="CNT"/> <xs:enumeration value="CPA"/> <xs:enumeration value="DEL"/> <xs:enumeration value="CTY"/> <xs:enumeration value="POB"/> <xs:enumeration value="ZIP"/> <xs:enumeration value="PRE"/> <xs:enumeration value="STA"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="AdditionalLocator"> <xs:annotation> <xs:documentation>specDomain: S10651 (C-0-T10642-S10651-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ADL"/> <xs:enumeration value="UNIT"/> <xs:enumeration value="UNID"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DeliveryAddressLine"> <xs:annotation> <xs:documentation>specDomain: S17887 (C-0-T10642-S17887-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DAL"/> <xs:enumeration value="DINSTA"/> <xs:enumeration value="DINSTQ"/> <xs:enumeration value="DINST"/> <xs:enumeration value="DMOD"/> <xs:enumeration value="DMODID"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="StreetAddressLine"> <xs:annotation> <xs:documentation>specDomain: S14822 (C-0-T10642-S14822-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="BuildingNumber StreetName"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="SAL"/> <xs:enumeration value="DIR"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="BuildingNumber"> <xs:annotation> <xs:documentation>specDomain: S10649 (C-0-T10642-S14822-S10649-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="BuildingNumberSuffixByBOT"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="BNR"/> <xs:enumeration value="BNN"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="BuildingNumberSuffixByBOT"> <xs:annotation> <xs:documentation>specDomain: S17882 (C-0-T10642-S14822-S10649-S17882-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="BNS"/> <xs:enumeration value="POB"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="StreetName"> <xs:annotation> <xs:documentation>specDomain: S10648 (C-0-T10642-S14822-S10648-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="STR"/> <xs:enumeration value="STB"/> <xs:enumeration value="STTYP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="AdministrativeGender"> <xs:annotation> <xs:documentation>vocSet: T1 (C-0-T1-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="F"/> <xs:enumeration value="M"/> <xs:enumeration value="UN"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="AmericanIndianAlaskaNativeLanguages"> <xs:annotation> <xs:documentation>vocSet: T18130 (C-0-T18130-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Algic Caddoan Chimakuan EskimoAleut Hokan Iroquoian Keresan KiowaTanoan Muskogean Nadene Penutian Pidgin Salishan SiouanCatawba UtoAztecan Wakashan Yukian"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="x-HAI"/> <xs:enumeration value="x-KUN"/> <xs:enumeration value="x-PSD"/> <xs:enumeration value="x-YUC"/> <xs:enumeration value="x-ZUN"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="Algic"> <xs:annotation> <xs:documentation>abstDomain: A18131 (C-0-T18130-A18131-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Algonquian Ritwan cs"/> </xs:simpleType> <xs:simpleType name="Algonquian"> <xs:annotation> <xs:documentation>abstDomain: A18132 (C-0-T18130-A18131-A18132-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Arapahoan CreeMontagnais EasternAlgonquin Ojibwayan SaukFoxKickapoo"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="x-BLC"/> <xs:enumeration value="x-CHY"/> <xs:enumeration value="x-MEZ"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="Arapahoan"> <xs:annotation> <xs:documentation>abstDomain: A18142 (C-0-T18130-A18131-A18132-A18142-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ArapahoGrosVentre cs"/> </xs:simpleType> <xs:simpleType name="ArapahoGrosVentre"> <xs:annotation> <xs:documentation>abstDomain: A18143 (C-0-T18130-A18131-A18132-A18142-A18143-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-ARP"/> <xs:enumeration value="x-ATS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="CreeMontagnais"> <xs:annotation> <xs:documentation>abstDomain: A18135 (C-0-T18130-A18131-A18132-A18135-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Cree cs"/> </xs:simpleType> <xs:simpleType name="Cree"> <xs:annotation> <xs:documentation>abstDomain: A18136 (C-0-T18130-A18131-A18132-A18135-A18136-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-CRP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EasternAlgonquin"> <xs:annotation> <xs:documentation>abstDomain: A18171 (C-0-T18130-A18131-A18132-A18171-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Abenakian Delawaran"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="x-MIC"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="Abenakian"> <xs:annotation> <xs:documentation>abstDomain: A18174 (C-0-T18130-A18131-A18132-A18171-A18174-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-AAQ"/> <xs:enumeration value="x-MAC"/> <xs:enumeration value="x-ABE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Delawaran"> <xs:annotation> <xs:documentation>abstDomain: A18184 (C-0-T18130-A18131-A18132-A18171-A18184-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-DEL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Ojibwayan"> <xs:annotation> <xs:documentation>abstDomain: A18156 (C-0-T18130-A18131-A18132-A18156-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-POT"/> <xs:enumeration value="x-OJB"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SaukFoxKickapoo"> <xs:annotation> <xs:documentation>abstDomain: A18164 (C-0-T18130-A18131-A18132-A18164-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-KIC"/> <xs:enumeration value="x-SAC"/> <xs:enumeration value="x-SJW"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Ritwan"> <xs:annotation> <xs:documentation>abstDomain: A18189 (C-0-T18130-A18131-A18189-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-YUR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Caddoan"> <xs:annotation> <xs:documentation>abstDomain: A18223 (C-0-T18130-A18223-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="NorthernCaddoan SouthernCaddoan cs"/> </xs:simpleType> <xs:simpleType name="NorthernCaddoan"> <xs:annotation> <xs:documentation>abstDomain: A18224 (C-0-T18130-A18223-A18224-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-ARI"/> <xs:enumeration value="x-PAW"/> <xs:enumeration value="x-WIC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SouthernCaddoan"> <xs:annotation> <xs:documentation>abstDomain: A18233 (C-0-T18130-A18223-A18233-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-CAD"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Chimakuan"> <xs:annotation> <xs:documentation>abstDomain: A18238 (C-0-T18130-A18238-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-QUI"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EskimoAleut"> <xs:annotation> <xs:documentation>abstDomain: A18191 (C-0-T18130-A18191-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Aleut Eskimoan cs"/> </xs:simpleType> <xs:simpleType name="Aleut"> <xs:annotation> <xs:documentation>abstDomain: A18221 (C-0-T18130-A18191-A18221-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-ALW"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Eskimoan"> <xs:annotation> <xs:documentation>abstDomain: A18192 (C-0-T18130-A18191-A18192-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="InuitInupiaq SirenikskiYupik cs"/> </xs:simpleType> <xs:simpleType name="InuitInupiaq"> <xs:annotation> <xs:documentation>abstDomain: A18210 (C-0-T18130-A18191-A18192-A18210-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-ESI"/> <xs:enumeration value="x-ESK"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SirenikskiYupik"> <xs:annotation> <xs:documentation>abstDomain: A18193 (C-0-T18130-A18191-A18192-A18193-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-ESU"/> <xs:enumeration value="x-ESS"/> <xs:enumeration value="x-EMS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Hokan"> <xs:annotation> <xs:documentation>abstDomain: A18241 (C-0-T18130-A18241-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CochimiYuman Palaihnihan Pomoan Shasta"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="x-KYH"/> <xs:enumeration value="x-WAS"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="CochimiYuman"> <xs:annotation> <xs:documentation>abstDomain: A18274 (C-0-T18130-A18241-A18274-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Yuman cs"/> </xs:simpleType> <xs:simpleType name="Yuman"> <xs:annotation> <xs:documentation>abstDomain: A18275 (C-0-T18130-A18241-A18274-A18275-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DeltaCalifornia Pai River cs"/> </xs:simpleType> <xs:simpleType name="DeltaCalifornia"> <xs:annotation> <xs:documentation>abstDomain: A18291 (C-0-T18130-A18241-A18274-A18275-A18291-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Diegueno"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="x-COC"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="Diegueno"> <xs:annotation> <xs:documentation>abstDomain: A18292 (C-0-T18130-A18241-A18274-A18275-A18291-A18292-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-DIH"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Pai"> <xs:annotation> <xs:documentation>abstDomain: A18276 (C-0-T18130-A18241-A18274-A18275-A18276-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-YUF"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="River"> <xs:annotation> <xs:documentation>abstDomain: A18282 (C-0-T18130-A18241-A18274-A18275-A18282-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-MRC"/> <xs:enumeration value="x-MOV"/> <xs:enumeration value="x-YUM"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Palaihnihan"> <xs:annotation> <xs:documentation>abstDomain: A18248 (C-0-T18130-A18241-A18248-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-ACH"/> <xs:enumeration value="x-ATW"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Pomoan"> <xs:annotation> <xs:documentation>abstDomain: A18253 (C-0-T18130-A18241-A18253-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-POO"/> <xs:enumeration value="x-KJU"/> <xs:enumeration value="x-PEF"/> <xs:enumeration value="x-PEO"/> <xs:enumeration value="x-PEQ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Shasta"> <xs:annotation> <xs:documentation>abstDomain: A18244 (C-0-T18130-A18241-A18244-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-SHT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Iroquoian"> <xs:annotation> <xs:documentation>abstDomain: A18306 (C-0-T18130-A18306-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="NorthernIroquoian"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="x-CER"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="NorthernIroquoian"> <xs:annotation> <xs:documentation>abstDomain: A18307 (C-0-T18130-A18306-A18307-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-CAY"/> <xs:enumeration value="x-MOH"/> <xs:enumeration value="x-ONE"/> <xs:enumeration value="x-ONO"/> <xs:enumeration value="x-SEE"/> <xs:enumeration value="x-TUS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Keresan"> <xs:annotation> <xs:documentation>abstDomain: A18319 (C-0-T18130-A18319-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-KJQ"/> <xs:enumeration value="x-KEE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="KiowaTanoan"> <xs:annotation> <xs:documentation>abstDomain: A18327 (C-0-T18130-A18327-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Tiwa"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="x-TOW"/> <xs:enumeration value="x-KIO"/> <xs:enumeration value="x-TEW"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="Tiwa"> <xs:annotation> <xs:documentation>abstDomain: A18331 (C-0-T18130-A18327-A18331-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-TAO"/> <xs:enumeration value="x-TIX"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Muskogean"> <xs:annotation> <xs:documentation>abstDomain: A18338 (C-0-T18130-A18338-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CentralMuskogean WesternMuskogean"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="x-CRK"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="CentralMuskogean"> <xs:annotation> <xs:documentation>abstDomain: A18342 (C-0-T18130-A18338-A18342-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-AKZ"/> <xs:enumeration value="x-CKU"/> <xs:enumeration value="x-MIK"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="WesternMuskogean"> <xs:annotation> <xs:documentation>abstDomain: A18339 (C-0-T18130-A18338-A18339-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-CIC"/> <xs:enumeration value="x-CCT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Nadene"> <xs:annotation> <xs:documentation>abstDomain: A18352 (C-0-T18130-A18352-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AthapaskanEyak"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="x-TLI"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="AthapaskanEyak"> <xs:annotation> <xs:documentation>abstDomain: A18356 (C-0-T18130-A18352-A18356-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Athapaskan"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="x-EYA"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="Athapaskan"> <xs:annotation> <xs:documentation>abstDomain: A18358 (C-0-T18130-A18352-A18356-A18358-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Apachean CentralAlaskaYukon PacificCoastAthapaskan SouthernAlaska cs"/> </xs:simpleType> <xs:simpleType name="Apachean"> <xs:annotation> <xs:documentation>abstDomain: A18399 (C-0-T18130-A18352-A18356-A18358-A18399-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="EasternApachean WesternApachean"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="x-APK"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="EasternApachean"> <xs:annotation> <xs:documentation>abstDomain: A18407 (C-0-T18130-A18352-A18356-A18358-A18399-A18407-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-APJ"/> <xs:enumeration value="x-APL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="WesternApachean"> <xs:annotation> <xs:documentation>abstDomain: A18400 (C-0-T18130-A18352-A18356-A18358-A18399-A18400-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-NAV"/> <xs:enumeration value="x-APM"/> <xs:enumeration value="x-APW"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="CentralAlaskaYukon"> <xs:annotation> <xs:documentation>abstDomain: A18365 (C-0-T18130-A18352-A18356-A18358-A18365-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="KoyukonIngalik KutchinHan TananaTutchone cs"/> </xs:simpleType> <xs:simpleType name="KoyukonIngalik"> <xs:annotation> <xs:documentation>abstDomain: A18366 (C-0-T18130-A18352-A18356-A18358-A18365-A18366-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-ING"/> <xs:enumeration value="x-HOI"/> <xs:enumeration value="x-KOY"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="KutchinHan"> <xs:annotation> <xs:documentation>abstDomain: A18379 (C-0-T18130-A18352-A18356-A18358-A18365-A18379-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-HAA"/> <xs:enumeration value="x-KUC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TananaTutchone"> <xs:annotation> <xs:documentation>abstDomain: A18371 (C-0-T18130-A18352-A18356-A18358-A18365-A18371-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Tanana"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="x-KUU"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="Tanana"> <xs:annotation> <xs:documentation>abstDomain: A18374 (C-0-T18130-A18352-A18356-A18358-A18365-A18371-A18374-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-TAA"/> <xs:enumeration value="x-TCB"/> <xs:enumeration value="x-TAU"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PacificCoastAthapaskan"> <xs:annotation> <xs:documentation>abstDomain: A18386 (C-0-T18130-A18352-A18356-A18358-A18386-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CaliforniaAthapaskan OregonAthapaskan cs"/> </xs:simpleType> <xs:simpleType name="CaliforniaAthapaskan"> <xs:annotation> <xs:documentation>abstDomain: A18391 (C-0-T18130-A18352-A18356-A18358-A18386-A18391-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-KTW"/> <xs:enumeration value="x-HUP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OregonAthapaskan"> <xs:annotation> <xs:documentation>abstDomain: A18387 (C-0-T18130-A18352-A18356-A18358-A18386-A18387-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-TOL"/> <xs:enumeration value="x-TUU"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SouthernAlaska"> <xs:annotation> <xs:documentation>abstDomain: A18359 (C-0-T18130-A18352-A18356-A18358-A18359-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-AHT"/> <xs:enumeration value="x-TFN"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Penutian"> <xs:annotation> <xs:documentation>abstDomain: A18413 (C-0-T18130-A18413-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Chinookan Coosan Maiduan PlateauPenutian Takelman Tsimshianic Utian Wintuan Yokutsan cs"/> </xs:simpleType> <xs:simpleType name="Chinookan"> <xs:annotation> <xs:documentation>abstDomain: A18414 (C-0-T18130-A18413-A18414-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="UpperChinook cs"/> </xs:simpleType> <xs:simpleType name="UpperChinook"> <xs:annotation> <xs:documentation>abstDomain: A18415 (C-0-T18130-A18413-A18414-A18415-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-WAC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Coosan"> <xs:annotation> <xs:documentation>abstDomain: A18421 (C-0-T18130-A18413-A18421-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-COS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Maiduan"> <xs:annotation> <xs:documentation>abstDomain: A18435 (C-0-T18130-A18413-A18435-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-NSZ"/> <xs:enumeration value="x-NMU"/> <xs:enumeration value="x-MAI"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PlateauPenutian"> <xs:annotation> <xs:documentation>abstDomain: A18498 (C-0-T18130-A18413-A18498-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Sahaptian"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="x-KLA"/> <xs:enumeration value="x-NEZ"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="Sahaptian"> <xs:annotation> <xs:documentation>abstDomain: A18500 (C-0-T18130-A18413-A18498-A18500-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-WAR"/> <xs:enumeration value="x-UMA"/> <xs:enumeration value="x-WAA"/> <xs:enumeration value="x-YAK"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Takelman"> <xs:annotation> <xs:documentation>abstDomain: A18424 (C-0-T18130-A18413-A18424-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Kalapuyan cs"/> </xs:simpleType> <xs:simpleType name="Kalapuyan"> <xs:annotation> <xs:documentation>abstDomain: A18425 (C-0-T18130-A18413-A18424-A18425-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-KAL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Tsimshianic"> <xs:annotation> <xs:documentation>abstDomain: A18511 (C-0-T18130-A18413-A18511-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-TSI"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Utian"> <xs:annotation> <xs:documentation>abstDomain: A18458 (C-0-T18130-A18413-A18458-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Miwokan cs"/> </xs:simpleType> <xs:simpleType name="Miwokan"> <xs:annotation> <xs:documentation>abstDomain: A18459 (C-0-T18130-A18413-A18458-A18459-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="EasternMiwok WesternMiwok cs"/> </xs:simpleType> <xs:simpleType name="EasternMiwok"> <xs:annotation> <xs:documentation>abstDomain: A18463 (C-0-T18130-A18413-A18458-A18459-A18463-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-CSM"/> <xs:enumeration value="x-NSQ"/> <xs:enumeration value="x-PMW"/> <xs:enumeration value="x-SKD"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="WesternMiwok"> <xs:annotation> <xs:documentation>abstDomain: A18460 (C-0-T18130-A18413-A18458-A18459-A18460-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-CSI"/> <xs:enumeration value="x-LMW"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Wintuan"> <xs:annotation> <xs:documentation>abstDomain: A18431 (C-0-T18130-A18413-A18431-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-WIT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Yokutsan"> <xs:annotation> <xs:documentation>abstDomain: A18479 (C-0-T18130-A18413-A18479-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-GSH"/> <xs:enumeration value="x-ENH"/> <xs:enumeration value="x-PYL"/> <xs:enumeration value="x-TKH"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Pidgin"> <xs:annotation> <xs:documentation>abstDomain: A18518 (C-0-T18130-A18518-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-CHH"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Salishan"> <xs:annotation> <xs:documentation>abstDomain: A18523 (C-0-T18130-A18523-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CentralSalish InteriorSalish Tsamosan cs"/> </xs:simpleType> <xs:simpleType name="CentralSalish"> <xs:annotation> <xs:documentation>abstDomain: A18524 (C-0-T18130-A18523-A18524-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-CLM"/> <xs:enumeration value="x-LUT"/> <xs:enumeration value="x-STR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="InteriorSalish"> <xs:annotation> <xs:documentation>abstDomain: A18540 (C-0-T18130-A18523-A18540-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-CRD"/> <xs:enumeration value="x-COL"/> <xs:enumeration value="x-FLA"/> <xs:enumeration value="x-OKA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Tsamosan"> <xs:annotation> <xs:documentation>abstDomain: A18533 (C-0-T18130-A18523-A18533-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-COW"/> <xs:enumeration value="x-CEA"/> <xs:enumeration value="x-QUN"/> <xs:enumeration value="x-CJH"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SiouanCatawba"> <xs:annotation> <xs:documentation>abstDomain: A18552 (C-0-T18130-A18552-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Siouan cs"/> </xs:simpleType> <xs:simpleType name="Siouan"> <xs:annotation> <xs:documentation>abstDomain: A18553 (C-0-T18130-A18552-A18553-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="MississippiValley MissouriRiver"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="x-MHQ"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="MississippiValley"> <xs:annotation> <xs:documentation>abstDomain: A18562 (C-0-T18130-A18552-A18553-A18562-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ChiwereWinnebago Dakotan Dhegiha cs"/> </xs:simpleType> <xs:simpleType name="ChiwereWinnebago"> <xs:annotation> <xs:documentation>abstDomain: A18593 (C-0-T18130-A18552-A18553-A18562-A18593-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-IOW"/> <xs:enumeration value="x-WIN"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Dakotan"> <xs:annotation> <xs:documentation>abstDomain: A18563 (C-0-T18130-A18552-A18553-A18562-A18563-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-ASB"/> <xs:enumeration value="x-DHG"/> <xs:enumeration value="x-LKT"/> <xs:enumeration value="x-NKT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Dhegiha"> <xs:annotation> <xs:documentation>abstDomain: A18580 (C-0-T18130-A18552-A18553-A18562-A18580-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-KAA"/> <xs:enumeration value="x-OMA"/> <xs:enumeration value="x-OSA"/> <xs:enumeration value="x-QUA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MissouriRiver"> <xs:annotation> <xs:documentation>abstDomain: A18554 (C-0-T18130-A18552-A18553-A18554-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-CRO"/> <xs:enumeration value="x-HID"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="UtoAztecan"> <xs:annotation> <xs:documentation>abstDomain: A18605 (C-0-T18130-A18605-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Numic Takic Taracahitan Tepiman"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="x-HOP"/> <xs:enumeration value="x-TUB"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="Numic"> <xs:annotation> <xs:documentation>abstDomain: A18606 (C-0-T18130-A18605-A18606-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CentralNumic SouthernNumic WesternNumic cs"/> </xs:simpleType> <xs:simpleType name="CentralNumic"> <xs:annotation> <xs:documentation>abstDomain: A18611 (C-0-T18130-A18605-A18606-A18611-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-COM"/> <xs:enumeration value="x-PAR"/> <xs:enumeration value="x-SHH"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SouthernNumic"> <xs:annotation> <xs:documentation>abstDomain: A18617 (C-0-T18130-A18605-A18606-A18617-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-KAW"/> <xs:enumeration value="x-UTE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="WesternNumic"> <xs:annotation> <xs:documentation>abstDomain: A18607 (C-0-T18130-A18605-A18606-A18607-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-MON"/> <xs:enumeration value="x-PAO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Takic"> <xs:annotation> <xs:documentation>abstDomain: A18621 (C-0-T18130-A18605-A18621-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Cupan SerranoGabrielino cs"/> </xs:simpleType> <xs:simpleType name="Cupan"> <xs:annotation> <xs:documentation>abstDomain: A18624 (C-0-T18130-A18605-A18621-A18624-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-CHL"/> <xs:enumeration value="x-CUP"/> <xs:enumeration value="x-LUI"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SerranoGabrielino"> <xs:annotation> <xs:documentation>abstDomain: A18622 (C-0-T18130-A18605-A18621-A18622-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-SER"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Taracahitan"> <xs:annotation> <xs:documentation>abstDomain: A18636 (C-0-T18130-A18605-A18636-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Cahitan cs"/> </xs:simpleType> <xs:simpleType name="Cahitan"> <xs:annotation> <xs:documentation>abstDomain: A18637 (C-0-T18130-A18605-A18636-A18637-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-YAQ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Tepiman"> <xs:annotation> <xs:documentation>abstDomain: A18629 (C-0-T18130-A18605-A18629-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-PAP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Wakashan"> <xs:annotation> <xs:documentation>abstDomain: A18640 (C-0-T18130-A18640-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Nootkan cs"/> </xs:simpleType> <xs:simpleType name="Nootkan"> <xs:annotation> <xs:documentation>abstDomain: A18641 (C-0-T18130-A18640-A18641-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-MYH"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Yukian"> <xs:annotation> <xs:documentation>abstDomain: A18646 (C-0-T18130-A18646-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="x-WAO"/> <xs:enumeration value="x-YUK"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="AttentionKeyword"> <xs:annotation> <xs:documentation>vocSet: D24 (C-0-D24-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="AttentionLineValue"> <xs:annotation> <xs:documentation>vocSet: D25 (C-0-D25-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="BatchName"> <xs:annotation> <xs:documentation>vocSet: D26 (C-0-D26-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="CCI"> <xs:annotation> <xs:documentation>vocSet: E2 (C-0-E2-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="CSAID"> <xs:annotation> <xs:documentation>vocSet: E1 (C-0-E1-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="Calendar"> <xs:annotation> <xs:documentation>vocSet: T17422 (C-0-T17422-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="GREG"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="CalendarCycle"> <xs:annotation> <xs:documentation>vocSet: T10684 (C-0-T10684-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CalendarCycleOneLetter CalendarCycleTwoLetter"/> </xs:simpleType> <xs:simpleType name="CalendarCycleOneLetter"> <xs:annotation> <xs:documentation>abstDomain: A10701 (C-0-T10684-A10701-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="D"/> <xs:enumeration value="J"/> <xs:enumeration value="H"/> <xs:enumeration value="N"/> <xs:enumeration value="M"/> <xs:enumeration value="S"/> <xs:enumeration value="W"/> <xs:enumeration value="Y"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="CalendarCycleTwoLetter"> <xs:annotation> <xs:documentation>abstDomain: A10685 (C-0-T10684-A10685-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="GregorianCalendarCycle"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="CD"/> <xs:enumeration value="DM"/> <xs:enumeration value="DW"/> <xs:enumeration value="DY"/> <xs:enumeration value="CH"/> <xs:enumeration value="HD"/> <xs:enumeration value="CN"/> <xs:enumeration value="NH"/> <xs:enumeration value="CM"/> <xs:enumeration value="MY"/> <xs:enumeration value="CS"/> <xs:enumeration value="SN"/> <xs:enumeration value="CW"/> <xs:enumeration value="WY"/> <xs:enumeration value="CY"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="GregorianCalendarCycle"> <xs:annotation> <xs:documentation>abstDomain: A10758 (C-0-T10684-A10685-A10758-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="CalendarType"> <xs:annotation> <xs:documentation>vocSet: T10682 (C-0-T10682-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="GREG"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="CaseDetectionMethod"> <xs:annotation> <xs:documentation>vocSet: D27 (C-0-D27-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="CaseDiseaseImported"> <xs:annotation> <xs:documentation>vocSet: D28 (C-0-D28-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="Charset"> <xs:annotation> <xs:documentation>vocSet: T14853 (C-0-T14853-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EBCDIC"/> <xs:enumeration value="ISO-10646-UCS-2"/> <xs:enumeration value="ISO-10646-UCS-4"/> <xs:enumeration value="ISO-8859-1"/> <xs:enumeration value="ISO-8859-2"/> <xs:enumeration value="ISO-8859-5"/> <xs:enumeration value="JIS-2022-JP"/> <xs:enumeration value="US-ASCII"/> <xs:enumeration value="UTF-7"/> <xs:enumeration value="UTF-8"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="CodeSystem"> <xs:annotation> <xs:documentation>vocSet: T396 (C-0-T396-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ABCcodes"/> <xs:enumeration value="AS4E"/> <xs:enumeration value="AS4"/> <xs:enumeration value="AcknowledgementDetailType"/> <xs:enumeration value="AcknowledgementCondition"/> <xs:enumeration value="AcknowledgementDetailCode"/> <xs:enumeration value="AcknowledgementType"/> <xs:enumeration value="ActClass"/> <xs:enumeration value="ActCode"/> <xs:enumeration value="ActExposureLevelCode"/> <xs:enumeration value="ActInvoiceElementModifier"/> <xs:enumeration value="ActMood"/> <xs:enumeration value="ActPriority"/> <xs:enumeration value="ActReason"/> <xs:enumeration value="ActRelationshipCheckpoint"/> <xs:enumeration value="ActRelationshipJoin"/> <xs:enumeration value="ActRelationshipSplit"/> <xs:enumeration value="ActRelationshipSubset"/> <xs:enumeration value="ActRelationshipType"/> <xs:enumeration value="ActSite"/> <xs:enumeration value="ActStatus"/> <xs:enumeration value="ActUncertainty"/> <xs:enumeration value="AddressPartType"/> <xs:enumeration value="AdministrativeGender"/> <xs:enumeration value="ACR"/> <xs:enumeration value="ATC"/> <xs:enumeration value="AmericanIndianAlaskaNativeLanguages"/> <xs:enumeration value="CAMNCVS"/> <xs:enumeration value="CSAID"/> <xs:enumeration value="CDCA"/> <xs:enumeration value="CDCM"/> <xs:enumeration value="CDS"/> <xs:enumeration value="CVX"/> <xs:enumeration value="MVX"/> <xs:enumeration value="CD2"/> <xs:enumeration value="CE"/> <xs:enumeration value="CLP"/> <xs:enumeration value="CST"/> <xs:enumeration value="C4"/> <xs:enumeration value="C5"/> <xs:enumeration value="Calendar"/> <xs:enumeration value="CalendarCycle"/> <xs:enumeration value="CalendarType"/> <xs:enumeration value="CCI"/> <xs:enumeration value="ICD-10-CA"/> <xs:enumeration value="Charset"/> <xs:enumeration value="CAS"/> <xs:enumeration value="CodeSystem"/> <xs:enumeration value="CodingRationale"/> <xs:enumeration value="CommunicationFunctionType"/> <xs:enumeration value="CompressionAlgorithm"/> <xs:enumeration value="ConceptGenerality"/> <xs:enumeration value="Confidentiality"/> <xs:enumeration value="ContainerCap"/> <xs:enumeration value="ContainerSeparator"/> <xs:enumeration value="ContentProcessingMode"/> <xs:enumeration value="ContextControl"/> <xs:enumeration value="Currency"/> <xs:enumeration value="DCL"/> <xs:enumeration value="DQL"/> <xs:enumeration value="DCM"/> <xs:enumeration value="DataType"/> <xs:enumeration value="Dentition"/> <xs:enumeration value="DeviceAlertLevel"/> <xs:enumeration value="DocumentCompletion"/> <xs:enumeration value="DocumentStorage"/> <xs:enumeration value="EPSG-GeodeticParameterDataset"/> <xs:enumeration value="E"/> <xs:enumeration value="EditStatus"/> <xs:enumeration value="EducationLevel"/> <xs:enumeration value="EmployeeJobClass"/> <xs:enumeration value="EncounterAcuity"/> <xs:enumeration value="EncounterAccident"/> <xs:enumeration value="EncounterAdmissionSource"/> <xs:enumeration value="EncounterReferralSource"/> <xs:enumeration value="EncounterSpecialCourtesy"/> <xs:enumeration value="EntityClass"/> <xs:enumeration value="EntityCode"/> <xs:enumeration value="EntityDeterminer"/> <xs:enumeration value="EntityHandling"/> <xs:enumeration value="EntityNamePartQualifier"/> <xs:enumeration value="EntityNamePartType"/> <xs:enumeration value="EntityNameUse"/> <xs:enumeration value="EntityRisk"/> <xs:enumeration value="EntityStatus"/> <xs:enumeration value="ENZC"/> <xs:enumeration value="EquipmentAlertLevel"/> <xs:enumeration value="Ethnicity"/> <xs:enumeration value="E5"/> <xs:enumeration value="E7"/> <xs:enumeration value="E6"/> <xs:enumeration value="ExposureMode"/> <xs:enumeration value="FDK"/> <xs:enumeration value="FDDX"/> <xs:enumeration value="FDDC"/> <xs:enumeration value="GTSAbbreviation"/> <xs:enumeration value="GenderStatus"/> <xs:enumeration value="HPC"/> <xs:enumeration value="HB"/> <xs:enumeration value="CodeSystemType"/> <xs:enumeration value="ConceptStatus"/> <xs:enumeration value="HL7ITSVersionCode"/> <xs:enumeration value="ConceptProperty"/> <xs:enumeration value="HL7CommitteeIDInRIM"/> <xs:enumeration value="HL7ConformanceInclusion"/> <xs:enumeration value="HL7DefinedRoseProperty"/> <xs:enumeration value="HL7StandardVersionCode"/> <xs:enumeration value="HL7UpdateMode"/> <xs:enumeration value="HI"/> <xs:enumeration value="HealthcareProviderTaxonomyHIPAA"/> <xs:enumeration value="HHC"/> <xs:enumeration value="HtmlLinkType"/> <xs:enumeration value="ICS"/> <xs:enumeration value="I10"/> <xs:enumeration value="I10P"/> <xs:enumeration value="I9C"/> <xs:enumeration value="I9"/> <xs:enumeration value="IC2"/> <xs:enumeration value="IETF1766"/> <xs:enumeration value="IBT"/> <xs:enumeration value="MDC"/> <xs:enumeration value="ISO3166-1"/> <xs:enumeration value="ISO3166-2"/> <xs:enumeration value="ISO3166-3"/> <xs:enumeration value="ISO4217"/> <xs:enumeration value="IUPC"/> <xs:enumeration value="IUPP"/> <xs:enumeration value="IntegrityCheckAlgorithm"/> <xs:enumeration value="ICDO"/> <xs:enumeration value="ICSD"/> <xs:enumeration value="JC8"/> <xs:enumeration value="LanguageAbilityMode"/> <xs:enumeration value="LanguageAbilityProficiency"/> <xs:enumeration value="LivingArrangement"/> <xs:enumeration value="LocalMarkupIgnore"/> <xs:enumeration value="LocalRemoteControlState"/> <xs:enumeration value="LN"/> <xs:enumeration value="MDFAttributeType"/> <xs:enumeration value="MDFSubjectAreaPrefix"/> <xs:enumeration value="UMD"/> <xs:enumeration value="MEDCIN"/> <xs:enumeration value="MIME"/> <xs:enumeration value="ManagedParticipationStatus"/> <xs:enumeration value="MapRelationship"/> <xs:enumeration value="MaritalStatus"/> <xs:enumeration value="MaterialType"/> <xs:enumeration value="MdfHmdMetSourceType"/> <xs:enumeration value="MdfHmdRowType"/> <xs:enumeration value="MdfRmimRowType"/> <xs:enumeration value="MediaType"/> <xs:enumeration value="MEDR"/> <xs:enumeration value="MEDX"/> <xs:enumeration value="MEDC"/> <xs:enumeration value="MDDX"/> <xs:enumeration value="MGPI"/> <xs:enumeration value="MessageWaitingPriority"/> <xs:enumeration value="MessageCondition"/> <xs:enumeration value="ModifyIndicator"/> <xs:enumeration value="MULTUM"/> <xs:enumeration value="NAACCR"/> <xs:enumeration value="NDA"/> <xs:enumeration value="NOC"/> <xs:enumeration value="NUCCProviderCodes"/> <xs:enumeration value="NUBC-UB92"/> <xs:enumeration value="NDC"/> <xs:enumeration value="NAICS"/> <xs:enumeration value="NullFlavor"/> <xs:enumeration value="NIC"/> <xs:enumeration value="NMMDS"/> <xs:enumeration value="ObservationInterpretation"/> <xs:enumeration value="ObservationMethod"/> <xs:enumeration value="ObservationValue"/> <xs:enumeration value="OHA"/> <xs:enumeration value="OrderableDrugForm"/> <xs:enumeration value="OrganizationNameType"/> <xs:enumeration value="POS"/> <xs:enumeration value="ParameterizedDataType"/> <xs:enumeration value="ParticipationFunction"/> <xs:enumeration value="ParticipationMode"/> <xs:enumeration value="ParticipationSignature"/> <xs:enumeration value="ParticipationType"/> <xs:enumeration value="PatientImportance"/> <xs:enumeration value="PaymentTerms"/> <xs:enumeration value="PeriodicIntervalOfTimeAbbreviation"/> <xs:enumeration value="PNDS"/> <xs:enumeration value="PersonDisabilityType"/> <xs:enumeration value="ConceptCodeRelationship"/> <xs:enumeration value="PostalAddressUse"/> <xs:enumeration value="ProbabilityDistributionType"/> <xs:enumeration value="ProcedureMethod"/> <xs:enumeration value="ProcessingID"/> <xs:enumeration value="ProcessingMode"/> <xs:enumeration value="QueryParameterValue"/> <xs:enumeration value="QueryPriority"/> <xs:enumeration value="QueryQuantityUnit"/> <xs:enumeration value="QueryRequestLimit"/> <xs:enumeration value="QueryResponse"/> <xs:enumeration value="QueryStatusCode"/> <xs:enumeration value="Race"/> <xs:enumeration value="RC"/> <xs:enumeration value="RelationalOperator"/> <xs:enumeration value="RelationshipConjunction"/> <xs:enumeration value="ReligiousAffiliation"/> <xs:enumeration value="ResponseLevel"/> <xs:enumeration value="ResponseModality"/> <xs:enumeration value="ResponseMode"/> <xs:enumeration value="RoleClass"/> <xs:enumeration value="RoleCode"/> <xs:enumeration value="RoleLinkType"/> <xs:enumeration value="RoleStatus"/> <xs:enumeration value="RouteOfAdministration"/> <xs:enumeration value="SCDHEC-GISSpatialAccuracyTiers"/> <xs:enumeration value="SNM3"/> <xs:enumeration value="SNT"/> <xs:enumeration value="SDM"/> <xs:enumeration value="Sequencing"/> <xs:enumeration value="SetOperator"/> <xs:enumeration value="SpecialArrangement"/> <xs:enumeration value="SpecimenType"/> <xs:enumeration value="StyleType"/> <xs:enumeration value="SubstanceAdminSubstitution"/> <xs:enumeration value="SubstitutionCondition"/> <xs:enumeration value="SNM"/> <xs:enumeration value="TableCellHorizontalAlign"/> <xs:enumeration value="TableCellScope"/> <xs:enumeration value="TableCellVerticalAlign"/> <xs:enumeration value="TableFrame"/> <xs:enumeration value="TableRules"/> <xs:enumeration value="IETF3066"/> <xs:enumeration value="TargetAwareness"/> <xs:enumeration value="TelecommunicationAddressUse"/> <xs:enumeration value="RCFB"/> <xs:enumeration value="RCV2"/> <xs:enumeration value="TimingEvent"/> <xs:enumeration value="TransmissionRelationshipTypeCode"/> <xs:enumeration value="TribalEntityUS"/> <xs:enumeration value="UC"/> <xs:enumeration value="UCUM"/> <xs:enumeration value="URLScheme"/> <xs:enumeration value="UML"/> <xs:enumeration value="UnitsOfMeasure"/> <xs:enumeration value="UPC"/> <xs:enumeration value="VaccineManufacturer"/> <xs:enumeration value="VaccineType"/> <xs:enumeration value="VocabularyDomainQualifier"/> <xs:enumeration value="WC"/> <xs:enumeration value="ART"/> <xs:enumeration value="W4"/> <xs:enumeration value="W1-W2"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="CodeSystemType"> <xs:annotation> <xs:documentation>vocSet: T19359 (C-0-T19359-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="E"/> <xs:enumeration value="EI"/> <xs:enumeration value="I"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="CodingRationale"> <xs:annotation> <xs:documentation>vocSet: T19250 (C-0-T19250-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SH"/> <xs:enumeration value="HL7"/> <xs:enumeration value="SRC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="CommunicationFunctionType"> <xs:annotation> <xs:documentation>vocSet: T16031 (C-0-T16031-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="RCV"/> <xs:enumeration value="RSP"/> <xs:enumeration value="SND"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="CompressionAlgorithm"> <xs:annotation> <xs:documentation>vocSet: T10620 (C-0-T10620-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="Z"/> <xs:enumeration value="DF"/> <xs:enumeration value="GZ"/> <xs:enumeration value="ZL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ConceptCodeRelationship"> <xs:annotation> <xs:documentation>vocSet: T19363 (C-0-T19363-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="hasPart"/> <xs:enumeration value="hasSubtype"/> <xs:enumeration value="smallerThan"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ConceptGenerality"> <xs:annotation> <xs:documentation>vocSet: T11033 (C-0-T11033-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="A"/> <xs:enumeration value="L"/> <xs:enumeration value="S"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ConceptPropertyId"> <xs:annotation> <xs:documentation>vocSet: T19361 (C-0-T19361-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="OID"/> <xs:enumeration value="_ValueSetPropertyId"/> <xs:enumeration value="appliesTo"/> <xs:enumeration value="howApplies"/> <xs:enumeration value="inverseRelationship"/> <xs:enumeration value="openIssue"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ConceptStatus"> <xs:annotation> <xs:documentation>vocSet: T19360 (C-0-T19360-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="A"/> <xs:enumeration value="D"/> <xs:enumeration value="P"/> <xs:enumeration value="R"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Confidentiality"> <xs:annotation> <xs:documentation>vocSet: T10228 (C-0-T10228-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ConfidentialityByAccessKind ConfidentialityByInfoType ConfidentialityModifiers x_BasicConfidentialityKind x_VeryBasicConfidentialityKind"/> </xs:simpleType> <xs:simpleType name="ConfidentialityByAccessKind"> <xs:annotation> <xs:documentation>abstDomain: A10229 (C-0-T10228-A10229-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="B"/> <xs:enumeration value="D"/> <xs:enumeration value="I"/> <xs:enumeration value="L"/> <xs:enumeration value="N"/> <xs:enumeration value="R"/> <xs:enumeration value="V"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ConfidentialityByInfoType"> <xs:annotation> <xs:documentation>abstDomain: A10240 (C-0-T10228-A10240-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="HIV"/> <xs:enumeration value="PSY"/> <xs:enumeration value="SDV"/> <xs:enumeration value="ETH"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ConfidentialityModifiers"> <xs:annotation> <xs:documentation>abstDomain: A10236 (C-0-T10228-A10236-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="C"/> <xs:enumeration value="S"/> <xs:enumeration value="T"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_BasicConfidentialityKind"> <xs:annotation> <xs:documentation>abstDomain: A16926 (C-0-T10228-A16926-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="N"/> <xs:enumeration value="R"/> <xs:enumeration value="V"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_VeryBasicConfidentialityKind"> <xs:annotation> <xs:documentation>abstDomain: A19738 (C-0-T10228-A19738-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="N"/> <xs:enumeration value="R"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ContainerCap"> <xs:annotation> <xs:documentation>vocSet: T14049 (C-0-T14049-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="MedicationCap"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="FILM"/> <xs:enumeration value="FOIL"/> <xs:enumeration value="PUSH"/> <xs:enumeration value="SCR"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="MedicationCap"> <xs:annotation> <xs:documentation>abstDomain: A16184 (C-0-T14049-A16184-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CHILD"/> <xs:enumeration value="EASY"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ContainerSeparator"> <xs:annotation> <xs:documentation>vocSet: T14054 (C-0-T14054-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="GEL"/> <xs:enumeration value="NONE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ContentProcessingMode"> <xs:annotation> <xs:documentation>vocSet: T19823 (C-0-T19823-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SEQL"/> <xs:enumeration value="UNOR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ContextControl"> <xs:annotation> <xs:documentation>vocSet: T16478 (C-0-T16478-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ContextControlAdditive ContextControlNonPropagating ContextControlOverriding ContextControlPropagating"/> </xs:simpleType> <xs:simpleType name="ContextControlAdditive"> <xs:annotation> <xs:documentation>abstDomain: A18934 (C-0-T16478-A18934-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AN"/> <xs:enumeration value="AP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ContextControlNonPropagating"> <xs:annotation> <xs:documentation>abstDomain: A18937 (C-0-T16478-A18937-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AN"/> <xs:enumeration value="ON"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ContextControlOverriding"> <xs:annotation> <xs:documentation>abstDomain: A18935 (C-0-T16478-A18935-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ON"/> <xs:enumeration value="OP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ContextControlPropagating"> <xs:annotation> <xs:documentation>abstDomain: A18936 (C-0-T16478-A18936-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AP"/> <xs:enumeration value="OP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ContextControlAdditiveNon-propagating"> <xs:annotation> <xs:documentation>vocSet: O20031 (C-0-O20031-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ContextControlAdditivePropagating"> <xs:annotation> <xs:documentation>vocSet: O20032 (C-0-O20032-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ContextControlOverridingNon-propagating"> <xs:annotation> <xs:documentation>vocSet: O20033 (C-0-O20033-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ContextControlOverridingPropagating"> <xs:annotation> <xs:documentation>vocSet: O20034 (C-0-O20034-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="Country"> <xs:annotation> <xs:documentation>vocSet: T171 (C-0-T171-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="Currency"> <xs:annotation> <xs:documentation>vocSet: T17388 (C-0-T17388-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ARS"/> <xs:enumeration value="AUD"/> <xs:enumeration value="THB"/> <xs:enumeration value="BRL"/> <xs:enumeration value="CAD"/> <xs:enumeration value="DEM"/> <xs:enumeration value="EUR"/> <xs:enumeration value="FRF"/> <xs:enumeration value="INR"/> <xs:enumeration value="TRL"/> <xs:enumeration value="FIM"/> <xs:enumeration value="MXN"/> <xs:enumeration value="NLG"/> <xs:enumeration value="NZD"/> <xs:enumeration value="PHP"/> <xs:enumeration value="GBP"/> <xs:enumeration value="ZAR"/> <xs:enumeration value="RUR"/> <xs:enumeration value="ILS"/> <xs:enumeration value="ESP"/> <xs:enumeration value="CHF"/> <xs:enumeration value="TWD"/> <xs:enumeration value="USD"/> <xs:enumeration value="CLF"/> <xs:enumeration value="KRW"/> <xs:enumeration value="JPY"/> <xs:enumeration value="CNY"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataType"> <xs:annotation> <xs:documentation>vocSet: T10774 (C-0-T10774-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeDataValue"/> </xs:simpleType> <xs:simpleType name="DataTypeDataValue"> <xs:annotation> <xs:documentation>abstDomain: A10775 (C-0-T10774-A10775-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeAnnotated DataTypeBag DataTypeBoolean DataTypeConceptDescriptor DataTypeConceptRole DataTypeHistorical DataTypeInstanceIdentifier DataTypeInterval DataTypeObjectIdentifier DataTypeQuantity DataTypeSequence DataTypeSet DataTypeUncertainValueNarrative DataTypeUncertainValueProbabilistic DataTypeUniversalResourceLocator cs"/> </xs:simpleType> <xs:simpleType name="DataTypeAnnotated"> <xs:annotation> <xs:documentation>specDomain: S10845 (C-0-T10774-A10775-S10845-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeAnnotatedConceptDescriptor DataTypeAnnotatedPhysicalQuantity"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="ANT&lt;ANY&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeAnnotatedConceptDescriptor"> <xs:annotation> <xs:documentation>specDomain: S10846 (C-0-T10774-A10775-S10845-S10846-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ANT&lt;CD&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeAnnotatedPhysicalQuantity"> <xs:annotation> <xs:documentation>specDomain: S10848 (C-0-T10774-A10775-S10845-S10848-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ANT&lt;PQ&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeBag"> <xs:annotation> <xs:documentation>specDomain: S10831 (C-0-T10774-A10775-S10831-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeBagOfConceptDescriptors DataTypeBagOfPhysicalQuantities"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="BAG&lt;ANY&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeBagOfConceptDescriptors"> <xs:annotation> <xs:documentation>specDomain: S10832 (C-0-T10774-A10775-S10831-S10832-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="BAG&lt;CD&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeBagOfPhysicalQuantities"> <xs:annotation> <xs:documentation>specDomain: S10833 (C-0-T10774-A10775-S10831-S10833-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="BAG&lt;PQ&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeBoolean"> <xs:annotation> <xs:documentation>specDomain: S10776 (C-0-T10774-A10775-S10776-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="BL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeConceptDescriptor"> <xs:annotation> <xs:documentation>specDomain: S10780 (C-0-T10774-A10775-S10780-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeCodedSimpleValue DataTypeCodedValue DataTypeCodedWithEquivalents"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="CD"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeCodedSimpleValue"> <xs:annotation> <xs:documentation>specDomain: S10782 (C-0-T10774-A10775-S10780-S10782-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeCodedValue"> <xs:annotation> <xs:documentation>specDomain: S10783 (C-0-T10774-A10775-S10780-S10783-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CV"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeCodedWithEquivalents"> <xs:annotation> <xs:documentation>specDomain: S10784 (C-0-T10774-A10775-S10780-S10784-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeConceptRole"> <xs:annotation> <xs:documentation>specDomain: S10781 (C-0-T10774-A10775-S10781-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeHistorical"> <xs:annotation> <xs:documentation>specDomain: S10850 (C-0-T10774-A10775-S10850-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeHistoricalAddress"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="HXIT&lt;ANY&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeHistoricalAddress"> <xs:annotation> <xs:documentation>specDomain: S10851 (C-0-T10774-A10775-S10850-S10851-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="HXIT&lt;AD&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeInstanceIdentifier"> <xs:annotation> <xs:documentation>specDomain: S10785 (C-0-T10774-A10775-S10785-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="II"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeInterval"> <xs:annotation> <xs:documentation>specDomain: S10834 (C-0-T10774-A10775-S10834-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeIntervalOfIntegerNumbers DataTypeIntervalOfPhysicalQuantities DataTypeIntervalOfPointsInTime DataTypeIntervalOfRealNumbers"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="IVL&lt;QTY&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeIntervalOfIntegerNumbers"> <xs:annotation> <xs:documentation>specDomain: S10835 (C-0-T10774-A10775-S10834-S10835-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IVL&lt;INT&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeIntervalOfPhysicalQuantities"> <xs:annotation> <xs:documentation>specDomain: S10839 (C-0-T10774-A10775-S10834-S10839-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeUncertainProbabilisticIntervalOfPhysicalQuantities"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="IVL&lt;PQ&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeIntervalOfPointsInTime"> <xs:annotation> <xs:documentation>specDomain: S10841 (C-0-T10774-A10775-S10834-S10841-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeSetOfPointsInTime"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="IVL&lt;TS&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeSetOfPointsInTime"> <xs:annotation> <xs:documentation>specDomain: S10807 (C-0-T10774-A10775-S10834-S10841-S10807-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeEventRelatedInterval DataTypeGeneralTimingSpecification DataTypePeriodicIntervalOfTime"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="SET&lt;TS&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeEventRelatedInterval"> <xs:annotation> <xs:documentation>specDomain: S10844 (C-0-T10774-A10775-S10834-S10841-S10807-S10844-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EIVL&lt;TS&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeGeneralTimingSpecification"> <xs:annotation> <xs:documentation>specDomain: S10808 (C-0-T10774-A10775-S10834-S10841-S10807-S10808-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="GTS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypePeriodicIntervalOfTime"> <xs:annotation> <xs:documentation>specDomain: S10843 (C-0-T10774-A10775-S10834-S10841-S10807-S10843-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PIVL&lt;TS&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeIntervalOfRealNumbers"> <xs:annotation> <xs:documentation>specDomain: S10837 (C-0-T10774-A10775-S10834-S10837-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IVL&lt;REAL&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeObjectIdentifier"> <xs:annotation> <xs:documentation>specDomain: S10786 (C-0-T10774-A10775-S10786-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="OID"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeQuantity"> <xs:annotation> <xs:documentation>abstDomain: A10794 (C-0-T10774-A10775-A10794-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeIntegerNumber DataTypeMonetaryAmount DataTypeParametricProbabilityDistribution DataTypePhysicalQuantity DataTypePointInTime DataTypeRatio DataTypeRealNumber cs"/> </xs:simpleType> <xs:simpleType name="DataTypeIntegerNumber"> <xs:annotation> <xs:documentation>specDomain: S10795 (C-0-T10774-A10775-A10794-S10795-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="INT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeMonetaryAmount"> <xs:annotation> <xs:documentation>specDomain: S10798 (C-0-T10774-A10775-A10794-S10798-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="MO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeParametricProbabilityDistribution"> <xs:annotation> <xs:documentation>specDomain: S10864 (C-0-T10774-A10775-A10794-S10864-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PPD&lt;QTY&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypePhysicalQuantity"> <xs:annotation> <xs:documentation>specDomain: S10797 (C-0-T10774-A10775-A10794-S10797-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeParametricProbabilityDistributionOfPhysicalQuantities"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="PQ"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeParametricProbabilityDistributionOfPhysicalQuantities"> <xs:annotation> <xs:documentation>specDomain: S10866 (C-0-T10774-A10775-A10794-S10797-S10866-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PPD&lt;PQ&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypePointInTime"> <xs:annotation> <xs:documentation>specDomain: S10799 (C-0-T10774-A10775-A10794-S10799-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeRatio"> <xs:annotation> <xs:documentation>specDomain: S10800 (C-0-T10774-A10775-A10794-S10800-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="RTO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeRealNumber"> <xs:annotation> <xs:documentation>specDomain: S10796 (C-0-T10774-A10775-A10794-S10796-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeParametricProbabilityDistributionOfRealNumbers"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="REAL"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeParametricProbabilityDistributionOfRealNumbers"> <xs:annotation> <xs:documentation>specDomain: S10865 (C-0-T10774-A10775-A10794-S10796-S10865-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PPD&lt;REAL&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeSequence"> <xs:annotation> <xs:documentation>specDomain: S10821 (C-0-T10774-A10775-S10821-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeSequenceOfBooleans DataTypeSequenceOfSequencesOfDataValues"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="LIST&lt;ANY&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeSequenceOfBooleans"> <xs:annotation> <xs:documentation>specDomain: S10822 (C-0-T10774-A10775-S10821-S10822-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeBinaryData"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="LIST&lt;BL&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeBinaryData"> <xs:annotation> <xs:documentation>specDomain: S10777 (C-0-T10774-A10775-S10821-S10822-S10777-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeEncodedData"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="BIN"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeEncodedData"> <xs:annotation> <xs:documentation>specDomain: S10778 (C-0-T10774-A10775-S10821-S10822-S10777-S10778-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeCharacterString"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="ED"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeCharacterString"> <xs:annotation> <xs:documentation>specDomain: S10779 (C-0-T10774-A10775-S10821-S10822-S10777-S10778-S10779-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeAddressPart DataTypeOrganizationName DataTypePersonNamePart"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="ST"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeAddressPart"> <xs:annotation> <xs:documentation>specDomain: S10792 (C-0-T10774-A10775-S10821-S10822-S10777-S10778-S10779-S10792-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ADXP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeOrganizationName"> <xs:annotation> <xs:documentation>specDomain: S10793 (C-0-T10774-A10775-S10821-S10822-S10777-S10778-S10779-S10793-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ON"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypePersonNamePart"> <xs:annotation> <xs:documentation>specDomain: S10790 (C-0-T10774-A10775-S10821-S10822-S10777-S10778-S10779-S10790-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PNXP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeSequenceOfSequencesOfDataValues"> <xs:annotation> <xs:documentation>specDomain: S10823 (C-0-T10774-A10775-S10821-S10823-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeSequenceOfSequenceOfBooleans"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="LIST&lt;LIST&lt;ANY&gt;&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeSequenceOfSequenceOfBooleans"> <xs:annotation> <xs:documentation>specDomain: S10824 (C-0-T10774-A10775-S10821-S10823-S10824-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeSequenceOfBinaryData"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="LIST&lt;LIST&lt;BL&gt;&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeSequenceOfBinaryData"> <xs:annotation> <xs:documentation>specDomain: S10825 (C-0-T10774-A10775-S10821-S10823-S10824-S10825-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeSequenceOfEncodedData"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="LIST&lt;BIN&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeSequenceOfEncodedData"> <xs:annotation> <xs:documentation>specDomain: S10826 (C-0-T10774-A10775-S10821-S10823-S10824-S10825-S10826-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeSequenceOfCharacterStrings"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="LIST&lt;ED&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeSequenceOfCharacterStrings"> <xs:annotation> <xs:documentation>specDomain: S10827 (C-0-T10774-A10775-S10821-S10823-S10824-S10825-S10826-S10827-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeSequenceOfPersonNameParts DataTypeSequenceOfPostalAddressParts"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="LIST&lt;ST&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeSequenceOfPersonNameParts"> <xs:annotation> <xs:documentation>specDomain: S10828 (C-0-T10774-A10775-S10821-S10823-S10824-S10825-S10826-S10827-S10828-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypePersonNameType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="LIST&lt;PNXP&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypePersonNameType"> <xs:annotation> <xs:documentation>specDomain: S10789 (C-0-T10774-A10775-S10821-S10823-S10824-S10825-S10826-S10827-S10828-S10789-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PN"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeSequenceOfPostalAddressParts"> <xs:annotation> <xs:documentation>specDomain: S10829 (C-0-T10774-A10775-S10821-S10823-S10824-S10825-S10826-S10827-S10829-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypePostalAndResidentialAddress"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="LIST&lt;ADXP&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypePostalAndResidentialAddress"> <xs:annotation> <xs:documentation>specDomain: S10791 (C-0-T10774-A10775-S10821-S10823-S10824-S10825-S10826-S10827-S10829-S10791-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AD"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeSet"> <xs:annotation> <xs:documentation>specDomain: S10801 (C-0-T10774-A10775-S10801-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeSetOfCharacterStrings DataTypeSetOfConceptDescriptors DataTypeSetOfIntegerNumbers DataTypeSetOfIntervalsOfPhysicalQuantitiy DataTypeSetOfPhysicalQuantities DataTypeSetOfRealNumbers DataTypeSetOfSequencesOfCharacterStrings DataTypeSetOfUncertainProbabilisticConceptDescriptor DataTypeSetOfUncertainProbabilisticIntervalOfPhysicalQuantities DataTypeSetOfUncertainValueProbabilistic"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="SET&lt;ANY&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeSetOfCharacterStrings"> <xs:annotation> <xs:documentation>specDomain: S10809 (C-0-T10774-A10775-S10801-S10809-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SET&lt;ST&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeSetOfConceptDescriptors"> <xs:annotation> <xs:documentation>specDomain: S10802 (C-0-T10774-A10775-S10801-S10802-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeSetOfCodedSimpleValue DataTypeSetOfCodedValue DataTypeSetOfCodedWithEquivalents DataTypeSetOfUncertainProbabilisticConceptDescriptor"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="SET&lt;CD&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeSetOfCodedSimpleValue"> <xs:annotation> <xs:documentation>specDomain: S10803 (C-0-T10774-A10775-S10801-S10802-S10803-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SET&lt;CS&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeSetOfCodedValue"> <xs:annotation> <xs:documentation>specDomain: S10804 (C-0-T10774-A10775-S10801-S10802-S10804-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SET&lt;CV&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeSetOfCodedWithEquivalents"> <xs:annotation> <xs:documentation>specDomain: S10805 (C-0-T10774-A10775-S10801-S10802-S10805-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SET&lt;CE&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeSetOfIntegerNumbers"> <xs:annotation> <xs:documentation>specDomain: S10867 (C-0-T10774-A10775-S10801-S10867-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SET&lt;INT&gt;"/> <xs:enumeration value="IVL&lt;INT&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeSetOfIntervalsOfPhysicalQuantitiy"> <xs:annotation> <xs:documentation>specDomain: S10869 (C-0-T10774-A10775-S10801-S10869-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeSetOfUncertainProbabilisticIntervalOfPhysicalQuantities"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="SET&lt;IVL&lt;PQ&gt;&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeSetOfPhysicalQuantities"> <xs:annotation> <xs:documentation>specDomain: S10818 (C-0-T10774-A10775-S10801-S10818-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SET&lt;PQ&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeSetOfRealNumbers"> <xs:annotation> <xs:documentation>specDomain: S10868 (C-0-T10774-A10775-S10801-S10868-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SET&lt;REAL&gt;"/> <xs:enumeration value="IVL&lt;REAL&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeSetOfSequencesOfCharacterStrings"> <xs:annotation> <xs:documentation>specDomain: S10810 (C-0-T10774-A10775-S10801-S10810-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeSetOfAddresses"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="SET&lt;LIST&lt;ST&gt;&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeSetOfAddresses"> <xs:annotation> <xs:documentation>specDomain: S10811 (C-0-T10774-A10775-S10801-S10810-S10811-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeSetOfHistoricalAddresses"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="SET&lt;AD&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeSetOfHistoricalAddresses"> <xs:annotation> <xs:documentation>specDomain: S10812 (C-0-T10774-A10775-S10801-S10810-S10811-S10812-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeHistoryOfAddress"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="SET&lt;HXIT&lt;AD&gt;&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeHistoryOfAddress"> <xs:annotation> <xs:documentation>specDomain: S10813 (C-0-T10774-A10775-S10801-S10810-S10811-S10812-S10813-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="HIST&lt;AD&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeSetOfUncertainProbabilisticConceptDescriptor"> <xs:annotation> <xs:documentation>specDomain: S10816 (C-0-T10774-A10775-S10801-S10816-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeNonParametricProbabilityDistributionOfConceptDescriptor"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="SET&lt;UVP&lt;CD&gt;&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeNonParametricProbabilityDistributionOfConceptDescriptor"> <xs:annotation> <xs:documentation>specDomain: S10862 (C-0-T10774-A10775-S10801-S10816-S10862-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="NPPD&lt;CD&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeSetOfUncertainProbabilisticIntervalOfPhysicalQuantities"> <xs:annotation> <xs:documentation>specDomain: S10819 (C-0-T10774-A10775-S10801-S10819-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeNonParametricProbabilityDistributionOfIntervalOfPhysicalQuantities"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="SET&lt;UVP&lt;IVL&lt;PQ&gt;&gt;&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeNonParametricProbabilityDistributionOfIntervalOfPhysicalQuantities"> <xs:annotation> <xs:documentation>specDomain: S10863 (C-0-T10774-A10775-S10801-S10819-S10863-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="NPPD&lt;IVL&lt;PQ&gt;&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeSetOfUncertainValueProbabilistic"> <xs:annotation> <xs:documentation>specDomain: S10814 (C-0-T10774-A10775-S10801-S10814-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeNonParametricProbabilityDistribution"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="SET&lt;UVP&lt;ANY&gt;&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeNonParametricProbabilityDistribution"> <xs:annotation> <xs:documentation>specDomain: S10815 (C-0-T10774-A10775-S10801-S10814-S10815-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="NPPD&lt;ANY&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeUncertainValueNarrative"> <xs:annotation> <xs:documentation>specDomain: S10853 (C-0-T10774-A10775-S10853-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeUncertainNarrativeConceptDescriptor"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="UVN&lt;ANY&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeUncertainNarrativeConceptDescriptor"> <xs:annotation> <xs:documentation>specDomain: S10854 (C-0-T10774-A10775-S10853-S10854-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="UVN&lt;CD&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeUncertainValueProbabilistic"> <xs:annotation> <xs:documentation>specDomain: S10856 (C-0-T10774-A10775-S10856-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeUncertainProbabilisticConceptDescriptor DataTypeUncertainProbabilisticIntervalOfPhysicalQuantities"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="UVP&lt;ANY&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeUncertainProbabilisticConceptDescriptor"> <xs:annotation> <xs:documentation>specDomain: S10857 (C-0-T10774-A10775-S10856-S10857-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="UVP&lt;CD&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeUncertainProbabilisticIntervalOfPhysicalQuantities"> <xs:annotation> <xs:documentation>specDomain: S10859 (C-0-T10774-A10775-S10856-S10859-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="UVP&lt;IVL&lt;PQ&gt;&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DataTypeUniversalResourceLocator"> <xs:annotation> <xs:documentation>specDomain: S10788 (C-0-T10774-A10775-S10788-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DataTypeTelecommunicationAddress"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="URL"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DataTypeTelecommunicationAddress"> <xs:annotation> <xs:documentation>specDomain: S10787 (C-0-T10774-A10775-S10788-S10787-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TEL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DeviceAlertLevel"> <xs:annotation> <xs:documentation>vocSet: T14066 (C-0-T14066-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="C"/> <xs:enumeration value="N"/> <xs:enumeration value="S"/> <xs:enumeration value="W"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Diagnosis"> <xs:annotation> <xs:documentation>vocSet: T15931 (C-0-T15931-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="DocumentCompletion"> <xs:annotation> <xs:documentation>vocSet: T271 (C-0-T271-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AU"/> <xs:enumeration value="DI"/> <xs:enumeration value="DO"/> <xs:enumeration value="IP"/> <xs:enumeration value="IN"/> <xs:enumeration value="LA"/> <xs:enumeration value="PA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DocumentStorage"> <xs:annotation> <xs:documentation>vocSet: T275 (C-0-T275-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DocumentStorageActive"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="AR"/> <xs:enumeration value="PU"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DocumentStorageActive"> <xs:annotation> <xs:documentation>specDomain: S10584 (C-0-T275-S10584-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AC"/> <xs:enumeration value="AA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EPSG-GeodeticParameterDataset"> <xs:annotation> <xs:documentation>vocSet: E5 (C-0-E5-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EditStatus"> <xs:annotation> <xs:documentation>vocSet: T11040 (C-0-T11040-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActiveEditStatus InactiveEditStatus ObsoleteEditStatus RejectedEditStatus"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="P"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ActiveEditStatus"> <xs:annotation> <xs:documentation>specDomain: S11042 (C-0-T11040-S11042-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="A"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="InactiveEditStatus"> <xs:annotation> <xs:documentation>specDomain: S11044 (C-0-T11040-S11044-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="I"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObsoleteEditStatus"> <xs:annotation> <xs:documentation>specDomain: S11045 (C-0-T11040-S11045-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="O"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RejectedEditStatus"> <xs:annotation> <xs:documentation>specDomain: S11043 (C-0-T11040-S11043-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="R"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EducationLevel"> <xs:annotation> <xs:documentation>vocSet: T19175 (C-0-T19175-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ASSOC"/> <xs:enumeration value="BD"/> <xs:enumeration value="POSTG"/> <xs:enumeration value="ELEM"/> <xs:enumeration value="GD"/> <xs:enumeration value="HS"/> <xs:enumeration value="SCOL"/> <xs:enumeration value="PB"/> <xs:enumeration value="SEC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ElementName"> <xs:annotation> <xs:documentation>vocSet: D29 (C-0-D29-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EmployeeJob"> <xs:annotation> <xs:documentation>vocSet: D30 (C-0-D30-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EmployeeJobClass"> <xs:annotation> <xs:documentation>vocSet: T16036 (C-0-T16036-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="EmployeeOccupationCode"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="_EmployeeOccupationCode"/> <xs:enumeration value="FT"/> <xs:enumeration value="PT"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="EmployeeOccupationCode"> <xs:annotation> <xs:documentation>abstDomain: A19691 (C-0-T16036-A19691-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EmployeeSalaryType"> <xs:annotation> <xs:documentation>vocSet: D31 (C-0-D31-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EmploymentStatus"> <xs:annotation> <xs:documentation>vocSet: T15930 (C-0-T15930-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EncounterAccident"> <xs:annotation> <xs:documentation>vocSet: T12231 (C-0-T12231-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EncounterAcuity"> <xs:annotation> <xs:documentation>vocSet: D32 (C-0-D32-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EncounterAdmissionSource"> <xs:annotation> <xs:documentation>vocSet: T12234 (C-0-T12234-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="E"/> <xs:enumeration value="LD"/> <xs:enumeration value="NB"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EncounterDischargeDisposition"> <xs:annotation> <xs:documentation>vocSet: T19453 (C-0-T19453-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EncounterReferralSource"> <xs:annotation> <xs:documentation>vocSet: T19454 (C-0-T19454-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EncounterSpecialCourtesy"> <xs:annotation> <xs:documentation>vocSet: T12242 (C-0-T12242-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EXT"/> <xs:enumeration value="NRM"/> <xs:enumeration value="PRF"/> <xs:enumeration value="STF"/> <xs:enumeration value="VIP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EntityClass"> <xs:annotation> <xs:documentation>vocSet: T10882 (C-0-T10882-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="EntityClassRoot x_EntityClassDocumentReceiving x_EntityClassPersonOrOrgReceiving"/> </xs:simpleType> <xs:simpleType name="EntityClassRoot"> <xs:annotation> <xs:documentation>specDomain: S13922 (C-0-T10882-S13922-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="EntityClassLivingSubject EntityClassMaterial EntityClassOrganization EntityClassPlace"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="ENT"/> <xs:enumeration value="RGRP"/> <xs:enumeration value="HCE"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="EntityClassLivingSubject"> <xs:annotation> <xs:documentation>specDomain: S10884 (C-0-T10882-S13922-S10884-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="EntityClassNonPersonLivingSubject"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="LIV"/> <xs:enumeration value="PSN"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="EntityClassNonPersonLivingSubject"> <xs:annotation> <xs:documentation>specDomain: S11621 (C-0-T10882-S13922-S10884-S11621-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="NLIV"/> <xs:enumeration value="ANM"/> <xs:enumeration value="MIC"/> <xs:enumeration value="PLNT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EntityClassMaterial"> <xs:annotation> <xs:documentation>specDomain: S10883 (C-0-T10882-S13922-S10883-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="EntityClassManufacturedMaterial"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="MAT"/> <xs:enumeration value="CHEM"/> <xs:enumeration value="FOOD"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="EntityClassManufacturedMaterial"> <xs:annotation> <xs:documentation>specDomain: S13934 (C-0-T10882-S13922-S10883-S13934-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="EntityClassContainer EntityClassDevice"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="MMAT"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="EntityClassContainer"> <xs:annotation> <xs:documentation>specDomain: S11622 (C-0-T10882-S13922-S10883-S13934-S11622-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CONT"/> <xs:enumeration value="HOLD"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EntityClassDevice"> <xs:annotation> <xs:documentation>specDomain: S11623 (C-0-T10882-S13922-S10883-S13934-S11623-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DEV"/> <xs:enumeration value="CER"/> <xs:enumeration value="MODDV"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EntityClassOrganization"> <xs:annotation> <xs:documentation>specDomain: S10889 (C-0-T10882-S13922-S10889-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="EntityClassState"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="ORG"/> <xs:enumeration value="PUB"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="EntityClassState"> <xs:annotation> <xs:documentation>specDomain: S10890 (C-0-T10882-S13922-S10889-S10890-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="STATE"/> <xs:enumeration value="NAT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EntityClassPlace"> <xs:annotation> <xs:documentation>specDomain: S10892 (C-0-T10882-S13922-S10892-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PLC"/> <xs:enumeration value="CITY"/> <xs:enumeration value="COUNTRY"/> <xs:enumeration value="COUNTY"/> <xs:enumeration value="PROVINCE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_EntityClassDocumentReceiving"> <xs:annotation> <xs:documentation>abstDomain: A19462 (C-0-T10882-A19462-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="HCE"/> <xs:enumeration value="PSN"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_EntityClassPersonOrOrgReceiving"> <xs:annotation> <xs:documentation>abstDomain: A19463 (C-0-T10882-A19463-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PSN"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EntityClassAnimal"> <xs:annotation> <xs:documentation>vocSet: O20035 (C-0-O20035-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EntityClassCertificateRepresentation"> <xs:annotation> <xs:documentation>vocSet: O20036 (C-0-O20036-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EntityClassChemicalSubstance"> <xs:annotation> <xs:documentation>vocSet: O20037 (C-0-O20037-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EntityClassCityOrTown"> <xs:annotation> <xs:documentation>vocSet: O20038 (C-0-O20038-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EntityClassCountry"> <xs:annotation> <xs:documentation>vocSet: O20039 (C-0-O20039-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EntityClassCountyOrParish"> <xs:annotation> <xs:documentation>vocSet: O20040 (C-0-O20040-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EntityClassFood"> <xs:annotation> <xs:documentation>vocSet: O20041 (C-0-O20041-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EntityClassGroup"> <xs:annotation> <xs:documentation>vocSet: O20051 (C-0-O20051-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EntityClassHealthChartEntity"> <xs:annotation> <xs:documentation>vocSet: O20042 (C-0-O20042-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EntityClassHolder"> <xs:annotation> <xs:documentation>vocSet: O20043 (C-0-O20043-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EntityClassImagingModality"> <xs:annotation> <xs:documentation>vocSet: O20045 (C-0-O20045-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EntityClassMicroorganism"> <xs:annotation> <xs:documentation>vocSet: O20044 (C-0-O20044-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EntityClassNation"> <xs:annotation> <xs:documentation>vocSet: O20046 (C-0-O20046-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EntityClassPerson"> <xs:annotation> <xs:documentation>vocSet: O20049 (C-0-O20049-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EntityClassPlant"> <xs:annotation> <xs:documentation>vocSet: O20047 (C-0-O20047-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EntityClassPublicInstitution"> <xs:annotation> <xs:documentation>vocSet: O20050 (C-0-O20050-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EntityClassStateOrProvince"> <xs:annotation> <xs:documentation>vocSet: O20048 (C-0-O20048-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EntityCode"> <xs:annotation> <xs:documentation>vocSet: T16040 (C-0-T16040-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="MaterialEntityClassType NonPersonLivingSubjectEntityType OrganizationEntityType PlaceEntityType ResourceGroupEntityType x_AdministeredSubstance"/> </xs:simpleType> <xs:simpleType name="MaterialEntityClassType"> <xs:annotation> <xs:documentation>abstDomain: A16041 (C-0-T16040-A16041-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ContainerEntityType DeviceGenericType DrugEntity ExposureAgentEntityType MaterialEntityAdditive MedicalDevice ProductEntityType SpecimenEntityType VaccineEntityType x_BillableProduct"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="BLDPRD"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ExposureAgentEntityType"> <xs:annotation> <xs:documentation>abstDomain: A19698 (C-0-T16040-A16041-A19698-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ClinicalDrug NonDrugAgentEntity cs"/> </xs:simpleType> <xs:simpleType name="NonDrugAgentEntity"> <xs:annotation> <xs:documentation>abstDomain: A19699 (C-0-T16040-A16041-A19698-A19699-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="NDA16"/> <xs:enumeration value="NDA17"/> <xs:enumeration value="NDA01"/> <xs:enumeration value="NDA02"/> <xs:enumeration value="NDA08"/> <xs:enumeration value="NDA03"/> <xs:enumeration value="NDA12"/> <xs:enumeration value="NDA10"/> <xs:enumeration value="NDA04"/> <xs:enumeration value="NDA13"/> <xs:enumeration value="NDA09"/> <xs:enumeration value="NDA05"/> <xs:enumeration value="NDA14"/> <xs:enumeration value="NDA06"/> <xs:enumeration value="NDA15"/> <xs:enumeration value="NDA11"/> <xs:enumeration value="NDA07"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SpecimenEntityType"> <xs:annotation> <xs:documentation>abstDomain: A19464 (C-0-T16040-A16041-A19464-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ABS"/> <xs:enumeration value="AMN"/> <xs:enumeration value="ASP"/> <xs:enumeration value="BPH"/> <xs:enumeration value="BIFL"/> <xs:enumeration value="BLDCO"/> <xs:enumeration value="BLDA"/> <xs:enumeration value="BBL"/> <xs:enumeration value="BLDC"/> <xs:enumeration value="BPU"/> <xs:enumeration value="BLDV"/> <xs:enumeration value="FLU"/> <xs:enumeration value="BON"/> <xs:enumeration value="MILK"/> <xs:enumeration value="BRO"/> <xs:enumeration value="BRN"/> <xs:enumeration value="CALC"/> <xs:enumeration value="STON"/> <xs:enumeration value="CNL"/> <xs:enumeration value="CDM"/> <xs:enumeration value="CTP"/> <xs:enumeration value="CSF"/> <xs:enumeration value="CVM"/> <xs:enumeration value="CVX"/> <xs:enumeration value="COL"/> <xs:enumeration value="CNJT"/> <xs:enumeration value="CRN"/> <xs:enumeration value="CUR"/> <xs:enumeration value="CYST"/> <xs:enumeration value="DIAF"/> <xs:enumeration value="DOSE"/> <xs:enumeration value="DRN"/> <xs:enumeration value="DUFL"/> <xs:enumeration value="EAR"/> <xs:enumeration value="EARW"/> <xs:enumeration value="ELT"/> <xs:enumeration value="ENDC"/> <xs:enumeration value="ENDM"/> <xs:enumeration value="EOS"/> <xs:enumeration value="RBC"/> <xs:enumeration value="BRTH"/> <xs:enumeration value="EXG"/> <xs:enumeration value="EYE"/> <xs:enumeration value="FIB"/> <xs:enumeration value="FLT"/> <xs:enumeration value="FIST"/> <xs:enumeration value="FOOD"/> <xs:enumeration value="GAS"/> <xs:enumeration value="GAST"/> <xs:enumeration value="GEN"/> <xs:enumeration value="GENC"/> <xs:enumeration value="GENF"/> <xs:enumeration value="GENL"/> <xs:enumeration value="GENV"/> <xs:enumeration value="HAR"/> <xs:enumeration value="IHG"/> <xs:enumeration value="IT"/> <xs:enumeration value="ISLT"/> <xs:enumeration value="LAM"/> <xs:enumeration value="WBC"/> <xs:enumeration value="LN"/> <xs:enumeration value="LNA"/> <xs:enumeration value="LNV"/> <xs:enumeration value="LIQ"/> <xs:enumeration value="LYM"/> <xs:enumeration value="MAC"/> <xs:enumeration value="MAR"/> <xs:enumeration value="MEC"/> <xs:enumeration value="MBLD"/> <xs:enumeration value="MLK"/> <xs:enumeration value="NAIL"/> <xs:enumeration value="NOS"/> <xs:enumeration value="PAFL"/> <xs:enumeration value="PAT"/> <xs:enumeration value="PRT"/> <xs:enumeration value="PLC"/> <xs:enumeration value="PLAS"/> <xs:enumeration value="PLB"/> <xs:enumeration value="PPP"/> <xs:enumeration value="PRP"/> <xs:enumeration value="PLR"/> <xs:enumeration value="PMN"/> <xs:enumeration value="PUS"/> <xs:enumeration value="SAL"/> <xs:enumeration value="SMN"/> <xs:enumeration value="SMPLS"/> <xs:enumeration value="SER"/> <xs:enumeration value="SKM"/> <xs:enumeration value="SKN"/> <xs:enumeration value="SPRM"/> <xs:enumeration value="SPT"/> <xs:enumeration value="SPTC"/> <xs:enumeration value="SPTT"/> <xs:enumeration value="STL"/> <xs:enumeration value="SWT"/> <xs:enumeration value="SNV"/> <xs:enumeration value="TEAR"/> <xs:enumeration value="THRT"/> <xs:enumeration value="THRB"/> <xs:enumeration value="TISG"/> <xs:enumeration value="TLGI"/> <xs:enumeration value="TLNG"/> <xs:enumeration value="TISPL"/> <xs:enumeration value="TSMI"/> <xs:enumeration value="TISU"/> <xs:enumeration value="TISS"/> <xs:enumeration value="TUB"/> <xs:enumeration value="ULC"/> <xs:enumeration value="UMB"/> <xs:enumeration value="UMED"/> <xs:enumeration value="USUB"/> <xs:enumeration value="URTH"/> <xs:enumeration value="UR"/> <xs:enumeration value="URT"/> <xs:enumeration value="URC"/> <xs:enumeration value="URNS"/> <xs:enumeration value="VOM"/> <xs:enumeration value="WAT"/> <xs:enumeration value="BLD"/> <xs:enumeration value="BDY"/> <xs:enumeration value="WICK"/> <xs:enumeration value="WND"/> <xs:enumeration value="WNDA"/> <xs:enumeration value="WNDD"/> <xs:enumeration value="WNDE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_BillableProduct"> <xs:annotation> <xs:documentation>abstDomain: A19867 (C-0-T16040-A16041-A19867-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ContainerEntityType DeviceGenericType MaterialEntityAdditive MedicalDevice ProductEntityType VaccineEntityType cs"/> </xs:simpleType> <xs:simpleType name="ContainerEntityType"> <xs:annotation> <xs:documentation>abstDomain: A16143 (C-0-T16040-A16041-A19867-A16143-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="PackageEntityType cs"/> </xs:simpleType> <xs:simpleType name="PackageEntityType"> <xs:annotation> <xs:documentation>specDomain: S16144 (C-0-T16040-A16041-A19867-A16143-S16144-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CompliancePackageEntityType KitEntityType NonRigidContainerEntityType RigidContainerEntityType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="PKG"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="CompliancePackageEntityType"> <xs:annotation> <xs:documentation>specDomain: S16170 (C-0-T16040-A16041-A19867-A16143-S16144-S16170-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="BlisterPackEntityType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="COMPPKG"/> <xs:enumeration value="DIALPK"/> <xs:enumeration value="DISK"/> <xs:enumeration value="DOSET"/> <xs:enumeration value="STRIP"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="KitEntityType"> <xs:annotation> <xs:documentation>specDomain: S16145 (C-0-T16040-A16041-A19867-A16143-S16144-S16145-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="KIT"/> <xs:enumeration value="SYSTM"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NonRigidContainerEntityType"> <xs:annotation> <xs:documentation>abstDomain: A16147 (C-0-T16040-A16041-A19867-A16143-S16144-A16147-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="BAG"/> <xs:enumeration value="PACKT"/> <xs:enumeration value="PCH"/> <xs:enumeration value="SACH"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RigidContainerEntityType"> <xs:annotation> <xs:documentation>abstDomain: A16152 (C-0-T16040-A16041-A19867-A16143-S16144-A16152-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="BlisterPackEntityType IndividualPackageEntityType MultiUseContainerEntityType cs"/> </xs:simpleType> <xs:simpleType name="BlisterPackEntityType"> <xs:annotation> <xs:documentation>specDomain: S16171 (C-0-T16040-A16041-A19867-A16143-S16144-A16152-S16171-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="BLSTRPK"/> <xs:enumeration value="CARD"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IndividualPackageEntityType"> <xs:annotation> <xs:documentation>abstDomain: A16176 (C-0-T16040-A16041-A19867-A16143-S16144-A16152-A16176-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AMP"/> <xs:enumeration value="MINIM"/> <xs:enumeration value="NEBAMP"/> <xs:enumeration value="OVUL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MultiUseContainerEntityType"> <xs:annotation> <xs:documentation>abstDomain: A16153 (C-0-T16040-A16041-A19867-A16143-S16144-A16152-A16153-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="BottleEntityType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="BOX"/> <xs:enumeration value="CAN"/> <xs:enumeration value="CNSTR"/> <xs:enumeration value="CART"/> <xs:enumeration value="JAR"/> <xs:enumeration value="JUG"/> <xs:enumeration value="TIN"/> <xs:enumeration value="TUB"/> <xs:enumeration value="TUBE"/> <xs:enumeration value="VIAL"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="BottleEntityType"> <xs:annotation> <xs:documentation>specDomain: S16155 (C-0-T16040-A16041-A19867-A16143-S16144-A16152-A16153-S16155-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="PlasticBottleEntityType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="BOT"/> <xs:enumeration value="BOTA"/> <xs:enumeration value="BOTD"/> <xs:enumeration value="BOTG"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="PlasticBottleEntityType"> <xs:annotation> <xs:documentation>specDomain: S16159 (C-0-T16040-A16041-A19867-A16143-S16144-A16152-A16153-S16155-S16159-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="BOTP"/> <xs:enumeration value="BOTPLY"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DeviceGenericType"> <xs:annotation> <xs:documentation>abstDomain: A19623 (C-0-T16040-A16041-A19867-A19623-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="MaterialEntityAdditive"> <xs:annotation> <xs:documentation>abstDomain: A16042 (C-0-T16040-A16041-A19867-A16042-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="F10"/> <xs:enumeration value="C32"/> <xs:enumeration value="C38"/> <xs:enumeration value="HCL6"/> <xs:enumeration value="ACDA"/> <xs:enumeration value="ACDB"/> <xs:enumeration value="ACET"/> <xs:enumeration value="AMIES"/> <xs:enumeration value="HEPA"/> <xs:enumeration value="BACTM"/> <xs:enumeration value="BOR"/> <xs:enumeration value="BOUIN"/> <xs:enumeration value="BF10"/> <xs:enumeration value="WEST"/> <xs:enumeration value="BSKM"/> <xs:enumeration value="CTAD"/> <xs:enumeration value="CARS"/> <xs:enumeration value="CARY"/> <xs:enumeration value="CHLTM"/> <xs:enumeration value="ENT"/> <xs:enumeration value="JKM"/> <xs:enumeration value="KARN"/> <xs:enumeration value="LIA"/> <xs:enumeration value="HEPL"/> <xs:enumeration value="M4"/> <xs:enumeration value="M4RT"/> <xs:enumeration value="M5"/> <xs:enumeration value="MMDTM"/> <xs:enumeration value="MICHTM"/> <xs:enumeration value="HNO3"/> <xs:enumeration value="NONE"/> <xs:enumeration value="PAGE"/> <xs:enumeration value="PHENOL"/> <xs:enumeration value="PVA"/> <xs:enumeration value="KOX"/> <xs:enumeration value="EDTK15"/> <xs:enumeration value="EDTK75"/> <xs:enumeration value="RLM"/> <xs:enumeration value="SST"/> <xs:enumeration value="SILICA"/> <xs:enumeration value="NAF"/> <xs:enumeration value="FL100"/> <xs:enumeration value="FL10"/> <xs:enumeration value="SPS"/> <xs:enumeration value="HEPN"/> <xs:enumeration value="EDTN"/> <xs:enumeration value="STUTM"/> <xs:enumeration value="THROM"/> <xs:enumeration value="FDP"/> <xs:enumeration value="THYMOL"/> <xs:enumeration value="THYO"/> <xs:enumeration value="TOLU"/> <xs:enumeration value="URETM"/> <xs:enumeration value="VIRTM"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MedicalDevice"> <xs:annotation> <xs:documentation>abstDomain: A16188 (C-0-T16040-A16041-A19867-A16188-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AccessMedicalDevice AdministrationMedicalDevice cs"/> </xs:simpleType> <xs:simpleType name="AccessMedicalDevice"> <xs:annotation> <xs:documentation>abstDomain: A16200 (C-0-T16040-A16041-A19867-A16188-A16200-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="LineAccessMedicalDevice cs"/> </xs:simpleType> <xs:simpleType name="LineAccessMedicalDevice"> <xs:annotation> <xs:documentation>specDomain: S16201 (C-0-T16040-A16041-A19867-A16188-A16200-S16201-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="LINE"/> <xs:enumeration value="IALINE"/> <xs:enumeration value="IVLINE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="AdministrationMedicalDevice"> <xs:annotation> <xs:documentation>abstDomain: A16189 (C-0-T16040-A16041-A19867-A16188-A16189-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="InhalerMedicalDevice InjectionMedicalDevice"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="APLCTR"/> <xs:enumeration value="PMP"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="InhalerMedicalDevice"> <xs:annotation> <xs:documentation>specDomain: S16196 (C-0-T16040-A16041-A19867-A16188-A16189-S16196-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="INH"/> <xs:enumeration value="DSKUNH"/> <xs:enumeration value="DSKS"/> <xs:enumeration value="TRBINH"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="InjectionMedicalDevice"> <xs:annotation> <xs:documentation>abstDomain: A16191 (C-0-T16040-A16041-A19867-A16188-A16189-A16191-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AINJ"/> <xs:enumeration value="PEN"/> <xs:enumeration value="SYR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="HealthCareCommonProcedureCodingSystem"> <xs:annotation> <xs:documentation>abstDomain: A19394 (C-0-T16040-A16041-A19867-A19357-A19394-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="VisionProductEntityType"> <xs:annotation> <xs:documentation>abstDomain: A19827 (C-0-T16040-A16041-A19867-A19357-A19827-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CPT4 CanadianVisionProductRoleType cs"/> </xs:simpleType> <xs:simpleType name="CPT4"> <xs:annotation> <xs:documentation>abstDomain: A19828 (C-0-T16040-A16041-A19867-A19357-A19827-A19828-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="CanadianVisionProductRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19829 (C-0-T16040-A16041-A19867-A19357-A19827-A19829-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="NonPersonLivingSubjectEntityType"> <xs:annotation> <xs:documentation>abstDomain: A19870 (C-0-T16040-A19870-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="OrganizationEntityType"> <xs:annotation> <xs:documentation>abstDomain: A19608 (C-0-T16040-A19608-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="IndividualCaseSafetyReportSenderType NationEntityType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="RELIG"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="IndividualCaseSafetyReportSenderType"> <xs:annotation> <xs:documentation>abstDomain: A19624 (C-0-T16040-A19608-A19624-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="NationEntityType"> <xs:annotation> <xs:documentation>abstDomain: A19749 (C-0-T16040-A19608-A19749-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="PlaceEntityType"> <xs:annotation> <xs:documentation>abstDomain: A16100 (C-0-T16040-A16100-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CountryEntityType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="BED"/> <xs:enumeration value="BLDG"/> <xs:enumeration value="FLOOR"/> <xs:enumeration value="ROOM"/> <xs:enumeration value="WING"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="CountryEntityType"> <xs:annotation> <xs:documentation>abstDomain: A19675 (C-0-T16040-A16100-A19675-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ResourceGroupEntityType"> <xs:annotation> <xs:documentation>abstDomain: A19652 (C-0-T16040-A19652-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PRAC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_AdministeredSubstance"> <xs:annotation> <xs:documentation>abstDomain: A19667 (C-0-T16040-A19667-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="x_Medicine"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="VCCNE"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="x_Medicine"> <xs:annotation> <xs:documentation>abstDomain: A19668 (C-0-T16040-A19667-A19668-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DrugEntity VaccineEntityType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="BLDPRD"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DrugEntity"> <xs:annotation> <xs:documentation>abstDomain: A16530 (C-0-T16040-A19667-A19668-A16530-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ClinicalDrug cs"/> </xs:simpleType> <xs:simpleType name="ClinicalDrug"> <xs:annotation> <xs:documentation>abstDomain: A16205 (C-0-T16040-A19667-A19668-A16530-A16205-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActiveIngredientDrugEntityType ManufacturedDrug cs"/> </xs:simpleType> <xs:simpleType name="ActiveIngredientDrugEntityType"> <xs:annotation> <xs:documentation>abstDomain: A19721 (C-0-T16040-A19667-A19668-A16530-A16205-A19721-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ManufacturedDrug"> <xs:annotation> <xs:documentation>abstDomain: A16206 (C-0-T16040-A19667-A19668-A16530-A16205-A16206-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="PackagedDrugProductEntity cs"/> </xs:simpleType> <xs:simpleType name="PackagedDrugProductEntity"> <xs:annotation> <xs:documentation>abstDomain: A19618 (C-0-T16040-A19667-A19668-A16530-A16205-A16206-A19618-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="VaccineEntityType"> <xs:annotation> <xs:documentation>specDomain: S21458 (C-0-T16040-A19667-A19668-S21458-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="VCCNE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EntityDeterminer"> <xs:annotation> <xs:documentation>vocSet: T10878 (C-0-T10878-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="EntityDeterminerDetermined x_DeterminerInstanceKind"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="INSTANCE"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="EntityDeterminerDetermined"> <xs:annotation> <xs:documentation>specDomain: S10879 (C-0-T10878-S10879-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="KIND"/> <xs:enumeration value="QUANTIFIED_KIND"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_DeterminerInstanceKind"> <xs:annotation> <xs:documentation>abstDomain: A19670 (C-0-T10878-A19670-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="KIND"/> <xs:enumeration value="QUANTIFIED_KIND"/> <xs:enumeration value="INSTANCE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EntityDeterminerDescribedQuantified"> <xs:annotation> <xs:documentation>vocSet: O20053 (C-0-O20053-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EntityDeterminerSpecific"> <xs:annotation> <xs:documentation>vocSet: O20052 (C-0-O20052-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EntityHandling"> <xs:annotation> <xs:documentation>vocSet: T13988 (C-0-T13988-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AMB"/> <xs:enumeration value="C37"/> <xs:enumeration value="CAMB"/> <xs:enumeration value="CFRZ"/> <xs:enumeration value="CREF"/> <xs:enumeration value="DFRZ"/> <xs:enumeration value="MTLF"/> <xs:enumeration value="CATM"/> <xs:enumeration value="PRTL"/> <xs:enumeration value="REF"/> <xs:enumeration value="SBU"/> <xs:enumeration value="UFRZ"/> <xs:enumeration value="PSA"/> <xs:enumeration value="DRY"/> <xs:enumeration value="FRZ"/> <xs:enumeration value="NTR"/> <xs:enumeration value="PSO"/> <xs:enumeration value="UPR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EntityNamePartQualifier"> <xs:annotation> <xs:documentation>vocSet: T15888 (C-0-T15888-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="OrganizationNamePartQualifier PersonNamePartQualifier"/> </xs:simpleType> <xs:simpleType name="OrganizationNamePartQualifier"> <xs:annotation> <xs:documentation>abstDomain: A15889 (C-0-T15888-A15889-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="LS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PersonNamePartQualifier"> <xs:annotation> <xs:documentation>abstDomain: A10659 (C-0-T15888-A10659-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="PersonNamePartAffixTypes PersonNamePartChangeQualifier PersonNamePartMiscQualifier"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="IN"/> <xs:enumeration value="TITLE"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="PersonNamePartAffixTypes"> <xs:annotation> <xs:documentation>abstDomain: A10666 (C-0-T15888-A10659-A10666-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AC"/> <xs:enumeration value="NB"/> <xs:enumeration value="PR"/> <xs:enumeration value="VV"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PersonNamePartChangeQualifier"> <xs:annotation> <xs:documentation>abstDomain: A10660 (C-0-T15888-A10659-A10660-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AD"/> <xs:enumeration value="BR"/> <xs:enumeration value="SP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PersonNamePartMiscQualifier"> <xs:annotation> <xs:documentation>abstDomain: A10671 (C-0-T15888-A10659-A10671-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EntityNamePartType"> <xs:annotation> <xs:documentation>vocSet: T15880 (C-0-T15880-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="x_OrganizationNamePartType x_PersonNamePartType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="DEL"/> <xs:enumeration value="FAM"/> <xs:enumeration value="GIV"/> <xs:enumeration value="PFX"/> <xs:enumeration value="SFX"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="x_OrganizationNamePartType"> <xs:annotation> <xs:documentation>abstDomain: A15881 (C-0-T15880-A15881-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DEL"/> <xs:enumeration value="PFX"/> <xs:enumeration value="SFX"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_PersonNamePartType"> <xs:annotation> <xs:documentation>abstDomain: A10653 (C-0-T15880-A10653-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DEL"/> <xs:enumeration value="FAM"/> <xs:enumeration value="GIV"/> <xs:enumeration value="PFX"/> <xs:enumeration value="SFX"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EntityNameUse"> <xs:annotation> <xs:documentation>vocSet: T15913 (C-0-T15913-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="EntityNameSearchUse NameLegalUse NameRepresentationUse OrganizationNameUse PersonNameUse"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="C"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="NameLegalUse"> <xs:annotation> <xs:documentation>specDomain: S10176 (C-0-T15913-S10176-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="L"/> <xs:enumeration value="OR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OrganizationNameUse"> <xs:annotation> <xs:documentation>abstDomain: A15914 (C-0-T15913-A15914-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="EntityNameSearchUse NameRepresentationUse OrganizationNameUseLegalByBOT"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="C"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="OrganizationNameUseLegalByBOT"> <xs:annotation> <xs:documentation>specDomain: S10176 (C-0-T15913-A15914-S10176-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="L"/> <xs:enumeration value="OR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PersonNameUse"> <xs:annotation> <xs:documentation>abstDomain: A200 (C-0-T15913-A200-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="EntityNameSearchUse NameRepresentationUse PersonNameUseLegalByBOT PersonNameUsePseudonym"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="I"/> <xs:enumeration value="C"/> <xs:enumeration value="R"/> <xs:enumeration value="ASGN"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="EntityNameSearchUse"> <xs:annotation> <xs:documentation>specDomain: S21363 (C-0-T15913-A200-S21363-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SRCH"/> <xs:enumeration value="SNDX"/> <xs:enumeration value="PHON"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PersonNameUseLegalByBOT"> <xs:annotation> <xs:documentation>specDomain: S10176 (C-0-T15913-A200-S10176-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="L"/> <xs:enumeration value="OR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PersonNameUsePseudonym"> <xs:annotation> <xs:documentation>specDomain: S21321 (C-0-T15913-A200-S21321-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="P"/> <xs:enumeration value="A"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EntityRisk"> <xs:annotation> <xs:documentation>vocSet: T10405 (C-0-T10405-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="MaterialDangerInfectious MaterialDangerInflammable"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="BIO"/> <xs:enumeration value="COR"/> <xs:enumeration value="ESC"/> <xs:enumeration value="AGG"/> <xs:enumeration value="INJ"/> <xs:enumeration value="POI"/> <xs:enumeration value="RAD"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="MaterialDangerInfectious"> <xs:annotation> <xs:documentation>specDomain: S10407 (C-0-T10405-S10407-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="INF"/> <xs:enumeration value="BHZ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MaterialDangerInflammable"> <xs:annotation> <xs:documentation>specDomain: S10412 (C-0-T10405-S10412-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IFL"/> <xs:enumeration value="EXP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EntityStatus"> <xs:annotation> <xs:documentation>vocSet: T16005 (C-0-T16005-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="EntityStatusNormal"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="nullified"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="EntityStatusNormal"> <xs:annotation> <xs:documentation>specDomain: S16006 (C-0-T16005-S16006-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="normal"/> <xs:enumeration value="active"/> <xs:enumeration value="inactive"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EntityStatusActive"> <xs:annotation> <xs:documentation>vocSet: O20054 (C-0-O20054-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EntityStatusInactive"> <xs:annotation> <xs:documentation>vocSet: O20055 (C-0-O20055-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EntityStatusNullified"> <xs:annotation> <xs:documentation>vocSet: O20056 (C-0-O20056-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EquipmentAlertLevel"> <xs:annotation> <xs:documentation>vocSet: T10896 (C-0-T10896-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="C"/> <xs:enumeration value="N"/> <xs:enumeration value="S"/> <xs:enumeration value="W"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Ethnicity"> <xs:annotation> <xs:documentation>vocSet: T15836 (C-0-T15836-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="EthnicityHispanic"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="2186-5"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="EthnicityHispanic"> <xs:annotation> <xs:documentation>specDomain: S15837 (C-0-T15836-S15837-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="EthnicityHispanicCentralAmerican EthnicityHispanicMexican EthnicityHispanicSouthAmerican EthnicityHispanicSpaniard"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="2135-2"/> <xs:enumeration value="2182-4"/> <xs:enumeration value="2184-0"/> <xs:enumeration value="2178-2"/> <xs:enumeration value="2180-8"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="EthnicityHispanicCentralAmerican"> <xs:annotation> <xs:documentation>specDomain: S15854 (C-0-T15836-S15837-S15854-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="2155-0"/> <xs:enumeration value="2163-4"/> <xs:enumeration value="2162-6"/> <xs:enumeration value="2156-8"/> <xs:enumeration value="2157-6"/> <xs:enumeration value="2158-4"/> <xs:enumeration value="2159-2"/> <xs:enumeration value="2160-0"/> <xs:enumeration value="2161-8"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EthnicityHispanicMexican"> <xs:annotation> <xs:documentation>specDomain: S15848 (C-0-T15836-S15837-S15848-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="2148-5"/> <xs:enumeration value="2151-9"/> <xs:enumeration value="2152-7"/> <xs:enumeration value="2149-3"/> <xs:enumeration value="2153-5"/> <xs:enumeration value="2150-1"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EthnicityHispanicSouthAmerican"> <xs:annotation> <xs:documentation>specDomain: S15863 (C-0-T15836-S15837-S15863-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="2165-9"/> <xs:enumeration value="2166-7"/> <xs:enumeration value="2167-5"/> <xs:enumeration value="2168-3"/> <xs:enumeration value="2169-1"/> <xs:enumeration value="2176-6"/> <xs:enumeration value="2170-9"/> <xs:enumeration value="2171-7"/> <xs:enumeration value="2172-5"/> <xs:enumeration value="2175-8"/> <xs:enumeration value="2173-3"/> <xs:enumeration value="2174-1"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EthnicityHispanicSpaniard"> <xs:annotation> <xs:documentation>specDomain: S15838 (C-0-T15836-S15837-S15838-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="2137-8"/> <xs:enumeration value="2138-6"/> <xs:enumeration value="2139-4"/> <xs:enumeration value="2142-8"/> <xs:enumeration value="2145-1"/> <xs:enumeration value="2140-2"/> <xs:enumeration value="2141-0"/> <xs:enumeration value="2143-6"/> <xs:enumeration value="2146-9"/> <xs:enumeration value="2144-4"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ExposureMode"> <xs:annotation> <xs:documentation>vocSet: T19940 (C-0-T19940-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AIRBORNE"/> <xs:enumeration value="CONTACT"/> <xs:enumeration value="FOODBORNE"/> <xs:enumeration value="WATERBORNE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="GTSAbbreviation"> <xs:annotation> <xs:documentation>vocSet: T10720 (C-0-T10720-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="GTSAbbreviationHolidays"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="AM"/> <xs:enumeration value="BID"/> <xs:enumeration value="JB"/> <xs:enumeration value="JE"/> <xs:enumeration value="PM"/> <xs:enumeration value="QID"/> <xs:enumeration value="TID"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="GTSAbbreviationHolidays"> <xs:annotation> <xs:documentation>specDomain: S10725 (C-0-T10720-S10725-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="GTSAbbreviationHolidaysChristianRoman GTSAbbreviationHolidaysUSNational"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="JH"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="GTSAbbreviationHolidaysChristianRoman"> <xs:annotation> <xs:documentation>abstDomain: A10726 (C-0-T10720-S10725-A10726-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="JHCHREAS"/> <xs:enumeration value="JHCHRGFR"/> <xs:enumeration value="JHCHRNEW"/> <xs:enumeration value="JHCHRPEN"/> <xs:enumeration value="JHCHRXME"/> <xs:enumeration value="JHCHRXMS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="GTSAbbreviationHolidaysUSNational"> <xs:annotation> <xs:documentation>specDomain: S10733 (C-0-T10720-S10725-S10733-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="JHNUS"/> <xs:enumeration value="JHNUSCLM"/> <xs:enumeration value="JHNUSIND"/> <xs:enumeration value="JHNUSIND1"/> <xs:enumeration value="JHNUSIND5"/> <xs:enumeration value="JHNUSLBR"/> <xs:enumeration value="JHNUSMEM"/> <xs:enumeration value="JHNUSMEM5"/> <xs:enumeration value="JHNUSMEM6"/> <xs:enumeration value="JHNUSMLK"/> <xs:enumeration value="JHNUSPRE"/> <xs:enumeration value="JHNUSTKS"/> <xs:enumeration value="JHNUSTKS5"/> <xs:enumeration value="JHNUSVET"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="GenderStatus"> <xs:annotation> <xs:documentation>vocSet: T11523 (C-0-T11523-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="I"/> <xs:enumeration value="N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="HL7CommitteeIDInRIM"> <xs:annotation> <xs:documentation>vocSet: T10034 (C-0-T10034-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="C02"/> <xs:enumeration value="C06"/> <xs:enumeration value="C09"/> <xs:enumeration value="C00"/> <xs:enumeration value="C04"/> <xs:enumeration value="C03"/> <xs:enumeration value="C12"/> <xs:enumeration value="C10"/> <xs:enumeration value="C20"/> <xs:enumeration value="C01"/> <xs:enumeration value="C21"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="HL7ConformanceInclusion"> <xs:annotation> <xs:documentation>vocSet: T10010 (C-0-T10010-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="InclusionNotMandatory"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="M"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="InclusionNotMandatory"> <xs:annotation> <xs:documentation>abstDomain: A10012 (C-0-T10010-A10012-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="InclusionNotRequired"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="NP"/> <xs:enumeration value="RQ"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="InclusionNotRequired"> <xs:annotation> <xs:documentation>specDomain: S10015 (C-0-T10010-A10012-S10015-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="NR"/> <xs:enumeration value="X"/> <xs:enumeration value="RE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="HL7DefinedRoseProperty"> <xs:annotation> <xs:documentation>vocSet: T10083 (C-0-T10083-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ApplicationRoleI"/> <xs:enumeration value="Cardinality"/> <xs:enumeration value="MayRepeat"/> <xs:enumeration value="InstancedDTsymbo"/> <xs:enumeration value="DTsymbol"/> <xs:enumeration value="DevelopingCommit"/> <xs:enumeration value="Organization"/> <xs:enumeration value="EndState"/> <xs:enumeration value="HMD"/> <xs:enumeration value="zhxID"/> <xs:enumeration value="ID"/> <xs:enumeration value="DeleteFromMIM"/> <xs:enumeration value="MIM_id"/> <xs:enumeration value="MandatoryInclusi"/> <xs:enumeration value="MsgID"/> <xs:enumeration value="ModelDate"/> <xs:enumeration value="ModelDescription"/> <xs:enumeration value="ModelID"/> <xs:enumeration value="ModelName"/> <xs:enumeration value="ModelVersion"/> <xs:enumeration value="IsPrimitiveDT"/> <xs:enumeration value="RcvResp"/> <xs:enumeration value="IsReferenceDT"/> <xs:enumeration value="RespComm_id"/> <xs:enumeration value="StartState"/> <xs:enumeration value="StateAttribute"/> <xs:enumeration value="StateTransition"/> <xs:enumeration value="IsSubjectClass"/> <xs:enumeration value="V23_Fields"/> <xs:enumeration value="V23_Datatype"/> <xs:enumeration value="Vocab_domain"/> <xs:enumeration value="Vocab_strength"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="HL7ITSVersionCode"> <xs:annotation> <xs:documentation>vocSet: T19449 (C-0-T19449-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="XMLV1PR1"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="HL7StandardVersionCode"> <xs:annotation> <xs:documentation>vocSet: T19373 (C-0-T19373-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ActRelationshipExpectedSubset"/> <xs:enumeration value="ActRelationshipPastSubset"/> <xs:enumeration value="_ParticipationSubset"/> <xs:enumeration value="FUTURE"/> <xs:enumeration value="LAST"/> <xs:enumeration value="NEXT"/> <xs:enumeration value="FIRST"/> <xs:enumeration value="FUTSUM"/> <xs:enumeration value="MAX"/> <xs:enumeration value="MIN"/> <xs:enumeration value="RECENT"/> <xs:enumeration value="PAST"/> <xs:enumeration value="PREVSUM"/> <xs:enumeration value="SUM"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="HL7UpdateMode"> <xs:annotation> <xs:documentation>vocSet: T10018 (C-0-T10018-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="SetUpdateMode"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="D"/> <xs:enumeration value="I"/> <xs:enumeration value="K"/> <xs:enumeration value="R"/> <xs:enumeration value="V"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="SetUpdateMode"> <xs:annotation> <xs:documentation>abstDomain: A10024 (C-0-T10018-A10024-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ESA"/> <xs:enumeration value="ESAC"/> <xs:enumeration value="ESC"/> <xs:enumeration value="ESD"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="HPC"> <xs:annotation> <xs:documentation>vocSet: E6 (C-0-E6-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="HealthcareProviderTaxonomyHIPAA"> <xs:annotation> <xs:documentation>vocSet: T13129 (C-0-T13129-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="IndividualHealthcareProviderHIPAA OrganizationalHealthcareProviderHIPAA"/> </xs:simpleType> <xs:simpleType name="IndividualHealthcareProviderHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13130 (C-0-T13129-A13130-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AbstractChiropractersHIPAA BehavioralHealthAndOrSocialServiceProviderHIPAA DentalServiceProviderHIPAA DietaryAndOrNutritionalServiceProviderHIPAA EmergencyMedicalServiceProviderHIPAA EyeAndVisionServiceProviderHIPAA NursingServiceProviderHIPAA NursingServiceRelatedProviderHIPAA OtherPhysicianProviderHIPAA OtherServiceProviderHIPAA OtherTechnologistAndOrTechnicianHIPAA PharmacyServiceProviderHIPAA PhysicianAssistantsAndOrAdvancedPracticeNursingProviderHIPAA PhysicianHIPAA PodiatricMedicineAndOrSurgeryServiceProviderHIPAA RespiratoryAndOrRehabilitativeAndOrRestorativeProviderHIPAA SpeechAndOrLanguageAndOrHearingServiceProviderHIPAA cs"/> </xs:simpleType> <xs:simpleType name="AbstractChiropractersHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13174 (C-0-T13129-A13130-A13174-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ChiropractersHIPAA cs"/> </xs:simpleType> <xs:simpleType name="ChiropractersHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13175 (C-0-T13129-A13130-A13174-S13175-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="111N00000N"/> <xs:enumeration value="111NI0900N"/> <xs:enumeration value="111NN0400N"/> <xs:enumeration value="111NN1001N"/> <xs:enumeration value="111NX0100N"/> <xs:enumeration value="111NX0800N"/> <xs:enumeration value="111NR0200N"/> <xs:enumeration value="111NS0005N"/> <xs:enumeration value="111NT0100N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="BehavioralHealthAndOrSocialServiceProviderHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13131 (C-0-T13129-A13130-A13131-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="BehavioralHealthAndOrSocialServiceCounselorHIPAA NeuropsychologistHIPAA PsychoanalystHIPAA PsychologistHIPAA SocialWorkerHIPAA"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="106H00000N"/> <xs:enumeration value="225CA2500N"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="BehavioralHealthAndOrSocialServiceCounselorHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13132 (C-0-T13129-A13130-A13131-S13132-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="101Y00000N"/> <xs:enumeration value="101YA0400N"/> <xs:enumeration value="101YM0800N"/> <xs:enumeration value="101YP1600N"/> <xs:enumeration value="101YP2500N"/> <xs:enumeration value="101YS0200N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NeuropsychologistHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13147 (C-0-T13129-A13130-A13131-A13147-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="103GC0700N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PsychoanalystHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13149 (C-0-T13129-A13130-A13131-S13149-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="103S00000N"/> <xs:enumeration value="103SA1800N"/> <xs:enumeration value="103SA1400N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PsychologistHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13152 (C-0-T13129-A13130-A13131-S13152-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="103T00000N"/> <xs:enumeration value="103TA0400N"/> <xs:enumeration value="103TA0700N"/> <xs:enumeration value="103TB0200N"/> <xs:enumeration value="103TC2200N"/> <xs:enumeration value="103TC0700N"/> <xs:enumeration value="103TC1900N"/> <xs:enumeration value="103TE1000N"/> <xs:enumeration value="103TE1100N"/> <xs:enumeration value="103TF0000N"/> <xs:enumeration value="103TF0200N"/> <xs:enumeration value="103TH0100N"/> <xs:enumeration value="103TM1700N"/> <xs:enumeration value="103TM1800N"/> <xs:enumeration value="103TP2700N"/> <xs:enumeration value="103TP2701N"/> <xs:enumeration value="103TR0400N"/> <xs:enumeration value="103TS0200N"/> <xs:enumeration value="103TW0100N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SocialWorkerHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13171 (C-0-T13129-A13130-A13131-S13171-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="104100000N"/> <xs:enumeration value="1041C0700N"/> <xs:enumeration value="1041S0200N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DentalServiceProviderHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A16460 (C-0-T13129-A13130-A16460-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DentistHIPAA"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="126800000N"/> <xs:enumeration value="124Q00000N"/> <xs:enumeration value="126900000N"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DentistHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13188 (C-0-T13129-A13130-A16460-S13188-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Prosthodontics"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="122300000N"/> <xs:enumeration value="1223D0001Y"/> <xs:enumeration value="1223E0200Y"/> <xs:enumeration value="1223X0400Y"/> <xs:enumeration value="1223P0106Y"/> <xs:enumeration value="1223P0221Y"/> <xs:enumeration value="1223P0300Y"/> <xs:enumeration value="1223S0112Y"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="Prosthodontics"> <xs:annotation> <xs:documentation>abstDomain: A13195 (C-0-T13129-A13130-A16460-S13188-A13195-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1327D0700N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DietaryAndOrNutritionalServiceProviderHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13197 (C-0-T13129-A13130-A13197-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DietaryManagerHIPAA NutritionistHIPAA RegisteredDieticianHIPAA"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="136A00000N"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DietaryManagerHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13198 (C-0-T13129-A13130-A13197-A13198-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="NutritionistHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13205 (C-0-T13129-A13130-A13197-S13205-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="133N00000N"/> <xs:enumeration value="133NN1002N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RegisteredDieticianHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13201 (C-0-T13129-A13130-A13197-S13201-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="133V00000N"/> <xs:enumeration value="133VN1006N"/> <xs:enumeration value="133VN1004N"/> <xs:enumeration value="133VN1005N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EmergencyMedicalServiceProviderHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13207 (C-0-T13129-A13130-A13207-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="146N00000N"/> <xs:enumeration value="146M00000N"/> <xs:enumeration value="146L00000N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EyeAndVisionServiceProviderHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13211 (C-0-T13129-A13130-A13211-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="EyeAndVisionServiceProviderTechnicianAndOrTechnologistHIPAA OptometristHIPAA cs"/> </xs:simpleType> <xs:simpleType name="EyeAndVisionServiceProviderTechnicianAndOrTechnologistHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13219 (C-0-T13129-A13130-A13211-A13219-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="156FC0800N"/> <xs:enumeration value="156FC0801N"/> <xs:enumeration value="156FX1700N"/> <xs:enumeration value="156FX1100N"/> <xs:enumeration value="156FX1101N"/> <xs:enumeration value="156FX1800N"/> <xs:enumeration value="156FX1201N"/> <xs:enumeration value="156FX1202N"/> <xs:enumeration value="156FX1900N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OptometristHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13212 (C-0-T13129-A13130-A13211-S13212-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="152W00000N"/> <xs:enumeration value="152WC0800N"/> <xs:enumeration value="152WL0500N"/> <xs:enumeration value="152WX0102N"/> <xs:enumeration value="152WP0200N"/> <xs:enumeration value="152WS0006N"/> <xs:enumeration value="152WV0400N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NursingServiceProviderHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13229 (C-0-T13129-A13130-A13229-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RegisteredNurseHIPAA"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="164W00000N"/> <xs:enumeration value="164X00000N"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RegisteredNurseHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13232 (C-0-T13129-A13130-A13229-S13232-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="163W00000N"/> <xs:enumeration value="163WA0400N"/> <xs:enumeration value="163WA2000N"/> <xs:enumeration value="163WC3500N"/> <xs:enumeration value="163WC0400N"/> <xs:enumeration value="163WC1400N"/> <xs:enumeration value="163WC1500N"/> <xs:enumeration value="163WC2100N"/> <xs:enumeration value="163WC1600N"/> <xs:enumeration value="163WC0200N"/> <xs:enumeration value="163WD0400N"/> <xs:enumeration value="163WD1100N"/> <xs:enumeration value="163WE0003N"/> <xs:enumeration value="163WE0900N"/> <xs:enumeration value="163WF0300N"/> <xs:enumeration value="163WG0100N"/> <xs:enumeration value="163WG0000N"/> <xs:enumeration value="163WG0600N"/> <xs:enumeration value="163WH0500N"/> <xs:enumeration value="163WH0200N"/> <xs:enumeration value="163WH1000N"/> <xs:enumeration value="163WI0600N"/> <xs:enumeration value="163WI0500N"/> <xs:enumeration value="163WL0100N"/> <xs:enumeration value="163WM1400N"/> <xs:enumeration value="163WM0102N"/> <xs:enumeration value="163WM0705N"/> <xs:enumeration value="163WN0002N"/> <xs:enumeration value="163WN0003N"/> <xs:enumeration value="163WN0300N"/> <xs:enumeration value="163WN0800N"/> <xs:enumeration value="163WN1003N"/> <xs:enumeration value="163WX0002N"/> <xs:enumeration value="163WX0003N"/> <xs:enumeration value="163WX0106N"/> <xs:enumeration value="163WX0200N"/> <xs:enumeration value="163WX1000N"/> <xs:enumeration value="163WX1100N"/> <xs:enumeration value="163WX0800N"/> <xs:enumeration value="163WX1500N"/> <xs:enumeration value="163WX0601N"/> <xs:enumeration value="163WP0000N"/> <xs:enumeration value="163WP0218N"/> <xs:enumeration value="163WP0200N"/> <xs:enumeration value="163WP1700N"/> <xs:enumeration value="163WP2200N"/> <xs:enumeration value="163WP2201N"/> <xs:enumeration value="163WP0808N"/> <xs:enumeration value="163WP0809N"/> <xs:enumeration value="163WP0807N"/> <xs:enumeration value="163WR0400N"/> <xs:enumeration value="163WR1000N"/> <xs:enumeration value="163WS0200N"/> <xs:enumeration value="163WS0121N"/> <xs:enumeration value="163WU0100N"/> <xs:enumeration value="163WW0101N"/> <xs:enumeration value="163WW0000N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NursingServiceRelatedProviderHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13134 (C-0-T13129-A13130-S13134-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="NursingServiceRelatedProviderTechnicianHIPAA"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="374700000N"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="NursingServiceRelatedProviderTechnicianHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13134 (C-0-T13129-A13130-S13134-A13134-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="3747P1801N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OtherPhysicianProviderHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13578 (C-0-T13129-A13130-A13578-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="OtherPhysicianOsteopathHIPAA cs"/> </xs:simpleType> <xs:simpleType name="OtherPhysicianOsteopathHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13579 (C-0-T13129-A13130-A13578-A13579-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="353BL0002N"/> <xs:enumeration value="353BS0900N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OtherServiceProviderHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13136 (C-0-T13129-A13130-A13136-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="OtherServiceProviderContractorHIPAA OtherServiceProviderSpecialistHIPAA VeterinarianHIPAA"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="171100000N"/> <xs:enumeration value="172A00000N"/> <xs:enumeration value="176P00000N"/> <xs:enumeration value="175L00000N"/> <xs:enumeration value="173000000N"/> <xs:enumeration value="175M00000N"/> <xs:enumeration value="175F00000N"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="OtherServiceProviderContractorHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13139 (C-0-T13129-A13130-A13136-A13139-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="171WH0202N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OtherServiceProviderSpecialistHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13347 (C-0-T13129-A13130-A13136-A13347-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1744G0900N"/> <xs:enumeration value="1744P3200N"/> <xs:enumeration value="1744R1103N"/> <xs:enumeration value="1744R1102N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="VeterinarianHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13352 (C-0-T13129-A13130-A13136-A13352-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="174MM1900N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OtherTechnologistAndOrTechnicianHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13644 (C-0-T13129-A13130-A13644-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CardiologySpecialistOrTechnologistHIPAA HealthInformationSpecialistOrTechnologistHIPAA HealthInformationTechnicianHIPAA OtherTechnologistOrTechnicianHIPAA OtherTechnologistOrTechnicianProviderHIPAA PathologySpecialistOrTechnologistHIPAA PathologyTechnicianHIPAA RadiologicTechnologistHIPAA cs"/> </xs:simpleType> <xs:simpleType name="CardiologySpecialistOrTechnologistHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13660 (C-0-T13129-A13130-A13644-A13660-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="246VC0100N"/> <xs:enumeration value="246VC2400N"/> <xs:enumeration value="246VC2901N"/> <xs:enumeration value="246VC2902N"/> <xs:enumeration value="246VC2903N"/> <xs:enumeration value="246VP3600N"/> <xs:enumeration value="246VS1301N"/> <xs:enumeration value="246VV0100N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="HealthInformationSpecialistOrTechnologistHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13669 (C-0-T13129-A13130-A13644-A13669-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="246YC3301N"/> <xs:enumeration value="246YC3302N"/> <xs:enumeration value="246YR1600N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="HealthInformationTechnicianHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13703 (C-0-T13129-A13130-A13644-A13703-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="2470A2800N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OtherTechnologistOrTechnicianHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13673 (C-0-T13129-A13130-A13644-A13673-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="246ZA2600N"/> <xs:enumeration value="246ZB0500N"/> <xs:enumeration value="246ZB0301N"/> <xs:enumeration value="246ZB0302N"/> <xs:enumeration value="246ZB0600N"/> <xs:enumeration value="246ZE0500N"/> <xs:enumeration value="246ZE0600N"/> <xs:enumeration value="246ZF0200N"/> <xs:enumeration value="246ZG1000N"/> <xs:enumeration value="246ZG0701N"/> <xs:enumeration value="246ZI1000N"/> <xs:enumeration value="246ZN0300N"/> <xs:enumeration value="246ZS0400N"/> <xs:enumeration value="246ZV0500N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OtherTechnologistOrTechnicianProviderHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13705 (C-0-T13129-A13130-A13644-A13705-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="2472B0301N"/> <xs:enumeration value="2472D0500N"/> <xs:enumeration value="2472E0500N"/> <xs:enumeration value="2472R0900N"/> <xs:enumeration value="2472V0600N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PathologySpecialistOrTechnologistHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13688 (C-0-T13129-A13130-A13644-A13688-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="246QB0000N"/> <xs:enumeration value="246QC1000N"/> <xs:enumeration value="246QC2700N"/> <xs:enumeration value="246QH0401N"/> <xs:enumeration value="246QH0000N"/> <xs:enumeration value="246QH0600N"/> <xs:enumeration value="246QI0000N"/> <xs:enumeration value="246QL0900N"/> <xs:enumeration value="246QL0901N"/> <xs:enumeration value="246QM0706N"/> <xs:enumeration value="246QM0900N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PathologyTechnicianHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13711 (C-0-T13129-A13130-A13644-A13711-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="246RH0600N"/> <xs:enumeration value="246RM2200N"/> <xs:enumeration value="246RP1900N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RadiologicTechnologistHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13645 (C-0-T13129-A13130-A13644-A13645-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="2471C1101N"/> <xs:enumeration value="2471C3401N"/> <xs:enumeration value="2471C3402N"/> <xs:enumeration value="2471D1300N"/> <xs:enumeration value="2471M1201N"/> <xs:enumeration value="2471M1202N"/> <xs:enumeration value="2471M2300N"/> <xs:enumeration value="2471N0900N"/> <xs:enumeration value="2471Q0001N"/> <xs:enumeration value="2471Q0002N"/> <xs:enumeration value="2471R0003N"/> <xs:enumeration value="2471R0002N"/> <xs:enumeration value="2471R1500N"/> <xs:enumeration value="2471S1302N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PharmacyServiceProviderHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13354 (C-0-T13129-A13130-A13354-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="PharmacistHIPAA PharmacyServiceProviderTechnicianHIPAA cs"/> </xs:simpleType> <xs:simpleType name="PharmacistHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13355 (C-0-T13129-A13130-A13354-S13355-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="183500000N"/> <xs:enumeration value="1835G0000N"/> <xs:enumeration value="1835N0905N"/> <xs:enumeration value="1835N1003N"/> <xs:enumeration value="1835P1200N"/> <xs:enumeration value="1835P1300N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PharmacyServiceProviderTechnicianHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13361 (C-0-T13129-A13130-A13354-A13361-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1847P3400N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PhysicianAssistantsAndOrAdvancedPracticeNursingProviderHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13363 (C-0-T13129-A13130-A13363-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ClinicalNurseSpecialistHIPAA NursePractitionerHIPAA PhysicianAssistantHIPAA"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="366B00000N"/> <xs:enumeration value="367500000N"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ClinicalNurseSpecialistHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13364 (C-0-T13129-A13130-A13363-S13364-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="364S00000N"/> <xs:enumeration value="364SA2100N"/> <xs:enumeration value="364SA2200N"/> <xs:enumeration value="364SC2300N"/> <xs:enumeration value="364SC1501N"/> <xs:enumeration value="364SC0200N"/> <xs:enumeration value="364SE0003N"/> <xs:enumeration value="364SE1400N"/> <xs:enumeration value="364SF0001N"/> <xs:enumeration value="364SG0600N"/> <xs:enumeration value="364SH1100N"/> <xs:enumeration value="364SH0200N"/> <xs:enumeration value="364SI0800N"/> <xs:enumeration value="364SL0600N"/> <xs:enumeration value="364SM0705N"/> <xs:enumeration value="364SN0000N"/> <xs:enumeration value="364SN0004N"/> <xs:enumeration value="364SN0800N"/> <xs:enumeration value="364SX0106N"/> <xs:enumeration value="364SX0200N"/> <xs:enumeration value="364SX0204N"/> <xs:enumeration value="364SP0200N"/> <xs:enumeration value="364SP1700N"/> <xs:enumeration value="364SP2800N"/> <xs:enumeration value="364SP0807N"/> <xs:enumeration value="364SP0808N"/> <xs:enumeration value="364SP0809N"/> <xs:enumeration value="364SP0810N"/> <xs:enumeration value="364SP0811N"/> <xs:enumeration value="364SP0812N"/> <xs:enumeration value="364SP0813N"/> <xs:enumeration value="364SR0400N"/> <xs:enumeration value="364SR1300N"/> <xs:enumeration value="364SS0200N"/> <xs:enumeration value="364ST0500N"/> <xs:enumeration value="364SW0102N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NursePractitionerHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13402 (C-0-T13129-A13130-A13363-S13402-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="363L00000N"/> <xs:enumeration value="363LA2100N"/> <xs:enumeration value="363LA2200N"/> <xs:enumeration value="363LC1500N"/> <xs:enumeration value="363LC0200N"/> <xs:enumeration value="363LF0000N"/> <xs:enumeration value="363LG0600N"/> <xs:enumeration value="363LN0000N"/> <xs:enumeration value="363LN0005N"/> <xs:enumeration value="363LX0001N"/> <xs:enumeration value="363LX0106N"/> <xs:enumeration value="363LP0200N"/> <xs:enumeration value="363LP0223N"/> <xs:enumeration value="363LP0222N"/> <xs:enumeration value="363LP1700N"/> <xs:enumeration value="363LP2300N"/> <xs:enumeration value="363LP0808N"/> <xs:enumeration value="363LS0200N"/> <xs:enumeration value="363LW0102N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PhysicianAssistantHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13422 (C-0-T13129-A13130-A13363-S13422-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="363A00000N"/> <xs:enumeration value="363AM0700N"/> <xs:enumeration value="363AS0400N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PhysicianHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13425 (C-0-T13129-A13130-A13425-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="PhysicianAndOrOsteopathHIPAA cs"/> </xs:simpleType> <xs:simpleType name="PhysicianAndOrOsteopathHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13426 (C-0-T13129-A13130-A13425-S13426-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="203B00000N"/> <xs:enumeration value="203BA0401N"/> <xs:enumeration value="203BA0000Y"/> <xs:enumeration value="203BA0001N"/> <xs:enumeration value="203BA0002Y"/> <xs:enumeration value="203BA0003Y"/> <xs:enumeration value="203BA0501N"/> <xs:enumeration value="203BA0502N"/> <xs:enumeration value="203BA0100Y"/> <xs:enumeration value="203BA0101Y"/> <xs:enumeration value="203BA0503N"/> <xs:enumeration value="203BA0504N"/> <xs:enumeration value="203BA0200N"/> <xs:enumeration value="203BA0201Y"/> <xs:enumeration value="203BA0202N"/> <xs:enumeration value="203BA0300Y"/> <xs:enumeration value="203BB0000N"/> <xs:enumeration value="203BB0001Y"/> <xs:enumeration value="203BB0100Y"/> <xs:enumeration value="203BC0000Y"/> <xs:enumeration value="203BC0001Y"/> <xs:enumeration value="203BC0100Y"/> <xs:enumeration value="203BC2500Y"/> <xs:enumeration value="203BC0200Y"/> <xs:enumeration value="203BC0201Y"/> <xs:enumeration value="203BC0202Y"/> <xs:enumeration value="203BC0203Y"/> <xs:enumeration value="203BC0300Y"/> <xs:enumeration value="203BC0500Y"/> <xs:enumeration value="203BD0100Y"/> <xs:enumeration value="203BD0101Y"/> <xs:enumeration value="203BD0900Y"/> <xs:enumeration value="203BD0901N"/> <xs:enumeration value="203BD0300N"/> <xs:enumeration value="203BE0004Y"/> <xs:enumeration value="203BE0100Y"/> <xs:enumeration value="203BE0101Y"/> <xs:enumeration value="203BE0102Y"/> <xs:enumeration value="203BF0100Y"/> <xs:enumeration value="203BF0201Y"/> <xs:enumeration value="203BF0202N"/> <xs:enumeration value="203BG0100Y"/> <xs:enumeration value="203BG0000Y"/> <xs:enumeration value="203BG0201Y"/> <xs:enumeration value="203BG0202Y"/> <xs:enumeration value="203BG0204Y"/> <xs:enumeration value="203BG0203Y"/> <xs:enumeration value="203BG0200Y"/> <xs:enumeration value="203BG0300N"/> <xs:enumeration value="203BG0301Y"/> <xs:enumeration value="203BG0302Y"/> <xs:enumeration value="203BG0303Y"/> <xs:enumeration value="203BG0400N"/> <xs:enumeration value="203BH0000Y"/> <xs:enumeration value="203BH0003Y"/> <xs:enumeration value="203BH0001Y"/> <xs:enumeration value="203BH0002Y"/> <xs:enumeration value="203BI0001N"/> <xs:enumeration value="203BI0002N"/> <xs:enumeration value="203BI0005N"/> <xs:enumeration value="203BI0006N"/> <xs:enumeration value="203BI0007N"/> <xs:enumeration value="203BI0003Y"/> <xs:enumeration value="203BI0004Y"/> <xs:enumeration value="203BI0100Y"/> <xs:enumeration value="203BI0200Y"/> <xs:enumeration value="203BI0400N"/> <xs:enumeration value="203BI0300Y"/> <xs:enumeration value="203BL0000Y"/> <xs:enumeration value="203BM0101Y"/> <xs:enumeration value="203BM0200Y"/> <xs:enumeration value="203BM0300Y"/> <xs:enumeration value="203BN0001Y"/> <xs:enumeration value="203BN0100Y"/> <xs:enumeration value="203BN0200N"/> <xs:enumeration value="203BN0300Y"/> <xs:enumeration value="203BN0400Y"/> <xs:enumeration value="203BN0402Y"/> <xs:enumeration value="203BN0500Y"/> <xs:enumeration value="203BN0600Y"/> <xs:enumeration value="203BN0700Y"/> <xs:enumeration value="203BN0901Y"/> <xs:enumeration value="203BN0902Y"/> <xs:enumeration value="203BN0900Y"/> <xs:enumeration value="203BN0903Y"/> <xs:enumeration value="203BN0904Y"/> <xs:enumeration value="203BX0000N"/> <xs:enumeration value="203BX0001Y"/> <xs:enumeration value="203BX0100Y"/> <xs:enumeration value="203BX0104Y"/> <xs:enumeration value="203BX0105Y"/> <xs:enumeration value="203BX0200Y"/> <xs:enumeration value="203BX0201Y"/> <xs:enumeration value="203BX0202Y"/> <xs:enumeration value="203BX0300Y"/> <xs:enumeration value="203BX0800N"/> <xs:enumeration value="203BX2100Y"/> <xs:enumeration value="203BX0500Y"/> <xs:enumeration value="203BX0900N"/> <xs:enumeration value="203BX0901N"/> <xs:enumeration value="203BX0600Y"/> <xs:enumeration value="203BX0601N"/> <xs:enumeration value="203BP0001Y"/> <xs:enumeration value="203BP2900N"/> <xs:enumeration value="203BP0100Y"/> <xs:enumeration value="203BP0101Y"/> <xs:enumeration value="203BP0102Y"/> <xs:enumeration value="203BP0103Y"/> <xs:enumeration value="203BP0104Y"/> <xs:enumeration value="203BP0105Y"/> <xs:enumeration value="203BP0107N"/> <xs:enumeration value="203BP0201Y"/> <xs:enumeration value="203BP0202Y"/> <xs:enumeration value="203BP0203Y"/> <xs:enumeration value="203BP0204Y"/> <xs:enumeration value="203BP0205Y"/> <xs:enumeration value="203BP0206Y"/> <xs:enumeration value="203BP0207Y"/> <xs:enumeration value="203BP0208Y"/> <xs:enumeration value="203BP0209Y"/> <xs:enumeration value="203BP0220N"/> <xs:enumeration value="203BP0210Y"/> <xs:enumeration value="203BP0211Y"/> <xs:enumeration value="203BP0212Y"/> <xs:enumeration value="203BP0213Y"/> <xs:enumeration value="203BP0214Y"/> <xs:enumeration value="203BP0215N"/> <xs:enumeration value="203BP0216Y"/> <xs:enumeration value="203BP0200Y"/> <xs:enumeration value="203BP2600N"/> <xs:enumeration value="203BP1200N"/> <xs:enumeration value="203BP0400Y"/> <xs:enumeration value="203BP0500Y"/> <xs:enumeration value="203BP0600Y"/> <xs:enumeration value="203BP0800Y"/> <xs:enumeration value="203BP0801Y"/> <xs:enumeration value="203BP0802Y"/> <xs:enumeration value="203BP0803Y"/> <xs:enumeration value="203BP0804Y"/> <xs:enumeration value="203BP0805Y"/> <xs:enumeration value="203BP0806N"/> <xs:enumeration value="203BP1300N"/> <xs:enumeration value="203BP0901N"/> <xs:enumeration value="203BP0903Y"/> <xs:enumeration value="203BP1001Y"/> <xs:enumeration value="203BP1003Y"/> <xs:enumeration value="203BR0001Y"/> <xs:enumeration value="203BR0002Y"/> <xs:enumeration value="203BR0205N"/> <xs:enumeration value="203BR0200Y"/> <xs:enumeration value="203BR0201Y"/> <xs:enumeration value="203BR0202Y"/> <xs:enumeration value="203BR0203N"/> <xs:enumeration value="203BR0204N"/> <xs:enumeration value="203BR0300N"/> <xs:enumeration value="203BR0402Y"/> <xs:enumeration value="203BR0500Y"/> <xs:enumeration value="203BR0600N"/> <xs:enumeration value="203BR0700Y"/> <xs:enumeration value="203BR0701Y"/> <xs:enumeration value="203BS0000Y"/> <xs:enumeration value="203BS0001Y"/> <xs:enumeration value="203BS0002Y"/> <xs:enumeration value="203BS0003Y"/> <xs:enumeration value="203BS0004Y"/> <xs:enumeration value="203BS0104N"/> <xs:enumeration value="203BS0133N"/> <xs:enumeration value="203BS0101Y"/> <xs:enumeration value="203BS0123Y"/> <xs:enumeration value="203BS0100Y"/> <xs:enumeration value="203BS0129Y"/> <xs:enumeration value="203BS0105Y"/> <xs:enumeration value="203BS0106Y"/> <xs:enumeration value="203BS0107Y"/> <xs:enumeration value="203BS0108N"/> <xs:enumeration value="203BS0110Y"/> <xs:enumeration value="203BS0111Y"/> <xs:enumeration value="203BS0113Y"/> <xs:enumeration value="203BS0114N"/> <xs:enumeration value="203BS0115N"/> <xs:enumeration value="203BS0116N"/> <xs:enumeration value="203BS0117N"/> <xs:enumeration value="203BS0119N"/> <xs:enumeration value="203BS0130Y"/> <xs:enumeration value="203BS0120Y"/> <xs:enumeration value="203BS0121Y"/> <xs:enumeration value="203BS0122Y"/> <xs:enumeration value="203BS0125Y"/> <xs:enumeration value="203BS0126Y"/> <xs:enumeration value="203BS0127N"/> <xs:enumeration value="203BS0128Y"/> <xs:enumeration value="203BS0102Y"/> <xs:enumeration value="203BT0100N"/> <xs:enumeration value="203BT0000Y"/> <xs:enumeration value="203BT0002Y"/> <xs:enumeration value="203BT0001Y"/> <xs:enumeration value="203BU0001Y"/> <xs:enumeration value="203BU0300Y"/> <xs:enumeration value="203BU0100Y"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PodiatricMedicineAndOrSurgeryServiceProviderHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13582 (C-0-T13129-A13130-A13582-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="PodiatristHIPAA"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="211D00000N"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="PodiatristHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13584 (C-0-T13129-A13130-A13582-S13584-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="213E00000N"/> <xs:enumeration value="213EG0000N"/> <xs:enumeration value="213EP0504N"/> <xs:enumeration value="213EP1101N"/> <xs:enumeration value="213ER0200N"/> <xs:enumeration value="213ES0000N"/> <xs:enumeration value="213ES0131N"/> <xs:enumeration value="213ES0103N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RespiratoryAndOrRehabilitativeAndOrRestorativeProviderHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13592 (C-0-T13129-A13130-A13592-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="OccupationalTherapistHIPAA PhysicalTherapistHIPAA RehabilitationCounselorHIPAA RespiratoryAndOrRehabilitativeAndOrRestorativeSpecialistOrTechnologistHIPAA RespiratoryTherapistHIPAA"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="221700000N"/> <xs:enumeration value="225600000N"/> <xs:enumeration value="226300000N"/> <xs:enumeration value="225700000N"/> <xs:enumeration value="225A00000N"/> <xs:enumeration value="224Z00000N"/> <xs:enumeration value="225000000N"/> <xs:enumeration value="222Z00000N"/> <xs:enumeration value="225200000N"/> <xs:enumeration value="224P00000N"/> <xs:enumeration value="225B00000N"/> <xs:enumeration value="225800000N"/> <xs:enumeration value="225400000N"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="OccupationalTherapistHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13598 (C-0-T13129-A13130-A13592-S13598-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="225X00000N"/> <xs:enumeration value="225XC0400N"/> <xs:enumeration value="225XE1200N"/> <xs:enumeration value="225XH1200N"/> <xs:enumeration value="225XH1300N"/> <xs:enumeration value="225XN1300N"/> <xs:enumeration value="225XP0200N"/> <xs:enumeration value="225XR0403N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PhysicalTherapistHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13609 (C-0-T13129-A13130-A13592-S13609-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="225100000N"/> <xs:enumeration value="2251C2600N"/> <xs:enumeration value="2251C0400N"/> <xs:enumeration value="2251E1300N"/> <xs:enumeration value="2251E1200N"/> <xs:enumeration value="2251G0304N"/> <xs:enumeration value="2251H1200N"/> <xs:enumeration value="2251H1300N"/> <xs:enumeration value="2251N0400N"/> <xs:enumeration value="2251X0800N"/> <xs:enumeration value="2251P0200N"/> <xs:enumeration value="2251S0007N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RehabilitationCounselorHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13625 (C-0-T13129-A13130-A13592-S13625-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="225C00000N"/> <xs:enumeration value="225CA2400N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RespiratoryAndOrRehabilitativeAndOrRestorativeSpecialistOrTechnologistHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13631 (C-0-T13129-A13130-A13592-A13631-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="2255A2300N"/> <xs:enumeration value="2255R0406N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RespiratoryTherapistHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13629 (C-0-T13129-A13130-A13592-S13629-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="225900000N"/> <xs:enumeration value="2259P1700N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SpeechAndOrLanguageAndOrHearingServiceProviderHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13634 (C-0-T13129-A13130-A13634-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AudiologistHIPAA SpeechAndOrLanguageAndOrHearingServiceSpecialistOrTechnologistHIPAA"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="237600000N"/> <xs:enumeration value="237700000N"/> <xs:enumeration value="235Z00000N"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="AudiologistHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13635 (C-0-T13129-A13130-A13634-S13635-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Audiologist"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="231H00000N"/> <xs:enumeration value="231HA2400N"/> <xs:enumeration value="231HA2500N"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="Audiologist"> <xs:annotation> <xs:documentation>abstDomain: A13637 (C-0-T13129-A13130-A13634-S13635-A13637-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CardiologyTechnicianHIPAA cs"/> </xs:simpleType> <xs:simpleType name="CardiologyTechnicianHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13700 (C-0-T13129-A13130-A13634-S13635-A13637-A13700-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="246WC3000N"/> <xs:enumeration value="246WE0400N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SpeechAndOrLanguageAndOrHearingServiceSpecialistOrTechnologistHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13640 (C-0-T13129-A13130-A13634-A13640-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="2355A2700N"/> <xs:enumeration value="2355S0801N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OrganizationalHealthcareProviderHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13715 (C-0-T13129-A13715-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AbstractHealthcareProviderAgencyHIPAA AmbulatoryHealthCareFacilityHIPAA HospitalPracticeSetting HospitalUnitPracticeSetting LaboratoryHIPAA ManagedCareOrganizationHIPAA NursingOrCustodialCarePracticeSetting ResidentialTreatmentPracticeSetting SupplierHIPAA TransportationServiceHIPAA cs"/> </xs:simpleType> <xs:simpleType name="AbstractHealthcareProviderAgencyHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13716 (C-0-T13129-A13715-A13716-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="HealthcareProviderAgencyHIPAA cs"/> </xs:simpleType> <xs:simpleType name="HealthcareProviderAgencyHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13717 (C-0-T13129-A13715-A13716-A13717-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="2514C0400N"/> <xs:enumeration value="2514H0200N"/> <xs:enumeration value="2514H0201N"/> <xs:enumeration value="2514H0300N"/> <xs:enumeration value="2514N1101N"/> <xs:enumeration value="2514P0906N"/> <xs:enumeration value="2514V0001N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="AmbulatoryHealthCareFacilityHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13725 (C-0-T13129-A13715-A13725-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AmbulatoryClinicOrCenterHIPAA cs"/> </xs:simpleType> <xs:simpleType name="AmbulatoryClinicOrCenterHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13726 (C-0-T13129-A13715-A13725-A13726-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CardClinPracticeSetting RadDiagTherPracticeSetting"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="261QA0600N"/> <xs:enumeration value="261QA1903N"/> <xs:enumeration value="261QB0400N"/> <xs:enumeration value="261QC1500N"/> <xs:enumeration value="261QC1800N"/> <xs:enumeration value="261QD0000N"/> <xs:enumeration value="261QE0002N"/> <xs:enumeration value="261QE0700N"/> <xs:enumeration value="261QF0400N"/> <xs:enumeration value="261QH0100N"/> <xs:enumeration value="261QI0500N"/> <xs:enumeration value="261QL0400N"/> <xs:enumeration value="261QM1200N"/> <xs:enumeration value="261QM0801N"/> <xs:enumeration value="261QM1000N"/> <xs:enumeration value="261QM1100N"/> <xs:enumeration value="261QM1101N"/> <xs:enumeration value="261QM1102N"/> <xs:enumeration value="261QM1300N"/> <xs:enumeration value="261QX0100N"/> <xs:enumeration value="261QP2000N"/> <xs:enumeration value="261QP2400N"/> <xs:enumeration value="261QP0904N"/> <xs:enumeration value="261QP0905N"/> <xs:enumeration value="261QR0206N"/> <xs:enumeration value="261QR0208N"/> <xs:enumeration value="261QR0207N"/> <xs:enumeration value="261QR0800N"/> <xs:enumeration value="261QR0400N"/> <xs:enumeration value="261QR0401N"/> <xs:enumeration value="261QR0405N"/> <xs:enumeration value="CARD"/> <xs:enumeration value="261QR1100N"/> <xs:enumeration value="261QR1300N"/> <xs:enumeration value="261QS1200N"/> <xs:enumeration value="261QS1000N"/> <xs:enumeration value="261QS0132N"/> <xs:enumeration value="261QU0200N"/> <xs:enumeration value="261QV0200N"/> <xs:enumeration value="ENDOS"/> <xs:enumeration value="OMS"/> <xs:enumeration value="PAINCL"/> <xs:enumeration value="POD"/> <xs:enumeration value="PC"/> <xs:enumeration value="RADO"/> <xs:enumeration value="RADDX"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="LaboratoryHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13808 (C-0-T13129-A13715-A13808-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="291U00000N"/> <xs:enumeration value="292200000N"/> <xs:enumeration value="293D00000N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ManagedCareOrganizationHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13812 (C-0-T13129-A13715-A13812-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="302F00000N"/> <xs:enumeration value="302R00000N"/> <xs:enumeration value="305S00000N"/> <xs:enumeration value="305R00000N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SupplierHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13833 (C-0-T13129-A13715-A13833-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DurableMedicalEquipmentAndOrMedicalSupplySupplierHIPAA"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="331L00000N"/> <xs:enumeration value="332G00000N"/> <xs:enumeration value="332H00000N"/> <xs:enumeration value="332S00000N"/> <xs:enumeration value="332U00000N"/> <xs:enumeration value="335U00000N"/> <xs:enumeration value="333600000N"/> <xs:enumeration value="335V00000N"/> <xs:enumeration value="335E00000N"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DurableMedicalEquipmentAndOrMedicalSupplySupplierHIPAA"> <xs:annotation> <xs:documentation>specDomain: S13835 (C-0-T13129-A13715-A13833-S13835-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="332B00000N"/> <xs:enumeration value="332BC3200N"/> <xs:enumeration value="332BD1200N"/> <xs:enumeration value="332BN1400N"/> <xs:enumeration value="332BX2000N"/> <xs:enumeration value="332BP3500N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TransportationServiceHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13849 (C-0-T13129-A13715-A13849-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AmbulanceHIPAA"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="343900000N"/> <xs:enumeration value="344600000N"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="AmbulanceHIPAA"> <xs:annotation> <xs:documentation>abstDomain: A13850 (C-0-T13129-A13715-A13849-A13850-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="3416A0800N"/> <xs:enumeration value="3416L0300N"/> <xs:enumeration value="3416S0300N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="HtmlLinkType"> <xs:annotation> <xs:documentation>vocSet: T11017 (C-0-T11017-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="alternate"/> <xs:enumeration value="appendix"/> <xs:enumeration value="bookmark"/> <xs:enumeration value="chapter"/> <xs:enumeration value="contents"/> <xs:enumeration value="copyright"/> <xs:enumeration value="glossary"/> <xs:enumeration value="help"/> <xs:enumeration value="index"/> <xs:enumeration value="next"/> <xs:enumeration value="prev"/> <xs:enumeration value="section"/> <xs:enumeration value="start"/> <xs:enumeration value="stylesheet"/> <xs:enumeration value="subsection"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="HumanLanguage"> <xs:annotation> <xs:documentation>vocSet: T11526 (C-0-T11526-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="I9C"> <xs:annotation> <xs:documentation>vocSet: E7 (C-0-E7-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ICD-10-CA"> <xs:annotation> <xs:documentation>vocSet: E3 (C-0-E3-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="IETF3066"> <xs:annotation> <xs:documentation>vocSet: E20 (C-0-E20-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ISO3166-2"> <xs:annotation> <xs:documentation>vocSet: E9 (C-0-E9-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ImagingSubjectOrientation"> <xs:annotation> <xs:documentation>vocSet: T19797 (C-0-T19797-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="IndustryClassificationSystem"> <xs:annotation> <xs:documentation>vocSet: T16039 (C-0-T16039-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="IntegrityCheckAlgorithm"> <xs:annotation> <xs:documentation>vocSet: T17385 (C-0-T17385-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SHA-1"/> <xs:enumeration value="SHA-256"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="InvoiceElementModifier"> <xs:annotation> <xs:documentation>vocSet: D33 (C-0-D33-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="JobTitleName"> <xs:annotation> <xs:documentation>vocSet: D34 (C-0-D34-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="LN"> <xs:annotation> <xs:documentation>vocSet: E10 (C-0-E10-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="LanguageAbilityMode"> <xs:annotation> <xs:documentation>vocSet: T12249 (C-0-T12249-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ESGN"/> <xs:enumeration value="ESP"/> <xs:enumeration value="EWR"/> <xs:enumeration value="RSGN"/> <xs:enumeration value="RSP"/> <xs:enumeration value="RWR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="LanguageAbilityProficiency"> <xs:annotation> <xs:documentation>vocSet: T12199 (C-0-T12199-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="E"/> <xs:enumeration value="F"/> <xs:enumeration value="G"/> <xs:enumeration value="P"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ListOwnershipLevel"> <xs:annotation> <xs:documentation>vocSet: D35 (C-0-D35-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="LivingArrangement"> <xs:annotation> <xs:documentation>vocSet: T220 (C-0-T220-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Homeless Institution PrivateResidence"/> </xs:simpleType> <xs:simpleType name="Homeless"> <xs:annotation> <xs:documentation>specDomain: S22193 (C-0-T220-S22193-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="HL"/> <xs:enumeration value="M"/> <xs:enumeration value="T"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Institution"> <xs:annotation> <xs:documentation>specDomain: S10189 (C-0-T220-S10189-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="I"/> <xs:enumeration value="X"/> <xs:enumeration value="G"/> <xs:enumeration value="N"/> <xs:enumeration value="CS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PrivateResidence"> <xs:annotation> <xs:documentation>specDomain: S22190 (C-0-T220-S22190-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PR"/> <xs:enumeration value="H"/> <xs:enumeration value="R"/> <xs:enumeration value="SL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="LocalMarkupIgnore"> <xs:annotation> <xs:documentation>vocSet: T10975 (C-0-T10975-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="all"/> <xs:enumeration value="markup"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="LocalRemoteControlState"> <xs:annotation> <xs:documentation>vocSet: T10893 (C-0-T10893-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="L"/> <xs:enumeration value="R"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MDC"> <xs:annotation> <xs:documentation>vocSet: E8 (C-0-E8-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="MDFAttributeType"> <xs:annotation> <xs:documentation>vocSet: T10045 (C-0-T10045-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ADDR"/> <xs:enumeration value="CD"/> <xs:enumeration value="COM"/> <xs:enumeration value="DTTM"/> <xs:enumeration value="DESC"/> <xs:enumeration value="EXPR"/> <xs:enumeration value="FRC"/> <xs:enumeration value="TIME"/> <xs:enumeration value="ID"/> <xs:enumeration value="IND"/> <xs:enumeration value="NM"/> <xs:enumeration value="NBR"/> <xs:enumeration value="PHON"/> <xs:enumeration value="QTY"/> <xs:enumeration value="TXT"/> <xs:enumeration value="TMR"/> <xs:enumeration value="VALUE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MDFSubjectAreaPrefix"> <xs:annotation> <xs:documentation>vocSet: T10029 (C-0-T10029-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="COI"/> <xs:enumeration value="DIM"/> <xs:enumeration value="RIM"/> <xs:enumeration value="STW"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MEDCIN"> <xs:annotation> <xs:documentation>vocSet: E11 (C-0-E11-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ManagedParticipationStatus"> <xs:annotation> <xs:documentation>vocSet: T15992 (C-0-T15992-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ManagedParticipationStatusNormal"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="nullified"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ManagedParticipationStatusNormal"> <xs:annotation> <xs:documentation>specDomain: S15993 (C-0-T15992-S15993-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="normal"/> <xs:enumeration value="active"/> <xs:enumeration value="cancelled"/> <xs:enumeration value="completed"/> <xs:enumeration value="pending"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ManagedParticipationStatusActive"> <xs:annotation> <xs:documentation>vocSet: O20057 (C-0-O20057-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ManagedParticipationStatusCancelled"> <xs:annotation> <xs:documentation>vocSet: O20058 (C-0-O20058-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ManagedParticipationStatusCompleted"> <xs:annotation> <xs:documentation>vocSet: O20059 (C-0-O20059-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ManagedParticipationStatusNullified"> <xs:annotation> <xs:documentation>vocSet: O20060 (C-0-O20060-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ManagedParticipationStatusPending"> <xs:annotation> <xs:documentation>vocSet: O20061 (C-0-O20061-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ManufacturerModelName"> <xs:annotation> <xs:documentation>vocSet: D36 (C-0-D36-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="MapRelationship"> <xs:annotation> <xs:documentation>vocSet: T11052 (C-0-T11052-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="BT"/> <xs:enumeration value="E"/> <xs:enumeration value="NT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MaritalStatus"> <xs:annotation> <xs:documentation>vocSet: T12212 (C-0-T12212-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="MaritalStatusUB92"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="A"/> <xs:enumeration value="D"/> <xs:enumeration value="T"/> <xs:enumeration value="I"/> <xs:enumeration value="L"/> <xs:enumeration value="M"/> <xs:enumeration value="S"/> <xs:enumeration value="P"/> <xs:enumeration value="W"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="MaritalStatusUB92"> <xs:annotation> <xs:documentation>abstDomain: A15929 (C-0-T12212-A15929-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="MaterialForm"> <xs:annotation> <xs:documentation>vocSet: T19651 (C-0-T19651-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="OrderableDrugForm"/> </xs:simpleType> <xs:simpleType name="OrderableDrugForm"> <xs:annotation> <xs:documentation>abstDomain: A14411 (C-0-T19651-A14411-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AdministrableDrugForm DispensableDrugForm cs"/> </xs:simpleType> <xs:simpleType name="AdministrableDrugForm"> <xs:annotation> <xs:documentation>abstDomain: A14570 (C-0-T19651-A14411-A14570-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DropsDrugForm"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="APPFUL"/> <xs:enumeration value="PUFF"/> <xs:enumeration value="SCOOP"/> <xs:enumeration value="SPRY"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DispensableDrugForm"> <xs:annotation> <xs:documentation>abstDomain: A14412 (C-0-T19651-A14411-A14412-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="GasDrugForm GasLiquidMixture GasSolidSpray Liquid LiquidLiquidEmulsion LiquidSolidSuspension SolidDrugForm cs"/> </xs:simpleType> <xs:simpleType name="GasDrugForm"> <xs:annotation> <xs:documentation>abstDomain: A14568 (C-0-T19651-A14411-A14412-A14568-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="GASINHL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="GasLiquidMixture"> <xs:annotation> <xs:documentation>abstDomain: A14545 (C-0-T19651-A14411-A14412-A14545-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AerosolDrugForm FoamDrugForm"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="DERMSPRY"/> <xs:enumeration value="RECSPRY"/> <xs:enumeration value="VAGSPRY"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="AerosolDrugForm"> <xs:annotation> <xs:documentation>specDomain: S14551 (C-0-T19651-A14411-A14412-A14545-S14551-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AER"/> <xs:enumeration value="BAINHL"/> <xs:enumeration value="INHLSOL"/> <xs:enumeration value="MDINHL"/> <xs:enumeration value="NASSPRY"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="FoamDrugForm"> <xs:annotation> <xs:documentation>specDomain: S14546 (C-0-T19651-A14411-A14412-A14545-S14546-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="VaginalFoam"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="FOAM"/> <xs:enumeration value="FOAMAPL"/> <xs:enumeration value="RECFORM"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="VaginalFoam"> <xs:annotation> <xs:documentation>specDomain: S14549 (C-0-T19651-A14411-A14412-A14545-S14546-S14549-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="VAGFOAM"/> <xs:enumeration value="VAGFOAMAPL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="GasSolidSpray"> <xs:annotation> <xs:documentation>abstDomain: A14559 (C-0-T19651-A14411-A14412-A14559-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="InhalantDrugForm"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="PWDSPRY"/> <xs:enumeration value="SPRYADAPT"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="InhalantDrugForm"> <xs:annotation> <xs:documentation>specDomain: S14560 (C-0-T19651-A14411-A14412-A14559-S14560-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="INHL"/> <xs:enumeration value="BAINHLPWD"/> <xs:enumeration value="INHLPWD"/> <xs:enumeration value="MDINHLPWD"/> <xs:enumeration value="NASINHL"/> <xs:enumeration value="ORINHL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Liquid"> <xs:annotation> <xs:documentation>abstDomain: A14413 (C-0-T19651-A14411-A14412-A14413-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="LiquidCleanser OilDrugForm SolutionDrugForm cs"/> </xs:simpleType> <xs:simpleType name="LiquidCleanser"> <xs:annotation> <xs:documentation>specDomain: S14414 (C-0-T19651-A14411-A14412-A14413-S14414-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="LIQCLN"/> <xs:enumeration value="LIQSOAP"/> <xs:enumeration value="SHMP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OilDrugForm"> <xs:annotation> <xs:documentation>specDomain: S14417 (C-0-T19651-A14411-A14412-A14413-S14417-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="OIL"/> <xs:enumeration value="TOPOIL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SolutionDrugForm"> <xs:annotation> <xs:documentation>specDomain: S14419 (C-0-T19651-A14411-A14412-A14413-S14419-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DropsDrugForm IrrigationSolution OralSolution TopicalSolution"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="SOL"/> <xs:enumeration value="IPSOL"/> <xs:enumeration value="IVSOL"/> <xs:enumeration value="RECSOL"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DropsDrugForm"> <xs:annotation> <xs:documentation>specDomain: S14420 (C-0-T19651-A14411-A14412-A14413-S14419-S14420-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DROP"/> <xs:enumeration value="NDROP"/> <xs:enumeration value="OPDROP"/> <xs:enumeration value="ORDROP"/> <xs:enumeration value="OTDROP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IrrigationSolution"> <xs:annotation> <xs:documentation>specDomain: S14427 (C-0-T19651-A14411-A14412-A14413-S14419-S14427-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IRSOL"/> <xs:enumeration value="DOUCHE"/> <xs:enumeration value="ENEMA"/> <xs:enumeration value="OPIRSOL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OralSolution"> <xs:annotation> <xs:documentation>specDomain: S14431 (C-0-T19651-A14411-A14412-A14413-S14419-S14431-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ORALSOL"/> <xs:enumeration value="ELIXIR"/> <xs:enumeration value="RINSE"/> <xs:enumeration value="ORDROP"/> <xs:enumeration value="SYRUP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TopicalSolution"> <xs:annotation> <xs:documentation>specDomain: S14437 (C-0-T19651-A14411-A14412-A14413-S14419-S14437-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TOPSOL"/> <xs:enumeration value="LIN"/> <xs:enumeration value="MUCTOPSOL"/> <xs:enumeration value="TINC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="LiquidLiquidEmulsion"> <xs:annotation> <xs:documentation>abstDomain: A14463 (C-0-T19651-A14411-A14412-A14463-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CreamDrugForm LotionDrugForm OintmentDrugForm cs"/> </xs:simpleType> <xs:simpleType name="CreamDrugForm"> <xs:annotation> <xs:documentation>specDomain: S14466 (C-0-T19651-A14411-A14412-A14463-S14466-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="VaginalCream"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="CRM"/> <xs:enumeration value="NASCRM"/> <xs:enumeration value="OPCRM"/> <xs:enumeration value="ORCRM"/> <xs:enumeration value="OTCRM"/> <xs:enumeration value="RECCRM"/> <xs:enumeration value="TOPCRM"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="VaginalCream"> <xs:annotation> <xs:documentation>specDomain: S14473 (C-0-T19651-A14411-A14412-A14463-S14466-S14473-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="VAGCRM"/> <xs:enumeration value="VAGCRMAPL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="LotionDrugForm"> <xs:annotation> <xs:documentation>specDomain: S14464 (C-0-T19651-A14411-A14412-A14463-S14464-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="LTN"/> <xs:enumeration value="TOPLTN"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OintmentDrugForm"> <xs:annotation> <xs:documentation>specDomain: S14475 (C-0-T19651-A14411-A14412-A14463-S14475-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="VaginalOintment"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="OINT"/> <xs:enumeration value="NASOINT"/> <xs:enumeration value="OINTAPL"/> <xs:enumeration value="OPOINT"/> <xs:enumeration value="OTOINT"/> <xs:enumeration value="RECOINT"/> <xs:enumeration value="TOPOINT"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="VaginalOintment"> <xs:annotation> <xs:documentation>specDomain: S14482 (C-0-T19651-A14411-A14412-A14463-S14475-S14482-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="VAGOINT"/> <xs:enumeration value="VAGOINTAPL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="LiquidSolidSuspension"> <xs:annotation> <xs:documentation>abstDomain: A14441 (C-0-T19651-A14411-A14412-A14441-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="GelDrugForm PasteDrugForm SuspensionDrugForm cs"/> </xs:simpleType> <xs:simpleType name="GelDrugForm"> <xs:annotation> <xs:documentation>specDomain: S14442 (C-0-T19651-A14411-A14412-A14441-S14442-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="VaginalGel"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="GEL"/> <xs:enumeration value="GELAPL"/> <xs:enumeration value="NASGEL"/> <xs:enumeration value="OPGEL"/> <xs:enumeration value="OTGEL"/> <xs:enumeration value="TOPGEL"/> <xs:enumeration value="URETHGEL"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="VaginalGel"> <xs:annotation> <xs:documentation>specDomain: S14449 (C-0-T19651-A14411-A14412-A14441-S14442-S14449-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="VAGGEL"/> <xs:enumeration value="VGELAPL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PasteDrugForm"> <xs:annotation> <xs:documentation>specDomain: S14451 (C-0-T19651-A14411-A14412-A14441-S14451-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PASTE"/> <xs:enumeration value="PUD"/> <xs:enumeration value="TPASTE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SuspensionDrugForm"> <xs:annotation> <xs:documentation>specDomain: S14454 (C-0-T19651-A14411-A14412-A14441-S14454-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="OralSuspension"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="SUSP"/> <xs:enumeration value="ITSUSP"/> <xs:enumeration value="OPSUSP"/> <xs:enumeration value="OTSUSP"/> <xs:enumeration value="RECSUSP"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="OralSuspension"> <xs:annotation> <xs:documentation>specDomain: S14457 (C-0-T19651-A14411-A14412-A14441-S14454-S14457-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ExtendedReleaseSuspension"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="ORSUSP"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ExtendedReleaseSuspension"> <xs:annotation> <xs:documentation>specDomain: S14458 (C-0-T19651-A14411-A14412-A14441-S14454-S14457-S14458-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ERSUSP"/> <xs:enumeration value="ERSUSP12"/> <xs:enumeration value="ERSUSP24"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SolidDrugForm"> <xs:annotation> <xs:documentation>abstDomain: A14484 (C-0-T19651-A14411-A14412-A14484-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="BarDrugForm PadDrugForm PatchDrugForm PillDrugForm PowderDrugForm SuppositoryDrugForm SwabDrugForm"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="BEAD"/> <xs:enumeration value="CAKE"/> <xs:enumeration value="CEMENT"/> <xs:enumeration value="GUM"/> <xs:enumeration value="CRYS"/> <xs:enumeration value="DISK"/> <xs:enumeration value="FLAKE"/> <xs:enumeration value="GRAN"/> <xs:enumeration value="PELLET"/> <xs:enumeration value="WAFER"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="BarDrugForm"> <xs:annotation> <xs:documentation>specDomain: S14485 (C-0-T19651-A14411-A14412-A14484-S14485-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="BarSoapDrugForm"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="BAR"/> <xs:enumeration value="CHEWBAR"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="BarSoapDrugForm"> <xs:annotation> <xs:documentation>specDomain: S14486 (C-0-T19651-A14411-A14412-A14484-S14485-S14486-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="BARSOAP"/> <xs:enumeration value="MEDBAR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PadDrugForm"> <xs:annotation> <xs:documentation>specDomain: S14497 (C-0-T19651-A14411-A14412-A14484-S14497-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PAD"/> <xs:enumeration value="MEDPAD"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PatchDrugForm"> <xs:annotation> <xs:documentation>specDomain: S14499 (C-0-T19651-A14411-A14412-A14484-S14499-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="TransdermalPatch"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="PATCH"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="TransdermalPatch"> <xs:annotation> <xs:documentation>specDomain: S14500 (C-0-T19651-A14411-A14412-A14484-S14499-S14500-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TPATCH"/> <xs:enumeration value="TPATH16"/> <xs:enumeration value="TPATH24"/> <xs:enumeration value="TPATH72"/> <xs:enumeration value="TPATH2WK"/> <xs:enumeration value="TPATHWK"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PillDrugForm"> <xs:annotation> <xs:documentation>specDomain: S14506 (C-0-T19651-A14411-A14412-A14484-S14506-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CapsuleDrugForm TabletDrugForm"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="PILL"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="CapsuleDrugForm"> <xs:annotation> <xs:documentation>specDomain: S14507 (C-0-T19651-A14411-A14412-A14484-S14506-S14507-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="OralCapsule"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="CAP"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="OralCapsule"> <xs:annotation> <xs:documentation>specDomain: S14508 (C-0-T19651-A14411-A14412-A14484-S14506-S14507-S14508-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="EntericCoatedCapsule ExtendedReleaseCapsule"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="ORCAP"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="EntericCoatedCapsule"> <xs:annotation> <xs:documentation>specDomain: S14509 (C-0-T19651-A14411-A14412-A14484-S14506-S14507-S14508-S14509-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ENTCAP"/> <xs:enumeration value="ERENTCAP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ExtendedReleaseCapsule"> <xs:annotation> <xs:documentation>specDomain: S14511 (C-0-T19651-A14411-A14412-A14484-S14506-S14507-S14508-S14511-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ERCAP"/> <xs:enumeration value="ERCAP12"/> <xs:enumeration value="ERCAP24"/> <xs:enumeration value="ERECCAP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TabletDrugForm"> <xs:annotation> <xs:documentation>specDomain: S14515 (C-0-T19651-A14411-A14412-A14484-S14506-S14515-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="OralTablet"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="TAB"/> <xs:enumeration value="VAGTAB"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="OralTablet"> <xs:annotation> <xs:documentation>specDomain: S14516 (C-0-T19651-A14411-A14412-A14484-S14506-S14515-S14516-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="BuccalTablet EntericCoatedTablet ExtendedReleaseTablet"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="ORTAB"/> <xs:enumeration value="CAPLET"/> <xs:enumeration value="CHEWTAB"/> <xs:enumeration value="CPTAB"/> <xs:enumeration value="DRTAB"/> <xs:enumeration value="DISINTAB"/> <xs:enumeration value="ORTROCHE"/> <xs:enumeration value="SLTAB"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="BuccalTablet"> <xs:annotation> <xs:documentation>specDomain: S14518 (C-0-T19651-A14411-A14412-A14484-S14506-S14515-S14516-S14518-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="BUCTAB"/> <xs:enumeration value="SRBUCTAB"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EntericCoatedTablet"> <xs:annotation> <xs:documentation>specDomain: S14524 (C-0-T19651-A14411-A14412-A14484-S14506-S14515-S14516-S14524-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ECTAB"/> <xs:enumeration value="ERECTAB"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ExtendedReleaseTablet"> <xs:annotation> <xs:documentation>specDomain: S14526 (C-0-T19651-A14411-A14412-A14484-S14506-S14515-S14516-S14526-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ERTAB"/> <xs:enumeration value="ERTAB12"/> <xs:enumeration value="ERTAB24"/> <xs:enumeration value="ERECTAB"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PowderDrugForm"> <xs:annotation> <xs:documentation>specDomain: S14534 (C-0-T19651-A14411-A14412-A14484-S14534-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="TopicalPowder"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="POWD"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="TopicalPowder"> <xs:annotation> <xs:documentation>specDomain: S14535 (C-0-T19651-A14411-A14412-A14484-S14534-S14535-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TOPPWD"/> <xs:enumeration value="RECPWD"/> <xs:enumeration value="VAGPWD"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SuppositoryDrugForm"> <xs:annotation> <xs:documentation>specDomain: S14538 (C-0-T19651-A14411-A14412-A14484-S14538-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SUPP"/> <xs:enumeration value="RECSUPP"/> <xs:enumeration value="URETHSUPP"/> <xs:enumeration value="VAGSUPP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SwabDrugForm"> <xs:annotation> <xs:documentation>specDomain: S14542 (C-0-T19651-A14411-A14412-A14484-S14542-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SWAB"/> <xs:enumeration value="MEDSWAB"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MaterialType"> <xs:annotation> <xs:documentation>vocSet: T10444 (C-0-T10444-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="MdfHmdMetSourceType"> <xs:annotation> <xs:documentation>vocSet: T10076 (C-0-T10076-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="C"/> <xs:enumeration value="D"/> <xs:enumeration value="N"/> <xs:enumeration value="U"/> <xs:enumeration value="R"/> <xs:enumeration value="I"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MdfHmdRowType"> <xs:annotation> <xs:documentation>vocSet: T10069 (C-0-T10069-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="assoc"/> <xs:enumeration value="attr"/> <xs:enumeration value="item"/> <xs:enumeration value="hmd"/> <xs:enumeration value="class"/> <xs:enumeration value="stc"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MdfRmimRowType"> <xs:annotation> <xs:documentation>vocSet: T10063 (C-0-T10063-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="assoc"/> <xs:enumeration value="attr"/> <xs:enumeration value="class"/> <xs:enumeration value="rmim"/> <xs:enumeration value="stc"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MediaType"> <xs:annotation> <xs:documentation>vocSet: T14824 (C-0-T14824-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ApplicationMediaType AudioMediaType ImageMediaType ModelMediaType MultipartMediaType TextMediaType VideoMediaType"/> </xs:simpleType> <xs:simpleType name="ApplicationMediaType"> <xs:annotation> <xs:documentation>abstDomain: A14832 (C-0-T14824-A14832-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="application/dicom"/> <xs:enumeration value="application/msword"/> <xs:enumeration value="application/pdf"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="AudioMediaType"> <xs:annotation> <xs:documentation>abstDomain: A14835 (C-0-T14824-A14835-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="audio/basic"/> <xs:enumeration value="audio/k32adpcm"/> <xs:enumeration value="audio/mpeg"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ImageMediaType"> <xs:annotation> <xs:documentation>abstDomain: A14839 (C-0-T14824-A14839-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="image/g3fax"/> <xs:enumeration value="image/gif"/> <xs:enumeration value="image/jpeg"/> <xs:enumeration value="image/png"/> <xs:enumeration value="image/tiff"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ModelMediaType"> <xs:annotation> <xs:documentation>abstDomain: A14848 (C-0-T14824-A14848-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="model/vrml"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MultipartMediaType"> <xs:annotation> <xs:documentation>abstDomain: A14850 (C-0-T14824-A14850-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="multipart/x-hl7-cda-level-one"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TextMediaType"> <xs:annotation> <xs:documentation>abstDomain: A14825 (C-0-T14824-A14825-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="text/x-hl7-ft"/> <xs:enumeration value="text/html"/> <xs:enumeration value="text/plain"/> <xs:enumeration value="text/rtf"/> <xs:enumeration value="text/sgml"/> <xs:enumeration value="text/xml"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="VideoMediaType"> <xs:annotation> <xs:documentation>abstDomain: A14845 (C-0-T14824-A14845-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="video/mpeg"/> <xs:enumeration value="video/x-avi"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MessageCondition"> <xs:annotation> <xs:documentation>vocSet: T357 (C-0-T357-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="207"/> <xs:enumeration value="206"/> <xs:enumeration value="102"/> <xs:enumeration value="205"/> <xs:enumeration value="0"/> <xs:enumeration value="101"/> <xs:enumeration value="100"/> <xs:enumeration value="103"/> <xs:enumeration value="204"/> <xs:enumeration value="202"/> <xs:enumeration value="203"/> <xs:enumeration value="201"/> <xs:enumeration value="200"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MessageWaitingPriority"> <xs:annotation> <xs:documentation>vocSet: T19581 (C-0-T19581-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="H"/> <xs:enumeration value="L"/> <xs:enumeration value="M"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ModifyIndicator"> <xs:annotation> <xs:documentation>vocSet: T395 (C-0-T395-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="M"/> <xs:enumeration value="N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NAICS"> <xs:annotation> <xs:documentation>vocSet: E14 (C-0-E14-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="NDA"> <xs:annotation> <xs:documentation>vocSet: E12 (C-0-E12-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="NMMDS"> <xs:annotation> <xs:documentation>vocSet: E15 (C-0-E15-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="NUBC-UB92"> <xs:annotation> <xs:documentation>vocSet: E13 (C-0-E13-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="NullFlavor"> <xs:annotation> <xs:documentation>vocSet: T10609 (C-0-T10609-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="NoInformation"/> </xs:simpleType> <xs:simpleType name="NoInformation"> <xs:annotation> <xs:documentation>specDomain: S10610 (C-0-T10609-S10610-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Other Unknown"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="NI"/> <xs:enumeration value="MSK"/> <xs:enumeration value="NA"/> <xs:enumeration value="UNC"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="Other"> <xs:annotation> <xs:documentation>specDomain: S10616 (C-0-T10609-S10610-S10616-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="OTH"/> <xs:enumeration value="NINF"/> <xs:enumeration value="PINF"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Unknown"> <xs:annotation> <xs:documentation>specDomain: S10612 (C-0-T10609-S10610-S10612-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AskedButUnknown"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="UNK"/> <xs:enumeration value="QS"/> <xs:enumeration value="NASK"/> <xs:enumeration value="TRC"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="AskedButUnknown"> <xs:annotation> <xs:documentation>specDomain: S10614 (C-0-T10609-S10610-S10612-S10614-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ASKU"/> <xs:enumeration value="NAV"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationInterpretation"> <xs:annotation> <xs:documentation>vocSet: T78 (C-0-T78-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ObservationInterpretationChange ObservationInterpretationExceptions ObservationInterpretationNormality ObservationInterpretationProtocolInclusion ObservationInterpretationSusceptibility"/> </xs:simpleType> <xs:simpleType name="ObservationInterpretationChange"> <xs:annotation> <xs:documentation>abstDomain: A10214 (C-0-T78-A10214-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="B"/> <xs:enumeration value="D"/> <xs:enumeration value="U"/> <xs:enumeration value="W"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationInterpretationExceptions"> <xs:annotation> <xs:documentation>abstDomain: A10225 (C-0-T78-A10225-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="&gt;"/> <xs:enumeration value="&lt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationInterpretationNormality"> <xs:annotation> <xs:documentation>abstDomain: A10206 (C-0-T78-A10206-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ObservationInterpretationNormalityAbnormal"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="N"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ObservationInterpretationNormalityAbnormal"> <xs:annotation> <xs:documentation>specDomain: S10208 (C-0-T78-A10206-S10208-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ObservationInterpretationNormalityAlert ObservationInterpretationNormalityHigh ObservationInterpretationNormalityLow"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="A"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ObservationInterpretationNormalityAlert"> <xs:annotation> <xs:documentation>specDomain: S10211 (C-0-T78-A10206-S10208-S10211-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AA"/> <xs:enumeration value="HH"/> <xs:enumeration value="LL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationInterpretationNormalityHigh"> <xs:annotation> <xs:documentation>specDomain: S10210 (C-0-T78-A10206-S10208-S10210-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="H"/> <xs:enumeration value="HH"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationInterpretationNormalityLow"> <xs:annotation> <xs:documentation>specDomain: S10209 (C-0-T78-A10206-S10208-S10209-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="L"/> <xs:enumeration value="LL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationInterpretationProtocolInclusion"> <xs:annotation> <xs:documentation>abstDomain: A19759 (C-0-T78-A19759-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ObservationInterpretationOustsideThreshold cs"/> </xs:simpleType> <xs:simpleType name="ObservationInterpretationOustsideThreshold"> <xs:annotation> <xs:documentation>specDomain: S21634 (C-0-T78-A19759-S21634-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EX"/> <xs:enumeration value="HX"/> <xs:enumeration value="LX"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationInterpretationSusceptibility"> <xs:annotation> <xs:documentation>abstDomain: A10219 (C-0-T78-A10219-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="I"/> <xs:enumeration value="MS"/> <xs:enumeration value="R"/> <xs:enumeration value="S"/> <xs:enumeration value="VS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationMethod"> <xs:annotation> <xs:documentation>vocSet: T14079 (C-0-T14079-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AllergyTestObservationMethod CommonClinicalObservationMethod DecisionObservationMethod VerificationMethod _0272 _0275a _0280 x_AdverseEventCausalityAssessmentMethods"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="0119"/> <xs:enumeration value="0075"/> <xs:enumeration value="0076"/> <xs:enumeration value="0077"/> <xs:enumeration value="0078"/> <xs:enumeration value="0079"/> <xs:enumeration value="0080"/> <xs:enumeration value="0081"/> <xs:enumeration value="0082"/> <xs:enumeration value="0083"/> <xs:enumeration value="0084"/> <xs:enumeration value="0085"/> <xs:enumeration value="0143"/> <xs:enumeration value="0145"/> <xs:enumeration value="0146"/> <xs:enumeration value="0144"/> <xs:enumeration value="0147"/> <xs:enumeration value="0148"/> <xs:enumeration value="0149"/> <xs:enumeration value="0050"/> <xs:enumeration value="0039"/> <xs:enumeration value="0065"/> <xs:enumeration value="0063"/> <xs:enumeration value="0062"/> <xs:enumeration value="0014"/> <xs:enumeration value="0150"/> <xs:enumeration value="0151"/> <xs:enumeration value="0152"/> <xs:enumeration value="0051"/> <xs:enumeration value="0026"/> <xs:enumeration value="0257"/> <xs:enumeration value="0240"/> <xs:enumeration value="0154"/> <xs:enumeration value="0153"/> <xs:enumeration value="0263"/> <xs:enumeration value="0047"/> <xs:enumeration value="0155"/> <xs:enumeration value="0241"/> <xs:enumeration value="0086"/> <xs:enumeration value="0156"/> <xs:enumeration value="0157"/> <xs:enumeration value="0158"/> <xs:enumeration value="0159"/> <xs:enumeration value="0160"/> <xs:enumeration value="0025"/> <xs:enumeration value="0031"/> <xs:enumeration value="0032"/> <xs:enumeration value="0161"/> <xs:enumeration value="0162"/> <xs:enumeration value="0120"/> <xs:enumeration value="0163"/> <xs:enumeration value="0015"/> <xs:enumeration value="0164"/> <xs:enumeration value="0165"/> <xs:enumeration value="0166"/> <xs:enumeration value="0016"/> <xs:enumeration value="0167"/> <xs:enumeration value="0033"/> <xs:enumeration value="0052"/> <xs:enumeration value="0038"/> <xs:enumeration value="0168"/> <xs:enumeration value="0044"/> <xs:enumeration value="0001"/> <xs:enumeration value="0002"/> <xs:enumeration value="0169"/> <xs:enumeration value="0170"/> <xs:enumeration value="0171"/> <xs:enumeration value="0027"/> <xs:enumeration value="0108"/> <xs:enumeration value="0172"/> <xs:enumeration value="0053"/> <xs:enumeration value="0173"/> <xs:enumeration value="0034"/> <xs:enumeration value="0035"/> <xs:enumeration value="0036"/> <xs:enumeration value="0242"/> <xs:enumeration value="0070"/> <xs:enumeration value="0071"/> <xs:enumeration value="0072"/> <xs:enumeration value="0074"/> <xs:enumeration value="0250"/> <xs:enumeration value="0109"/> <xs:enumeration value="0110"/> <xs:enumeration value="0111"/> <xs:enumeration value="0112"/> <xs:enumeration value="0113"/> <xs:enumeration value="0064"/> <xs:enumeration value="0066"/> <xs:enumeration value="0028"/> <xs:enumeration value="0029"/> <xs:enumeration value="0255"/> <xs:enumeration value="0174"/> <xs:enumeration value="0139"/> <xs:enumeration value="0251"/> <xs:enumeration value="0253"/> <xs:enumeration value="0175"/> <xs:enumeration value="0176"/> <xs:enumeration value="0258"/> <xs:enumeration value="0265"/> <xs:enumeration value="0040"/> <xs:enumeration value="0178"/> <xs:enumeration value="0177"/> <xs:enumeration value="0179"/> <xs:enumeration value="0180"/> <xs:enumeration value="0181"/> <xs:enumeration value="0183"/> <xs:enumeration value="0182"/> <xs:enumeration value="0003"/> <xs:enumeration value="0184"/> <xs:enumeration value="0185"/> <xs:enumeration value="0186"/> <xs:enumeration value="0187"/> <xs:enumeration value="0017"/> <xs:enumeration value="0018"/> <xs:enumeration value="0188"/> <xs:enumeration value="0041"/> <xs:enumeration value="0189"/> <xs:enumeration value="0190"/> <xs:enumeration value="0121"/> <xs:enumeration value="0269"/> <xs:enumeration value="0260"/> <xs:enumeration value="0122"/> <xs:enumeration value="0140"/> <xs:enumeration value="0095"/> <xs:enumeration value="0101"/> <xs:enumeration value="0102"/> <xs:enumeration value="0103"/> <xs:enumeration value="0105"/> <xs:enumeration value="0106"/> <xs:enumeration value="0267"/> <xs:enumeration value="0067"/> <xs:enumeration value="0254"/> <xs:enumeration value="0096"/> <xs:enumeration value="0097"/> <xs:enumeration value="0098"/> <xs:enumeration value="0099"/> <xs:enumeration value="0100"/> <xs:enumeration value="0270"/> <xs:enumeration value="0123"/> <xs:enumeration value="0264"/> <xs:enumeration value="0191"/> <xs:enumeration value="0266"/> <xs:enumeration value="0193"/> <xs:enumeration value="0192"/> <xs:enumeration value="0073"/> <xs:enumeration value="0256"/> <xs:enumeration value="0194"/> <xs:enumeration value="0019"/> <xs:enumeration value="0195"/> <xs:enumeration value="0124"/> <xs:enumeration value="0125"/> <xs:enumeration value="0042"/> <xs:enumeration value="0196"/> <xs:enumeration value="0198"/> <xs:enumeration value="0197"/> <xs:enumeration value="0261"/> <xs:enumeration value="0199"/> <xs:enumeration value="0004"/> <xs:enumeration value="0005"/> <xs:enumeration value="0200"/> <xs:enumeration value="0048"/> <xs:enumeration value="0201"/> <xs:enumeration value="0204"/> <xs:enumeration value="0202"/> <xs:enumeration value="0203"/> <xs:enumeration value="0206"/> <xs:enumeration value="0205"/> <xs:enumeration value="0054"/> <xs:enumeration value="0268"/> <xs:enumeration value="0107"/> <xs:enumeration value="0114"/> <xs:enumeration value="0141"/> <xs:enumeration value="0245"/> <xs:enumeration value="0246"/> <xs:enumeration value="0243"/> <xs:enumeration value="0244"/> <xs:enumeration value="0207"/> <xs:enumeration value="0208"/> <xs:enumeration value="0209"/> <xs:enumeration value="0006"/> <xs:enumeration value="0030"/> <xs:enumeration value="0210"/> <xs:enumeration value="0211"/> <xs:enumeration value="0259"/> <xs:enumeration value="0212"/> <xs:enumeration value="0213"/> <xs:enumeration value="0214"/> <xs:enumeration value="0126"/> <xs:enumeration value="0131"/> <xs:enumeration value="0127"/> <xs:enumeration value="0128"/> <xs:enumeration value="0129"/> <xs:enumeration value="0130"/> <xs:enumeration value="0215"/> <xs:enumeration value="0216"/> <xs:enumeration value="0217"/> <xs:enumeration value="0088"/> <xs:enumeration value="0218"/> <xs:enumeration value="0271"/> <xs:enumeration value="0020"/> <xs:enumeration value="0049"/> <xs:enumeration value="0115"/> <xs:enumeration value="0068"/> <xs:enumeration value="0132"/> <xs:enumeration value="0007"/> <xs:enumeration value="0219"/> <xs:enumeration value="0142"/> <xs:enumeration value="0043"/> <xs:enumeration value="0220"/> <xs:enumeration value="0221"/> <xs:enumeration value="0133"/> <xs:enumeration value="0089"/> <xs:enumeration value="0055"/> <xs:enumeration value="0056"/> <xs:enumeration value="0057"/> <xs:enumeration value="0058"/> <xs:enumeration value="0059"/> <xs:enumeration value="0060"/> <xs:enumeration value="0222"/> <xs:enumeration value="0090"/> <xs:enumeration value="0022"/> <xs:enumeration value="0252"/> <xs:enumeration value="0104"/> <xs:enumeration value="0021"/> <xs:enumeration value="0248"/> <xs:enumeration value="0134"/> <xs:enumeration value="0223"/> <xs:enumeration value="0224"/> <xs:enumeration value="0023"/> <xs:enumeration value="0008"/> <xs:enumeration value="0009"/> <xs:enumeration value="0225"/> <xs:enumeration value="0116"/> <xs:enumeration value="0226"/> <xs:enumeration value="0227"/> <xs:enumeration value="0010"/> <xs:enumeration value="0228"/> <xs:enumeration value="0061"/> <xs:enumeration value="0135"/> <xs:enumeration value="0229"/> <xs:enumeration value="0262"/> <xs:enumeration value="0091"/> <xs:enumeration value="0069"/> <xs:enumeration value="0230"/> <xs:enumeration value="0136"/> <xs:enumeration value="0231"/> <xs:enumeration value="0232"/> <xs:enumeration value="0233"/> <xs:enumeration value="0234"/> <xs:enumeration value="0037"/> <xs:enumeration value="0249"/> <xs:enumeration value="0235"/> <xs:enumeration value="0236"/> <xs:enumeration value="0045"/> <xs:enumeration value="0046"/> <xs:enumeration value="0011"/> <xs:enumeration value="0137"/> <xs:enumeration value="0117"/> <xs:enumeration value="0118"/> <xs:enumeration value="0024"/> <xs:enumeration value="0247"/> <xs:enumeration value="0012"/> <xs:enumeration value="0092"/> <xs:enumeration value="0094"/> <xs:enumeration value="0237"/> <xs:enumeration value="0238"/> <xs:enumeration value="0093"/> <xs:enumeration value="0138"/> <xs:enumeration value="0013"/> <xs:enumeration value="0087"/> <xs:enumeration value="0239"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="AllergyTestObservationMethod"> <xs:annotation> <xs:documentation>abstDomain: A19802 (C-0-T14079-A19802-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="CommonClinicalObservationMethod"> <xs:annotation> <xs:documentation>abstDomain: A19803 (C-0-T14079-A19803-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="DecisionObservationMethod"> <xs:annotation> <xs:documentation>abstDomain: A19378 (C-0-T14079-A19378-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AlgorithmicDecisionObservationMethod"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="GINT"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="AlgorithmicDecisionObservationMethod"> <xs:annotation> <xs:documentation>specDomain: S19992 (C-0-T14079-A19378-S19992-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ALGM"/> <xs:enumeration value="BYCL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="VerificationMethod"> <xs:annotation> <xs:documentation>abstDomain: A19707 (C-0-T14079-A19707-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="VDOC"/> <xs:enumeration value="VTOKEN"/> <xs:enumeration value="VREG"/> <xs:enumeration value="VVOICE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="_0272"> <xs:annotation> <xs:documentation>specDomain: S21445 (C-0-T14079-S21445-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="0272"/> <xs:enumeration value="0245"/> <xs:enumeration value="0246"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="_0275a"> <xs:annotation> <xs:documentation>specDomain: S21449 (C-0-T14079-S21449-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="0275a"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="_0280"> <xs:annotation> <xs:documentation>specDomain: S21454 (C-0-T14079-S21454-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="0280"/> <xs:enumeration value="0278"/> <xs:enumeration value="0240"/> <xs:enumeration value="0241"/> <xs:enumeration value="0242"/> <xs:enumeration value="0279"/> <xs:enumeration value="0275"/> <xs:enumeration value="0272"/> <xs:enumeration value="0275a"/> <xs:enumeration value="0277"/> <xs:enumeration value="0276"/> <xs:enumeration value="0273"/> <xs:enumeration value="0274"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_AdverseEventCausalityAssessmentMethods"> <xs:annotation> <xs:documentation>abstDomain: A19380 (C-0-T14079-A19380-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ALGM"/> <xs:enumeration value="BYCL"/> <xs:enumeration value="GINT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationValue"> <xs:annotation> <xs:documentation>vocSet: T16614 (C-0-T16614-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActCoverageAssessmentObservationValue AllergyTestValue AnnotationValue CanadianDiagnosisCode CanadianWorkInjuryOrDiseaseCode CommonClinicalObservationValue CoverageChemicalDependencyValue IndicationValue IndividualCaseSafetyReportValueDomains InjuryObservationValue IntoleranceValue IssueTriggerObservationValue PartialCompletionScale SeverityObservation VerificationOutcomeValue"/> </xs:simpleType> <xs:simpleType name="ActCoverageAssessmentObservationValue"> <xs:annotation> <xs:documentation>abstDomain: A19918 (C-0-T16614-A19918-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ActFinancialStatusObservationValue ObservationEligibilityIndicatorValue ObservationHealthStatusValue ObservationLivingDependencyValue ObservationLivingSituationValue ObservationSocioEconomicStatusValue cs"/> </xs:simpleType> <xs:simpleType name="ActFinancialStatusObservationValue"> <xs:annotation> <xs:documentation>abstDomain: A19924 (C-0-T16614-A19918-A19924-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ObservationAssetValue ObservationIncomeValue ObservationLivingExpenseValue cs"/> </xs:simpleType> <xs:simpleType name="ObservationAssetValue"> <xs:annotation> <xs:documentation>specDomain: S22316 (C-0-T16614-A19918-A19924-S22316-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ASSET"/> <xs:enumeration value="ANNUITY"/> <xs:enumeration value="PROP"/> <xs:enumeration value="RETACCT"/> <xs:enumeration value="TRUST"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationIncomeValue"> <xs:annotation> <xs:documentation>specDomain: S22307 (C-0-T16614-A19918-A19924-S22307-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="INCOME"/> <xs:enumeration value="CHILD"/> <xs:enumeration value="DISABL"/> <xs:enumeration value="SUPPLE"/> <xs:enumeration value="INVEST"/> <xs:enumeration value="PAY"/> <xs:enumeration value="RETIRE"/> <xs:enumeration value="SPOUSAL"/> <xs:enumeration value="TAX"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationLivingExpenseValue"> <xs:annotation> <xs:documentation>specDomain: S22321 (C-0-T16614-A19918-A19924-S22321-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="LIVEXP"/> <xs:enumeration value="CLOTH"/> <xs:enumeration value="FOOD"/> <xs:enumeration value="HEALTH"/> <xs:enumeration value="HOUSE"/> <xs:enumeration value="LEGAL"/> <xs:enumeration value="MORTG"/> <xs:enumeration value="RENT"/> <xs:enumeration value="SUNDRY"/> <xs:enumeration value="TRANS"/> <xs:enumeration value="UTIL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationEligibilityIndicatorValue"> <xs:annotation> <xs:documentation>specDomain: S22295 (C-0-T16614-A19918-S22295-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ELSTAT"/> <xs:enumeration value="ADOPT"/> <xs:enumeration value="BTHCERT"/> <xs:enumeration value="CCOC"/> <xs:enumeration value="DRLIC"/> <xs:enumeration value="FOSTER"/> <xs:enumeration value="MRGCERT"/> <xs:enumeration value="MIL"/> <xs:enumeration value="PASSPORT"/> <xs:enumeration value="MEMBER"/> <xs:enumeration value="STUDENRL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationHealthStatusValue"> <xs:annotation> <xs:documentation>specDomain: S22290 (C-0-T16614-A19918-S22290-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="HLSTAT"/> <xs:enumeration value="IVDRG"/> <xs:enumeration value="DISABLE"/> <xs:enumeration value="DRUG"/> <xs:enumeration value="PGNT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationLivingDependencyValue"> <xs:annotation> <xs:documentation>specDomain: S22286 (C-0-T16614-A19918-S22286-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="LIVDEP"/> <xs:enumeration value="RELDEP"/> <xs:enumeration value="SPSDEP"/> <xs:enumeration value="URELDEP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationLivingSituationValue"> <xs:annotation> <xs:documentation>specDomain: S22277 (C-0-T16614-A19918-S22277-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="LIVSIT"/> <xs:enumeration value="ALONE"/> <xs:enumeration value="DEPCHD"/> <xs:enumeration value="DEPSPS"/> <xs:enumeration value="DEPYGCHD"/> <xs:enumeration value="FAM"/> <xs:enumeration value="RELAT"/> <xs:enumeration value="SPS"/> <xs:enumeration value="UNREL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObservationSocioEconomicStatusValue"> <xs:annotation> <xs:documentation>specDomain: S22269 (C-0-T16614-A19918-S22269-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SOECSTAT"/> <xs:enumeration value="ABUSE"/> <xs:enumeration value="HMLESS"/> <xs:enumeration value="ILGIM"/> <xs:enumeration value="INCAR"/> <xs:enumeration value="PROB"/> <xs:enumeration value="REFUG"/> <xs:enumeration value="UNEMPL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="AllergyTestValue"> <xs:annotation> <xs:documentation>abstDomain: A19696 (C-0-T16614-A19696-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="AnnotationValue"> <xs:annotation> <xs:documentation>abstDomain: A19332 (C-0-T16614-A19332-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ECGAnnotationValue cs"/> </xs:simpleType> <xs:simpleType name="ECGAnnotationValue"> <xs:annotation> <xs:documentation>abstDomain: A19333 (C-0-T16614-A19332-A19333-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ECGBeatTypeMDC ECGContourObservationTypeMDC ECGNoiseTypeMDC ECGRhythmTypeMDC ECGWaveComponentTypeMDC cs"/> </xs:simpleType> <xs:simpleType name="ECGBeatTypeMDC"> <xs:annotation> <xs:documentation>abstDomain: A19337 (C-0-T16614-A19332-A19333-A19337-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ECGContourObservationTypeMDC"> <xs:annotation> <xs:documentation>abstDomain: A19341 (C-0-T16614-A19332-A19333-A19341-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ECGNoiseTypeMDC"> <xs:annotation> <xs:documentation>abstDomain: A19340 (C-0-T16614-A19332-A19333-A19340-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ECGRhythmTypeMDC"> <xs:annotation> <xs:documentation>abstDomain: A19339 (C-0-T16614-A19332-A19333-A19339-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ECGWaveComponentTypeMDC"> <xs:annotation> <xs:documentation>abstDomain: A19338 (C-0-T16614-A19332-A19333-A19338-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="CanadianDiagnosisCode"> <xs:annotation> <xs:documentation>abstDomain: A19436 (C-0-T16614-A19436-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="CanadianWorkInjuryOrDiseaseCode"> <xs:annotation> <xs:documentation>abstDomain: A19437 (C-0-T16614-A19437-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="CommonClinicalObservationValue"> <xs:annotation> <xs:documentation>abstDomain: A19804 (C-0-T16614-A19804-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CommonClinicalObservationAssertionValue CommonClinicalObservationResultValue cs"/> </xs:simpleType> <xs:simpleType name="CommonClinicalObservationAssertionValue"> <xs:annotation> <xs:documentation>abstDomain: A19912 (C-0-T16614-A19804-A19912-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="CommonClinicalObservationResultValue"> <xs:annotation> <xs:documentation>abstDomain: A19913 (C-0-T16614-A19804-A19913-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="CoverageChemicalDependencyValue"> <xs:annotation> <xs:documentation>abstDomain: A19908 (C-0-T16614-A19908-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="IndicationValue"> <xs:annotation> <xs:documentation>abstDomain: A19729 (C-0-T16614-A19729-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DiagnosisValue OtherIndicationValue SymptomValue cs"/> </xs:simpleType> <xs:simpleType name="DiagnosisValue"> <xs:annotation> <xs:documentation>abstDomain: A16615 (C-0-T16614-A19729-A16615-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="OtherIndicationValue"> <xs:annotation> <xs:documentation>abstDomain: A19731 (C-0-T16614-A19729-A19731-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="_DiagnosisValue"/> <xs:enumeration value="_IndicationValue"/> <xs:enumeration value="_SymptomValue"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SymptomValue"> <xs:annotation> <xs:documentation>abstDomain: A19730 (C-0-T16614-A19729-A19730-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="IndividualCaseSafetyReportValueDomains"> <xs:annotation> <xs:documentation>abstDomain: A19625 (C-0-T16614-A19625-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CaseSeriousnessCriteria DeviceManufacturerEvaluationInterpretation DeviceManufacturerEvaluationMethod DeviceManufacturerEvaluationResult PertinentReactionRelatedness ProductCharacterization ReactionActionTaken SubjectReaction SubjectReactionEmphasis SubjectReactionOutcome cs"/> </xs:simpleType> <xs:simpleType name="CaseSeriousnessCriteria"> <xs:annotation> <xs:documentation>abstDomain: A19626 (C-0-T16614-A19625-A19626-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="DeviceManufacturerEvaluationInterpretation"> <xs:annotation> <xs:documentation>abstDomain: A19633 (C-0-T16614-A19625-A19633-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="DeviceManufacturerEvaluationMethod"> <xs:annotation> <xs:documentation>abstDomain: A19634 (C-0-T16614-A19625-A19634-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="DeviceManufacturerEvaluationResult"> <xs:annotation> <xs:documentation>abstDomain: A19632 (C-0-T16614-A19625-A19632-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="PertinentReactionRelatedness"> <xs:annotation> <xs:documentation>abstDomain: A19629 (C-0-T16614-A19625-A19629-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ProductCharacterization"> <xs:annotation> <xs:documentation>abstDomain: A19628 (C-0-T16614-A19625-A19628-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ReactionActionTaken"> <xs:annotation> <xs:documentation>abstDomain: A19635 (C-0-T16614-A19625-A19635-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="SubjectReaction"> <xs:annotation> <xs:documentation>abstDomain: A19627 (C-0-T16614-A19625-A19627-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="SubjectReactionEmphasis"> <xs:annotation> <xs:documentation>abstDomain: A19631 (C-0-T16614-A19625-A19631-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="SubjectReactionOutcome"> <xs:annotation> <xs:documentation>abstDomain: A19630 (C-0-T16614-A19625-A19630-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="InjuryObservationValue"> <xs:annotation> <xs:documentation>abstDomain: A19390 (C-0-T16614-A19390-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="IntoleranceValue"> <xs:annotation> <xs:documentation>abstDomain: A19697 (C-0-T16614-A19697-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="IssueTriggerObservationValue"> <xs:annotation> <xs:documentation>abstDomain: A19716 (C-0-T16614-A19716-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="PartialCompletionScale"> <xs:annotation> <xs:documentation>abstDomain: A18120 (C-0-T16614-A18120-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="G"/> <xs:enumeration value="LE"/> <xs:enumeration value="ME"/> <xs:enumeration value="MI"/> <xs:enumeration value="N"/> <xs:enumeration value="S"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SeverityObservation"> <xs:annotation> <xs:documentation>abstDomain: A16643 (C-0-T16614-A16643-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="H"/> <xs:enumeration value="L"/> <xs:enumeration value="M"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="VerificationOutcomeValue"> <xs:annotation> <xs:documentation>abstDomain: A19793 (C-0-T16614-A19793-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ACTPEND"/> <xs:enumeration value="ACT"/> <xs:enumeration value="ELG"/> <xs:enumeration value="INACT"/> <xs:enumeration value="INPNDUPD"/> <xs:enumeration value="INPNDINV"/> <xs:enumeration value="NELG"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OrganizationIndustryClass"> <xs:annotation> <xs:documentation>vocSet: T19298 (C-0-T19298-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="OrganizationNameType"> <xs:annotation> <xs:documentation>vocSet: T204 (C-0-T204-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="A"/> <xs:enumeration value="L"/> <xs:enumeration value="ST"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PNDS"> <xs:annotation> <xs:documentation>vocSet: E17 (C-0-E17-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParameterizedDataType"> <xs:annotation> <xs:documentation>vocSet: T10759 (C-0-T10759-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ParameterizedDataTypeBag ParameterizedDataTypeSequence ParameterizedDataTypeSet ParameterizedDataTypeType"/> </xs:simpleType> <xs:simpleType name="ParameterizedDataTypeBag"> <xs:annotation> <xs:documentation>specDomain: S10763 (C-0-T10759-S10763-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="BAG&lt;T&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParameterizedDataTypeSequence"> <xs:annotation> <xs:documentation>specDomain: S10762 (C-0-T10759-S10762-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="LIST&lt;T&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParameterizedDataTypeSet"> <xs:annotation> <xs:documentation>specDomain: S10761 (C-0-T10759-S10761-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ParameterizedDataTypeEventRelatedInterval ParameterizedDataTypeInterval ParameterizedDataTypePeriodicInterval"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="SET&lt;T&gt;"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ParameterizedDataTypeEventRelatedInterval"> <xs:annotation> <xs:documentation>specDomain: S10766 (C-0-T10759-S10761-S10766-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EIVL&lt;T&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParameterizedDataTypeInterval"> <xs:annotation> <xs:documentation>specDomain: S10764 (C-0-T10759-S10761-S10764-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IVL&lt;T&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParameterizedDataTypePeriodicInterval"> <xs:annotation> <xs:documentation>specDomain: S10765 (C-0-T10759-S10761-S10765-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PIVL&lt;T&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParameterizedDataTypeType"> <xs:annotation> <xs:documentation>specDomain: S10760 (C-0-T10759-S10760-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ParameterizedDataTypeAnnotated ParameterizedDataTypeHistorical ParameterizedDataTypeNonParametricProbabilityDistribution ParameterizedDataTypeParametricProbabilityDistribution ParameterizedDataTypeUncertainValueNarrative ParameterizedDataTypeUncertainValueProbabilistic"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="T"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ParameterizedDataTypeAnnotated"> <xs:annotation> <xs:documentation>specDomain: S10767 (C-0-T10759-S10760-S10767-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ANT&lt;T&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParameterizedDataTypeHistorical"> <xs:annotation> <xs:documentation>specDomain: S10768 (C-0-T10759-S10760-S10768-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="HXIT&lt;T&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParameterizedDataTypeNonParametricProbabilityDistribution"> <xs:annotation> <xs:documentation>specDomain: S10771 (C-0-T10759-S10760-S10771-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="NPPD&lt;T&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParameterizedDataTypeParametricProbabilityDistribution"> <xs:annotation> <xs:documentation>specDomain: S10772 (C-0-T10759-S10760-S10772-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PPD&lt;T&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParameterizedDataTypeUncertainValueNarrative"> <xs:annotation> <xs:documentation>specDomain: S10769 (C-0-T10759-S10760-S10769-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="UVN&lt;T&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParameterizedDataTypeUncertainValueProbabilistic"> <xs:annotation> <xs:documentation>specDomain: S10770 (C-0-T10759-S10760-S10770-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="UVP&lt;T&gt;"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParticipationAdmitter"> <xs:annotation> <xs:documentation>vocSet: O20062 (C-0-O20062-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationAttender"> <xs:annotation> <xs:documentation>vocSet: O20063 (C-0-O20063-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationAuthenticator"> <xs:annotation> <xs:documentation>vocSet: O20065 (C-0-O20065-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationAuthorOriginator"> <xs:annotation> <xs:documentation>vocSet: O20064 (C-0-O20064-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationBaby"> <xs:annotation> <xs:documentation>vocSet: O20066 (C-0-O20066-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationBeneficiary"> <xs:annotation> <xs:documentation>vocSet: O20067 (C-0-O20067-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationCallbackContact"> <xs:annotation> <xs:documentation>vocSet: O20069 (C-0-O20069-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationCausativeAgent"> <xs:annotation> <xs:documentation>vocSet: O20068 (C-0-O20068-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationConsultant"> <xs:annotation> <xs:documentation>vocSet: O20070 (C-0-O20070-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationConsumable"> <xs:annotation> <xs:documentation>vocSet: O20072 (C-0-O20072-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationCoverageTarget"> <xs:annotation> <xs:documentation>vocSet: O20071 (C-0-O20071-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationCustodian"> <xs:annotation> <xs:documentation>vocSet: O20073 (C-0-O20073-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationDataEntryPerson"> <xs:annotation> <xs:documentation>vocSet: O20079 (C-0-O20079-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationDestination"> <xs:annotation> <xs:documentation>vocSet: O20077 (C-0-O20077-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationDischarger"> <xs:annotation> <xs:documentation>vocSet: O20074 (C-0-O20074-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationDistributor"> <xs:annotation> <xs:documentation>vocSet: O20075 (C-0-O20075-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationDonor"> <xs:annotation> <xs:documentation>vocSet: O20076 (C-0-O20076-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationEntryLocation"> <xs:annotation> <xs:documentation>vocSet: O20078 (C-0-O20078-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationEscort"> <xs:annotation> <xs:documentation>vocSet: O20080 (C-0-O20080-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationExposureagent"> <xs:annotation> <xs:documentation>vocSet: O20081 (C-0-O20081-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationExposuresource"> <xs:annotation> <xs:documentation>vocSet: O20083 (C-0-O20083-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationExposuretarget"> <xs:annotation> <xs:documentation>vocSet: O20082 (C-0-O20082-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationFunction"> <xs:annotation> <xs:documentation>vocSet: T10267 (C-0-T10267-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AuthorizedParticipationFunction CoverageParticipationFunction"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="_AuthorizedParticipationFunction"/> <xs:enumeration value="_AuthorizedReceiverParticipationFunction"/> <xs:enumeration value="_ConsenterParticipationFunction"/> <xs:enumeration value="_CoverageParticipationFunction"/> <xs:enumeration value="_OverriderParticipationFunction"/> <xs:enumeration value="_PayorParticipationFunction"/> <xs:enumeration value="_SponsorParticipationFunction"/> <xs:enumeration value="_UnderwriterParticipationFunction"/> <xs:enumeration value="ADMPHYS"/> <xs:enumeration value="ANRS"/> <xs:enumeration value="ANEST"/> <xs:enumeration value="ATTPHYS"/> <xs:enumeration value="CLMADJ"/> <xs:enumeration value="DISPHYS"/> <xs:enumeration value="ENROLL"/> <xs:enumeration value="FFSMGT"/> <xs:enumeration value="FASST"/> <xs:enumeration value="FULINRD"/> <xs:enumeration value="MCMGT"/> <xs:enumeration value="MDWF"/> <xs:enumeration value="NASST"/> <xs:enumeration value="PAYORCNTR"/> <xs:enumeration value="PCP"/> <xs:enumeration value="PRISURG"/> <xs:enumeration value="PROVMGT"/> <xs:enumeration value="REINS"/> <xs:enumeration value="RETROCES"/> <xs:enumeration value="RNDPHYS"/> <xs:enumeration value="SNRS"/> <xs:enumeration value="SASST"/> <xs:enumeration value="SELFINRD"/> <xs:enumeration value="SUBCTRT"/> <xs:enumeration value="TASST"/> <xs:enumeration value="UNDERWRTNG"/> <xs:enumeration value="UMGT"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="AuthorizedParticipationFunction"> <xs:annotation> <xs:documentation>abstDomain: A19929 (C-0-T10267-A19929-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AuthorizedReceiverParticipationFunction ConsenterParticipationFunction OverriderParticipationFunction cs"/> </xs:simpleType> <xs:simpleType name="AuthorizedReceiverParticipationFunction"> <xs:annotation> <xs:documentation>abstDomain: A19932 (C-0-T10267-A19929-A19932-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ConsenterParticipationFunction"> <xs:annotation> <xs:documentation>abstDomain: A19930 (C-0-T10267-A19929-A19930-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="OverriderParticipationFunction"> <xs:annotation> <xs:documentation>abstDomain: A19931 (C-0-T10267-A19929-A19931-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="CoverageParticipationFunction"> <xs:annotation> <xs:documentation>abstDomain: A19903 (C-0-T10267-A19903-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="PayorParticipationFunction SponsorParticipationFunction UnderwriterParticipationFunction cs"/> </xs:simpleType> <xs:simpleType name="PayorParticipationFunction"> <xs:annotation> <xs:documentation>abstDomain: A19906 (C-0-T10267-A19903-A19906-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CLMADJ"/> <xs:enumeration value="ENROLL"/> <xs:enumeration value="FFSMGT"/> <xs:enumeration value="MCMGT"/> <xs:enumeration value="PROVMGT"/> <xs:enumeration value="UMGT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SponsorParticipationFunction"> <xs:annotation> <xs:documentation>abstDomain: A19905 (C-0-T10267-A19903-A19905-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="FULINRD"/> <xs:enumeration value="SELFINRD"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="UnderwriterParticipationFunction"> <xs:annotation> <xs:documentation>abstDomain: A19904 (C-0-T10267-A19903-A19904-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PAYORCNTR"/> <xs:enumeration value="REINS"/> <xs:enumeration value="RETROCES"/> <xs:enumeration value="SUBCTRT"/> <xs:enumeration value="UNDERWRTNG"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParticipationGuarantorParty"> <xs:annotation> <xs:documentation>vocSet: O20084 (C-0-O20084-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationHolder"> <xs:annotation> <xs:documentation>vocSet: O20085 (C-0-O20085-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationInformant"> <xs:annotation> <xs:documentation>vocSet: O20086 (C-0-O20086-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationLegalAuthenticator"> <xs:annotation> <xs:documentation>vocSet: O20087 (C-0-O20087-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationMode"> <xs:annotation> <xs:documentation>vocSet: T16543 (C-0-T16543-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ParticipationModeElectronicData ParticipationModeVerbal ParticipationModeWritten x_PhysicalVerbalParticipationMode"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="PHYSICAL"/> <xs:enumeration value="REMOTE"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ParticipationModeElectronicData"> <xs:annotation> <xs:documentation>specDomain: S16554 (C-0-T16543-S16554-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ELECTRONIC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParticipationModeVerbal"> <xs:annotation> <xs:documentation>specDomain: S16544 (C-0-T16543-S16544-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="VERBAL"/> <xs:enumeration value="DICTATE"/> <xs:enumeration value="FACE"/> <xs:enumeration value="PHONE"/> <xs:enumeration value="VIDEOCONF"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParticipationModeWritten"> <xs:annotation> <xs:documentation>specDomain: S16549 (C-0-T16543-S16549-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="WRITTEN"/> <xs:enumeration value="EMAILWRIT"/> <xs:enumeration value="HANDWRIT"/> <xs:enumeration value="FAXWRIT"/> <xs:enumeration value="TYPEWRIT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_PhysicalVerbalParticipationMode"> <xs:annotation> <xs:documentation>abstDomain: A19739 (C-0-T16543-A19739-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PHYSICAL"/> <xs:enumeration value="VERBAL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParticipationNon-reuseableDevice"> <xs:annotation> <xs:documentation>vocSet: O20089 (C-0-O20089-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationOrigin"> <xs:annotation> <xs:documentation>vocSet: O20090 (C-0-O20090-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationPrimaryInformationRecipient"> <xs:annotation> <xs:documentation>vocSet: O20092 (C-0-O20092-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationPrimaryPerformer"> <xs:annotation> <xs:documentation>vocSet: O20091 (C-0-O20091-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationProduct"> <xs:annotation> <xs:documentation>vocSet: O20093 (C-0-O20093-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationReceiver"> <xs:annotation> <xs:documentation>vocSet: O20095 (C-0-O20095-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationRecordTarget"> <xs:annotation> <xs:documentation>vocSet: O20094 (C-0-O20094-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationReferredBy"> <xs:annotation> <xs:documentation>vocSet: O20098 (C-0-O20098-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationReferredTo"> <xs:annotation> <xs:documentation>vocSet: O20099 (C-0-O20099-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationReferrer"> <xs:annotation> <xs:documentation>vocSet: O20097 (C-0-O20097-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationRemote"> <xs:annotation> <xs:documentation>vocSet: O20101 (C-0-O20101-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationResponsibleParty"> <xs:annotation> <xs:documentation>vocSet: O20100 (C-0-O20100-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationReusableDevice"> <xs:annotation> <xs:documentation>vocSet: O20096 (C-0-O20096-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationSecondaryPerformer"> <xs:annotation> <xs:documentation>vocSet: O20103 (C-0-O20103-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationSignature"> <xs:annotation> <xs:documentation>vocSet: T10282 (C-0-T10282-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="I"/> <xs:enumeration value="X"/> <xs:enumeration value="S"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParticipationSpecimen"> <xs:annotation> <xs:documentation>vocSet: O20102 (C-0-O20102-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationTracker"> <xs:annotation> <xs:documentation>vocSet: O20104 (C-0-O20104-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationType"> <xs:annotation> <xs:documentation>vocSet: T10901 (C-0-T10901-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ParticipationParticipation x_EncounterParticipant x_EncounterPerformerParticipation x_InformationRecipient x_ParticipationAuthorPerformer x_ParticipationEntVrf x_ParticipationPrfEntVrf x_ParticipationVrfRespSprfWit x_ServiceEventPerformer"/> </xs:simpleType> <xs:simpleType name="ParticipationParticipation"> <xs:annotation> <xs:documentation>specDomain: S21573 (C-0-T10901-S21573-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ParticipationAncillary ParticipationIndirectTarget ParticipationInformationGenerator ParticipationInformationRecipient ParticipationPhysicalPerformer ParticipationTargetDirect ParticipationTargetLocation ParticipationVerifier"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="PART"/> <xs:enumeration value="CST"/> <xs:enumeration value="RESP"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ParticipationAncillary"> <xs:annotation> <xs:documentation>abstDomain: A10247 (C-0-T10901-S21573-A10247-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ADM"/> <xs:enumeration value="ATND"/> <xs:enumeration value="CALLBCK"/> <xs:enumeration value="CON"/> <xs:enumeration value="DIS"/> <xs:enumeration value="ESC"/> <xs:enumeration value="REF"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParticipationIndirectTarget"> <xs:annotation> <xs:documentation>specDomain: S19032 (C-0-T10901-S21573-S19032-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IND"/> <xs:enumeration value="BEN"/> <xs:enumeration value="CAGNT"/> <xs:enumeration value="COV"/> <xs:enumeration value="GUAR"/> <xs:enumeration value="HLD"/> <xs:enumeration value="RCV"/> <xs:enumeration value="RCT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParticipationInformationGenerator"> <xs:annotation> <xs:documentation>abstDomain: A10251 (C-0-T10901-S21573-A10251-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ParticipationInformationTranscriber"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="AUT"/> <xs:enumeration value="INF"/> <xs:enumeration value="WIT"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ParticipationInformationTranscriber"> <xs:annotation> <xs:documentation>specDomain: S21463 (C-0-T10901-S21573-A10251-S21463-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TRANS"/> <xs:enumeration value="ENT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParticipationInformationRecipient"> <xs:annotation> <xs:documentation>specDomain: S10263 (C-0-T10901-S21573-S10263-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IRCP"/> <xs:enumeration value="REFB"/> <xs:enumeration value="REFT"/> <xs:enumeration value="PRCP"/> <xs:enumeration value="TRC"/> <xs:enumeration value="NOT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParticipationPhysicalPerformer"> <xs:annotation> <xs:documentation>specDomain: S10248 (C-0-T10901-S21573-S10248-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PRF"/> <xs:enumeration value="DIST"/> <xs:enumeration value="PPRF"/> <xs:enumeration value="SPRF"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParticipationTargetDirect"> <xs:annotation> <xs:documentation>specDomain: S10286 (C-0-T10901-S21573-S10286-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ParticipationExposureparticipation ParticipationTargetDevice ParticipationTargetSubject"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="DIR"/> <xs:enumeration value="EXPAGNT"/> <xs:enumeration value="BBY"/> <xs:enumeration value="CSM"/> <xs:enumeration value="DON"/> <xs:enumeration value="PRD"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ParticipationExposureparticipation"> <xs:annotation> <xs:documentation>specDomain: S21978 (C-0-T10901-S21573-S10286-S21978-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EXPART"/> <xs:enumeration value="EXSRC"/> <xs:enumeration value="EXPTRGT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParticipationTargetDevice"> <xs:annotation> <xs:documentation>specDomain: S10298 (C-0-T10901-S21573-S10286-S10298-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DEV"/> <xs:enumeration value="NRD"/> <xs:enumeration value="RDV"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParticipationTargetSubject"> <xs:annotation> <xs:documentation>specDomain: S10287 (C-0-T10901-S21573-S10286-S10287-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SBJ"/> <xs:enumeration value="SPC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParticipationTargetLocation"> <xs:annotation> <xs:documentation>specDomain: S10302 (C-0-T10901-S21573-S10302-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="LOC"/> <xs:enumeration value="DST"/> <xs:enumeration value="ELOC"/> <xs:enumeration value="ORG"/> <xs:enumeration value="RML"/> <xs:enumeration value="VIA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParticipationVerifier"> <xs:annotation> <xs:documentation>specDomain: S10259 (C-0-T10901-S21573-S10259-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="VRF"/> <xs:enumeration value="AUTHEN"/> <xs:enumeration value="LA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_EncounterParticipant"> <xs:annotation> <xs:documentation>abstDomain: A19600 (C-0-T10901-A19600-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ADM"/> <xs:enumeration value="ATND"/> <xs:enumeration value="CON"/> <xs:enumeration value="DIS"/> <xs:enumeration value="REF"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_EncounterPerformerParticipation"> <xs:annotation> <xs:documentation>abstDomain: A16764 (C-0-T10901-A16764-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CON"/> <xs:enumeration value="PRF"/> <xs:enumeration value="SPRF"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_InformationRecipient"> <xs:annotation> <xs:documentation>abstDomain: A19366 (C-0-T10901-A19366-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PRCP"/> <xs:enumeration value="TRC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ParticipationAuthorPerformer"> <xs:annotation> <xs:documentation>abstDomain: A19080 (C-0-T10901-A19080-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AUT"/> <xs:enumeration value="PRF"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ParticipationEntVrf"> <xs:annotation> <xs:documentation>abstDomain: A19588 (C-0-T10901-A19588-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ENT"/> <xs:enumeration value="VRF"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ParticipationPrfEntVrf"> <xs:annotation> <xs:documentation>abstDomain: A19589 (C-0-T10901-A19589-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ENT"/> <xs:enumeration value="PRF"/> <xs:enumeration value="VRF"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ParticipationVrfRespSprfWit"> <xs:annotation> <xs:documentation>abstDomain: A19083 (C-0-T10901-A19083-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="RESP"/> <xs:enumeration value="SPRF"/> <xs:enumeration value="VRF"/> <xs:enumeration value="WIT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_ServiceEventPerformer"> <xs:annotation> <xs:documentation>abstDomain: A19601 (C-0-T10901-A19601-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PRF"/> <xs:enumeration value="SPRF"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParticipationUgentNotificationContact"> <xs:annotation> <xs:documentation>vocSet: O20088 (C-0-O20088-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationVia"> <xs:annotation> <xs:documentation>vocSet: O20105 (C-0-O20105-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ParticipationWitness"> <xs:annotation> <xs:documentation>vocSet: O20106 (C-0-O20106-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="PatientImportance"> <xs:annotation> <xs:documentation>vocSet: T19265 (C-0-T19265-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="BM"/> <xs:enumeration value="FD"/> <xs:enumeration value="FOR"/> <xs:enumeration value="GOVT"/> <xs:enumeration value="DFM"/> <xs:enumeration value="SFM"/> <xs:enumeration value="STF"/> <xs:enumeration value="DR"/> <xs:enumeration value="VIP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PaymentTerms"> <xs:annotation> <xs:documentation>vocSet: T14908 (C-0-T14908-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="COD"/> <xs:enumeration value="N30"/> <xs:enumeration value="N60"/> <xs:enumeration value="N90"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PeriodicIntervalOfTimeAbbreviation"> <xs:annotation> <xs:documentation>vocSet: I16 (C-0-I16-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="PersonDisabilityType"> <xs:annotation> <xs:documentation>vocSet: T295 (C-0-T295-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="MobilityImpaired"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="4"/> <xs:enumeration value="2"/> <xs:enumeration value="3"/> <xs:enumeration value="1"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="MobilityImpaired"> <xs:annotation> <xs:documentation>specDomain: S10186 (C-0-T295-S10186-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="5"/> <xs:enumeration value="CB"/> <xs:enumeration value="CR"/> <xs:enumeration value="G"/> <xs:enumeration value="WK"/> <xs:enumeration value="WC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PostalAddressUse"> <xs:annotation> <xs:documentation>vocSet: T10637 (C-0-T10637-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AddressUse NameRepresentationUse"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="PHYS"/> <xs:enumeration value="PST"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="NameRepresentationUse"> <xs:annotation> <xs:documentation>abstDomain: A17860 (C-0-T10637-A17860-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ABC"/> <xs:enumeration value="IDE"/> <xs:enumeration value="SYL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ProbabilityDistributionType"> <xs:annotation> <xs:documentation>vocSet: T10747 (C-0-T10747-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="G"/> <xs:enumeration value="F"/> <xs:enumeration value="T"/> <xs:enumeration value="B"/> <xs:enumeration value="X2"/> <xs:enumeration value="E"/> <xs:enumeration value="LN"/> <xs:enumeration value="N"/> <xs:enumeration value="U"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ProcedureMethod"> <xs:annotation> <xs:documentation>vocSet: T16541 (C-0-T16541-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ProcessingID"> <xs:annotation> <xs:documentation>vocSet: T103 (C-0-T103-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="D"/> <xs:enumeration value="P"/> <xs:enumeration value="T"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ProcessingMode"> <xs:annotation> <xs:documentation>vocSet: T207 (C-0-T207-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="A"/> <xs:enumeration value="T"/> <xs:enumeration value="I"/> <xs:enumeration value="R"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ProductEntityType"> <xs:annotation> <xs:documentation>vocSet: T19435 (C-0-T19435-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ProviderCodes"> <xs:annotation> <xs:documentation>vocSet: T19465 (C-0-T19465-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AgenciesProviderCodes AllopathicandOsteopathicPhysiciansProviderCodes AmbulatoryHealthCareFacilitiesProviderCodes BehavioralHealthandSocialServiceProvidersProviderCodes ChiropracticProvidersProviderCodes DentalProvidersProviderCodes DietaryandNutritionalServiceProvidersProviderCodes EmergencyMedicalServiceProvidersProviderCodes EyeandVisionServiceProvidersProviderCodes GroupProviderCodes HospitalUnitsProviderCodes HospitalsProviderCodes LaboratoriesProviderCodes ManagedCareOrganizationsProviderCodes NursingServiceProvidersProviderCodes NursingServiceRelatedProvidersProviderCodes NursingandCustodialCareFacilitiesProviderCodes OtherServiceProvidersProviderCodes PharmacyServiceProvidersProviderCodes PhysicianAssistantsandAdvancedPracticeNursingProvidersProviderCodes PodiatricMedicineandSurgeryProvidersProviderCodes ResidentialTreatmentFacilitiesProviderCodes RespiratoryRehabilitativeandRestorativeServiceProvidersProviderCodes RespiteCareFacilityProviderCodes SpeechLanguageandHearingProvidersProviderCodes SuppliersProviderCodes TechnologistTechnicianandOtherTechnicalServiceProvidersProviderCodes TransportationServicesProviderCodes"/> </xs:simpleType> <xs:simpleType name="AgenciesProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20669 (C-0-T19465-S20669-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="250000000X"/> <xs:enumeration value="251B00000X"/> <xs:enumeration value="251C00000X"/> <xs:enumeration value="251E00000X"/> <xs:enumeration value="251F00000X"/> <xs:enumeration value="251G00000X"/> <xs:enumeration value="251J00000X"/> <xs:enumeration value="251K00000X"/> <xs:enumeration value="251V00000X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="AllopathicandOsteopathicPhysiciansProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20096 (C-0-T19465-S20096-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AllergyandImmunologyProviderCodes AnesthesiologyProviderCodes DermatologyProviderCodes EmergencyMedicineProviderCodes FamilyPracticeProviderCodes InternalMedicineProviderCodes MedicalGeneticsProviderCodes NuclearMedicineProviderCodes ObstetricsGynecologyProviderCodes OrthopaedicSurgeryProviderCodes OtolaryngologyProviderCodes PainMedicineProviderCodes PathologyProviderCodes PediatricsProviderCodes PhysicalMedicineandRehabilitationProviderCodes PlasticSurgeryProviderCodes PreventiveMedicineProviderCodes PsychiatryandNeurologyProviderCodes RadiologyProviderCodes SurgeryProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="200000000X"/> <xs:enumeration value="208U00000X"/> <xs:enumeration value="208C00000X"/> <xs:enumeration value="208D00000X"/> <xs:enumeration value="208M00000X"/> <xs:enumeration value="209800000X"/> <xs:enumeration value="207T00000X"/> <xs:enumeration value="204D00000X"/> <xs:enumeration value="204C00000X"/> <xs:enumeration value="207W00000X"/> <xs:enumeration value="204E00000X"/> <xs:enumeration value="208800000X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="AllergyandImmunologyProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20097 (C-0-T19465-S20096-S20097-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="207K00000X"/> <xs:enumeration value="207KA0200X"/> <xs:enumeration value="207KI0005X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="AnesthesiologyProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20100 (C-0-T19465-S20096-S20100-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="207L00000X"/> <xs:enumeration value="207LA0401X"/> <xs:enumeration value="207LC0200X"/> <xs:enumeration value="207LP2900X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DermatologyProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20106 (C-0-T19465-S20096-S20106-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="207N00000X"/> <xs:enumeration value="207NI0002X"/> <xs:enumeration value="207NS0135X"/> <xs:enumeration value="207ND0900X"/> <xs:enumeration value="207ND0101X"/> <xs:enumeration value="207NP0225X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EmergencyMedicineProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20112 (C-0-T19465-S20096-S20112-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="207P00000X"/> <xs:enumeration value="207PE0004X"/> <xs:enumeration value="207PT0002X"/> <xs:enumeration value="207PP0204X"/> <xs:enumeration value="207PS0010X"/> <xs:enumeration value="207PE0005X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="FamilyPracticeProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20118 (C-0-T19465-S20096-S20118-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="207Q00000X"/> <xs:enumeration value="207QA0401X"/> <xs:enumeration value="207QA0000X"/> <xs:enumeration value="207QA0505X"/> <xs:enumeration value="207QG0300X"/> <xs:enumeration value="207QS0010X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="InternalMedicineProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20126 (C-0-T19465-S20096-S20126-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="207R00000X"/> <xs:enumeration value="207RA0401X"/> <xs:enumeration value="207RA0000X"/> <xs:enumeration value="207RA0201X"/> <xs:enumeration value="207RC0000X"/> <xs:enumeration value="207RI0001X"/> <xs:enumeration value="207RC0001X"/> <xs:enumeration value="207RC0200X"/> <xs:enumeration value="207RE0101X"/> <xs:enumeration value="207RG0100X"/> <xs:enumeration value="207RG0300X"/> <xs:enumeration value="207RH0000X"/> <xs:enumeration value="207RH0003X"/> <xs:enumeration value="207RI0008X"/> <xs:enumeration value="207RI0200X"/> <xs:enumeration value="207RI0011X"/> <xs:enumeration value="207RM1200X"/> <xs:enumeration value="207RX0202X"/> <xs:enumeration value="207RN0300X"/> <xs:enumeration value="207RP1001X"/> <xs:enumeration value="207RR0500X"/> <xs:enumeration value="207RS0010X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MedicalGeneticsProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20149 (C-0-T19465-S20096-S20149-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="207S00000X"/> <xs:enumeration value="207SG0202X"/> <xs:enumeration value="207SC0300X"/> <xs:enumeration value="207SG0201X"/> <xs:enumeration value="207SG0203X"/> <xs:enumeration value="207SM0001X"/> <xs:enumeration value="207SG0205X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NuclearMedicineProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20159 (C-0-T19465-S20096-S20159-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="207U00000X"/> <xs:enumeration value="207UN0903X"/> <xs:enumeration value="207UN0901X"/> <xs:enumeration value="207UN0902X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ObstetricsGynecologyProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20163 (C-0-T19465-S20096-S20163-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="207V00000X"/> <xs:enumeration value="207VC0200X"/> <xs:enumeration value="207VX0201X"/> <xs:enumeration value="207VG0400X"/> <xs:enumeration value="207VM0101X"/> <xs:enumeration value="207VX0000X"/> <xs:enumeration value="207VE0102X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OrthopaedicSurgeryProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20172 (C-0-T19465-S20096-S20172-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="207X00000X"/> <xs:enumeration value="207XS0114X"/> <xs:enumeration value="207XX0004X"/> <xs:enumeration value="207XS0106X"/> <xs:enumeration value="207XS0117X"/> <xs:enumeration value="207XX0801X"/> <xs:enumeration value="207XX0005X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OtolaryngologyProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20179 (C-0-T19465-S20096-S20179-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="207Y00000X"/> <xs:enumeration value="207YS0123X"/> <xs:enumeration value="207YX0602X"/> <xs:enumeration value="207YX0905X"/> <xs:enumeration value="207YX0901X"/> <xs:enumeration value="207YP0228X"/> <xs:enumeration value="207YX0007X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PainMedicineProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20186 (C-0-T19465-S20096-S20186-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="208V00000X"/> <xs:enumeration value="208VP0014X"/> <xs:enumeration value="208VP0000X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PathologyProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20189 (C-0-T19465-S20096-S20189-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="207Z00000X"/> <xs:enumeration value="207ZP0101X"/> <xs:enumeration value="207ZP0102X"/> <xs:enumeration value="207ZB0001X"/> <xs:enumeration value="207ZP0104X"/> <xs:enumeration value="207ZP0105X"/> <xs:enumeration value="207ZC0500X"/> <xs:enumeration value="207ZD0900X"/> <xs:enumeration value="207ZF0201X"/> <xs:enumeration value="207ZH0000X"/> <xs:enumeration value="207ZI0100X"/> <xs:enumeration value="207ZM0300X"/> <xs:enumeration value="207ZP0007X"/> <xs:enumeration value="207ZN0500X"/> <xs:enumeration value="207ZP0213X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PediatricsProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20204 (C-0-T19465-S20096-S20204-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="208000000X"/> <xs:enumeration value="2080A0000X"/> <xs:enumeration value="2080I0007X"/> <xs:enumeration value="2080P0006X"/> <xs:enumeration value="2080T0002X"/> <xs:enumeration value="2080N0001X"/> <xs:enumeration value="2080P0008X"/> <xs:enumeration value="2080P0201X"/> <xs:enumeration value="2080P0202X"/> <xs:enumeration value="2080P0203X"/> <xs:enumeration value="2080P0204X"/> <xs:enumeration value="2080P0205X"/> <xs:enumeration value="2080P0206X"/> <xs:enumeration value="2080P0207X"/> <xs:enumeration value="2080P0208X"/> <xs:enumeration value="2080P0210X"/> <xs:enumeration value="2080P0214X"/> <xs:enumeration value="2080P0216X"/> <xs:enumeration value="2080S0010X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PhysicalMedicineandRehabilitationProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20223 (C-0-T19465-S20096-S20223-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="208100000X"/> <xs:enumeration value="2081P2900X"/> <xs:enumeration value="2081P0010X"/> <xs:enumeration value="2081P0004X"/> <xs:enumeration value="2081S0010X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PlasticSurgeryProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20228 (C-0-T19465-S20096-S20228-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="208200000X"/> <xs:enumeration value="2082S0099X"/> <xs:enumeration value="2082S0105X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PreventiveMedicineProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20231 (C-0-T19465-S20096-S20231-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="208300000X"/> <xs:enumeration value="2083A0100X"/> <xs:enumeration value="2083T0002X"/> <xs:enumeration value="2083X0100X"/> <xs:enumeration value="2083P0500X"/> <xs:enumeration value="2083P0901X"/> <xs:enumeration value="2083S0010X"/> <xs:enumeration value="2083P0011X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PsychiatryandNeurologyProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20239 (C-0-T19465-S20096-S20239-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="208400000X"/> <xs:enumeration value="2084A0401X"/> <xs:enumeration value="2084P0802X"/> <xs:enumeration value="2084P0804X"/> <xs:enumeration value="2084N0600X"/> <xs:enumeration value="2084F0202X"/> <xs:enumeration value="2084P0805X"/> <xs:enumeration value="2084P0005X"/> <xs:enumeration value="2084N0400X"/> <xs:enumeration value="2084N0402X"/> <xs:enumeration value="2084P2900X"/> <xs:enumeration value="2084P0800X"/> <xs:enumeration value="2084S0010X"/> <xs:enumeration value="2084V0102X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RadiologyProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20253 (C-0-T19465-S20096-S20253-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="208500000X"/> <xs:enumeration value="2085B0100X"/> <xs:enumeration value="2085R0202X"/> <xs:enumeration value="2085U0001X"/> <xs:enumeration value="2085N0700X"/> <xs:enumeration value="2085N0904X"/> <xs:enumeration value="2085P0229X"/> <xs:enumeration value="2085R0001X"/> <xs:enumeration value="2085R0205X"/> <xs:enumeration value="2085R0203X"/> <xs:enumeration value="2085R0204X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SurgeryProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20264 (C-0-T19465-S20096-S20264-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="208600000X"/> <xs:enumeration value="2086S0120X"/> <xs:enumeration value="2086S0122X"/> <xs:enumeration value="2086S0105X"/> <xs:enumeration value="2086S0102X"/> <xs:enumeration value="2086X0206X"/> <xs:enumeration value="208G00000X"/> <xs:enumeration value="204F00000X"/> <xs:enumeration value="2086S0127X"/> <xs:enumeration value="2086S0129X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="AmbulatoryHealthCareFacilitiesProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20678 (C-0-T19465-S20678-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ClinicCenterProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="260000000X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ClinicCenterProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20679 (C-0-T19465-S20678-S20679-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="261Q00000X"/> <xs:enumeration value="261QM0855X"/> <xs:enumeration value="261QA0600X"/> <xs:enumeration value="261QM0850X"/> <xs:enumeration value="261QA0005X"/> <xs:enumeration value="261QA0006X"/> <xs:enumeration value="261QA1903X"/> <xs:enumeration value="261QA0900X"/> <xs:enumeration value="261QA3000X"/> <xs:enumeration value="261QB0400X"/> <xs:enumeration value="261QC1500X"/> <xs:enumeration value="261QC1800X"/> <xs:enumeration value="261QC0050X"/> <xs:enumeration value="261QD0000X"/> <xs:enumeration value="261QD1600X"/> <xs:enumeration value="261QE0002X"/> <xs:enumeration value="261QE0700X"/> <xs:enumeration value="261QE0800X"/> <xs:enumeration value="261QF0050X"/> <xs:enumeration value="261QF0400X"/> <xs:enumeration value="261QG0250X"/> <xs:enumeration value="261QH0100X"/> <xs:enumeration value="261QH0700X"/> <xs:enumeration value="261QI0500X"/> <xs:enumeration value="261QL0400X"/> <xs:enumeration value="261QM1200X"/> <xs:enumeration value="261QR0206X"/> <xs:enumeration value="261QM2500X"/> <xs:enumeration value="261QM3000X"/> <xs:enumeration value="261QM0801X"/> <xs:enumeration value="261QM2800X"/> <xs:enumeration value="261QM1000X"/> <xs:enumeration value="261QM1100X"/> <xs:enumeration value="261QM1101X"/> <xs:enumeration value="261QM1102X"/> <xs:enumeration value="261QR0208X"/> <xs:enumeration value="261QR0207X"/> <xs:enumeration value="261QM1300X"/> <xs:enumeration value="261QX0100X"/> <xs:enumeration value="261QX0200X"/> <xs:enumeration value="261QX0203X"/> <xs:enumeration value="261QS0132X"/> <xs:enumeration value="261QS0112X"/> <xs:enumeration value="261QP3300X"/> <xs:enumeration value="261QP2000X"/> <xs:enumeration value="261QP1100X"/> <xs:enumeration value="261QP2300X"/> <xs:enumeration value="261QP2400X"/> <xs:enumeration value="261QP0904X"/> <xs:enumeration value="261QP0905X"/> <xs:enumeration value="261QR0200X"/> <xs:enumeration value="261QR0800X"/> <xs:enumeration value="261QR0400X"/> <xs:enumeration value="261QR0401X"/> <xs:enumeration value="261QR0405X"/> <xs:enumeration value="261QR0404X"/> <xs:enumeration value="261QR1100X"/> <xs:enumeration value="261QR1300X"/> <xs:enumeration value="261QS1200X"/> <xs:enumeration value="261QS1000X"/> <xs:enumeration value="261QU0200X"/> <xs:enumeration value="261QV0200X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="BehavioralHealthandSocialServiceProvidersProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20275 (C-0-T19465-S20275-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CounselorProviderCodes NeuropsychologistProviderCodes PsychologistProviderCodes SocialWorkerProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="100000000X"/> <xs:enumeration value="106H00000X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="CounselorProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20276 (C-0-T19465-S20275-S20276-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="101Y00000X"/> <xs:enumeration value="101YA0400X"/> <xs:enumeration value="101YM0800X"/> <xs:enumeration value="101YP1600X"/> <xs:enumeration value="101YP2500X"/> <xs:enumeration value="101YS0200X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NeuropsychologistProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20283 (C-0-T19465-S20275-S20283-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="103G00000X"/> <xs:enumeration value="103GC0700X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PsychologistProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20285 (C-0-T19465-S20275-S20285-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="103T00000X"/> <xs:enumeration value="103TA0400X"/> <xs:enumeration value="103TA0700X"/> <xs:enumeration value="103TB0200X"/> <xs:enumeration value="103TC2200X"/> <xs:enumeration value="103TC0700X"/> <xs:enumeration value="103TC1900X"/> <xs:enumeration value="103TE1000X"/> <xs:enumeration value="103TE1100X"/> <xs:enumeration value="103TF0000X"/> <xs:enumeration value="103TF0200X"/> <xs:enumeration value="103TH0100X"/> <xs:enumeration value="103TM1700X"/> <xs:enumeration value="103TM1800X"/> <xs:enumeration value="103TP0814X"/> <xs:enumeration value="103TP2700X"/> <xs:enumeration value="103TP2701X"/> <xs:enumeration value="103TR0400X"/> <xs:enumeration value="103TS0200X"/> <xs:enumeration value="103TW0100X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SocialWorkerProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20305 (C-0-T19465-S20275-S20305-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="104100000X"/> <xs:enumeration value="1041C0700X"/> <xs:enumeration value="1041S0200X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ChiropracticProvidersProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20308 (C-0-T19465-S20308-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ChiropractorProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="110000000X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ChiropractorProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20309 (C-0-T19465-S20308-S20309-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="111N00000X"/> <xs:enumeration value="111NI0900X"/> <xs:enumeration value="111NN0400X"/> <xs:enumeration value="111NN1001X"/> <xs:enumeration value="111NX0100X"/> <xs:enumeration value="111NX0800X"/> <xs:enumeration value="111NR0200X"/> <xs:enumeration value="111NS0005X"/> <xs:enumeration value="111NT0100X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DentalProvidersProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20318 (C-0-T19465-S20318-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DentistProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="120000000X"/> <xs:enumeration value="126800000X"/> <xs:enumeration value="124Q00000X"/> <xs:enumeration value="126900000X"/> <xs:enumeration value="122400000X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DentistProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20322 (C-0-T19465-S20318-S20322-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="122300000X"/> <xs:enumeration value="1223D0001X"/> <xs:enumeration value="1223E0200X"/> <xs:enumeration value="1223G0001X"/> <xs:enumeration value="1223P0106X"/> <xs:enumeration value="1223X0008X"/> <xs:enumeration value="1223S0112X"/> <xs:enumeration value="1223X0400X"/> <xs:enumeration value="1223P0221X"/> <xs:enumeration value="1223P0300X"/> <xs:enumeration value="1223P0700X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DietaryandNutritionalServiceProvidersProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20334 (C-0-T19465-S20334-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DietitianRegisteredProviderCodes NutritionistProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="130000000X"/> <xs:enumeration value="132700000X"/> <xs:enumeration value="136A00000X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DietitianRegisteredProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20337 (C-0-T19465-S20334-S20337-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="133V00000X"/> <xs:enumeration value="133VN1006X"/> <xs:enumeration value="133VN1004X"/> <xs:enumeration value="133VN1005X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NutritionistProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20341 (C-0-T19465-S20334-S20341-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="133N00000X"/> <xs:enumeration value="133NN1002X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EmergencyMedicalServiceProvidersProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20343 (C-0-T19465-S20343-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="140000000X"/> <xs:enumeration value="146N00000X"/> <xs:enumeration value="146M00000X"/> <xs:enumeration value="146L00000X"/> <xs:enumeration value="146D00000X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EyeandVisionServiceProvidersProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20348 (C-0-T19465-S20348-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="OptometristProviderCodes TechnicianTechnologistProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="150000000X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="OptometristProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20349 (C-0-T19465-S20348-S20349-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="152W00000X"/> <xs:enumeration value="152WC0802X"/> <xs:enumeration value="152WL0500X"/> <xs:enumeration value="152WX0102X"/> <xs:enumeration value="152WP0200X"/> <xs:enumeration value="152WS0006X"/> <xs:enumeration value="152WV0400X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TechnicianTechnologistProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20356 (C-0-T19465-S20348-S20356-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="156F00000X"/> <xs:enumeration value="156FC0800X"/> <xs:enumeration value="156FC0801X"/> <xs:enumeration value="156FX1700X"/> <xs:enumeration value="156FX1100X"/> <xs:enumeration value="156FX1101X"/> <xs:enumeration value="156FX1800X"/> <xs:enumeration value="156FX1201X"/> <xs:enumeration value="156FX1202X"/> <xs:enumeration value="156FX1900X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="GroupProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20800 (C-0-T19465-S20800-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="190000000X"/> <xs:enumeration value="193200000X"/> <xs:enumeration value="193400000X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="HospitalUnitsProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20728 (C-0-T19465-S20728-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="270000000X"/> <xs:enumeration value="275N00000X"/> <xs:enumeration value="273R00000X"/> <xs:enumeration value="273Y00000X"/> <xs:enumeration value="276400000X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="HospitalsProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20733 (C-0-T19465-S20733-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ChronicDiseaseHospitalProviderCodes GeneralAcuteCareHospitalProviderCodes MilitaryHospitalProviderCodes RehabilitationHospitalProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="280000000X"/> <xs:enumeration value="287300000X"/> <xs:enumeration value="283Q00000X"/> <xs:enumeration value="284300000X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ChronicDiseaseHospitalProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20735 (C-0-T19465-S20733-S20735-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="281P00000X"/> <xs:enumeration value="281PC2000X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="GeneralAcuteCareHospitalProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20737 (C-0-T19465-S20733-S20737-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="282N00000X"/> <xs:enumeration value="282NC2000X"/> <xs:enumeration value="282NC0060X"/> <xs:enumeration value="282NR1301X"/> <xs:enumeration value="282NW0100X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MilitaryHospitalProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20741 (C-0-T19465-S20733-S20741-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="286500000X"/> <xs:enumeration value="2865C1500X"/> <xs:enumeration value="2865M2000X"/> <xs:enumeration value="2865X1600X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RehabilitationHospitalProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20746 (C-0-T19465-S20733-S20746-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="283X00000X"/> <xs:enumeration value="283XC2000X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="LaboratoriesProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20749 (C-0-T19465-S20749-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="290000000X"/> <xs:enumeration value="291U00000X"/> <xs:enumeration value="292200000X"/> <xs:enumeration value="293D00000X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ManagedCareOrganizationsProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20753 (C-0-T19465-S20753-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="300000000X"/> <xs:enumeration value="302F00000X"/> <xs:enumeration value="302R00000X"/> <xs:enumeration value="305S00000X"/> <xs:enumeration value="305R00000X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NursingServiceProvidersProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20366 (C-0-T19465-S20366-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RegisteredNurseProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="160000000X"/> <xs:enumeration value="164W00000X"/> <xs:enumeration value="167G00000X"/> <xs:enumeration value="164X00000X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RegisteredNurseProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20370 (C-0-T19465-S20366-S20370-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="163W00000X"/> <xs:enumeration value="163WA0400X"/> <xs:enumeration value="163WA2000X"/> <xs:enumeration value="163WP2201X"/> <xs:enumeration value="163WC3500X"/> <xs:enumeration value="163WC0400X"/> <xs:enumeration value="163WC1400X"/> <xs:enumeration value="163WC1500X"/> <xs:enumeration value="163WC2100X"/> <xs:enumeration value="163WC1600X"/> <xs:enumeration value="163WC0200X"/> <xs:enumeration value="163WD0400X"/> <xs:enumeration value="163WD1100X"/> <xs:enumeration value="163WE0003X"/> <xs:enumeration value="163WE0900X"/> <xs:enumeration value="163WF0300X"/> <xs:enumeration value="163WG0100X"/> <xs:enumeration value="163WG0000X"/> <xs:enumeration value="163WG0600X"/> <xs:enumeration value="163WH0500X"/> <xs:enumeration value="163WH0200X"/> <xs:enumeration value="163WH1000X"/> <xs:enumeration value="163WI0600X"/> <xs:enumeration value="163WI0500X"/> <xs:enumeration value="163WL0100X"/> <xs:enumeration value="163WM0102X"/> <xs:enumeration value="163WM0705X"/> <xs:enumeration value="163WN0002X"/> <xs:enumeration value="163WN0003X"/> <xs:enumeration value="163WN0300X"/> <xs:enumeration value="163WN0800X"/> <xs:enumeration value="163WM1400X"/> <xs:enumeration value="163WN1003X"/> <xs:enumeration value="163WX0002X"/> <xs:enumeration value="163WX0003X"/> <xs:enumeration value="163WX0106X"/> <xs:enumeration value="163WX0200X"/> <xs:enumeration value="163WX1100X"/> <xs:enumeration value="163WX0800X"/> <xs:enumeration value="163WX1500X"/> <xs:enumeration value="163WX0601X"/> <xs:enumeration value="163WP0000X"/> <xs:enumeration value="163WP0218X"/> <xs:enumeration value="163WP0200X"/> <xs:enumeration value="163WP1700X"/> <xs:enumeration value="163WS0121X"/> <xs:enumeration value="163WP0808X"/> <xs:enumeration value="163WP0809X"/> <xs:enumeration value="163WP0807X"/> <xs:enumeration value="163WR0400X"/> <xs:enumeration value="163WR1000X"/> <xs:enumeration value="163WS0200X"/> <xs:enumeration value="163WU0100X"/> <xs:enumeration value="163WW0101X"/> <xs:enumeration value="163WW0000X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NursingServiceRelatedProvidersProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20425 (C-0-T19465-S20425-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="TechnicianProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="370000000X"/> <xs:enumeration value="372600000X"/> <xs:enumeration value="372500000X"/> <xs:enumeration value="374T00000X"/> <xs:enumeration value="373H00000X"/> <xs:enumeration value="374U00000X"/> <xs:enumeration value="376J00000X"/> <xs:enumeration value="376K00000X"/> <xs:enumeration value="376G00000X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="TechnicianProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20432 (C-0-T19465-S20425-S20432-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="374700000X"/> <xs:enumeration value="3747A0650X"/> <xs:enumeration value="3747P1801X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NursingandCustodialCareFacilitiesProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20758 (C-0-T19465-S20758-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AssistedLivingFacilityProviderCodes CustodialCareFacilityProviderCodes SkilledNursingFacilityProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="310000000X"/> <xs:enumeration value="311500000X"/> <xs:enumeration value="317400000X"/> <xs:enumeration value="315D00000X"/> <xs:enumeration value="315P00000X"/> <xs:enumeration value="310500000X"/> <xs:enumeration value="313M00000X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="AssistedLivingFacilityProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20820 (C-0-T19465-S20758-S20820-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="310400000X"/> <xs:enumeration value="3104A0630X"/> <xs:enumeration value="3104A0625X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="CustodialCareFacilityProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20761 (C-0-T19465-S20758-S20761-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="311Z00000X"/> <xs:enumeration value="311ZA0620X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SkilledNursingFacilityProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20765 (C-0-T19465-S20758-S20765-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="314000000X"/> <xs:enumeration value="3140N1450X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OtherServiceProvidersProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20434 (C-0-T19465-S20434-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ContractorProviderCodes SpecialistProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="170000000X"/> <xs:enumeration value="171100000X"/> <xs:enumeration value="172A00000X"/> <xs:enumeration value="176P00000X"/> <xs:enumeration value="175L00000X"/> <xs:enumeration value="173000000X"/> <xs:enumeration value="177F00000X"/> <xs:enumeration value="176B00000X"/> <xs:enumeration value="175M00000X"/> <xs:enumeration value="175F00000X"/> <xs:enumeration value="170100000X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ContractorProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20436 (C-0-T19465-S20434-S20436-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="171W00000X"/> <xs:enumeration value="171WH0202X"/> <xs:enumeration value="171WV0202X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SpecialistProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20448 (C-0-T19465-S20434-S20448-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="VeterinarianProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="174400000X"/> <xs:enumeration value="1744G0900X"/> <xs:enumeration value="1744P3200X"/> <xs:enumeration value="1744R1103X"/> <xs:enumeration value="1744R1102X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="VeterinarianProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20453 (C-0-T19465-S20434-S20448-S20453-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="174M00000X"/> <xs:enumeration value="174MM1900X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PharmacyServiceProvidersProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20455 (C-0-T19465-S20455-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="PharmacistProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="180000000X"/> <xs:enumeration value="183700000X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="PharmacistProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20456 (C-0-T19465-S20455-S20456-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="183500000X"/> <xs:enumeration value="1835G0000X"/> <xs:enumeration value="1835N0905X"/> <xs:enumeration value="1835N1003X"/> <xs:enumeration value="1835P1200X"/> <xs:enumeration value="1835P1300X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PhysicianAssistantsandAdvancedPracticeNursingProvidersProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20463 (C-0-T19465-S20463-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ClinicalNurseSpecialistProviderCodes NursePractitionerProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="360000000X"/> <xs:enumeration value="367H00000X"/> <xs:enumeration value="367A00000X"/> <xs:enumeration value="367500000X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ClinicalNurseSpecialistProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20465 (C-0-T19465-S20463-S20465-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="364S00000X"/> <xs:enumeration value="364SA2100X"/> <xs:enumeration value="364SA2200X"/> <xs:enumeration value="364SC2300X"/> <xs:enumeration value="364SC1501X"/> <xs:enumeration value="364SC0200X"/> <xs:enumeration value="364SE0003X"/> <xs:enumeration value="364SE1400X"/> <xs:enumeration value="364SF0001X"/> <xs:enumeration value="364SG0600X"/> <xs:enumeration value="364SH1100X"/> <xs:enumeration value="364SH0200X"/> <xs:enumeration value="364SI0800X"/> <xs:enumeration value="364SL0600X"/> <xs:enumeration value="364SM0705X"/> <xs:enumeration value="364SN0000X"/> <xs:enumeration value="364SN0800X"/> <xs:enumeration value="364SX0106X"/> <xs:enumeration value="364SX0200X"/> <xs:enumeration value="364SX0204X"/> <xs:enumeration value="364SP0200X"/> <xs:enumeration value="364SP1700X"/> <xs:enumeration value="364SP2800X"/> <xs:enumeration value="364SP0808X"/> <xs:enumeration value="364SP0809X"/> <xs:enumeration value="364SP0807X"/> <xs:enumeration value="364SP0810X"/> <xs:enumeration value="364SP0811X"/> <xs:enumeration value="364SP0812X"/> <xs:enumeration value="364SP0813X"/> <xs:enumeration value="364SR0400X"/> <xs:enumeration value="364SS0200X"/> <xs:enumeration value="364ST0500X"/> <xs:enumeration value="364SW0102X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NursePractitionerProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20501 (C-0-T19465-S20463-S20501-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="PhysicianAssistantProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="363L00000X"/> <xs:enumeration value="363LA2100X"/> <xs:enumeration value="363LA2200X"/> <xs:enumeration value="363LC1500X"/> <xs:enumeration value="363LC0200X"/> <xs:enumeration value="363LF0000X"/> <xs:enumeration value="363LG0600X"/> <xs:enumeration value="363LN0000X"/> <xs:enumeration value="363LN0005X"/> <xs:enumeration value="363LX0001X"/> <xs:enumeration value="363LX0106X"/> <xs:enumeration value="363LP0200X"/> <xs:enumeration value="363LP0222X"/> <xs:enumeration value="363LP1700X"/> <xs:enumeration value="363LP2300X"/> <xs:enumeration value="363LP0808X"/> <xs:enumeration value="363LS0200X"/> <xs:enumeration value="363LW0102X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="PhysicianAssistantProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20519 (C-0-T19465-S20463-S20501-S20519-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="363A00000X"/> <xs:enumeration value="363AM0700X"/> <xs:enumeration value="363AS0400X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PodiatricMedicineandSurgeryProvidersProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20522 (C-0-T19465-S20522-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="PodiatristProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="210000000X"/> <xs:enumeration value="211D00000X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="PodiatristProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20524 (C-0-T19465-S20522-S20524-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="213E00000X"/> <xs:enumeration value="213EG0000X"/> <xs:enumeration value="213EP1101X"/> <xs:enumeration value="213EP0504X"/> <xs:enumeration value="213ER0200X"/> <xs:enumeration value="213ES0000X"/> <xs:enumeration value="213ES0131X"/> <xs:enumeration value="213ES0103X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ResidentialTreatmentFacilitiesProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20766 (C-0-T19465-S20766-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="SubstanceAbuseDisorderRehabilitationFacilityProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="320000000X"/> <xs:enumeration value="320800000X"/> <xs:enumeration value="320900000X"/> <xs:enumeration value="323P00000X"/> <xs:enumeration value="322D00000X"/> <xs:enumeration value="320600000X"/> <xs:enumeration value="320700000X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="SubstanceAbuseDisorderRehabilitationFacilityProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20769 (C-0-T19465-S20766-S20769-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="324500000X"/> <xs:enumeration value="3245S0500X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RespiratoryRehabilitativeandRestorativeServiceProvidersProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20532 (C-0-T19465-S20532-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="OccupationalTherapistProviderCodes PhysicalTherapistProviderCodes RehabilitationCounselorProviderCodes RespiratoryTherapistCertifiedProviderCodes RespiratoryTherapistRegisteredProviderCodes SpecialistTechnologistProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="220000000X"/> <xs:enumeration value="221700000X"/> <xs:enumeration value="225600000X"/> <xs:enumeration value="226300000X"/> <xs:enumeration value="225700000X"/> <xs:enumeration value="225A00000X"/> <xs:enumeration value="224Z00000X"/> <xs:enumeration value="225000000X"/> <xs:enumeration value="222Z00000X"/> <xs:enumeration value="225200000X"/> <xs:enumeration value="224P00000X"/> <xs:enumeration value="225B00000X"/> <xs:enumeration value="225800000X"/> <xs:enumeration value="225400000X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="OccupationalTherapistProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20538 (C-0-T19465-S20532-S20538-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="225X00000X"/> <xs:enumeration value="225XE1200X"/> <xs:enumeration value="225XH1200X"/> <xs:enumeration value="225XH1300X"/> <xs:enumeration value="225XN1300X"/> <xs:enumeration value="225XP0200X"/> <xs:enumeration value="225XR0403X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PhysicalTherapistProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20548 (C-0-T19465-S20532-S20548-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="225100000X"/> <xs:enumeration value="2251C2600X"/> <xs:enumeration value="2251E1300X"/> <xs:enumeration value="2251E1200X"/> <xs:enumeration value="2251G0304X"/> <xs:enumeration value="2251H1200X"/> <xs:enumeration value="2251H1300X"/> <xs:enumeration value="2251N0400X"/> <xs:enumeration value="2251X0800X"/> <xs:enumeration value="2251P0200X"/> <xs:enumeration value="2251S0007X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RehabilitationCounselorProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20563 (C-0-T19465-S20532-S20563-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="225C00000X"/> <xs:enumeration value="225CA2400X"/> <xs:enumeration value="225CA2500X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RespiratoryTherapistCertifiedProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20567 (C-0-T19465-S20532-S20567-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="227800000X"/> <xs:enumeration value="2278C0205X"/> <xs:enumeration value="2278E0002X"/> <xs:enumeration value="2278G1100X"/> <xs:enumeration value="2278G0305X"/> <xs:enumeration value="2278H0200X"/> <xs:enumeration value="2278P3900X"/> <xs:enumeration value="2278P3800X"/> <xs:enumeration value="2278E1000X"/> <xs:enumeration value="2278P4000X"/> <xs:enumeration value="2278P1004X"/> <xs:enumeration value="2278P1006X"/> <xs:enumeration value="2278P1005X"/> <xs:enumeration value="2278S1500X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RespiratoryTherapistRegisteredProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20581 (C-0-T19465-S20532-S20581-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="227900000X"/> <xs:enumeration value="2279C0205X"/> <xs:enumeration value="2279E0002X"/> <xs:enumeration value="2279G1100X"/> <xs:enumeration value="2279G0305X"/> <xs:enumeration value="2279H0200X"/> <xs:enumeration value="2279P3900X"/> <xs:enumeration value="2279P3800X"/> <xs:enumeration value="2279E1000X"/> <xs:enumeration value="2279P4000X"/> <xs:enumeration value="2279P1004X"/> <xs:enumeration value="2279P1006X"/> <xs:enumeration value="2279P1005X"/> <xs:enumeration value="2279S1500X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SpecialistTechnologistProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20595 (C-0-T19465-S20532-S20595-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="225500000X"/> <xs:enumeration value="2255A2300X"/> <xs:enumeration value="2255R0406X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RespiteCareFacilityProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20770 (C-0-T19465-S20770-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RespiteCareProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="380000000X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RespiteCareProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20771 (C-0-T19465-S20770-S20771-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="385H00000X"/> <xs:enumeration value="385HR2050X"/> <xs:enumeration value="385HR2055X"/> <xs:enumeration value="385HR2060X"/> <xs:enumeration value="385HR2065X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SpeechLanguageandHearingProvidersProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20598 (C-0-T19465-S20598-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AudiologistProviderCodes SpeechLanguageTechnologistProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="230000000X"/> <xs:enumeration value="237600000X"/> <xs:enumeration value="237700000X"/> <xs:enumeration value="235Z00000X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="AudiologistProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20599 (C-0-T19465-S20598-S20599-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="231H00000X"/> <xs:enumeration value="231HA2400X"/> <xs:enumeration value="231HA2500X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SpeechLanguageTechnologistProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20604 (C-0-T19465-S20598-S20604-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="235500000X"/> <xs:enumeration value="2355A2700X"/> <xs:enumeration value="2355S0801X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SuppliersProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20772 (C-0-T19465-S20772-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DurableMedicalEquipmentandMedicalSuppliesProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="330000000X"/> <xs:enumeration value="331L00000X"/> <xs:enumeration value="332G00000X"/> <xs:enumeration value="332H00000X"/> <xs:enumeration value="332S00000X"/> <xs:enumeration value="332U00000X"/> <xs:enumeration value="335U00000X"/> <xs:enumeration value="333600000X"/> <xs:enumeration value="335V00000X"/> <xs:enumeration value="335E00000X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="DurableMedicalEquipmentandMedicalSuppliesProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20774 (C-0-T19465-S20772-S20774-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="332B00000X"/> <xs:enumeration value="332BC3200X"/> <xs:enumeration value="332BD1200X"/> <xs:enumeration value="332BN1400X"/> <xs:enumeration value="332BX2000X"/> <xs:enumeration value="332BP3500X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TechnologistTechnicianandOtherTechnicalServiceProvidersProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20608 (C-0-T19465-S20608-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RadiologicTechnologistProviderCodes SpecialistTechnologistCardiovascularProviderCodes SpecialistTechnologistHealthInformationProviderCodes SpecialistTechnologistOtherProviderCodes SpecialistTechnologistPathologyProviderCodes TechnicianHealthInformationProviderCodes TechnicianOtherProviderCodes TechnicianPathologyProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="240000000X"/> <xs:enumeration value="246W00000X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RadiologicTechnologistProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20609 (C-0-T19465-S20608-S20609-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="247100000X"/> <xs:enumeration value="2471B0102X"/> <xs:enumeration value="2471C1106X"/> <xs:enumeration value="2471C1101X"/> <xs:enumeration value="2471C3401X"/> <xs:enumeration value="2471M1202X"/> <xs:enumeration value="2471M2300X"/> <xs:enumeration value="2471N0900X"/> <xs:enumeration value="2471Q0001X"/> <xs:enumeration value="2471R0002X"/> <xs:enumeration value="2471C3402X"/> <xs:enumeration value="2471S1302X"/> <xs:enumeration value="2471V0105X"/> <xs:enumeration value="2471V0106X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SpecialistTechnologistCardiovascularProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20623 (C-0-T19465-S20608-S20623-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="246X00000X"/> <xs:enumeration value="246XC2901X"/> <xs:enumeration value="246XS1301X"/> <xs:enumeration value="246XC2903X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SpecialistTechnologistHealthInformationProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20627 (C-0-T19465-S20608-S20627-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="246Y00000X"/> <xs:enumeration value="246YC3301X"/> <xs:enumeration value="246YC3302X"/> <xs:enumeration value="246YR1600X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SpecialistTechnologistOtherProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20631 (C-0-T19465-S20608-S20631-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="246Z00000X"/> <xs:enumeration value="246ZA2600X"/> <xs:enumeration value="246ZB0500X"/> <xs:enumeration value="246ZB0301X"/> <xs:enumeration value="246ZB0302X"/> <xs:enumeration value="246ZB0600X"/> <xs:enumeration value="246ZE0500X"/> <xs:enumeration value="246ZE0600X"/> <xs:enumeration value="246ZG1000X"/> <xs:enumeration value="246ZG0701X"/> <xs:enumeration value="246ZI1000X"/> <xs:enumeration value="246ZN0300X"/> <xs:enumeration value="246ZS0400X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SpecialistTechnologistPathologyProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20644 (C-0-T19465-S20608-S20644-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="246Q00000X"/> <xs:enumeration value="246QB0000X"/> <xs:enumeration value="246QC1000X"/> <xs:enumeration value="246QC2700X"/> <xs:enumeration value="246QH0401X"/> <xs:enumeration value="246QH0000X"/> <xs:enumeration value="246QH0600X"/> <xs:enumeration value="246QI0000X"/> <xs:enumeration value="246QL0900X"/> <xs:enumeration value="246QL0901X"/> <xs:enumeration value="246QM0706X"/> <xs:enumeration value="246QM0900X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TechnicianHealthInformationProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20657 (C-0-T19465-S20608-S20657-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="247000000X"/> <xs:enumeration value="2470A2800X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TechnicianOtherProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20659 (C-0-T19465-S20608-S20659-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="247200000X"/> <xs:enumeration value="2472B0301X"/> <xs:enumeration value="2472D0500X"/> <xs:enumeration value="2472E0500X"/> <xs:enumeration value="2472R0900X"/> <xs:enumeration value="2472V0600X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TechnicianPathologyProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20665 (C-0-T19465-S20608-S20665-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="246R00000X"/> <xs:enumeration value="246RH0600X"/> <xs:enumeration value="246RM2200X"/> <xs:enumeration value="246RP1900X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TransportationServicesProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20788 (C-0-T19465-S20788-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AmbulanceProviderCodes"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="340000000X"/> <xs:enumeration value="347B00000X"/> <xs:enumeration value="343900000X"/> <xs:enumeration value="347C00000X"/> <xs:enumeration value="343800000X"/> <xs:enumeration value="344600000X"/> <xs:enumeration value="347D00000X"/> <xs:enumeration value="347E00000X"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="AmbulanceProviderCodes"> <xs:annotation> <xs:documentation>specDomain: S20789 (C-0-T19465-S20788-S20789-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="341600000X"/> <xs:enumeration value="3416A0800X"/> <xs:enumeration value="3416L0300X"/> <xs:enumeration value="3416S0300X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="QueryParameterValue"> <xs:annotation> <xs:documentation>vocSet: T19726 (C-0-T19726-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="IssueFilterCode PrescriptionDispenseFilterCode"/> </xs:simpleType> <xs:simpleType name="IssueFilterCode"> <xs:annotation> <xs:documentation>abstDomain: A19819 (C-0-T19726-A19819-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ISSFA"/> <xs:enumeration value="ISSFI"/> <xs:enumeration value="ISSFU"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PrescriptionDispenseFilterCode"> <xs:annotation> <xs:documentation>abstDomain: A19727 (C-0-T19726-A19727-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="C"/> <xs:enumeration value="R"/> <xs:enumeration value="N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="QueryPriority"> <xs:annotation> <xs:documentation>vocSet: T91 (C-0-T91-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="D"/> <xs:enumeration value="I"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="QueryQuantityUnit"> <xs:annotation> <xs:documentation>vocSet: T126 (C-0-T126-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CH"/> <xs:enumeration value="LI"/> <xs:enumeration value="PG"/> <xs:enumeration value="RD"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="QueryRequestLimit"> <xs:annotation> <xs:documentation>vocSet: T19911 (C-0-T19911-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="RD"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="QueryResponse"> <xs:annotation> <xs:documentation>vocSet: T208 (C-0-T208-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AE"/> <xs:enumeration value="OK"/> <xs:enumeration value="NF"/> <xs:enumeration value="QE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="QueryStatusCode"> <xs:annotation> <xs:documentation>vocSet: T18899 (C-0-T18899-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="aborted"/> <xs:enumeration value="deliveredResponse"/> <xs:enumeration value="executing"/> <xs:enumeration value="new"/> <xs:enumeration value="waitContinuedQueryResponse"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RC"> <xs:annotation> <xs:documentation>vocSet: E18 (C-0-E18-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RCFB"> <xs:annotation> <xs:documentation>vocSet: E21 (C-0-E21-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RCV2"> <xs:annotation> <xs:documentation>vocSet: E22 (C-0-E22-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="Race"> <xs:annotation> <xs:documentation>vocSet: T14914 (C-0-T14914-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RaceAsian RaceBlackOrAfricanAmerican RaceHawaiianOrPacificIsland RaceNativeAmerican RaceWhite"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="2131-1"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RaceAsian"> <xs:annotation> <xs:documentation>specDomain: S15743 (C-0-T14914-S15743-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="2028-9"/> <xs:enumeration value="2029-7"/> <xs:enumeration value="2030-5"/> <xs:enumeration value="2031-3"/> <xs:enumeration value="2032-1"/> <xs:enumeration value="2033-9"/> <xs:enumeration value="2034-7"/> <xs:enumeration value="2036-2"/> <xs:enumeration value="2037-0"/> <xs:enumeration value="2038-8"/> <xs:enumeration value="2048-7"/> <xs:enumeration value="2039-6"/> <xs:enumeration value="2040-4"/> <xs:enumeration value="2041-2"/> <xs:enumeration value="2052-9"/> <xs:enumeration value="2042-0"/> <xs:enumeration value="2049-5"/> <xs:enumeration value="2050-3"/> <xs:enumeration value="2043-8"/> <xs:enumeration value="2044-6"/> <xs:enumeration value="2051-1"/> <xs:enumeration value="2045-3"/> <xs:enumeration value="2035-4"/> <xs:enumeration value="2046-1"/> <xs:enumeration value="2047-9"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceBlackOrAfricanAmerican"> <xs:annotation> <xs:documentation>specDomain: S15768 (C-0-T14914-S15768-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RaceAfricanAmericanAfrican"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="2054-5"/> <xs:enumeration value="2058-6"/> <xs:enumeration value="2067-7"/> <xs:enumeration value="2068-5"/> <xs:enumeration value="2056-0"/> <xs:enumeration value="2070-1"/> <xs:enumeration value="2069-3"/> <xs:enumeration value="2071-9"/> <xs:enumeration value="2072-7"/> <xs:enumeration value="2073-5"/> <xs:enumeration value="2074-3"/> <xs:enumeration value="2075-0"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RaceAfricanAmericanAfrican"> <xs:annotation> <xs:documentation>specDomain: S15771 (C-0-T14914-S15768-S15771-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="2060-2"/> <xs:enumeration value="2061-0"/> <xs:enumeration value="2062-8"/> <xs:enumeration value="2063-6"/> <xs:enumeration value="2064-4"/> <xs:enumeration value="2065-1"/> <xs:enumeration value="2066-9"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceHawaiianOrPacificIsland"> <xs:annotation> <xs:documentation>specDomain: S15787 (C-0-T14914-S15787-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RacePacificIslandMelanesian RacePacificIslandMicronesian RacePacificIslandPolynesian"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="2076-8"/> <xs:enumeration value="2500-7"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RacePacificIslandMelanesian"> <xs:annotation> <xs:documentation>specDomain: S15808 (C-0-T14914-S15787-S15808-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="2100-6"/> <xs:enumeration value="2101-4"/> <xs:enumeration value="2104-8"/> <xs:enumeration value="2102-2"/> <xs:enumeration value="2103-0"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RacePacificIslandMicronesian"> <xs:annotation> <xs:documentation>specDomain: S15794 (C-0-T14914-S15787-S15794-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="2085-9"/> <xs:enumeration value="2092-5"/> <xs:enumeration value="2088-3"/> <xs:enumeration value="2097-4"/> <xs:enumeration value="2087-5"/> <xs:enumeration value="2086-7"/> <xs:enumeration value="2096-6"/> <xs:enumeration value="2093-3"/> <xs:enumeration value="2089-1"/> <xs:enumeration value="2090-9"/> <xs:enumeration value="2091-7"/> <xs:enumeration value="2094-1"/> <xs:enumeration value="2095-8"/> <xs:enumeration value="2098-2"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RacePacificIslandPolynesian"> <xs:annotation> <xs:documentation>specDomain: S15788 (C-0-T14914-S15787-S15788-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="2078-4"/> <xs:enumeration value="2079-2"/> <xs:enumeration value="2080-0"/> <xs:enumeration value="2081-8"/> <xs:enumeration value="2083-4"/> <xs:enumeration value="2082-6"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceNativeAmerican"> <xs:annotation> <xs:documentation>specDomain: S14915 (C-0-T14914-S14915-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RaceAlaskanNative RaceAmericanIndian"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="1002-5"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RaceAlaskanNative"> <xs:annotation> <xs:documentation>specDomain: S15470 (C-0-T14914-S14915-S15470-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RaceAlaskanIndian RaceAlaskanNativeAleut RaceAlaskanNativeEskimo"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="1735-0"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RaceAlaskanIndian"> <xs:annotation> <xs:documentation>specDomain: S15471 (C-0-T14914-S14915-S15470-S15471-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RaceAlaskanIndianAthabascan RaceSoutheastAlaskanIndian"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="1737-6"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RaceAlaskanIndianAthabascan"> <xs:annotation> <xs:documentation>specDomain: S15472 (C-0-T14914-S14915-S15470-S15471-S15472-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1739-2"/> <xs:enumeration value="1740-0"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceSoutheastAlaskanIndian"> <xs:annotation> <xs:documentation>specDomain: S15543 (C-0-T14914-S14915-S15470-S15471-S15543-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RaceSoutheastAlaskanIndianTlingit RaceSoutheastAlaskanIndianTsimshian"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="1811-9"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RaceSoutheastAlaskanIndianTlingit"> <xs:annotation> <xs:documentation>specDomain: S15544 (C-0-T14914-S14915-S15470-S15471-S15543-S15544-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1813-5"/> <xs:enumeration value="1814-3"/> <xs:enumeration value="1815-0"/> <xs:enumeration value="1816-8"/> <xs:enumeration value="1817-6"/> <xs:enumeration value="1818-4"/> <xs:enumeration value="1819-2"/> <xs:enumeration value="1820-0"/> <xs:enumeration value="1821-8"/> <xs:enumeration value="1822-6"/> <xs:enumeration value="1823-4"/> <xs:enumeration value="1824-2"/> <xs:enumeration value="1825-9"/> <xs:enumeration value="1826-7"/> <xs:enumeration value="1827-5"/> <xs:enumeration value="1828-3"/> <xs:enumeration value="1829-1"/> <xs:enumeration value="1830-9"/> <xs:enumeration value="1831-7"/> <xs:enumeration value="1832-5"/> <xs:enumeration value="1833-3"/> <xs:enumeration value="1834-1"/> <xs:enumeration value="1835-8"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceSoutheastAlaskanIndianTsimshian"> <xs:annotation> <xs:documentation>specDomain: S15567 (C-0-T14914-S14915-S15470-S15471-S15543-S15567-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1837-4"/> <xs:enumeration value="1838-2"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAlaskanNativeAleut"> <xs:annotation> <xs:documentation>specDomain: S15690 (C-0-T14914-S14915-S15470-S15690-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RaceAlaskanNativeAleutAlutiiq RaceAlaskanNativeAleutBristolBay RaceAlaskanNativeAleutChugach RaceAlaskanNativeAleutKoniag RaceAlaskanNativeAleutUnangan"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="1966-1"/> <xs:enumeration value="1990-1"/> <xs:enumeration value="2002-4"/> <xs:enumeration value="2004-0"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RaceAlaskanNativeAleutAlutiiq"> <xs:annotation> <xs:documentation>specDomain: S15691 (C-0-T14914-S14915-S15470-S15690-S15691-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1968-7"/> <xs:enumeration value="1969-5"/> <xs:enumeration value="1970-3"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAlaskanNativeAleutBristolBay"> <xs:annotation> <xs:documentation>specDomain: S16466 (C-0-T14914-S14915-S15470-S15690-S16466-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1972-9"/> <xs:enumeration value="1973-7"/> <xs:enumeration value="1974-5"/> <xs:enumeration value="1975-2"/> <xs:enumeration value="1976-0"/> <xs:enumeration value="1977-8"/> <xs:enumeration value="1978-6"/> <xs:enumeration value="1979-4"/> <xs:enumeration value="1980-2"/> <xs:enumeration value="1981-0"/> <xs:enumeration value="1982-8"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAlaskanNativeAleutChugach"> <xs:annotation> <xs:documentation>specDomain: S15705 (C-0-T14914-S14915-S15470-S15690-S15705-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1984-4"/> <xs:enumeration value="1985-1"/> <xs:enumeration value="1986-9"/> <xs:enumeration value="1987-7"/> <xs:enumeration value="1988-5"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAlaskanNativeAleutKoniag"> <xs:annotation> <xs:documentation>specDomain: S15711 (C-0-T14914-S14915-S15470-S15690-S15711-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1992-7"/> <xs:enumeration value="1994-3"/> <xs:enumeration value="1993-5"/> <xs:enumeration value="1995-0"/> <xs:enumeration value="1996-8"/> <xs:enumeration value="1997-6"/> <xs:enumeration value="1998-4"/> <xs:enumeration value="1999-2"/> <xs:enumeration value="2000-8"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAlaskanNativeAleutUnangan"> <xs:annotation> <xs:documentation>specDomain: S15722 (C-0-T14914-S14915-S15470-S15690-S15722-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="2006-5"/> <xs:enumeration value="2007-3"/> <xs:enumeration value="2008-1"/> <xs:enumeration value="2009-9"/> <xs:enumeration value="2010-7"/> <xs:enumeration value="2011-5"/> <xs:enumeration value="2012-3"/> <xs:enumeration value="2013-1"/> <xs:enumeration value="2015-6"/> <xs:enumeration value="2014-9"/> <xs:enumeration value="2016-4"/> <xs:enumeration value="2017-2"/> <xs:enumeration value="2018-0"/> <xs:enumeration value="2019-8"/> <xs:enumeration value="2020-6"/> <xs:enumeration value="2023-0"/> <xs:enumeration value="2024-8"/> <xs:enumeration value="2021-4"/> <xs:enumeration value="2022-2"/> <xs:enumeration value="2025-5"/> <xs:enumeration value="2026-3"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAlaskanNativeEskimo"> <xs:annotation> <xs:documentation>specDomain: S15569 (C-0-T14914-S14915-S15470-S15569-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RaceAlaskanNativeInupiatEskimo RaceAlaskanNativeSiberianEskimo RaceAlaskanNativeYupikEskimo"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="1840-8"/> <xs:enumeration value="1842-4"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RaceAlaskanNativeInupiatEskimo"> <xs:annotation> <xs:documentation>specDomain: S15571 (C-0-T14914-S14915-S15470-S15569-S15571-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1844-0"/> <xs:enumeration value="1845-7"/> <xs:enumeration value="1846-5"/> <xs:enumeration value="1847-3"/> <xs:enumeration value="1849-9"/> <xs:enumeration value="1848-1"/> <xs:enumeration value="1850-7"/> <xs:enumeration value="1851-5"/> <xs:enumeration value="1852-3"/> <xs:enumeration value="1853-1"/> <xs:enumeration value="1854-9"/> <xs:enumeration value="1855-6"/> <xs:enumeration value="1856-4"/> <xs:enumeration value="1857-2"/> <xs:enumeration value="1858-0"/> <xs:enumeration value="1859-8"/> <xs:enumeration value="1860-6"/> <xs:enumeration value="1861-4"/> <xs:enumeration value="1862-2"/> <xs:enumeration value="1863-0"/> <xs:enumeration value="1864-8"/> <xs:enumeration value="1865-5"/> <xs:enumeration value="1866-3"/> <xs:enumeration value="1867-1"/> <xs:enumeration value="1868-9"/> <xs:enumeration value="1869-7"/> <xs:enumeration value="1889-5"/> <xs:enumeration value="1870-5"/> <xs:enumeration value="1871-3"/> <xs:enumeration value="1872-1"/> <xs:enumeration value="1873-9"/> <xs:enumeration value="1874-7"/> <xs:enumeration value="1875-4"/> <xs:enumeration value="1876-2"/> <xs:enumeration value="1877-0"/> <xs:enumeration value="1878-8"/> <xs:enumeration value="1879-6"/> <xs:enumeration value="1880-4"/> <xs:enumeration value="1881-2"/> <xs:enumeration value="1882-0"/> <xs:enumeration value="1883-8"/> <xs:enumeration value="1884-6"/> <xs:enumeration value="1885-3"/> <xs:enumeration value="1886-1"/> <xs:enumeration value="1887-9"/> <xs:enumeration value="1888-7"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAlaskanNativeSiberianEskimo"> <xs:annotation> <xs:documentation>specDomain: S15617 (C-0-T14914-S14915-S15470-S15569-S15617-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1891-1"/> <xs:enumeration value="1892-9"/> <xs:enumeration value="1893-7"/> <xs:enumeration value="1894-5"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAlaskanNativeYupikEskimo"> <xs:annotation> <xs:documentation>specDomain: S15621 (C-0-T14914-S14915-S15470-S15569-S15621-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1896-0"/> <xs:enumeration value="1897-8"/> <xs:enumeration value="1898-6"/> <xs:enumeration value="1899-4"/> <xs:enumeration value="1900-0"/> <xs:enumeration value="1901-8"/> <xs:enumeration value="1902-6"/> <xs:enumeration value="1903-4"/> <xs:enumeration value="1904-2"/> <xs:enumeration value="1905-9"/> <xs:enumeration value="1906-7"/> <xs:enumeration value="1907-5"/> <xs:enumeration value="1908-3"/> <xs:enumeration value="1909-1"/> <xs:enumeration value="1910-9"/> <xs:enumeration value="1911-7"/> <xs:enumeration value="1912-5"/> <xs:enumeration value="1913-3"/> <xs:enumeration value="1914-1"/> <xs:enumeration value="1915-8"/> <xs:enumeration value="1916-6"/> <xs:enumeration value="1917-4"/> <xs:enumeration value="1962-0"/> <xs:enumeration value="1918-2"/> <xs:enumeration value="1919-0"/> <xs:enumeration value="1920-8"/> <xs:enumeration value="1921-6"/> <xs:enumeration value="1922-4"/> <xs:enumeration value="1923-2"/> <xs:enumeration value="1924-0"/> <xs:enumeration value="1925-7"/> <xs:enumeration value="1926-5"/> <xs:enumeration value="1927-3"/> <xs:enumeration value="1928-1"/> <xs:enumeration value="1929-9"/> <xs:enumeration value="1930-7"/> <xs:enumeration value="1931-5"/> <xs:enumeration value="1932-3"/> <xs:enumeration value="1933-1"/> <xs:enumeration value="1934-9"/> <xs:enumeration value="1935-6"/> <xs:enumeration value="1937-2"/> <xs:enumeration value="1938-0"/> <xs:enumeration value="1936-4"/> <xs:enumeration value="1940-6"/> <xs:enumeration value="1939-8"/> <xs:enumeration value="1941-4"/> <xs:enumeration value="1942-2"/> <xs:enumeration value="1943-0"/> <xs:enumeration value="1944-8"/> <xs:enumeration value="1945-5"/> <xs:enumeration value="1946-3"/> <xs:enumeration value="1947-1"/> <xs:enumeration value="1948-9"/> <xs:enumeration value="1949-7"/> <xs:enumeration value="1950-5"/> <xs:enumeration value="1952-1"/> <xs:enumeration value="1953-9"/> <xs:enumeration value="1954-7"/> <xs:enumeration value="1963-8"/> <xs:enumeration value="1951-3"/> <xs:enumeration value="1955-4"/> <xs:enumeration value="1956-2"/> <xs:enumeration value="1957-0"/> <xs:enumeration value="1958-8"/> <xs:enumeration value="1959-6"/> <xs:enumeration value="1960-4"/> <xs:enumeration value="1961-2"/> <xs:enumeration value="1964-6"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndian"> <xs:annotation> <xs:documentation>specDomain: S14916 (C-0-T14914-S14915-S14916-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Catawba RaceAmericanIndianApache RaceAmericanIndianArapaho RaceAmericanIndianAssiniboineSioux RaceAmericanIndianCaddo RaceAmericanIndianCahuilla RaceAmericanIndianCalifornia RaceAmericanIndianChemakuan RaceAmericanIndianCherokee RaceAmericanIndianCheyenne RaceAmericanIndianChickahominy RaceAmericanIndianChinook RaceAmericanIndianChippewa RaceAmericanIndianChippewaCree RaceAmericanIndianChoctaw RaceAmericanIndianChumash RaceAmericanIndianComanche RaceAmericanIndianCoushatta RaceAmericanIndianCreek RaceAmericanIndianCupeno RaceAmericanIndianDelaware RaceAmericanIndianDiegueno RaceAmericanIndianEasternTribes RaceAmericanIndianGrosVentres RaceAmericanIndianHoopa RaceAmericanIndianIowa RaceAmericanIndianIroquois RaceAmericanIndianKickapoo RaceAmericanIndianKiowa RaceAmericanIndianKlallam RaceAmericanIndianLongIsland RaceAmericanIndianLuiseno RaceAmericanIndianMaidu RaceAmericanIndianMiami RaceAmericanIndianMicmac RaceAmericanIndianNavajo RaceAmericanIndianNorthwestTribes RaceAmericanIndianOttawa RaceAmericanIndianPaiute RaceAmericanIndianPassamaquoddy RaceAmericanIndianPawnee RaceAmericanIndianPeoria RaceAmericanIndianPequot RaceAmericanIndianPima RaceAmericanIndianPomo RaceAmericanIndianPonca RaceAmericanIndianPotawatomi RaceAmericanIndianPueblo RaceAmericanIndianPugetSoundSalish RaceAmericanIndianSacFox RaceAmericanIndianSeminole RaceAmericanIndianSerrano RaceAmericanIndianShawnee RaceAmericanIndianShoshone RaceAmericanIndianShoshonePaiute RaceAmericanIndianSioux RaceAmericanIndianTohonoOOdham RaceAmericanIndianUmpqua RaceAmericanIndianUte RaceAmericanIndianWampanoag RaceAmericanIndianWashoe RaceAmericanIndianWinnebago RaceAmericanIndianYuman RaceAmericanIndianYurok RaceCanadianLatinIndian Wiyot Yaqui Yokuts"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="1004-1"/> <xs:enumeration value="1006-6"/> <xs:enumeration value="1008-2"/> <xs:enumeration value="1026-4"/> <xs:enumeration value="1028-0"/> <xs:enumeration value="1033-0"/> <xs:enumeration value="1035-5"/> <xs:enumeration value="1037-1"/> <xs:enumeration value="1039-7"/> <xs:enumeration value="1078-5"/> <xs:enumeration value="1080-1"/> <xs:enumeration value="1086-8"/> <xs:enumeration value="1100-7"/> <xs:enumeration value="1106-4"/> <xs:enumeration value="1112-2"/> <xs:enumeration value="1153-6"/> <xs:enumeration value="1165-0"/> <xs:enumeration value="1167-6"/> <xs:enumeration value="1169-2"/> <xs:enumeration value="1171-8"/> <xs:enumeration value="1173-4"/> <xs:enumeration value="1180-9"/> <xs:enumeration value="1178-3"/> <xs:enumeration value="1182-5"/> <xs:enumeration value="1184-1"/> <xs:enumeration value="1189-0"/> <xs:enumeration value="1191-6"/> <xs:enumeration value="1207-0"/> <xs:enumeration value="1209-6"/> <xs:enumeration value="1250-0"/> <xs:enumeration value="1252-6"/> <xs:enumeration value="1254-2"/> <xs:enumeration value="1258-3"/> <xs:enumeration value="1256-7"/> <xs:enumeration value="1260-9"/> <xs:enumeration value="1262-5"/> <xs:enumeration value="1267-4"/> <xs:enumeration value="1269-0"/> <xs:enumeration value="1275-7"/> <xs:enumeration value="1277-3"/> <xs:enumeration value="1279-9"/> <xs:enumeration value="1297-1"/> <xs:enumeration value="1299-7"/> <xs:enumeration value="1301-1"/> <xs:enumeration value="1303-7"/> <xs:enumeration value="1317-7"/> <xs:enumeration value="1319-3"/> <xs:enumeration value="1321-9"/> <xs:enumeration value="1323-5"/> <xs:enumeration value="1340-9"/> <xs:enumeration value="1342-5"/> <xs:enumeration value="1348-2"/> <xs:enumeration value="1350-8"/> <xs:enumeration value="1352-4"/> <xs:enumeration value="1354-0"/> <xs:enumeration value="1356-5"/> <xs:enumeration value="1363-1"/> <xs:enumeration value="1368-0"/> <xs:enumeration value="1370-6"/> <xs:enumeration value="1372-2"/> <xs:enumeration value="1374-8"/> <xs:enumeration value="1376-3"/> <xs:enumeration value="1378-9"/> <xs:enumeration value="1380-5"/> <xs:enumeration value="1387-0"/> <xs:enumeration value="1389-6"/> <xs:enumeration value="1403-5"/> <xs:enumeration value="1405-0"/> <xs:enumeration value="1407-6"/> <xs:enumeration value="1409-2"/> <xs:enumeration value="1439-9"/> <xs:enumeration value="1448-0"/> <xs:enumeration value="1460-5"/> <xs:enumeration value="1462-1"/> <xs:enumeration value="1487-8"/> <xs:enumeration value="1541-2"/> <xs:enumeration value="1543-8"/> <xs:enumeration value="1545-3"/> <xs:enumeration value="1547-9"/> <xs:enumeration value="1549-5"/> <xs:enumeration value="1556-0"/> <xs:enumeration value="1558-6"/> <xs:enumeration value="1560-2"/> <xs:enumeration value="1562-8"/> <xs:enumeration value="1564-4"/> <xs:enumeration value="1576-8"/> <xs:enumeration value="1582-6"/> <xs:enumeration value="1584-2"/> <xs:enumeration value="1607-1"/> <xs:enumeration value="1643-6"/> <xs:enumeration value="1074-4"/> <xs:enumeration value="1645-1"/> <xs:enumeration value="1647-7"/> <xs:enumeration value="1649-3"/> <xs:enumeration value="1651-9"/> <xs:enumeration value="1659-2"/> <xs:enumeration value="1661-8"/> <xs:enumeration value="1663-4"/> <xs:enumeration value="1665-9"/> <xs:enumeration value="1675-8"/> <xs:enumeration value="1677-4"/> <xs:enumeration value="1683-2"/> <xs:enumeration value="1685-7"/> <xs:enumeration value="1692-3"/> <xs:enumeration value="1694-9"/> <xs:enumeration value="1700-4"/> <xs:enumeration value="1702-0"/> <xs:enumeration value="1707-9"/> <xs:enumeration value="1709-5"/> <xs:enumeration value="1715-2"/> <xs:enumeration value="1722-8"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="Catawba"> <xs:annotation> <xs:documentation>specDomain: S14972 (C-0-T14914-S14915-S14916-S14972-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1076-9"/> <xs:enumeration value="1744-2"/> <xs:enumeration value="1741-8"/> <xs:enumeration value="1742-6"/> <xs:enumeration value="1743-4"/> <xs:enumeration value="1745-9"/> <xs:enumeration value="1746-7"/> <xs:enumeration value="1747-5"/> <xs:enumeration value="1748-3"/> <xs:enumeration value="1749-1"/> <xs:enumeration value="1750-9"/> <xs:enumeration value="1751-7"/> <xs:enumeration value="1752-5"/> <xs:enumeration value="1753-3"/> <xs:enumeration value="1754-1"/> <xs:enumeration value="1755-8"/> <xs:enumeration value="1756-6"/> <xs:enumeration value="1757-4"/> <xs:enumeration value="1758-2"/> <xs:enumeration value="1759-0"/> <xs:enumeration value="1760-8"/> <xs:enumeration value="1761-6"/> <xs:enumeration value="1762-4"/> <xs:enumeration value="1763-2"/> <xs:enumeration value="1764-0"/> <xs:enumeration value="1765-7"/> <xs:enumeration value="1766-5"/> <xs:enumeration value="1767-3"/> <xs:enumeration value="1768-1"/> <xs:enumeration value="1769-9"/> <xs:enumeration value="1770-7"/> <xs:enumeration value="1771-5"/> <xs:enumeration value="1772-3"/> <xs:enumeration value="1773-1"/> <xs:enumeration value="1774-9"/> <xs:enumeration value="1775-6"/> <xs:enumeration value="1776-4"/> <xs:enumeration value="1777-2"/> <xs:enumeration value="1778-0"/> <xs:enumeration value="1780-6"/> <xs:enumeration value="1779-8"/> <xs:enumeration value="1781-4"/> <xs:enumeration value="1782-2"/> <xs:enumeration value="1783-0"/> <xs:enumeration value="1784-8"/> <xs:enumeration value="1785-5"/> <xs:enumeration value="1786-3"/> <xs:enumeration value="1787-1"/> <xs:enumeration value="1788-9"/> <xs:enumeration value="1789-7"/> <xs:enumeration value="1790-5"/> <xs:enumeration value="1791-3"/> <xs:enumeration value="1792-1"/> <xs:enumeration value="1793-9"/> <xs:enumeration value="1795-4"/> <xs:enumeration value="1794-7"/> <xs:enumeration value="1796-2"/> <xs:enumeration value="1797-0"/> <xs:enumeration value="1798-8"/> <xs:enumeration value="1799-6"/> <xs:enumeration value="1800-2"/> <xs:enumeration value="1801-0"/> <xs:enumeration value="1802-8"/> <xs:enumeration value="1803-6"/> <xs:enumeration value="1804-4"/> <xs:enumeration value="1805-1"/> <xs:enumeration value="1806-9"/> <xs:enumeration value="1807-7"/> <xs:enumeration value="1808-5"/> <xs:enumeration value="1809-3"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianApache"> <xs:annotation> <xs:documentation>specDomain: S14919 (C-0-T14914-S14915-S14916-S14919-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1010-8"/> <xs:enumeration value="1011-6"/> <xs:enumeration value="1012-4"/> <xs:enumeration value="1013-2"/> <xs:enumeration value="1014-0"/> <xs:enumeration value="1015-7"/> <xs:enumeration value="1016-5"/> <xs:enumeration value="1017-3"/> <xs:enumeration value="1018-1"/> <xs:enumeration value="1019-9"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianArapaho"> <xs:annotation> <xs:documentation>specDomain: S14929 (C-0-T14914-S14915-S14916-S14929-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1021-5"/> <xs:enumeration value="1022-3"/> <xs:enumeration value="1023-1"/> <xs:enumeration value="1024-9"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianAssiniboineSioux"> <xs:annotation> <xs:documentation>specDomain: S14935 (C-0-T14914-S14915-S14916-S14935-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1030-6"/> <xs:enumeration value="1031-4"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianCaddo"> <xs:annotation> <xs:documentation>specDomain: S14941 (C-0-T14914-S14915-S14916-S14941-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1041-3"/> <xs:enumeration value="1042-1"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianCahuilla"> <xs:annotation> <xs:documentation>specDomain: S14943 (C-0-T14914-S14915-S14916-S14943-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1044-7"/> <xs:enumeration value="1045-4"/> <xs:enumeration value="1046-2"/> <xs:enumeration value="1047-0"/> <xs:enumeration value="1048-8"/> <xs:enumeration value="1049-6"/> <xs:enumeration value="1050-4"/> <xs:enumeration value="1051-2"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianCalifornia"> <xs:annotation> <xs:documentation>specDomain: S14951 (C-0-T14914-S14915-S14916-S14951-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1053-8"/> <xs:enumeration value="1054-6"/> <xs:enumeration value="1055-3"/> <xs:enumeration value="1056-1"/> <xs:enumeration value="1057-9"/> <xs:enumeration value="1058-7"/> <xs:enumeration value="1059-5"/> <xs:enumeration value="1060-3"/> <xs:enumeration value="1061-1"/> <xs:enumeration value="1062-9"/> <xs:enumeration value="1063-7"/> <xs:enumeration value="1064-5"/> <xs:enumeration value="1065-2"/> <xs:enumeration value="1066-0"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianChemakuan"> <xs:annotation> <xs:documentation>specDomain: S14975 (C-0-T14914-S14915-S14916-S14975-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1082-7"/> <xs:enumeration value="1083-5"/> <xs:enumeration value="1084-3"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianCherokee"> <xs:annotation> <xs:documentation>specDomain: S14979 (C-0-T14914-S14915-S14916-S14979-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1088-4"/> <xs:enumeration value="1089-2"/> <xs:enumeration value="1090-0"/> <xs:enumeration value="1091-8"/> <xs:enumeration value="1092-6"/> <xs:enumeration value="1093-4"/> <xs:enumeration value="1094-2"/> <xs:enumeration value="1095-9"/> <xs:enumeration value="1096-7"/> <xs:enumeration value="1097-5"/> <xs:enumeration value="1098-3"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianCheyenne"> <xs:annotation> <xs:documentation>specDomain: S14991 (C-0-T14914-S14915-S14916-S14991-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1102-3"/> <xs:enumeration value="1103-1"/> <xs:enumeration value="1104-9"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianChickahominy"> <xs:annotation> <xs:documentation>specDomain: S14995 (C-0-T14914-S14915-S14916-S14995-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1108-0"/> <xs:enumeration value="1109-8"/> <xs:enumeration value="1110-6"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianChinook"> <xs:annotation> <xs:documentation>specDomain: S14999 (C-0-T14914-S14915-S14916-S14999-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1114-8"/> <xs:enumeration value="1115-5"/> <xs:enumeration value="1116-3"/> <xs:enumeration value="1117-1"/> <xs:enumeration value="1118-9"/> <xs:enumeration value="1119-7"/> <xs:enumeration value="1120-5"/> <xs:enumeration value="1121-3"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianChippewa"> <xs:annotation> <xs:documentation>specDomain: S15007 (C-0-T14914-S14915-S14916-S15007-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1123-9"/> <xs:enumeration value="1124-7"/> <xs:enumeration value="1125-4"/> <xs:enumeration value="1126-2"/> <xs:enumeration value="1127-0"/> <xs:enumeration value="1128-8"/> <xs:enumeration value="1129-6"/> <xs:enumeration value="1130-4"/> <xs:enumeration value="1131-2"/> <xs:enumeration value="1132-0"/> <xs:enumeration value="1134-6"/> <xs:enumeration value="1133-8"/> <xs:enumeration value="1135-3"/> <xs:enumeration value="1136-1"/> <xs:enumeration value="1137-9"/> <xs:enumeration value="1138-7"/> <xs:enumeration value="1139-5"/> <xs:enumeration value="1140-3"/> <xs:enumeration value="1141-1"/> <xs:enumeration value="1142-9"/> <xs:enumeration value="1143-7"/> <xs:enumeration value="1145-2"/> <xs:enumeration value="1146-0"/> <xs:enumeration value="1144-5"/> <xs:enumeration value="1147-8"/> <xs:enumeration value="1148-6"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianChippewaCree"> <xs:annotation> <xs:documentation>specDomain: S15033 (C-0-T14914-S14915-S14916-S15033-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1150-2"/> <xs:enumeration value="1151-0"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianChoctaw"> <xs:annotation> <xs:documentation>specDomain: S15036 (C-0-T14914-S14915-S14916-S15036-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1155-1"/> <xs:enumeration value="1156-9"/> <xs:enumeration value="1157-7"/> <xs:enumeration value="1158-5"/> <xs:enumeration value="1159-3"/> <xs:enumeration value="1160-1"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianChumash"> <xs:annotation> <xs:documentation>specDomain: S15042 (C-0-T14914-S14915-S14916-S15042-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1162-7"/> <xs:enumeration value="1163-5"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianComanche"> <xs:annotation> <xs:documentation>specDomain: S15049 (C-0-T14914-S14915-S14916-S15049-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1175-9"/> <xs:enumeration value="1176-7"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianCoushatta"> <xs:annotation> <xs:documentation>specDomain: S15055 (C-0-T14914-S14915-S14916-S15055-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1186-6"/> <xs:enumeration value="1187-4"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianCreek"> <xs:annotation> <xs:documentation>specDomain: S15059 (C-0-T14914-S14915-S14916-S15059-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1193-2"/> <xs:enumeration value="1194-0"/> <xs:enumeration value="1195-7"/> <xs:enumeration value="1196-5"/> <xs:enumeration value="1197-3"/> <xs:enumeration value="1198-1"/> <xs:enumeration value="1199-9"/> <xs:enumeration value="1200-5"/> <xs:enumeration value="1201-3"/> <xs:enumeration value="1202-1"/> <xs:enumeration value="1203-9"/> <xs:enumeration value="1204-7"/> <xs:enumeration value="1205-4"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianCupeno"> <xs:annotation> <xs:documentation>specDomain: S15074 (C-0-T14914-S14915-S14916-S15074-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1211-2"/> <xs:enumeration value="1212-0"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianDelaware"> <xs:annotation> <xs:documentation>specDomain: S15076 (C-0-T14914-S14915-S14916-S15076-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1214-6"/> <xs:enumeration value="1215-3"/> <xs:enumeration value="1216-1"/> <xs:enumeration value="1217-9"/> <xs:enumeration value="1218-7"/> <xs:enumeration value="1219-5"/> <xs:enumeration value="1220-3"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianDiegueno"> <xs:annotation> <xs:documentation>specDomain: S15083 (C-0-T14914-S14915-S14916-S15083-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1222-9"/> <xs:enumeration value="1223-7"/> <xs:enumeration value="1224-5"/> <xs:enumeration value="1225-2"/> <xs:enumeration value="1226-0"/> <xs:enumeration value="1227-8"/> <xs:enumeration value="1228-6"/> <xs:enumeration value="1229-4"/> <xs:enumeration value="1230-2"/> <xs:enumeration value="1231-0"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianEasternTribes"> <xs:annotation> <xs:documentation>specDomain: S15093 (C-0-T14914-S14915-S14916-S15093-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1233-6"/> <xs:enumeration value="1234-4"/> <xs:enumeration value="1235-1"/> <xs:enumeration value="1236-9"/> <xs:enumeration value="1237-7"/> <xs:enumeration value="1238-5"/> <xs:enumeration value="1239-3"/> <xs:enumeration value="1240-1"/> <xs:enumeration value="1241-9"/> <xs:enumeration value="1242-7"/> <xs:enumeration value="1243-5"/> <xs:enumeration value="1244-3"/> <xs:enumeration value="1245-0"/> <xs:enumeration value="1246-8"/> <xs:enumeration value="1247-6"/> <xs:enumeration value="1248-4"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianGrosVentres"> <xs:annotation> <xs:documentation>specDomain: S15116 (C-0-T14914-S14915-S14916-S15116-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1264-1"/> <xs:enumeration value="1265-8"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianHoopa"> <xs:annotation> <xs:documentation>specDomain: S15120 (C-0-T14914-S14915-S14916-S15120-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1271-6"/> <xs:enumeration value="1272-4"/> <xs:enumeration value="1273-2"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianIowa"> <xs:annotation> <xs:documentation>specDomain: S15126 (C-0-T14914-S14915-S14916-S15126-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1281-5"/> <xs:enumeration value="1282-3"/> <xs:enumeration value="1283-1"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianIroquois"> <xs:annotation> <xs:documentation>specDomain: S15129 (C-0-T14914-S14915-S14916-S15129-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1285-6"/> <xs:enumeration value="1286-4"/> <xs:enumeration value="1287-2"/> <xs:enumeration value="1288-0"/> <xs:enumeration value="1289-8"/> <xs:enumeration value="1290-6"/> <xs:enumeration value="1291-4"/> <xs:enumeration value="1292-2"/> <xs:enumeration value="1293-0"/> <xs:enumeration value="1294-8"/> <xs:enumeration value="1295-5"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianKickapoo"> <xs:annotation> <xs:documentation>specDomain: S15144 (C-0-T14914-S14915-S14916-S15144-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1305-2"/> <xs:enumeration value="1306-0"/> <xs:enumeration value="1307-8"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianKiowa"> <xs:annotation> <xs:documentation>specDomain: S15147 (C-0-T14914-S14915-S14916-S15147-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1309-4"/> <xs:enumeration value="1310-2"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianKlallam"> <xs:annotation> <xs:documentation>specDomain: S15149 (C-0-T14914-S14915-S14916-S15149-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1312-8"/> <xs:enumeration value="1313-6"/> <xs:enumeration value="1314-4"/> <xs:enumeration value="1315-1"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianLongIsland"> <xs:annotation> <xs:documentation>specDomain: S15157 (C-0-T14914-S14915-S14916-S15157-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1325-0"/> <xs:enumeration value="1326-8"/> <xs:enumeration value="1327-6"/> <xs:enumeration value="1328-4"/> <xs:enumeration value="1329-2"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianLuiseno"> <xs:annotation> <xs:documentation>specDomain: S15162 (C-0-T14914-S14915-S14916-S15162-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1331-8"/> <xs:enumeration value="1332-6"/> <xs:enumeration value="1333-4"/> <xs:enumeration value="1334-2"/> <xs:enumeration value="1335-9"/> <xs:enumeration value="1336-7"/> <xs:enumeration value="1338-3"/> <xs:enumeration value="1337-5"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianMaidu"> <xs:annotation> <xs:documentation>specDomain: S15172 (C-0-T14914-S14915-S14916-S15172-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1344-1"/> <xs:enumeration value="1345-8"/> <xs:enumeration value="1346-6"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianMiami"> <xs:annotation> <xs:documentation>specDomain: S15180 (C-0-T14914-S14915-S14916-S15180-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1358-1"/> <xs:enumeration value="1359-9"/> <xs:enumeration value="1360-7"/> <xs:enumeration value="1361-5"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianMicmac"> <xs:annotation> <xs:documentation>specDomain: S15185 (C-0-T14914-S14915-S14916-S15185-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1365-6"/> <xs:enumeration value="1366-4"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianNavajo"> <xs:annotation> <xs:documentation>specDomain: S15194 (C-0-T14914-S14915-S14916-S15194-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1382-1"/> <xs:enumeration value="1383-9"/> <xs:enumeration value="1384-7"/> <xs:enumeration value="1385-4"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianNorthwestTribes"> <xs:annotation> <xs:documentation>specDomain: S15200 (C-0-T14914-S14915-S14916-S15200-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1391-2"/> <xs:enumeration value="1392-0"/> <xs:enumeration value="1393-8"/> <xs:enumeration value="1394-6"/> <xs:enumeration value="1395-3"/> <xs:enumeration value="1396-1"/> <xs:enumeration value="1397-9"/> <xs:enumeration value="1398-7"/> <xs:enumeration value="1399-5"/> <xs:enumeration value="1400-1"/> <xs:enumeration value="1401-9"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianOttawa"> <xs:annotation> <xs:documentation>specDomain: S15215 (C-0-T14914-S14915-S14916-S15215-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1411-8"/> <xs:enumeration value="1412-6"/> <xs:enumeration value="1413-4"/> <xs:enumeration value="1414-2"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianPaiute"> <xs:annotation> <xs:documentation>specDomain: S15219 (C-0-T14914-S14915-S14916-S15219-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1416-7"/> <xs:enumeration value="1417-5"/> <xs:enumeration value="1418-3"/> <xs:enumeration value="1419-1"/> <xs:enumeration value="1420-9"/> <xs:enumeration value="1421-7"/> <xs:enumeration value="1422-5"/> <xs:enumeration value="1423-3"/> <xs:enumeration value="1424-1"/> <xs:enumeration value="1425-8"/> <xs:enumeration value="1426-6"/> <xs:enumeration value="1427-4"/> <xs:enumeration value="1428-2"/> <xs:enumeration value="1429-0"/> <xs:enumeration value="1430-8"/> <xs:enumeration value="1431-6"/> <xs:enumeration value="1432-4"/> <xs:enumeration value="1433-2"/> <xs:enumeration value="1434-0"/> <xs:enumeration value="1435-7"/> <xs:enumeration value="1436-5"/> <xs:enumeration value="1437-3"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianPassamaquoddy"> <xs:annotation> <xs:documentation>specDomain: S15242 (C-0-T14914-S14915-S14916-S15242-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1441-5"/> <xs:enumeration value="1442-3"/> <xs:enumeration value="1443-1"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianPawnee"> <xs:annotation> <xs:documentation>specDomain: S15245 (C-0-T14914-S14915-S14916-S15245-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1445-6"/> <xs:enumeration value="1446-4"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianPeoria"> <xs:annotation> <xs:documentation>specDomain: S15248 (C-0-T14914-S14915-S14916-S15248-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1450-6"/> <xs:enumeration value="1451-4"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianPequot"> <xs:annotation> <xs:documentation>specDomain: S15250 (C-0-T14914-S14915-S14916-S15250-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1453-0"/> <xs:enumeration value="1454-8"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianPima"> <xs:annotation> <xs:documentation>specDomain: S15252 (C-0-T14914-S14915-S14916-S15252-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1456-3"/> <xs:enumeration value="1457-1"/> <xs:enumeration value="1458-9"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianPomo"> <xs:annotation> <xs:documentation>specDomain: S15257 (C-0-T14914-S14915-S14916-S15257-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1464-7"/> <xs:enumeration value="1465-4"/> <xs:enumeration value="1466-2"/> <xs:enumeration value="1467-0"/> <xs:enumeration value="1468-8"/> <xs:enumeration value="1469-6"/> <xs:enumeration value="1470-4"/> <xs:enumeration value="1471-2"/> <xs:enumeration value="1472-0"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianPonca"> <xs:annotation> <xs:documentation>specDomain: S15266 (C-0-T14914-S14915-S14916-S15266-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1474-6"/> <xs:enumeration value="1475-3"/> <xs:enumeration value="1476-1"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianPotawatomi"> <xs:annotation> <xs:documentation>specDomain: S15269 (C-0-T14914-S14915-S14916-S15269-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1478-7"/> <xs:enumeration value="1479-5"/> <xs:enumeration value="1480-3"/> <xs:enumeration value="1481-1"/> <xs:enumeration value="1482-9"/> <xs:enumeration value="1483-7"/> <xs:enumeration value="1484-5"/> <xs:enumeration value="1485-2"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianPueblo"> <xs:annotation> <xs:documentation>specDomain: S15278 (C-0-T14914-S14915-S14916-S15278-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1489-4"/> <xs:enumeration value="1490-2"/> <xs:enumeration value="1491-0"/> <xs:enumeration value="1492-8"/> <xs:enumeration value="1493-6"/> <xs:enumeration value="1494-4"/> <xs:enumeration value="1495-1"/> <xs:enumeration value="1496-9"/> <xs:enumeration value="1497-7"/> <xs:enumeration value="1498-5"/> <xs:enumeration value="1499-3"/> <xs:enumeration value="1500-8"/> <xs:enumeration value="1501-6"/> <xs:enumeration value="1502-4"/> <xs:enumeration value="1503-2"/> <xs:enumeration value="1506-5"/> <xs:enumeration value="1505-7"/> <xs:enumeration value="1504-0"/> <xs:enumeration value="1507-3"/> <xs:enumeration value="1508-1"/> <xs:enumeration value="1509-9"/> <xs:enumeration value="1510-7"/> <xs:enumeration value="1511-5"/> <xs:enumeration value="1512-3"/> <xs:enumeration value="1513-1"/> <xs:enumeration value="1514-9"/> <xs:enumeration value="1515-6"/> <xs:enumeration value="1516-4"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianPugetSoundSalish"> <xs:annotation> <xs:documentation>specDomain: S15306 (C-0-T14914-S14915-S14916-S15306-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1518-0"/> <xs:enumeration value="1519-8"/> <xs:enumeration value="1520-6"/> <xs:enumeration value="1521-4"/> <xs:enumeration value="1522-2"/> <xs:enumeration value="1523-0"/> <xs:enumeration value="1524-8"/> <xs:enumeration value="1525-5"/> <xs:enumeration value="1526-3"/> <xs:enumeration value="1527-1"/> <xs:enumeration value="1528-9"/> <xs:enumeration value="1529-7"/> <xs:enumeration value="1530-5"/> <xs:enumeration value="1531-3"/> <xs:enumeration value="1532-1"/> <xs:enumeration value="1533-9"/> <xs:enumeration value="1534-7"/> <xs:enumeration value="1535-4"/> <xs:enumeration value="1536-2"/> <xs:enumeration value="1537-0"/> <xs:enumeration value="1538-8"/> <xs:enumeration value="1539-6"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianSacFox"> <xs:annotation> <xs:documentation>specDomain: S15333 (C-0-T14914-S14915-S14916-S15333-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1551-1"/> <xs:enumeration value="1552-9"/> <xs:enumeration value="1553-7"/> <xs:enumeration value="1554-5"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianSeminole"> <xs:annotation> <xs:documentation>specDomain: S15342 (C-0-T14914-S14915-S14916-S15342-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1566-9"/> <xs:enumeration value="1567-7"/> <xs:enumeration value="1568-5"/> <xs:enumeration value="1569-3"/> <xs:enumeration value="1570-1"/> <xs:enumeration value="1571-9"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianSerrano"> <xs:annotation> <xs:documentation>specDomain: S15348 (C-0-T14914-S14915-S14916-S15348-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1573-5"/> <xs:enumeration value="1574-3"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianShawnee"> <xs:annotation> <xs:documentation>specDomain: S15351 (C-0-T14914-S14915-S14916-S15351-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1578-4"/> <xs:enumeration value="1579-2"/> <xs:enumeration value="1580-0"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianShoshone"> <xs:annotation> <xs:documentation>specDomain: S15356 (C-0-T14914-S14915-S14916-S15356-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1586-7"/> <xs:enumeration value="1587-5"/> <xs:enumeration value="1588-3"/> <xs:enumeration value="1589-1"/> <xs:enumeration value="1590-9"/> <xs:enumeration value="1591-7"/> <xs:enumeration value="1592-5"/> <xs:enumeration value="1593-3"/> <xs:enumeration value="1594-1"/> <xs:enumeration value="1595-8"/> <xs:enumeration value="1596-6"/> <xs:enumeration value="1597-4"/> <xs:enumeration value="1598-2"/> <xs:enumeration value="1599-0"/> <xs:enumeration value="1600-6"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianShoshonePaiute"> <xs:annotation> <xs:documentation>specDomain: S15371 (C-0-T14914-S14915-S14916-S15371-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1602-2"/> <xs:enumeration value="1603-0"/> <xs:enumeration value="1604-8"/> <xs:enumeration value="1605-5"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianSioux"> <xs:annotation> <xs:documentation>specDomain: S15376 (C-0-T14914-S14915-S14916-S15376-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1609-7"/> <xs:enumeration value="1610-5"/> <xs:enumeration value="1611-3"/> <xs:enumeration value="1612-1"/> <xs:enumeration value="1613-9"/> <xs:enumeration value="1614-7"/> <xs:enumeration value="1615-4"/> <xs:enumeration value="1616-2"/> <xs:enumeration value="1617-0"/> <xs:enumeration value="1618-8"/> <xs:enumeration value="1619-6"/> <xs:enumeration value="1620-4"/> <xs:enumeration value="1621-2"/> <xs:enumeration value="1622-0"/> <xs:enumeration value="1623-8"/> <xs:enumeration value="1624-6"/> <xs:enumeration value="1625-3"/> <xs:enumeration value="1626-1"/> <xs:enumeration value="1627-9"/> <xs:enumeration value="1628-7"/> <xs:enumeration value="1629-5"/> <xs:enumeration value="1631-1"/> <xs:enumeration value="1630-3"/> <xs:enumeration value="1632-9"/> <xs:enumeration value="1633-7"/> <xs:enumeration value="1634-5"/> <xs:enumeration value="1635-2"/> <xs:enumeration value="1636-0"/> <xs:enumeration value="1637-8"/> <xs:enumeration value="1638-6"/> <xs:enumeration value="1639-4"/> <xs:enumeration value="1640-2"/> <xs:enumeration value="1641-0"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianTohonoOOdham"> <xs:annotation> <xs:documentation>specDomain: S15414 (C-0-T14914-S14915-S14916-S15414-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1653-5"/> <xs:enumeration value="1654-3"/> <xs:enumeration value="1655-0"/> <xs:enumeration value="1656-8"/> <xs:enumeration value="1657-6"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianUmpqua"> <xs:annotation> <xs:documentation>specDomain: S15423 (C-0-T14914-S14915-S14916-S15423-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1667-5"/> <xs:enumeration value="1668-3"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianUte"> <xs:annotation> <xs:documentation>specDomain: S15425 (C-0-T14914-S14915-S14916-S15425-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1670-9"/> <xs:enumeration value="1671-7"/> <xs:enumeration value="1672-5"/> <xs:enumeration value="1673-3"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianWampanoag"> <xs:annotation> <xs:documentation>specDomain: S15431 (C-0-T14914-S14915-S14916-S15431-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1679-0"/> <xs:enumeration value="1680-8"/> <xs:enumeration value="1681-6"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianWashoe"> <xs:annotation> <xs:documentation>specDomain: S15436 (C-0-T14914-S14915-S14916-S15436-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1687-3"/> <xs:enumeration value="1688-1"/> <xs:enumeration value="1689-9"/> <xs:enumeration value="1690-7"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianWinnebago"> <xs:annotation> <xs:documentation>specDomain: S15442 (C-0-T14914-S14915-S14916-S15442-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1696-4"/> <xs:enumeration value="1697-2"/> <xs:enumeration value="1698-0"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianYuman"> <xs:annotation> <xs:documentation>specDomain: S15460 (C-0-T14914-S14915-S14916-S15460-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1724-4"/> <xs:enumeration value="1725-1"/> <xs:enumeration value="1726-9"/> <xs:enumeration value="1727-7"/> <xs:enumeration value="1728-5"/> <xs:enumeration value="1729-3"/> <xs:enumeration value="1730-1"/> <xs:enumeration value="1731-9"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceAmericanIndianYurok"> <xs:annotation> <xs:documentation>specDomain: S15468 (C-0-T14914-S14915-S14916-S15468-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1732-7"/> <xs:enumeration value="1733-5"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceCanadianLatinIndian"> <xs:annotation> <xs:documentation>specDomain: S14965 (C-0-T14914-S14915-S14916-S14965-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1068-6"/> <xs:enumeration value="1069-4"/> <xs:enumeration value="1070-2"/> <xs:enumeration value="1071-0"/> <xs:enumeration value="1072-8"/> <xs:enumeration value="1073-6"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Wiyot"> <xs:annotation> <xs:documentation>specDomain: S15447 (C-0-T14914-S14915-S14916-S15447-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1704-6"/> <xs:enumeration value="1705-3"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Yaqui"> <xs:annotation> <xs:documentation>specDomain: S15451 (C-0-T14914-S14915-S14916-S15451-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1711-1"/> <xs:enumeration value="1712-9"/> <xs:enumeration value="1713-7"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Yokuts"> <xs:annotation> <xs:documentation>specDomain: S15455 (C-0-T14914-S14915-S14916-S15455-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1717-8"/> <xs:enumeration value="1718-6"/> <xs:enumeration value="1719-4"/> <xs:enumeration value="1720-2"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceWhite"> <xs:annotation> <xs:documentation>specDomain: S15814 (C-0-T14914-S15814-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RaceWhiteArab RaceWhiteEuropean RaceWhiteMiddleEast"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="2106-3"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RaceWhiteArab"> <xs:annotation> <xs:documentation>specDomain: S15834 (C-0-T14914-S15814-S15834-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="2129-5"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceWhiteEuropean"> <xs:annotation> <xs:documentation>specDomain: S15815 (C-0-T14914-S15814-S15815-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="2108-9"/> <xs:enumeration value="2109-7"/> <xs:enumeration value="2110-5"/> <xs:enumeration value="2111-3"/> <xs:enumeration value="2112-1"/> <xs:enumeration value="2113-9"/> <xs:enumeration value="2114-7"/> <xs:enumeration value="2115-4"/> <xs:enumeration value="2116-2"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RaceWhiteMiddleEast"> <xs:annotation> <xs:documentation>specDomain: S15824 (C-0-T14914-S15814-S15824-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="2118-8"/> <xs:enumeration value="2126-1"/> <xs:enumeration value="2119-6"/> <xs:enumeration value="2120-4"/> <xs:enumeration value="2121-2"/> <xs:enumeration value="2122-0"/> <xs:enumeration value="2127-9"/> <xs:enumeration value="2123-8"/> <xs:enumeration value="2124-6"/> <xs:enumeration value="2125-3"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Realm"> <xs:annotation> <xs:documentation>vocSet: D37 (C-0-D37-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RelationalName"> <xs:annotation> <xs:documentation>vocSet: D38 (C-0-D38-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RelationalOperator"> <xs:annotation> <xs:documentation>vocSet: T209 (C-0-T209-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CT"/> <xs:enumeration value="EQ"/> <xs:enumeration value="GN"/> <xs:enumeration value="GT"/> <xs:enumeration value="GE"/> <xs:enumeration value="LT"/> <xs:enumeration value="LE"/> <xs:enumeration value="NE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RelationshipConjunction"> <xs:annotation> <xs:documentation>vocSet: T10365 (C-0-T10365-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AND"/> <xs:enumeration value="XOR"/> <xs:enumeration value="OR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ReligiousAffiliation"> <xs:annotation> <xs:documentation>vocSet: T19185 (C-0-T19185-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1001"/> <xs:enumeration value="1002"/> <xs:enumeration value="1003"/> <xs:enumeration value="1004"/> <xs:enumeration value="1005"/> <xs:enumeration value="1006"/> <xs:enumeration value="1061"/> <xs:enumeration value="1007"/> <xs:enumeration value="1008"/> <xs:enumeration value="1009"/> <xs:enumeration value="1010"/> <xs:enumeration value="1062"/> <xs:enumeration value="1011"/> <xs:enumeration value="1012"/> <xs:enumeration value="1013"/> <xs:enumeration value="1063"/> <xs:enumeration value="1064"/> <xs:enumeration value="1065"/> <xs:enumeration value="1014"/> <xs:enumeration value="1066"/> <xs:enumeration value="1015"/> <xs:enumeration value="1067"/> <xs:enumeration value="1016"/> <xs:enumeration value="1068"/> <xs:enumeration value="1069"/> <xs:enumeration value="1070"/> <xs:enumeration value="1017"/> <xs:enumeration value="1018"/> <xs:enumeration value="1071"/> <xs:enumeration value="1072"/> <xs:enumeration value="1019"/> <xs:enumeration value="1020"/> <xs:enumeration value="1021"/> <xs:enumeration value="1022"/> <xs:enumeration value="1023"/> <xs:enumeration value="1024"/> <xs:enumeration value="1025"/> <xs:enumeration value="1026"/> <xs:enumeration value="1027"/> <xs:enumeration value="1028"/> <xs:enumeration value="1029"/> <xs:enumeration value="1030"/> <xs:enumeration value="1031"/> <xs:enumeration value="1073"/> <xs:enumeration value="1032"/> <xs:enumeration value="1074"/> <xs:enumeration value="1075"/> <xs:enumeration value="1033"/> <xs:enumeration value="1035"/> <xs:enumeration value="1036"/> <xs:enumeration value="1037"/> <xs:enumeration value="1038"/> <xs:enumeration value="1076"/> <xs:enumeration value="1039"/> <xs:enumeration value="1077"/> <xs:enumeration value="1078"/> <xs:enumeration value="1079"/> <xs:enumeration value="1040"/> <xs:enumeration value="1041"/> <xs:enumeration value="1080"/> <xs:enumeration value="1042"/> <xs:enumeration value="1043"/> <xs:enumeration value="1044"/> <xs:enumeration value="1045"/> <xs:enumeration value="1046"/> <xs:enumeration value="1047"/> <xs:enumeration value="1048"/> <xs:enumeration value="1049"/> <xs:enumeration value="1050"/> <xs:enumeration value="1051"/> <xs:enumeration value="1081"/> <xs:enumeration value="1052"/> <xs:enumeration value="1082"/> <xs:enumeration value="1053"/> <xs:enumeration value="1054"/> <xs:enumeration value="1055"/> <xs:enumeration value="1056"/> <xs:enumeration value="1057"/> <xs:enumeration value="1058"/> <xs:enumeration value="1059"/> <xs:enumeration value="1060"/> <xs:enumeration value="1034"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ResponseLevel"> <xs:annotation> <xs:documentation>vocSet: T14761 (C-0-T14761-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="C"/> <xs:enumeration value="F"/> <xs:enumeration value="D"/> <xs:enumeration value="E"/> <xs:enumeration value="N"/> <xs:enumeration value="R"/> <xs:enumeration value="X"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ResponseModality"> <xs:annotation> <xs:documentation>vocSet: T394 (C-0-T394-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="B"/> <xs:enumeration value="T"/> <xs:enumeration value="R"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ResponseMode"> <xs:annotation> <xs:documentation>vocSet: T19650 (C-0-T19650-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="D"/> <xs:enumeration value="I"/> <xs:enumeration value="Q"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RoleClass"> <xs:annotation> <xs:documentation>vocSet: T11555 (C-0-T11555-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RoleClassRoot x_AccommodationRequestorRole x_DocumentEntrySubject x_DocumentSubject x_InformationRecipientRole x_RoleClassAccommodationRequestor x_RoleClassCoverage x_RoleClassCoverageInvoice x_RoleClassCredentialedEntity x_RoleClassPayeePolicyRelationship"/> </xs:simpleType> <xs:simpleType name="RoleClassRoot"> <xs:annotation> <xs:documentation>specDomain: S13940 (C-0-T11555-S13940-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RoleClassAssociative RoleClassOntological RoleClassPartitive"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="ROL"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RoleClassAssociative"> <xs:annotation> <xs:documentation>abstDomain: A19313 (C-0-T11555-S13940-A19313-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RoleClassMutualRelationship RoleClassPassive cs"/> </xs:simpleType> <xs:simpleType name="RoleClassMutualRelationship"> <xs:annotation> <xs:documentation>abstDomain: A19316 (C-0-T11555-S13940-A19313-A19316-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RoleClassRelationshipFormal"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="CAREGIVER"/> <xs:enumeration value="PRS"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RoleClassRelationshipFormal"> <xs:annotation> <xs:documentation>abstDomain: A10416 (C-0-T11555-S13940-A19313-A19316-A10416-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RoleClassAgent RoleClassCoveredParty RoleClassEmployee RoleClassInvestigationSubject RoleClassLicensedEntity"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="AFFL"/> <xs:enumeration value="CIT"/> <xs:enumeration value="CRINV"/> <xs:enumeration value="CRSPNSR"/> <xs:enumeration value="SPNSR"/> <xs:enumeration value="GUAR"/> <xs:enumeration value="PAYOR"/> <xs:enumeration value="PAT"/> <xs:enumeration value="PAYEE"/> <xs:enumeration value="POLHOLD"/> <xs:enumeration value="QUAL"/> <xs:enumeration value="STD"/> <xs:enumeration value="UNDWRT"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RoleClassAgent"> <xs:annotation> <xs:documentation>specDomain: S14006 (C-0-T11555-S13940-A19313-A19316-A10416-S14006-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RoleClassAssignedEntity"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="AGNT"/> <xs:enumeration value="GUARD"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RoleClassAssignedEntity"> <xs:annotation> <xs:documentation>specDomain: S11595 (C-0-T11555-S13940-A19313-A19316-A10416-S14006-S11595-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RoleClassContact"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="ASSIGNED"/> <xs:enumeration value="COMPAR"/> <xs:enumeration value="SGNOFF"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RoleClassContact"> <xs:annotation> <xs:documentation>specDomain: S12205 (C-0-T11555-S13940-A19313-A19316-A10416-S14006-S11595-S12205-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CON"/> <xs:enumeration value="ECON"/> <xs:enumeration value="NOK"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RoleClassCoveredParty"> <xs:annotation> <xs:documentation>specDomain: S14011 (C-0-T11555-S13940-A19313-A19316-A10416-S14011-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RoleClassNamedInsured"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="COVPTY"/> <xs:enumeration value="CLAIM"/> <xs:enumeration value="PROG"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RoleClassNamedInsured"> <xs:annotation> <xs:documentation>specDomain: S21957 (C-0-T11555-S13940-A19313-A19316-A10416-S14011-S21957-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="NAMED"/> <xs:enumeration value="DEPEN"/> <xs:enumeration value="INDIV"/> <xs:enumeration value="SUBSCR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RoleClassEmployee"> <xs:annotation> <xs:documentation>specDomain: S11569 (C-0-T11555-S13940-A19313-A19316-A10416-S11569-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EMP"/> <xs:enumeration value="MIL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RoleClassInvestigationSubject"> <xs:annotation> <xs:documentation>specDomain: S21464 (C-0-T11555-S13940-A19313-A19316-A10416-S21464-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="INVSBJ"/> <xs:enumeration value="CASEBJ"/> <xs:enumeration value="RESBJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RoleClassLicensedEntity"> <xs:annotation> <xs:documentation>specDomain: S16773 (C-0-T11555-S13940-A19313-A19316-A10416-S16773-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="LIC"/> <xs:enumeration value="PROV"/> <xs:enumeration value="NOT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RoleClassPassive"> <xs:annotation> <xs:documentation>abstDomain: A19105 (C-0-T11555-S13940-A19313-A19105-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RoleClassDistributedMaterial RoleClassManufacturedProduct RoleClassServiceDeliveryLocation"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="ADMM"/> <xs:enumeration value="ACCESS"/> <xs:enumeration value="BIRTHPL"/> <xs:enumeration value="EXPR"/> <xs:enumeration value="HLTHCHRT"/> <xs:enumeration value="HLD"/> <xs:enumeration value="IDENT"/> <xs:enumeration value="MNT"/> <xs:enumeration value="OWN"/> <xs:enumeration value="DEATHPLC"/> <xs:enumeration value="RGPR"/> <xs:enumeration value="TERR"/> <xs:enumeration value="WRTE"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RoleClassDistributedMaterial"> <xs:annotation> <xs:documentation>specDomain: S10418 (C-0-T11555-S13940-A19313-A19105-S10418-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DST"/> <xs:enumeration value="RET"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RoleClassManufacturedProduct"> <xs:annotation> <xs:documentation>specDomain: S11580 (C-0-T11555-S13940-A19313-A19105-S11580-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="MANU"/> <xs:enumeration value="THER"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RoleClassServiceDeliveryLocation"> <xs:annotation> <xs:documentation>specDomain: S16927 (C-0-T11555-S13940-A19313-A19105-S16927-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SDLOC"/> <xs:enumeration value="DSDLOC"/> <xs:enumeration value="ISDLOC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RoleClassOntological"> <xs:annotation> <xs:documentation>abstDomain: A10428 (C-0-T11555-S13940-A10428-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RoleClassIsSpeciesEntity RoleClassOntologicalEquivalentEntityByBOT"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="INST"/> <xs:enumeration value="SUBS"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RoleClassIsSpeciesEntity"> <xs:annotation> <xs:documentation>specDomain: S10441 (C-0-T11555-S13940-A10428-S10441-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="GEN"/> <xs:enumeration value="GRIC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RoleClassOntologicalEquivalentEntityByBOT"> <xs:annotation> <xs:documentation>specDomain: S22399 (C-0-T11555-S13940-A10428-S22399-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EQUIV"/> <xs:enumeration value="SAME"/> <xs:enumeration value="SUBY"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RoleClassPartitive"> <xs:annotation> <xs:documentation>abstDomain: A10429 (C-0-T11555-S13940-A10429-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RoleClassExposureAgentCarrier RoleClassIngredientEntity RoleClassLocatedEntity RoleClassPartitivePartByBOT RoleClassSpecimen"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="CONT"/> <xs:enumeration value="MBR"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RoleClassExposureAgentCarrier"> <xs:annotation> <xs:documentation>specDomain: S22350 (C-0-T11555-S13940-A10429-S22350-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EXPAGTCAR"/> <xs:enumeration value="EXPVECTOR"/> <xs:enumeration value="FOMITE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RoleClassIngredientEntity"> <xs:annotation> <xs:documentation>specDomain: S10430 (C-0-T11555-S13940-A10429-S10430-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RoleClassInactiveIngredient RoleClassIngredientEntityActiveIngredientByBOT"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="INGR"/> <xs:enumeration value="ADTV"/> <xs:enumeration value="BASE"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RoleClassInactiveIngredient"> <xs:annotation> <xs:documentation>specDomain: S19089 (C-0-T11555-S13940-A10429-S10430-S19089-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IACT"/> <xs:enumeration value="COLR"/> <xs:enumeration value="FLVR"/> <xs:enumeration value="PRSV"/> <xs:enumeration value="STBL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RoleClassIngredientEntityActiveIngredientByBOT"> <xs:annotation> <xs:documentation>specDomain: S10433 (C-0-T11555-S13940-A10429-S10430-S10433-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ACTI"/> <xs:enumeration value="ACTIB"/> <xs:enumeration value="ACTIM"/> <xs:enumeration value="ACTIR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RoleClassLocatedEntity"> <xs:annotation> <xs:documentation>specDomain: S16815 (C-0-T11555-S13940-A10429-S16815-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="LOCE"/> <xs:enumeration value="STOR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RoleClassPartitivePartByBOT"> <xs:annotation> <xs:documentation>specDomain: S19102 (C-0-T11555-S13940-A10429-S19102-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PART"/> <xs:enumeration value="ACTM"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RoleClassSpecimen"> <xs:annotation> <xs:documentation>specDomain: S11591 (C-0-T11555-S13940-A10429-S11591-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SPEC"/> <xs:enumeration value="ALQT"/> <xs:enumeration value="ISLT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_AccommodationRequestorRole"> <xs:annotation> <xs:documentation>abstDomain: A19352 (C-0-T11555-A19352-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AGNT"/> <xs:enumeration value="PROV"/> <xs:enumeration value="PAT"/> <xs:enumeration value="PRS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_DocumentEntrySubject"> <xs:annotation> <xs:documentation>abstDomain: A19367 (C-0-T11555-A19367-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PAT"/> <xs:enumeration value="PRS"/> <xs:enumeration value="SPEC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_DocumentSubject"> <xs:annotation> <xs:documentation>abstDomain: A19368 (C-0-T11555-A19368-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PAT"/> <xs:enumeration value="PRS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_InformationRecipientRole"> <xs:annotation> <xs:documentation>abstDomain: A16772 (C-0-T11555-A16772-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ASSIGNED"/> <xs:enumeration value="HLTHCHRT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_RoleClassAccommodationRequestor"> <xs:annotation> <xs:documentation>abstDomain: A19382 (C-0-T11555-A19382-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AGNT"/> <xs:enumeration value="PROV"/> <xs:enumeration value="PAT"/> <xs:enumeration value="PRS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_RoleClassCoverage"> <xs:annotation> <xs:documentation>abstDomain: A14008 (C-0-T11555-A14008-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SPNSR"/> <xs:enumeration value="COVPTY"/> <xs:enumeration value="POLHOLD"/> <xs:enumeration value="UNDWRT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_RoleClassCoverageInvoice"> <xs:annotation> <xs:documentation>abstDomain: A14013 (C-0-T11555-A14013-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PAYOR"/> <xs:enumeration value="PAYEE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_RoleClassCredentialedEntity"> <xs:annotation> <xs:documentation>abstDomain: A16930 (C-0-T11555-A16930-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ASSIGNED"/> <xs:enumeration value="QUAL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_RoleClassPayeePolicyRelationship"> <xs:annotation> <xs:documentation>abstDomain: A19395 (C-0-T11555-A19395-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="COVPTY"/> <xs:enumeration value="GUAR"/> <xs:enumeration value="PROV"/> <xs:enumeration value="PRS"/> <xs:enumeration value="POLHOLD"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RoleClassAccess"> <xs:annotation> <xs:documentation>vocSet: O20107 (C-0-O20107-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassActiveIngredient"> <xs:annotation> <xs:documentation>vocSet: O20108 (C-0-O20108-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassActiveIngredientBasis"> <xs:annotation> <xs:documentation>vocSet: O20272 (C-0-O20272-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassActiveIngredientMoietyBasis"> <xs:annotation> <xs:documentation>vocSet: O20271 (C-0-O20271-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassActiveIngredientReferenceBasis"> <xs:annotation> <xs:documentation>vocSet: O20273 (C-0-O20273-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassActiveMoiety"> <xs:annotation> <xs:documentation>vocSet: O20109 (C-0-O20109-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassAdditive"> <xs:annotation> <xs:documentation>vocSet: O20111 (C-0-O20111-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassAdministerableMaterial"> <xs:annotation> <xs:documentation>vocSet: O20110 (C-0-O20110-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassAffiliate"> <xs:annotation> <xs:documentation>vocSet: O20112 (C-0-O20112-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassAliquot"> <xs:annotation> <xs:documentation>vocSet: O20113 (C-0-O20113-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassBase"> <xs:annotation> <xs:documentation>vocSet: O20114 (C-0-O20114-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassBirthplace"> <xs:annotation> <xs:documentation>vocSet: O20115 (C-0-O20115-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassCaregiver"> <xs:annotation> <xs:documentation>vocSet: O20116 (C-0-O20116-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassCaseSubject"> <xs:annotation> <xs:documentation>vocSet: O20117 (C-0-O20117-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassChild"> <xs:annotation> <xs:documentation>vocSet: O20118 (C-0-O20118-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassCitizen"> <xs:annotation> <xs:documentation>vocSet: O20119 (C-0-O20119-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassClaimant"> <xs:annotation> <xs:documentation>vocSet: O20120 (C-0-O20120-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassClinicalResearchInvestigator"> <xs:annotation> <xs:documentation>vocSet: O20125 (C-0-O20125-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassClinicalResearchSponsor"> <xs:annotation> <xs:documentation>vocSet: O20126 (C-0-O20126-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassColorAdditive"> <xs:annotation> <xs:documentation>vocSet: O20121 (C-0-O20121-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassCommissioningParty"> <xs:annotation> <xs:documentation>vocSet: O20122 (C-0-O20122-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassContent"> <xs:annotation> <xs:documentation>vocSet: O20123 (C-0-O20123-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassCoverageSponsor"> <xs:annotation> <xs:documentation>vocSet: O20170 (C-0-O20170-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassCredentialedEntity"> <xs:annotation> <xs:documentation>vocSet: O20124 (C-0-O20124-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassDedicatedServiceDeliveryLocation"> <xs:annotation> <xs:documentation>vocSet: O20129 (C-0-O20129-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassDependent"> <xs:annotation> <xs:documentation>vocSet: O20128 (C-0-O20128-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassEmergencyContact"> <xs:annotation> <xs:documentation>vocSet: O20130 (C-0-O20130-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassEquivalentEntity"> <xs:annotation> <xs:documentation>vocSet: O20270 (C-0-O20270-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SAME"/> <xs:enumeration value="SUBY"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RoleClassExposedEntity"> <xs:annotation> <xs:documentation>vocSet: O20131 (C-0-O20131-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassExposureVector"> <xs:annotation> <xs:documentation>vocSet: O20132 (C-0-O20132-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassFlavorAdditive"> <xs:annotation> <xs:documentation>vocSet: O20133 (C-0-O20133-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassFomite"> <xs:annotation> <xs:documentation>vocSet: O20134 (C-0-O20134-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassGuarantor"> <xs:annotation> <xs:documentation>vocSet: O20136 (C-0-O20136-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassGuardian"> <xs:annotation> <xs:documentation>vocSet: O20137 (C-0-O20137-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassHasGeneric"> <xs:annotation> <xs:documentation>vocSet: O20135 (C-0-O20135-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassHealthChart"> <xs:annotation> <xs:documentation>vocSet: O20139 (C-0-O20139-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassHealthcareProvider"> <xs:annotation> <xs:documentation>vocSet: O20161 (C-0-O20161-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassHeldEntity"> <xs:annotation> <xs:documentation>vocSet: O20138 (C-0-O20138-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassIdentifiedEntity"> <xs:annotation> <xs:documentation>vocSet: O20140 (C-0-O20140-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassIncidentalServiceDeliveryLocation"> <xs:annotation> <xs:documentation>vocSet: O20143 (C-0-O20143-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassIndividual"> <xs:annotation> <xs:documentation>vocSet: O20141 (C-0-O20141-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassInstance"> <xs:annotation> <xs:documentation>vocSet: O20142 (C-0-O20142-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassInvoicePayor"> <xs:annotation> <xs:documentation>vocSet: O20157 (C-0-O20157-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassIsolate"> <xs:annotation> <xs:documentation>vocSet: O20144 (C-0-O20144-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassMaintainedEntity"> <xs:annotation> <xs:documentation>vocSet: O20147 (C-0-O20147-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassMember"> <xs:annotation> <xs:documentation>vocSet: O20145 (C-0-O20145-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassMilitaryPerson"> <xs:annotation> <xs:documentation>vocSet: O20146 (C-0-O20146-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassNextOfKin"> <xs:annotation> <xs:documentation>vocSet: O20148 (C-0-O20148-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassNotaryPublic"> <xs:annotation> <xs:documentation>vocSet: O20149 (C-0-O20149-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassNurse"> <xs:annotation> <xs:documentation>vocSet: O20151 (C-0-O20151-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassNursePractitioner"> <xs:annotation> <xs:documentation>vocSet: O20150 (C-0-O20150-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassOwnedEntity"> <xs:annotation> <xs:documentation>vocSet: O20152 (C-0-O20152-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassPart"> <xs:annotation> <xs:documentation>vocSet: O20154 (C-0-O20154-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassPatient"> <xs:annotation> <xs:documentation>vocSet: O20155 (C-0-O20155-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassPayee"> <xs:annotation> <xs:documentation>vocSet: O20156 (C-0-O20156-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassPersonalRelationship"> <xs:annotation> <xs:documentation>vocSet: O20162 (C-0-O20162-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassPhysician"> <xs:annotation> <xs:documentation>vocSet: O20158 (C-0-O20158-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassPhysicianAssistant"> <xs:annotation> <xs:documentation>vocSet: O20153 (C-0-O20153-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassPlaceOfDeath"> <xs:annotation> <xs:documentation>vocSet: O20127 (C-0-O20127-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassPolicyHolder"> <xs:annotation> <xs:documentation>vocSet: O20159 (C-0-O20159-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassPreservative"> <xs:annotation> <xs:documentation>vocSet: O20163 (C-0-O20163-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassProgramEligible"> <xs:annotation> <xs:documentation>vocSet: O20160 (C-0-O20160-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassQualifiedEntity"> <xs:annotation> <xs:documentation>vocSet: O20164 (C-0-O20164-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassRegulatedProduct"> <xs:annotation> <xs:documentation>vocSet: O20167 (C-0-O20167-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassResearchSubject"> <xs:annotation> <xs:documentation>vocSet: O20165 (C-0-O20165-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassRetailedMaterial"> <xs:annotation> <xs:documentation>vocSet: O20166 (C-0-O20166-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassSame"> <xs:annotation> <xs:documentation>vocSet: O20168 (C-0-O20168-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassSigningAuthorityOrOfficer"> <xs:annotation> <xs:documentation>vocSet: O20169 (C-0-O20169-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassStabilizer"> <xs:annotation> <xs:documentation>vocSet: O20171 (C-0-O20171-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassStoredEntity"> <xs:annotation> <xs:documentation>vocSet: O20173 (C-0-O20173-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassStudent"> <xs:annotation> <xs:documentation>vocSet: O20172 (C-0-O20172-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassSubscriber"> <xs:annotation> <xs:documentation>vocSet: O20175 (C-0-O20175-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassSubsumedBy"> <xs:annotation> <xs:documentation>vocSet: O20176 (C-0-O20176-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassSubsumer"> <xs:annotation> <xs:documentation>vocSet: O20174 (C-0-O20174-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassTerritoryOfAuthority"> <xs:annotation> <xs:documentation>vocSet: O20177 (C-0-O20177-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassTherapeuticAgent"> <xs:annotation> <xs:documentation>vocSet: O20178 (C-0-O20178-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassUnderwriter"> <xs:annotation> <xs:documentation>vocSet: O20179 (C-0-O20179-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleClassWarrantedProduct"> <xs:annotation> <xs:documentation>vocSet: O20180 (C-0-O20180-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleCode"> <xs:annotation> <xs:documentation>vocSet: T12206 (C-0-T12206-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AdmistrativeLocationRoleType AffiliationRoleType AssignedRoleType ClinicalOrganizationRoleType CommissioningPartyRoleType ContactRoleType DeviceOperatorType EmployeeRoleType HealthcareProviderRoleType IdentifiedEntityType LicensedRoleType LivingSubjectProductionClass MedicationGeneralizationRoleType MemberRoleType NDCRelatedDrugEntityType OrganizationPartRoleType PersonalRelationshipRoleType PolicyOrProgramCoverageRoleType ProductProcessingOrganizationRoleType ProductSafetyReportPartyRoleType QualifiedRoleType ResearchSubjectRoleBasis ServiceDeliveryLocationRoleType SpecimenRoleType x_PayeeRelationshipRoleType"/> </xs:simpleType> <xs:simpleType name="AdmistrativeLocationRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19678 (C-0-T12206-A19678-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="AffiliationRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19690 (C-0-T12206-A19690-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CoverageSponsorRoleType PayorRoleType ResponsibleParty cs"/> </xs:simpleType> <xs:simpleType name="CoverageSponsorRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19877 (C-0-T12206-A19690-A19877-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="FULLINS"/> <xs:enumeration value="SELFINS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PayorRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19853 (C-0-T12206-A19690-A19853-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ENROLBKR"/> <xs:enumeration value="TPA"/> <xs:enumeration value="UMO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ResponsibleParty"> <xs:annotation> <xs:documentation>specDomain: S22030 (C-0-T12206-A19690-S22030-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="PowerOfAttorney"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="RESPRSN"/> <xs:enumeration value="EXCEST"/> <xs:enumeration value="GUARD"/> <xs:enumeration value="GUADLTM"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="PowerOfAttorney"> <xs:annotation> <xs:documentation>specDomain: S22034 (C-0-T12206-A19690-S22030-S22034-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="POWATT"/> <xs:enumeration value="DPOWATT"/> <xs:enumeration value="HPOWATT"/> <xs:enumeration value="SPOWATT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="AssignedRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19679 (C-0-T12206-A19679-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AssignedNonPersonLivingSubjectRoleType x_LabSpecimenCollectionProviders cs"/> </xs:simpleType> <xs:simpleType name="AssignedNonPersonLivingSubjectRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19869 (C-0-T12206-A19679-A19869-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="BiotherapeuticNon-personLivingSubjectRoleType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="ASSIST"/> <xs:enumeration value="CCO"/> <xs:enumeration value="SEE"/> <xs:enumeration value="SNIFF"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="BiotherapeuticNon-personLivingSubjectRoleType"> <xs:annotation> <xs:documentation>specDomain: S22157 (C-0-T12206-A19679-A19869-S22157-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="BIOTH"/> <xs:enumeration value="ANTIBIOT"/> <xs:enumeration value="DEBR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_LabSpecimenCollectionProviders"> <xs:annotation> <xs:documentation>abstDomain: A19748 (C-0-T12206-A19679-A19748-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="communityLaboratory"/> <xs:enumeration value="homeHealth"/> <xs:enumeration value="laboratory"/> <xs:enumeration value="pathologist"/> <xs:enumeration value="phlebotomist"/> <xs:enumeration value="self"/> <xs:enumeration value="thirdParty"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ClinicalOrganizationRoleType"> <xs:annotation> <xs:documentation>abstDomain: A16501 (C-0-T12206-A16501-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="CommissioningPartyRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19680 (C-0-T12206-A19680-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ContactRoleType"> <xs:annotation> <xs:documentation>abstDomain: A15920 (C-0-T12206-A15920-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AdministrativeContactRoleType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="ECON"/> <xs:enumeration value="NOK"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="AdministrativeContactRoleType"> <xs:annotation> <xs:documentation>abstDomain: A17622 (C-0-T12206-A15920-A17622-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="BILL"/> <xs:enumeration value="PAYOR"/> <xs:enumeration value="ORG"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DeviceOperatorType"> <xs:annotation> <xs:documentation>abstDomain: A19637 (C-0-T12206-A19637-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EmployeeRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19681 (C-0-T12206-A19681-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="HealthcareProviderRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19682 (C-0-T12206-A19682-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="IdentifiedEntityType"> <xs:annotation> <xs:documentation>abstDomain: A20274 (C-0-T12206-A20274-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="LicensedRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19683 (C-0-T12206-A19683-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="LivingSubjectProductionClass"> <xs:annotation> <xs:documentation>abstDomain: A16368 (C-0-T12206-A16368-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="BF"/> <xs:enumeration value="BR"/> <xs:enumeration value="BL"/> <xs:enumeration value="CO"/> <xs:enumeration value="DA"/> <xs:enumeration value="DR"/> <xs:enumeration value="DU"/> <xs:enumeration value="FI"/> <xs:enumeration value="LY"/> <xs:enumeration value="MT"/> <xs:enumeration value="MU"/> <xs:enumeration value="PL"/> <xs:enumeration value="RC"/> <xs:enumeration value="SH"/> <xs:enumeration value="VL"/> <xs:enumeration value="WL"/> <xs:enumeration value="WO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MedicationGeneralizationRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19720 (C-0-T12206-A19720-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="GD"/> <xs:enumeration value="GDF"/> <xs:enumeration value="GDS"/> <xs:enumeration value="GDSF"/> <xs:enumeration value="MGDSF"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MemberRoleType"> <xs:annotation> <xs:documentation>abstDomain: A15925 (C-0-T12206-A15925-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TRB"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NDCRelatedDrugEntityType"> <xs:annotation> <xs:documentation>abstDomain: A19263 (C-0-T12206-A19263-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="OrganizationPartRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19684 (C-0-T12206-A19684-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="PersonalRelationshipRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19563 (C-0-T12206-A19563-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="FamilyMember"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="NBOR"/> <xs:enumeration value="FRND"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="FamilyMember"> <xs:annotation> <xs:documentation>specDomain: S17926 (C-0-T12206-A19563-S17926-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Child FamilyMemberAunt FamilyMemberCousin FamilyMemberUncle GrandChild Grandparent GreatGrandparent NieceNephew Parent Sibling SignificantOtherRoleType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="FAMMEMB"/> <xs:enumeration value="ROOM"/> <xs:enumeration value="DOMPART"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="Child"> <xs:annotation> <xs:documentation>specDomain: S16360 (C-0-T12206-A19563-S17926-S16360-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AdoptedChild ChildInLaw FosterChild NaturalChild StepChild"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="CHILD"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="AdoptedChild"> <xs:annotation> <xs:documentation>specDomain: S11564 (C-0-T12206-A19563-S17926-S16360-S11564-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CHLDADOPT"/> <xs:enumeration value="DAUADOPT"/> <xs:enumeration value="SONADOPT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ChildInLaw"> <xs:annotation> <xs:documentation>specDomain: S11563 (C-0-T12206-A19563-S17926-S16360-S11563-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CHLDINLAW"/> <xs:enumeration value="DAUINLAW"/> <xs:enumeration value="SONINLAW"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="FosterChild"> <xs:annotation> <xs:documentation>specDomain: S11565 (C-0-T12206-A19563-S17926-S16360-S11565-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CHLDFOST"/> <xs:enumeration value="DAUFOST"/> <xs:enumeration value="SONFOST"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NaturalChild"> <xs:annotation> <xs:documentation>specDomain: S17930 (C-0-T12206-A19563-S17926-S16360-S17930-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="NCHILD"/> <xs:enumeration value="DAU"/> <xs:enumeration value="SON"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="StepChild"> <xs:annotation> <xs:documentation>specDomain: S11562 (C-0-T12206-A19563-S17926-S16360-S11562-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="STPCHLD"/> <xs:enumeration value="STPDAU"/> <xs:enumeration value="STPSON"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="FamilyMemberAunt"> <xs:annotation> <xs:documentation>specDomain: S19748 (C-0-T12206-A19563-S17926-S19748-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AUNT"/> <xs:enumeration value="MAUNT"/> <xs:enumeration value="PAUNT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="FamilyMemberCousin"> <xs:annotation> <xs:documentation>specDomain: S19749 (C-0-T12206-A19563-S17926-S19749-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="COUSN"/> <xs:enumeration value="MCOUSN"/> <xs:enumeration value="PCOUSN"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="FamilyMemberUncle"> <xs:annotation> <xs:documentation>specDomain: S19753 (C-0-T12206-A19563-S17926-S19753-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="UNCLE"/> <xs:enumeration value="MUNCLE"/> <xs:enumeration value="PUNCLE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="GrandChild"> <xs:annotation> <xs:documentation>specDomain: S19745 (C-0-T12206-A19563-S17926-S19745-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="GRNDCHILD"/> <xs:enumeration value="GRNDDAU"/> <xs:enumeration value="GRNDSON"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Grandparent"> <xs:annotation> <xs:documentation>specDomain: S16349 (C-0-T12206-A19563-S17926-S16349-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="GRPRN"/> <xs:enumeration value="GRFTH"/> <xs:enumeration value="GRMTH"/> <xs:enumeration value="MGRFTH"/> <xs:enumeration value="MGRMTH"/> <xs:enumeration value="MGRPRN"/> <xs:enumeration value="PGRFTH"/> <xs:enumeration value="PGRMTH"/> <xs:enumeration value="PGRPRN"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="GreatGrandparent"> <xs:annotation> <xs:documentation>specDomain: S19739 (C-0-T12206-A19563-S17926-S19739-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="GGRPRN"/> <xs:enumeration value="MGGRFTH"/> <xs:enumeration value="MGGRMTH"/> <xs:enumeration value="MGGRPRN"/> <xs:enumeration value="PGGRFTH"/> <xs:enumeration value="PGGRMTH"/> <xs:enumeration value="PGGRPRN"/> <xs:enumeration value="GGRFTH"/> <xs:enumeration value="GGRMTH"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NieceNephew"> <xs:annotation> <xs:documentation>specDomain: S19750 (C-0-T12206-A19563-S17926-S19750-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="NIENEPH"/> <xs:enumeration value="NEPHEW"/> <xs:enumeration value="NIECE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Parent"> <xs:annotation> <xs:documentation>specDomain: S16346 (C-0-T12206-A19563-S17926-S16346-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="NaturalParent ParentInLaw StepParent"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="PRN"/> <xs:enumeration value="FTH"/> <xs:enumeration value="MTH"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="NaturalParent"> <xs:annotation> <xs:documentation>specDomain: S19764 (C-0-T12206-A19563-S17926-S16346-S19764-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="NaturalFather"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="NPRN"/> <xs:enumeration value="NMTH"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="NaturalFather"> <xs:annotation> <xs:documentation>specDomain: S19765 (C-0-T12206-A19563-S17926-S16346-S19764-S19765-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="NFTH"/> <xs:enumeration value="NFTHF"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParentInLaw"> <xs:annotation> <xs:documentation>specDomain: S19770 (C-0-T12206-A19563-S17926-S16346-S19770-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PRNINLAW"/> <xs:enumeration value="FTHINLAW"/> <xs:enumeration value="MTHINLAW"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="StepParent"> <xs:annotation> <xs:documentation>specDomain: S19767 (C-0-T12206-A19563-S17926-S16346-S19767-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="STPPRN"/> <xs:enumeration value="STPFTH"/> <xs:enumeration value="STPMTH"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Sibling"> <xs:annotation> <xs:documentation>specDomain: S11567 (C-0-T12206-A19563-S17926-S11567-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="HalfSibling NaturalSibling SiblingInLaw StepSibling"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="SIB"/> <xs:enumeration value="BRO"/> <xs:enumeration value="SIS"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="HalfSibling"> <xs:annotation> <xs:documentation>specDomain: S19776 (C-0-T12206-A19563-S17926-S11567-S19776-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="HSIB"/> <xs:enumeration value="HBRO"/> <xs:enumeration value="HSIS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NaturalSibling"> <xs:annotation> <xs:documentation>specDomain: S19773 (C-0-T12206-A19563-S17926-S11567-S19773-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="NSIB"/> <xs:enumeration value="NBRO"/> <xs:enumeration value="NSIS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SiblingInLaw"> <xs:annotation> <xs:documentation>specDomain: S19782 (C-0-T12206-A19563-S17926-S11567-S19782-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SIBINLAW"/> <xs:enumeration value="BROINLAW"/> <xs:enumeration value="SISINLAW"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="StepSibling"> <xs:annotation> <xs:documentation>specDomain: S19779 (C-0-T12206-A19563-S17926-S11567-S19779-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="STPSIB"/> <xs:enumeration value="STPBRO"/> <xs:enumeration value="STPSIS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SignificantOtherRoleType"> <xs:annotation> <xs:documentation>specDomain: S19755 (C-0-T12206-A19563-S17926-S19755-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Spouse"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="SIGOTHR"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="Spouse"> <xs:annotation> <xs:documentation>specDomain: S19742 (C-0-T12206-A19563-S17926-S19755-S19742-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SPS"/> <xs:enumeration value="HUSB"/> <xs:enumeration value="WIFE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PolicyOrProgramCoverageRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19809 (C-0-T12206-A19809-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CoverageRoleType CoveredPartyRoleType cs"/> </xs:simpleType> <xs:simpleType name="CoverageRoleType"> <xs:annotation> <xs:documentation>abstDomain: A18877 (C-0-T12206-A19809-A18877-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="StudentRoleType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="FAMDEP"/> <xs:enumeration value="HANDIC"/> <xs:enumeration value="INJ"/> <xs:enumeration value="SELF"/> <xs:enumeration value="SPON"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="CoveredPartyRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19805 (C-0-T12206-A19809-A19805-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ClaimantCoveredPartyRoleType DependentCoveredPartyRoleType IndividualInsuredCoveredPartyRoleType ProgramEligibleCoveredPartyRoleType SubscriberCoveredPartyRoleType cs"/> </xs:simpleType> <xs:simpleType name="ClaimantCoveredPartyRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19810 (C-0-T12206-A19809-A19805-A19810-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CRIMEVIC"/> <xs:enumeration value="INJ"/> <xs:enumeration value="INJWKR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DependentCoveredPartyRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19815 (C-0-T12206-A19809-A19805-A19815-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="StudentRoleType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="COCBEN"/> <xs:enumeration value="DIFFABL"/> <xs:enumeration value="WARD"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="IndividualInsuredCoveredPartyRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19813 (C-0-T12206-A19809-A19805-A19813-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="StudentRoleType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="COCBEN"/> <xs:enumeration value="RETIREE"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="StudentRoleType"> <xs:annotation> <xs:documentation>specDomain: S21318 (C-0-T12206-A19809-A19805-A19813-S21318-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="STUD"/> <xs:enumeration value="FSTUD"/> <xs:enumeration value="PSTUD"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ProgramEligibleCoveredPartyRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19811 (C-0-T12206-A19809-A19805-A19811-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="MilitaryRoleType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="CRIMEVIC"/> <xs:enumeration value="DIFFABL"/> <xs:enumeration value="INJWKR"/> <xs:enumeration value="INDIG"/> <xs:enumeration value="WARD"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="SubscriberCoveredPartyRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19814 (C-0-T12206-A19809-A19805-A19814-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="MilitaryRoleType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="COCBEN"/> <xs:enumeration value="RETIREE"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="MilitaryRoleType"> <xs:annotation> <xs:documentation>specDomain: S21968 (C-0-T12206-A19809-A19805-A19814-S21968-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="MIL"/> <xs:enumeration value="ACTMIL"/> <xs:enumeration value="RETMIL"/> <xs:enumeration value="VET"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ProductProcessingOrganizationRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19851 (C-0-T12206-A19851-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ProductSafetyReportPartyRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19836 (C-0-T12206-A19836-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="QualifiedRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19685 (C-0-T12206-A19685-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="ResearchSubjectRoleBasis"> <xs:annotation> <xs:documentation>abstDomain: A19417 (C-0-T12206-A19417-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ERL"/> <xs:enumeration value="SCN"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ServiceDeliveryLocationRoleType"> <xs:annotation> <xs:documentation>abstDomain: A17660 (C-0-T12206-A17660-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DedicatedServiceDeliveryLocationRoleType IncidentalServiceDeliveryLocationRoleType cs"/> </xs:simpleType> <xs:simpleType name="DedicatedServiceDeliveryLocationRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19450 (C-0-T12206-A17660-A19450-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DedicatedClinicalLocationRoleType DedicatedNonClinicalLocationRoleType cs"/> </xs:simpleType> <xs:simpleType name="DedicatedClinicalLocationRoleType"> <xs:annotation> <xs:documentation>abstDomain: A10588 (C-0-T12206-A17660-A19450-A10588-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="DiagTherPracticeSetting HospitalPracticeSetting HospitalUnitPracticeSetting NursingOrCustodialCarePracticeSetting OutpatientFacilityPracticeSetting ResidentialTreatmentPracticeSetting cs"/> </xs:simpleType> <xs:simpleType name="DiagTherPracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10902 (C-0-T12206-A17660-A19450-A10588-S10902-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CVDiagTherPracticeSetting GIDiagTherPracticeSetting RadDiagTherPracticeSetting"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="DX"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="CVDiagTherPracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10903 (C-0-T12206-A17660-A19450-A10588-S10902-S10903-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CVDX"/> <xs:enumeration value="CATH"/> <xs:enumeration value="ECHO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="GIDiagTherPracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10906 (C-0-T12206-A17660-A19450-A10588-S10902-S10906-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="GIDX"/> <xs:enumeration value="261QE0800N"/> <xs:enumeration value="ENDOS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RadDiagTherPracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10908 (C-0-T12206-A17660-A19450-A10588-S10902-S10908-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="RADDX"/> <xs:enumeration value="RNEU"/> <xs:enumeration value="261QX0203N"/> <xs:enumeration value="RADO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="HospitalPracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10602 (C-0-T12206-A17660-A19450-A10588-S10602-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ChronicCareFacility GeneralAcuteCareHospital MilitaryHospital RehabilitationHospital"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="HOSP"/> <xs:enumeration value="PSYCHF"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ChronicCareFacility"> <xs:annotation> <xs:documentation>specDomain: S13792 (C-0-T12206-A17660-A19450-A10588-S10602-S13792-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CHR"/> <xs:enumeration value="281PC2000N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="GeneralAcuteCareHospital"> <xs:annotation> <xs:documentation>specDomain: S10603 (C-0-T12206-A17660-A19450-A10588-S10602-S10603-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="GeneralAcuteCareHospitalWomen"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="GACH"/> <xs:enumeration value="282NC2000N"/> <xs:enumeration value="282NR1301N"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="GeneralAcuteCareHospitalWomen"> <xs:annotation> <xs:documentation>specDomain: S13798 (C-0-T12206-A17660-A19450-A10588-S10602-S10603-S13798-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="282NW0100N"/> <xs:enumeration value="2865C1500N"/> <xs:enumeration value="2865M2000N"/> <xs:enumeration value="2865X1600N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MilitaryHospital"> <xs:annotation> <xs:documentation>specDomain: S13799 (C-0-T12206-A17660-A19450-A10588-S10602-S13799-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="MHSP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RehabilitationHospital"> <xs:annotation> <xs:documentation>specDomain: S10604 (C-0-T12206-A17660-A19450-A10588-S10602-S10604-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="RH"/> <xs:enumeration value="283XC2000N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="HospitalUnitPracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10596 (C-0-T12206-A17660-A19450-A10588-S10596-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="ERPracticeSetting ICUPracticeSetting PedsPracticeSetting"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="HU"/> <xs:enumeration value="BMTU"/> <xs:enumeration value="CHEST"/> <xs:enumeration value="CCU"/> <xs:enumeration value="EPIL"/> <xs:enumeration value="HD"/> <xs:enumeration value="NCCS"/> <xs:enumeration value="NS"/> <xs:enumeration value="273R00000N"/> <xs:enumeration value="PHU"/> <xs:enumeration value="273Y00000N"/> <xs:enumeration value="RHU"/> <xs:enumeration value="SLEEP"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="ERPracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10598 (C-0-T12206-A17660-A19450-A10588-S10596-S10598-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ER"/> <xs:enumeration value="ETU"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ICUPracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10599 (C-0-T12206-A17660-A19450-A10588-S10596-S10599-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="PedsICUPracticeSetting"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="ICU"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="PedsPracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10920 (C-0-T12206-A17660-A19450-A10588-S10596-S10920-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="PedsICUPracticeSetting"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="PEDU"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="PedsICUPracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10916 (C-0-T12206-A17660-A19450-A10588-S10596-S10920-S10916-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PEDICU"/> <xs:enumeration value="PEDNICU"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NursingOrCustodialCarePracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10605 (C-0-T12206-A17660-A19450-A10588-S10605-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="NCCF"/> <xs:enumeration value="314000000N"/> <xs:enumeration value="SNF"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OutpatientFacilityPracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10589 (C-0-T12206-A17660-A19450-A10588-S10589-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="CardClinPracticeSetting EndocrinologyClinic GIClinicPracticeSetting HemClinPracticeSetting IDClinPracticeSetting MedOncClinPracticeSetting NephClinPracticeSetting OrthoClinPracticeSetting PedsClinPracticeSetting RheumClinPracticeSetting SurgClinPracticeSetting"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="OF"/> <xs:enumeration value="ALL"/> <xs:enumeration value="AMPUT"/> <xs:enumeration value="BMTC"/> <xs:enumeration value="BREAST"/> <xs:enumeration value="CANC"/> <xs:enumeration value="CAPC"/> <xs:enumeration value="COAG"/> <xs:enumeration value="CRS"/> <xs:enumeration value="DERM"/> <xs:enumeration value="FMC"/> <xs:enumeration value="GIM"/> <xs:enumeration value="GYN"/> <xs:enumeration value="HTN"/> <xs:enumeration value="IEC"/> <xs:enumeration value="INV"/> <xs:enumeration value="LYMPH"/> <xs:enumeration value="MGEN"/> <xs:enumeration value="NEUR"/> <xs:enumeration value="OB"/> <xs:enumeration value="OPH"/> <xs:enumeration value="261QS0112N"/> <xs:enumeration value="OMS"/> <xs:enumeration value="ENT"/> <xs:enumeration value="261QP3300N"/> <xs:enumeration value="PAINCL"/> <xs:enumeration value="261QP1100N"/> <xs:enumeration value="POD"/> <xs:enumeration value="PREV"/> <xs:enumeration value="261QP2300N"/> <xs:enumeration value="PC"/> <xs:enumeration value="PROCTO"/> <xs:enumeration value="PROS"/> <xs:enumeration value="PROFF"/> <xs:enumeration value="PSY"/> <xs:enumeration value="PSI"/> <xs:enumeration value="SPMED"/> <xs:enumeration value="TR"/> <xs:enumeration value="TRAVEL"/> <xs:enumeration value="WND"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="CardClinPracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10590 (C-0-T12206-A17660-A19450-A10588-S10589-S10590-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CARD"/> <xs:enumeration value="PEDCARD"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EndocrinologyClinic"> <xs:annotation> <xs:documentation>specDomain: S10931 (C-0-T12206-A17660-A19450-A10588-S10589-S10931-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ENDO"/> <xs:enumeration value="PEDE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="GIClinicPracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10934 (C-0-T12206-A17660-A19450-A10588-S10589-S10934-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="GI"/> <xs:enumeration value="PEDGI"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="HemClinPracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10936 (C-0-T12206-A17660-A19450-A10588-S10589-S10936-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="HEM"/> <xs:enumeration value="PEDHEM"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IDClinPracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10939 (C-0-T12206-A17660-A19450-A10588-S10589-S10939-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="INFD"/> <xs:enumeration value="PEDID"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MedOncClinPracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10947 (C-0-T12206-A17660-A19450-A10588-S10589-S10947-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ONCL"/> <xs:enumeration value="PEDHO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NephClinPracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10943 (C-0-T12206-A17660-A19450-A10588-S10589-S10943-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="NEPH"/> <xs:enumeration value="PEDNEPH"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OrthoClinPracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10949 (C-0-T12206-A17660-A19450-A10588-S10589-S10949-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ORTHO"/> <xs:enumeration value="HAND"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PedsClinPracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10953 (C-0-T12206-A17660-A19450-A10588-S10589-S10953-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PEDC"/> <xs:enumeration value="PEDCARD"/> <xs:enumeration value="PEDE"/> <xs:enumeration value="PEDGI"/> <xs:enumeration value="PEDHEM"/> <xs:enumeration value="PEDID"/> <xs:enumeration value="PEDNEPH"/> <xs:enumeration value="PEDHO"/> <xs:enumeration value="PEDRHEUM"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RheumClinPracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10593 (C-0-T12206-A17660-A19450-A10588-S10589-S10593-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="RHEUM"/> <xs:enumeration value="PEDRHEUM"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SurgClinPracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10968 (C-0-T12206-A17660-A19450-A10588-S10589-S10968-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SU"/> <xs:enumeration value="PLS"/> <xs:enumeration value="URO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ResidentialTreatmentPracticeSetting"> <xs:annotation> <xs:documentation>specDomain: S10607 (C-0-T12206-A17660-A19450-A10588-S10607-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="RTF"/> <xs:enumeration value="PRC"/> <xs:enumeration value="324500000N"/> <xs:enumeration value="SURF"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DedicatedNonClinicalLocationRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19452 (C-0-T12206-A17660-A19450-A19452-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="MobileUnit"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="DADDR"/> <xs:enumeration value="PHARM"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="MobileUnit"> <xs:annotation> <xs:documentation>specDomain: S18100 (C-0-T12206-A17660-A19450-A19452-S18100-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="MOBL"/> <xs:enumeration value="AMB"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IncidentalServiceDeliveryLocationRoleType"> <xs:annotation> <xs:documentation>abstDomain: A19451 (C-0-T12206-A17660-A19451-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="COMM"/> <xs:enumeration value="PTRES"/> <xs:enumeration value="ACC"/> <xs:enumeration value="SCHOOL"/> <xs:enumeration value="WORK"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SpecimenRoleType"> <xs:annotation> <xs:documentation>abstDomain: A16515 (C-0-T12206-A16515-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="QualitySpecimenRoleType"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="C"/> <xs:enumeration value="G"/> <xs:enumeration value="P"/> <xs:enumeration value="L"/> <xs:enumeration value="R"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="QualitySpecimenRoleType"> <xs:annotation> <xs:documentation>specDomain: S16521 (C-0-T12206-A16515-S16521-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="Q"/> <xs:enumeration value="B"/> <xs:enumeration value="E"/> <xs:enumeration value="F"/> <xs:enumeration value="O"/> <xs:enumeration value="V"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_PayeeRelationshipRoleType"> <xs:annotation> <xs:documentation>abstDomain: A18105 (C-0-T12206-A18105-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="FM"/> <xs:enumeration value="GT"/> <xs:enumeration value="PT"/> <xs:enumeration value="PH"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RoleLinkHasDirectAuthorityOver"> <xs:annotation> <xs:documentation>vocSet: O20182 (C-0-O20182-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleLinkHasIndirectAuthorityOver"> <xs:annotation> <xs:documentation>vocSet: O20184 (C-0-O20184-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleLinkHasPart"> <xs:annotation> <xs:documentation>vocSet: O20185 (C-0-O20185-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleLinkIdentification"> <xs:annotation> <xs:documentation>vocSet: O20183 (C-0-O20183-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleLinkIsBackupFor"> <xs:annotation> <xs:documentation>vocSet: O20181 (C-0-O20181-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleLinkReplaces"> <xs:annotation> <xs:documentation>vocSet: O20186 (C-0-O20186-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleLinkType"> <xs:annotation> <xs:documentation>vocSet: T11603 (C-0-T11603-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RoleLinkRelated"/> </xs:simpleType> <xs:simpleType name="RoleLinkRelated"> <xs:annotation> <xs:documentation>specDomain: S21429 (C-0-T11603-S21429-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="REL"/> <xs:enumeration value="IDENT"/> <xs:enumeration value="DIRAUTH"/> <xs:enumeration value="INDAUTH"/> <xs:enumeration value="PART"/> <xs:enumeration value="BACKUP"/> <xs:enumeration value="REPL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RoleStatus"> <xs:annotation> <xs:documentation>vocSet: T15999 (C-0-T15999-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RoleStatusNormal"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="nullified"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RoleStatusNormal"> <xs:annotation> <xs:documentation>specDomain: S16000 (C-0-T15999-S16000-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="normal"/> <xs:enumeration value="active"/> <xs:enumeration value="cancelled"/> <xs:enumeration value="pending"/> <xs:enumeration value="suspended"/> <xs:enumeration value="terminated"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RoleStatusActive"> <xs:annotation> <xs:documentation>vocSet: O20187 (C-0-O20187-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleStatusCancelled"> <xs:annotation> <xs:documentation>vocSet: O20188 (C-0-O20188-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleStatusNullified"> <xs:annotation> <xs:documentation>vocSet: O20189 (C-0-O20189-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleStatusPending"> <xs:annotation> <xs:documentation>vocSet: O20190 (C-0-O20190-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleStatusSuspended"> <xs:annotation> <xs:documentation>vocSet: O20191 (C-0-O20191-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RoleStatusTerminated"> <xs:annotation> <xs:documentation>vocSet: O20192 (C-0-O20192-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="RouteOfAdministration"> <xs:annotation> <xs:documentation>vocSet: T14581 (C-0-T14581-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RouteByMethod RouteBySite"/> </xs:simpleType> <xs:simpleType name="RouteByMethod"> <xs:annotation> <xs:documentation>abstDomain: A16931 (C-0-T14581-A16931-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Chew Diffusion Dissolve Douche ElectroOsmosisRoute Enema Flush Implantation InfiltrationRoute Infusion Inhalation Injection Insertion Instillation IontophoresisRoute Irrigation LavageRoute MucosalAbsorptionRoute Nebulization Rinse SuppositoryRoute Swish TopicalAbsorptionRoute TopicalApplication Transdermal"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="GARGLE"/> <xs:enumeration value="SOAK"/> <xs:enumeration value="INSUF"/> <xs:enumeration value="SHAMPOO"/> <xs:enumeration value="SUCK"/> <xs:enumeration value="PO"/> <xs:enumeration value="TRNSLING"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="Chew"> <xs:annotation> <xs:documentation>abstDomain: A14582 (C-0-T14581-A16931-A14582-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CHEW"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Diffusion"> <xs:annotation> <xs:documentation>abstDomain: A14584 (C-0-T14581-A16931-A14584-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EXTCORPDIF"/> <xs:enumeration value="HEMODIFF"/> <xs:enumeration value="TRNSDERMD"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Dissolve"> <xs:annotation> <xs:documentation>abstDomain: A14586 (C-0-T14581-A16931-A14586-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DISSOLVE"/> <xs:enumeration value="SL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Douche"> <xs:annotation> <xs:documentation>abstDomain: A14589 (C-0-T14581-A16931-A14589-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DOUCHE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ElectroOsmosisRoute"> <xs:annotation> <xs:documentation>abstDomain: A17019 (C-0-T14581-A16931-A17019-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ELECTOSMOS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Enema"> <xs:annotation> <xs:documentation>abstDomain: A14591 (C-0-T14581-A16931-A14591-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ENEMA"/> <xs:enumeration value="RETENEMA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Flush"> <xs:annotation> <xs:documentation>abstDomain: A14594 (C-0-T14581-A16931-A14594-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IVFLUSH"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Implantation"> <xs:annotation> <xs:documentation>abstDomain: A14598 (C-0-T14581-A16931-A14598-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IDIMPLNT"/> <xs:enumeration value="IVITIMPLNT"/> <xs:enumeration value="SQIMPLNT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="InfiltrationRoute"> <xs:annotation> <xs:documentation>abstDomain: A16935 (C-0-T14581-A16931-A16935-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="Infusion"> <xs:annotation> <xs:documentation>abstDomain: A14602 (C-0-T14581-A16931-A14602-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="IntravenousInfusion"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="EPI"/> <xs:enumeration value="IA"/> <xs:enumeration value="IC"/> <xs:enumeration value="ICOR"/> <xs:enumeration value="IOSSC"/> <xs:enumeration value="IT"/> <xs:enumeration value="IVASCINFUS"/> <xs:enumeration value="SQINFUS"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="IntravenousInfusion"> <xs:annotation> <xs:documentation>specDomain: S14609 (C-0-T14581-A16931-A14602-S14609-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IV"/> <xs:enumeration value="IVC"/> <xs:enumeration value="IVCC"/> <xs:enumeration value="IVCI"/> <xs:enumeration value="PCA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Inhalation"> <xs:annotation> <xs:documentation>abstDomain: A14615 (C-0-T14581-A16931-A14615-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="NasalInhalation NebulizationInhalation OralInhalation"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="IPPB"/> <xs:enumeration value="TRACH"/> <xs:enumeration value="VENT"/> <xs:enumeration value="VENTMASK"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="NebulizationInhalation"> <xs:annotation> <xs:documentation>specDomain: S14619 (C-0-T14581-A16931-A14615-S14619-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="NEB"/> <xs:enumeration value="NASNEB"/> <xs:enumeration value="ORNEB"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Injection"> <xs:annotation> <xs:documentation>abstDomain: A14628 (C-0-T14581-A16931-A14628-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="IntraarterialInjection IntracardiacInjection IntracoronaryInjection IntramuscularInjection IntravenousInjection"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="AMNINJ"/> <xs:enumeration value="BILINJ"/> <xs:enumeration value="CERVINJ"/> <xs:enumeration value="ENDOSININJ"/> <xs:enumeration value="EPIDURINJ"/> <xs:enumeration value="EPIINJ"/> <xs:enumeration value="EPINJSP"/> <xs:enumeration value="EXTRAMNINJ"/> <xs:enumeration value="EXTCORPINJ"/> <xs:enumeration value="CHOLINJ"/> <xs:enumeration value="GBINJ"/> <xs:enumeration value="GINGINJ"/> <xs:enumeration value="HEMOPORT"/> <xs:enumeration value="IPUMPINJ"/> <xs:enumeration value="INTERMENINJ"/> <xs:enumeration value="INTERSTITINJ"/> <xs:enumeration value="IABDINJ"/> <xs:enumeration value="IARTINJ"/> <xs:enumeration value="IBURSINJ"/> <xs:enumeration value="ICARTINJ"/> <xs:enumeration value="ICAUDINJ"/> <xs:enumeration value="ICAVINJ"/> <xs:enumeration value="ICAVITINJ"/> <xs:enumeration value="ICEREBINJ"/> <xs:enumeration value="IUINJC"/> <xs:enumeration value="ICISTERNINJ"/> <xs:enumeration value="ICORPCAVINJ"/> <xs:enumeration value="IDINJ"/> <xs:enumeration value="IDISCINJ"/> <xs:enumeration value="IDUCTINJ"/> <xs:enumeration value="IDURINJ"/> <xs:enumeration value="IEPIDINJ"/> <xs:enumeration value="IEPITHINJ"/> <xs:enumeration value="ILESINJ"/> <xs:enumeration value="ILUMINJ"/> <xs:enumeration value="ILYMPJINJ"/> <xs:enumeration value="IMEDULINJ"/> <xs:enumeration value="IOINJ"/> <xs:enumeration value="IOSSINJ"/> <xs:enumeration value="IOVARINJ"/> <xs:enumeration value="IPCARDINJ"/> <xs:enumeration value="IPERINJ"/> <xs:enumeration value="IPLRINJ"/> <xs:enumeration value="IPROSTINJ"/> <xs:enumeration value="IPINJ"/> <xs:enumeration value="ISINJ"/> <xs:enumeration value="ISTERINJ"/> <xs:enumeration value="ISYNINJ"/> <xs:enumeration value="ITENDINJ"/> <xs:enumeration value="ITESTINJ"/> <xs:enumeration value="ITINJ"/> <xs:enumeration value="ITHORINJ"/> <xs:enumeration value="ITUBINJ"/> <xs:enumeration value="ITUMINJ"/> <xs:enumeration value="ITYMPINJ"/> <xs:enumeration value="IURETINJ"/> <xs:enumeration value="IUINJ"/> <xs:enumeration value="IVASCINJ"/> <xs:enumeration value="IVENTINJ"/> <xs:enumeration value="IVESINJ"/> <xs:enumeration value="IVITINJ"/> <xs:enumeration value="PNSINJ"/> <xs:enumeration value="PARENTINJ"/> <xs:enumeration value="PAINJ"/> <xs:enumeration value="PDURINJ"/> <xs:enumeration value="PNINJ"/> <xs:enumeration value="PDONTINJ"/> <xs:enumeration value="PDPINJ"/> <xs:enumeration value="RBINJ"/> <xs:enumeration value="SOFTISINJ"/> <xs:enumeration value="SUBARACHINJ"/> <xs:enumeration value="SCINJ"/> <xs:enumeration value="SQ"/> <xs:enumeration value="SLESINJ"/> <xs:enumeration value="SUBMUCINJ"/> <xs:enumeration value="TRPLACINJ"/> <xs:enumeration value="TRTRACHINJ"/> <xs:enumeration value="URETINJ"/> <xs:enumeration value="URETHINJ"/> <xs:enumeration value="BLADINJ"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="Insertion"> <xs:annotation> <xs:documentation>abstDomain: A14687 (C-0-T14581-A16931-A14687-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CERVINS"/> <xs:enumeration value="IOSURGINS"/> <xs:enumeration value="IU"/> <xs:enumeration value="LPINS"/> <xs:enumeration value="PR"/> <xs:enumeration value="SQSURGINS"/> <xs:enumeration value="URETHINS"/> <xs:enumeration value="VAGINSI"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Instillation"> <xs:annotation> <xs:documentation>abstDomain: A14696 (C-0-T14581-A16931-A14696-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RectalInstillation"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="CECINSTL"/> <xs:enumeration value="CTINSTL"/> <xs:enumeration value="CAPDINSTL"/> <xs:enumeration value="ETINSTL"/> <xs:enumeration value="ENTINSTL"/> <xs:enumeration value="EFT"/> <xs:enumeration value="GJT"/> <xs:enumeration value="GT"/> <xs:enumeration value="IBRONCHINSTIL"/> <xs:enumeration value="IDUODINSTIL"/> <xs:enumeration value="IESOPHINSTIL"/> <xs:enumeration value="IGASTINSTIL"/> <xs:enumeration value="IILEALINJ"/> <xs:enumeration value="IOINSTL"/> <xs:enumeration value="ISININSTIL"/> <xs:enumeration value="ITRACHINSTIL"/> <xs:enumeration value="IUINSTL"/> <xs:enumeration value="JJTINSTL"/> <xs:enumeration value="LARYNGINSTIL"/> <xs:enumeration value="NASALINSTIL"/> <xs:enumeration value="NASOGASINSTIL"/> <xs:enumeration value="NGT"/> <xs:enumeration value="NTT"/> <xs:enumeration value="OGT"/> <xs:enumeration value="OJJ"/> <xs:enumeration value="OT"/> <xs:enumeration value="PNSINSTL"/> <xs:enumeration value="PDPINSTL"/> <xs:enumeration value="SININSTIL"/> <xs:enumeration value="SOFTISINSTIL"/> <xs:enumeration value="TRACHINSTL"/> <xs:enumeration value="TRTYMPINSTIL"/> <xs:enumeration value="BLADINSTL"/> <xs:enumeration value="URETHINSTL"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="IontophoresisRoute"> <xs:annotation> <xs:documentation>abstDomain: A16990 (C-0-T14581-A16931-A16990-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IONTO"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Irrigation"> <xs:annotation> <xs:documentation>abstDomain: A14721 (C-0-T14581-A16931-A14721-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="UrinaryBladderIrrigation"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="GUIRR"/> <xs:enumeration value="IGASTIRR"/> <xs:enumeration value="ILESIRR"/> <xs:enumeration value="IOIRR"/> <xs:enumeration value="RECIRR"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="LavageRoute"> <xs:annotation> <xs:documentation>abstDomain: A16995 (C-0-T14581-A16931-A16995-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IGASTLAV"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MucosalAbsorptionRoute"> <xs:annotation> <xs:documentation>abstDomain: A16997 (C-0-T14581-A16931-A16997-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IDOUDMAB"/> <xs:enumeration value="ITRACHMAB"/> <xs:enumeration value="SMUCMAB"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Nebulization"> <xs:annotation> <xs:documentation>abstDomain: A14728 (C-0-T14581-A16931-A14728-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ETNEB"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Rinse"> <xs:annotation> <xs:documentation>abstDomain: A14730 (C-0-T14581-A16931-A14730-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DENRINSE"/> <xs:enumeration value="ORRINSE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SuppositoryRoute"> <xs:annotation> <xs:documentation>abstDomain: A17003 (C-0-T14581-A16931-A17003-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="URETHSUP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Swish"> <xs:annotation> <xs:documentation>abstDomain: A14736 (C-0-T14581-A16931-A14736-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SWISHSPIT"/> <xs:enumeration value="SWISHSWAL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TopicalAbsorptionRoute"> <xs:annotation> <xs:documentation>abstDomain: A17006 (C-0-T14581-A16931-A17006-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TTYMPTABSORP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TopicalApplication"> <xs:annotation> <xs:documentation>abstDomain: A14739 (C-0-T14581-A16931-A14739-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="OCDRESTA"/> <xs:enumeration value="SUBCONJTA"/> <xs:enumeration value="TOPICAL"/> <xs:enumeration value="BUC"/> <xs:enumeration value="CERV"/> <xs:enumeration value="DEN"/> <xs:enumeration value="GIN"/> <xs:enumeration value="HAIR"/> <xs:enumeration value="ICORNTA"/> <xs:enumeration value="ICORONTA"/> <xs:enumeration value="IESOPHTA"/> <xs:enumeration value="IILEALTA"/> <xs:enumeration value="ILTOP"/> <xs:enumeration value="ILUMTA"/> <xs:enumeration value="IOTOP"/> <xs:enumeration value="IONTO"/> <xs:enumeration value="LARYNGTA"/> <xs:enumeration value="MUC"/> <xs:enumeration value="NAIL"/> <xs:enumeration value="NASAL"/> <xs:enumeration value="OPTHALTA"/> <xs:enumeration value="ORALTA"/> <xs:enumeration value="ORMUC"/> <xs:enumeration value="OROPHARTA"/> <xs:enumeration value="PERIANAL"/> <xs:enumeration value="PERINEAL"/> <xs:enumeration value="PDONTTA"/> <xs:enumeration value="RECTAL"/> <xs:enumeration value="SCALP"/> <xs:enumeration value="SKIN"/> <xs:enumeration value="DRESS"/> <xs:enumeration value="SWAB"/> <xs:enumeration value="TMUCTA"/> <xs:enumeration value="VAGINS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RouteBySite"> <xs:annotation> <xs:documentation>abstDomain: A17021 (C-0-T14581-A17021-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AmnioticFluidSacRoute BiliaryRoute BodySurfaceRoute BuccalMucosaRoute CecostomyRoute CervicalRoute DentalRoute EndocervicalRoute EnteralRoute EpiduralRoute ExtraAmnioticRoute ExtracorporealCirculationRoute GastricRoute GenitourinaryRoute GingivalRoute HairRoute InterameningealRoute InterstitialRoute IntraabdominalRoute IntraarterialRoute IntraarticularRoute IntrabronchialRoute IntrabursalRoute IntracardiacRoute IntracartilaginousRoute IntracaudalRoute IntracavernosalRoute IntracavitaryRoute IntracerebralRoute IntracervicalRoute IntracisternalRoute IntracornealRoute IntracoronalRoute IntracoronaryRoute IntracorpusCavernosumRoute IntradermalRoute IntradiscalRoute IntraductalRoute IntraduodenalRoute IntraduralRoute IntraepidermalRoute IntraepithelialRoute IntraesophagealRoute IntragastricRoute IntrailealRoute IntralesionalRoute IntraluminalRoute IntralymphaticRoute IntramedullaryRoute IntramuscularRoute IntraocularRoute IntraosseousRoute IntraovarianRoute IntrapericardialRoute IntraperitonealRoute IntrapleuralRoute IntraprostaticRoute IntrapulmonaryRoute IntrasinalRoute IntraspinalRoute IntrasternalRoute IntrasynovialRoute IntratendinousRoute IntratesticularRoute IntrathecalRoute IntrathoracicRoute IntratrachealRoute IntratubularRoute IntratumorRoute IntratympanicRoute IntrauterineRoute IntravascularRoute IntravenousRoute IntraventricularRoute IntravesicleRoute IntravitrealRoute JejunumRoute LacrimalPunctaRoute LaryngealRoute LingualRoute MucousMembraneRoute NailRoute NasalRoute OphthalmicRoute OralRoute OromucosalRoute OropharyngealRoute OticRoute ParanasalSinusesRoute ParenteralRoute PerianalRoute PeriarticularRoute PeriduralRoute PerinealRoute PerineuralRoute PeriodontalRoute PulmonaryRoute RectalRoute RespiratoryTractRoute RetrobulbarRoute ScalpRoute SinusUnspecifiedRoute SkinRoute SoftTissueRoute SubarachnoidRoute SubconjunctivalRoute SubcutaneousRoute SublesionalRoute SublingualRoute SubmucosalRoute TracheostomyRoute Transdermal TransmucosalRoute TransplacentalRoute TranstrachealRoute TranstympanicRoute UreteralRoute UrethralRoute UrinaryBladderRoute UrinaryTractRoute VaginalRoute VitreousHumourRoute cs"/> </xs:simpleType> <xs:simpleType name="AmnioticFluidSacRoute"> <xs:annotation> <xs:documentation>abstDomain: A17022 (C-0-T14581-A17021-A17022-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AMNINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="BiliaryRoute"> <xs:annotation> <xs:documentation>abstDomain: A17024 (C-0-T14581-A17021-A17024-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="BILINJ"/> <xs:enumeration value="CHOLINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="BodySurfaceRoute"> <xs:annotation> <xs:documentation>abstDomain: A17027 (C-0-T14581-A17021-A17027-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ELECTOSMOS"/> <xs:enumeration value="SOAK"/> <xs:enumeration value="TOPICAL"/> <xs:enumeration value="IONTO"/> <xs:enumeration value="DRESS"/> <xs:enumeration value="SWAB"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="BuccalMucosaRoute"> <xs:annotation> <xs:documentation>abstDomain: A17034 (C-0-T14581-A17021-A17034-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="BUC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="CecostomyRoute"> <xs:annotation> <xs:documentation>abstDomain: A17036 (C-0-T14581-A17021-A17036-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CECINSTL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="CervicalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17038 (C-0-T14581-A17021-A17038-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CERVINJ"/> <xs:enumeration value="CERVINS"/> <xs:enumeration value="DENRINSE"/> <xs:enumeration value="CERV"/> <xs:enumeration value="DEN"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="DentalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17042 (C-0-T14581-A17021-A17042-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="EndocervicalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17045 (C-0-T14581-A17021-A17045-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AMNINJ"/> <xs:enumeration value="BILINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EnteralRoute"> <xs:annotation> <xs:documentation>abstDomain: A17048 (C-0-T14581-A17021-A17048-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ENTINSTL"/> <xs:enumeration value="EFT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="EpiduralRoute"> <xs:annotation> <xs:documentation>abstDomain: A17051 (C-0-T14581-A17021-A17051-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EPI"/> <xs:enumeration value="EPIDURINJ"/> <xs:enumeration value="EPIINJ"/> <xs:enumeration value="EPINJSP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ExtraAmnioticRoute"> <xs:annotation> <xs:documentation>abstDomain: A17059 (C-0-T14581-A17021-A17059-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EXTRAMNINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ExtracorporealCirculationRoute"> <xs:annotation> <xs:documentation>abstDomain: A17056 (C-0-T14581-A17021-A17056-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EXTCORPDIF"/> <xs:enumeration value="EXTCORPINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="GastricRoute"> <xs:annotation> <xs:documentation>abstDomain: A17061 (C-0-T14581-A17021-A17061-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="GBINJ"/> <xs:enumeration value="GT"/> <xs:enumeration value="NGT"/> <xs:enumeration value="OGT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="GenitourinaryRoute"> <xs:annotation> <xs:documentation>abstDomain: A17066 (C-0-T14581-A17021-A17066-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="GUIRR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="GingivalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17068 (C-0-T14581-A17021-A17068-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="GINGINJ"/> <xs:enumeration value="GIN"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="HairRoute"> <xs:annotation> <xs:documentation>abstDomain: A17071 (C-0-T14581-A17021-A17071-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SHAMPOO"/> <xs:enumeration value="HAIR"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="InterameningealRoute"> <xs:annotation> <xs:documentation>abstDomain: A17074 (C-0-T14581-A17021-A17074-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="INTERMENINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="InterstitialRoute"> <xs:annotation> <xs:documentation>abstDomain: A17076 (C-0-T14581-A17021-A17076-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="INTERSTITINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntraabdominalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17078 (C-0-T14581-A17021-A17078-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IABDINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntraarterialRoute"> <xs:annotation> <xs:documentation>abstDomain: A17080 (C-0-T14581-A17021-A17080-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="IntraarterialInjection"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="IA"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="IntraarterialInjection"> <xs:annotation> <xs:documentation>specDomain: S14639 (C-0-T14581-A17021-A17080-S14639-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IAINJ"/> <xs:enumeration value="IAINJP"/> <xs:enumeration value="IAINJSP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntraarticularRoute"> <xs:annotation> <xs:documentation>abstDomain: A17085 (C-0-T14581-A17021-A17085-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IARTINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntrabronchialRoute"> <xs:annotation> <xs:documentation>abstDomain: A17087 (C-0-T14581-A17021-A17087-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IBRONCHINSTIL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntrabursalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17089 (C-0-T14581-A17021-A17089-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IBURSINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntracardiacRoute"> <xs:annotation> <xs:documentation>abstDomain: A17091 (C-0-T14581-A17021-A17091-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="IntracardiacInjection"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="IC"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="IntracardiacInjection"> <xs:annotation> <xs:documentation>specDomain: S14644 (C-0-T14581-A17021-A17091-S14644-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ICARDINJ"/> <xs:enumeration value="ICARINJP"/> <xs:enumeration value="ICARDINJRP"/> <xs:enumeration value="ICARDINJSP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntracartilaginousRoute"> <xs:annotation> <xs:documentation>abstDomain: A17097 (C-0-T14581-A17021-A17097-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ICARTINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntracaudalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17099 (C-0-T14581-A17021-A17099-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ICAUDINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntracavernosalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17101 (C-0-T14581-A17021-A17101-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ICAVINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntracavitaryRoute"> <xs:annotation> <xs:documentation>abstDomain: A17103 (C-0-T14581-A17021-A17103-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ICAVITINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntracerebralRoute"> <xs:annotation> <xs:documentation>abstDomain: A17105 (C-0-T14581-A17021-A17105-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ICEREBINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntracervicalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17107 (C-0-T14581-A17021-A17107-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IUINJC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntracisternalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17109 (C-0-T14581-A17021-A17109-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ICISTERNINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntracornealRoute"> <xs:annotation> <xs:documentation>abstDomain: A17111 (C-0-T14581-A17021-A17111-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ICORNTA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntracoronalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17113 (C-0-T14581-A17021-A17113-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ICORONTA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntracoronaryRoute"> <xs:annotation> <xs:documentation>abstDomain: A17115 (C-0-T14581-A17021-A17115-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="IntracoronaryInjection"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="ICOR"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="IntracoronaryInjection"> <xs:annotation> <xs:documentation>specDomain: S14650 (C-0-T14581-A17021-A17115-S14650-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ICORONINJ"/> <xs:enumeration value="ICORONINJP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntracorpusCavernosumRoute"> <xs:annotation> <xs:documentation>abstDomain: A17119 (C-0-T14581-A17021-A17119-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ICORPCAVINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntradermalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17123 (C-0-T14581-A17021-A17123-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IDIMPLNT"/> <xs:enumeration value="IDINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntradiscalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17126 (C-0-T14581-A17021-A17126-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IDISCINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntraductalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17128 (C-0-T14581-A17021-A17128-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IDUCTINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntraduodenalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17130 (C-0-T14581-A17021-A17130-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IDUODINSTIL"/> <xs:enumeration value="IDOUDMAB"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntraduralRoute"> <xs:annotation> <xs:documentation>abstDomain: A17133 (C-0-T14581-A17021-A17133-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IDURINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntraepidermalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17135 (C-0-T14581-A17021-A17135-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IEPIDINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntraepithelialRoute"> <xs:annotation> <xs:documentation>abstDomain: A17137 (C-0-T14581-A17021-A17137-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IEPITHINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntraesophagealRoute"> <xs:annotation> <xs:documentation>abstDomain: A17139 (C-0-T14581-A17021-A17139-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IESOPHINSTIL"/> <xs:enumeration value="IESOPHTA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntragastricRoute"> <xs:annotation> <xs:documentation>abstDomain: A17142 (C-0-T14581-A17021-A17142-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IGASTINSTIL"/> <xs:enumeration value="IGASTIRR"/> <xs:enumeration value="IGASTLAV"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntrailealRoute"> <xs:annotation> <xs:documentation>abstDomain: A17146 (C-0-T14581-A17021-A17146-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IILEALINJ"/> <xs:enumeration value="IILEALTA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntralesionalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17149 (C-0-T14581-A17021-A17149-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ILESINJ"/> <xs:enumeration value="ILESIRR"/> <xs:enumeration value="ILTOP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntraluminalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17153 (C-0-T14581-A17021-A17153-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ILUMINJ"/> <xs:enumeration value="ILUMTA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntralymphaticRoute"> <xs:annotation> <xs:documentation>abstDomain: A17156 (C-0-T14581-A17021-A17156-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ILYMPJINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntramedullaryRoute"> <xs:annotation> <xs:documentation>abstDomain: A17158 (C-0-T14581-A17021-A17158-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IMEDULINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntramuscularRoute"> <xs:annotation> <xs:documentation>abstDomain: A17160 (C-0-T14581-A17021-A17160-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="IntramuscularInjection cs"/> </xs:simpleType> <xs:simpleType name="IntramuscularInjection"> <xs:annotation> <xs:documentation>specDomain: S14657 (C-0-T14581-A17021-A17160-S14657-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IM"/> <xs:enumeration value="IMD"/> <xs:enumeration value="IMZ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntraocularRoute"> <xs:annotation> <xs:documentation>abstDomain: A17164 (C-0-T14581-A17021-A17164-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IOINJ"/> <xs:enumeration value="IOSURGINS"/> <xs:enumeration value="IOINSTL"/> <xs:enumeration value="IOIRR"/> <xs:enumeration value="IOTOP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntraosseousRoute"> <xs:annotation> <xs:documentation>abstDomain: A17170 (C-0-T14581-A17021-A17170-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IOSSC"/> <xs:enumeration value="IOSSINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntraovarianRoute"> <xs:annotation> <xs:documentation>abstDomain: A17173 (C-0-T14581-A17021-A17173-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IOVARINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntrapericardialRoute"> <xs:annotation> <xs:documentation>abstDomain: A17175 (C-0-T14581-A17021-A17175-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IPCARDINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntraperitonealRoute"> <xs:annotation> <xs:documentation>abstDomain: A17177 (C-0-T14581-A17021-A17177-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IPERINJ"/> <xs:enumeration value="PDPINJ"/> <xs:enumeration value="CAPDINSTL"/> <xs:enumeration value="PDPINSTL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntrapleuralRoute"> <xs:annotation> <xs:documentation>abstDomain: A17182 (C-0-T14581-A17021-A17182-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IPLRINJ"/> <xs:enumeration value="CTINSTL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntraprostaticRoute"> <xs:annotation> <xs:documentation>abstDomain: A17185 (C-0-T14581-A17021-A17185-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IPROSTINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntrapulmonaryRoute"> <xs:annotation> <xs:documentation>abstDomain: A17187 (C-0-T14581-A17021-A17187-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="EXTCORPINJ"/> <xs:enumeration value="IPINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntrasinalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17190 (C-0-T14581-A17021-A17190-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ISININSTIL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntraspinalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17192 (C-0-T14581-A17021-A17192-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ISINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntrasternalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17194 (C-0-T14581-A17021-A17194-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ISTERINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntrasynovialRoute"> <xs:annotation> <xs:documentation>abstDomain: A17196 (C-0-T14581-A17021-A17196-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ISYNINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntratendinousRoute"> <xs:annotation> <xs:documentation>abstDomain: A17121 (C-0-T14581-A17021-A17121-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ITENDINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntratesticularRoute"> <xs:annotation> <xs:documentation>abstDomain: A17198 (C-0-T14581-A17021-A17198-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ITESTINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntrathecalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17200 (C-0-T14581-A17021-A17200-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IT"/> <xs:enumeration value="ITINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntrathoracicRoute"> <xs:annotation> <xs:documentation>abstDomain: A17203 (C-0-T14581-A17021-A17203-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ITHORINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntratrachealRoute"> <xs:annotation> <xs:documentation>abstDomain: A17205 (C-0-T14581-A17021-A17205-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ITRACHINSTIL"/> <xs:enumeration value="ITRACHMAB"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntratubularRoute"> <xs:annotation> <xs:documentation>abstDomain: A17208 (C-0-T14581-A17021-A17208-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ITUBINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntratumorRoute"> <xs:annotation> <xs:documentation>abstDomain: A17210 (C-0-T14581-A17021-A17210-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ITUMINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntratympanicRoute"> <xs:annotation> <xs:documentation>abstDomain: A17212 (C-0-T14581-A17021-A17212-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ITYMPINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntrauterineRoute"> <xs:annotation> <xs:documentation>abstDomain: A17214 (C-0-T14581-A17021-A17214-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IURETINJ"/> <xs:enumeration value="IUINJ"/> <xs:enumeration value="IU"/> <xs:enumeration value="IUINSTL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntravascularRoute"> <xs:annotation> <xs:documentation>abstDomain: A17219 (C-0-T14581-A17021-A17219-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="HEMODIFF"/> <xs:enumeration value="IVASCINFUS"/> <xs:enumeration value="HEMOPORT"/> <xs:enumeration value="IVASCINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntravenousRoute"> <xs:annotation> <xs:documentation>abstDomain: A17224 (C-0-T14581-A17021-A17224-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="IntravenousInjection"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="IVFLUSH"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="IntravenousInjection"> <xs:annotation> <xs:documentation>specDomain: S14670 (C-0-T14581-A17021-A17224-S14670-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IVINJ"/> <xs:enumeration value="IVINJBOL"/> <xs:enumeration value="IVPUSH"/> <xs:enumeration value="IVRPUSH"/> <xs:enumeration value="IVSPUSH"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntraventricularRoute"> <xs:annotation> <xs:documentation>abstDomain: A17235 (C-0-T14581-A17021-A17235-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IVENTINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntravesicleRoute"> <xs:annotation> <xs:documentation>abstDomain: A17237 (C-0-T14581-A17021-A17237-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IVESINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="IntravitrealRoute"> <xs:annotation> <xs:documentation>abstDomain: A17239 (C-0-T14581-A17021-A17239-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IVITINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="JejunumRoute"> <xs:annotation> <xs:documentation>abstDomain: A17241 (C-0-T14581-A17021-A17241-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="GJT"/> <xs:enumeration value="JJTINSTL"/> <xs:enumeration value="OJJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="LacrimalPunctaRoute"> <xs:annotation> <xs:documentation>abstDomain: A17245 (C-0-T14581-A17021-A17245-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="LPINS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="LaryngealRoute"> <xs:annotation> <xs:documentation>abstDomain: A17247 (C-0-T14581-A17021-A17247-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="LARYNGINSTIL"/> <xs:enumeration value="LARYNGTA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="LingualRoute"> <xs:annotation> <xs:documentation>abstDomain: A17250 (C-0-T14581-A17021-A17250-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TRNSLING"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="MucousMembraneRoute"> <xs:annotation> <xs:documentation>abstDomain: A17252 (C-0-T14581-A17021-A17252-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="MUC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NailRoute"> <xs:annotation> <xs:documentation>abstDomain: A17254 (C-0-T14581-A17021-A17254-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="NAIL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NasalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17256 (C-0-T14581-A17021-A17256-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="NasalInhalation"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="NASALINSTIL"/> <xs:enumeration value="NASOGASINSTIL"/> <xs:enumeration value="NASAL"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="NasalInhalation"> <xs:annotation> <xs:documentation>specDomain: S14617 (C-0-T14581-A17021-A17256-S14617-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="NASINHL"/> <xs:enumeration value="NASINHLC"/> <xs:enumeration value="NP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OphthalmicRoute"> <xs:annotation> <xs:documentation>abstDomain: A17264 (C-0-T14581-A17021-A17264-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="OPTHALTA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OralRoute"> <xs:annotation> <xs:documentation>abstDomain: A17266 (C-0-T14581-A17021-A17266-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="OralInhalation"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="CHEW"/> <xs:enumeration value="DISSOLVE"/> <xs:enumeration value="ORRINSE"/> <xs:enumeration value="PO"/> <xs:enumeration value="ORALTA"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="OromucosalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17276 (C-0-T14581-A17021-A17276-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="GARGLE"/> <xs:enumeration value="SUCK"/> <xs:enumeration value="SWISHSPIT"/> <xs:enumeration value="SWISHSWAL"/> <xs:enumeration value="ORMUC"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OropharyngealRoute"> <xs:annotation> <xs:documentation>abstDomain: A17282 (C-0-T14581-A17021-A17282-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="OROPHARTA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="OticRoute"> <xs:annotation> <xs:documentation>abstDomain: A17284 (C-0-T14581-A17021-A17284-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="OT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParanasalSinusesRoute"> <xs:annotation> <xs:documentation>abstDomain: A17286 (C-0-T14581-A17021-A17286-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PNSINJ"/> <xs:enumeration value="PNSINSTL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ParenteralRoute"> <xs:annotation> <xs:documentation>abstDomain: A17289 (C-0-T14581-A17021-A17289-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PARENTINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PerianalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17291 (C-0-T14581-A17021-A17291-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PERIANAL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PeriarticularRoute"> <xs:annotation> <xs:documentation>abstDomain: A17293 (C-0-T14581-A17021-A17293-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PAINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PeriduralRoute"> <xs:annotation> <xs:documentation>abstDomain: A17298 (C-0-T14581-A17021-A17298-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PDURINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PerinealRoute"> <xs:annotation> <xs:documentation>abstDomain: A17300 (C-0-T14581-A17021-A17300-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PERINEAL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PerineuralRoute"> <xs:annotation> <xs:documentation>abstDomain: A17302 (C-0-T14581-A17021-A17302-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PNINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PeriodontalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17295 (C-0-T14581-A17021-A17295-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="PDONTINJ"/> <xs:enumeration value="PDONTTA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="PulmonaryRoute"> <xs:annotation> <xs:documentation>abstDomain: A17304 (C-0-T14581-A17021-A17304-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IPPB"/> <xs:enumeration value="VENT"/> <xs:enumeration value="VENTMASK"/> <xs:enumeration value="ETINSTL"/> <xs:enumeration value="NTT"/> <xs:enumeration value="ETNEB"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RectalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17311 (C-0-T14581-A17021-A17311-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="RectalInstillation"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="ENEMA"/> <xs:enumeration value="RETENEMA"/> <xs:enumeration value="PR"/> <xs:enumeration value="RECIRR"/> <xs:enumeration value="RECTAL"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="RectalInstillation"> <xs:annotation> <xs:documentation>specDomain: S14715 (C-0-T14581-A17021-A17311-S14715-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="RECINSTL"/> <xs:enumeration value="RECTINSTL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RespiratoryTractRoute"> <xs:annotation> <xs:documentation>abstDomain: A17319 (C-0-T14581-A17021-A17319-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="OralInhalation cs"/> </xs:simpleType> <xs:simpleType name="OralInhalation"> <xs:annotation> <xs:documentation>specDomain: S14622 (C-0-T14581-A17021-A17319-S14622-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ORINHL"/> <xs:enumeration value="ORIFINHL"/> <xs:enumeration value="REBREATH"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RetrobulbarRoute"> <xs:annotation> <xs:documentation>abstDomain: A17321 (C-0-T14581-A17021-A17321-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="RBINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ScalpRoute"> <xs:annotation> <xs:documentation>abstDomain: A17323 (C-0-T14581-A17021-A17323-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SCALP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SinusUnspecifiedRoute"> <xs:annotation> <xs:documentation>abstDomain: A17325 (C-0-T14581-A17021-A17325-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="ENDOSININJ"/> <xs:enumeration value="SININSTIL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SkinRoute"> <xs:annotation> <xs:documentation>abstDomain: A17328 (C-0-T14581-A17021-A17328-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="OCDRESTA"/> <xs:enumeration value="SKIN"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SoftTissueRoute"> <xs:annotation> <xs:documentation>abstDomain: A17331 (C-0-T14581-A17021-A17331-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SOFTISINJ"/> <xs:enumeration value="SOFTISINSTIL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SubarachnoidRoute"> <xs:annotation> <xs:documentation>abstDomain: A17334 (C-0-T14581-A17021-A17334-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SUBARACHINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SubconjunctivalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17336 (C-0-T14581-A17021-A17336-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SCINJ"/> <xs:enumeration value="SUBCONJTA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SubcutaneousRoute"> <xs:annotation> <xs:documentation>abstDomain: A17339 (C-0-T14581-A17021-A17339-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SQIMPLNT"/> <xs:enumeration value="SQINFUS"/> <xs:enumeration value="IPUMPINJ"/> <xs:enumeration value="SQ"/> <xs:enumeration value="SQSURGINS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SublesionalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17345 (C-0-T14581-A17021-A17345-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SLESINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SublingualRoute"> <xs:annotation> <xs:documentation>abstDomain: A17347 (C-0-T14581-A17021-A17347-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SubmucosalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17349 (C-0-T14581-A17021-A17349-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SUBMUCINJ"/> <xs:enumeration value="SMUCMAB"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TracheostomyRoute"> <xs:annotation> <xs:documentation>abstDomain: A17352 (C-0-T14581-A17021-A17352-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TRACH"/> <xs:enumeration value="TRACHINSTL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="Transdermal"> <xs:annotation> <xs:documentation>abstDomain: A17356 (C-0-T14581-A17021-A17356-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TRNSDERMD"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TransmucosalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17357 (C-0-T14581-A17021-A17357-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TMUCTA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TransplacentalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17359 (C-0-T14581-A17021-A17359-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TRPLACINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TranstrachealRoute"> <xs:annotation> <xs:documentation>abstDomain: A17361 (C-0-T14581-A17021-A17361-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TRTRACHINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TranstympanicRoute"> <xs:annotation> <xs:documentation>abstDomain: A17363 (C-0-T14581-A17021-A17363-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="TRTYMPINSTIL"/> <xs:enumeration value="TTYMPTABSORP"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="UreteralRoute"> <xs:annotation> <xs:documentation>abstDomain: A17366 (C-0-T14581-A17021-A17366-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="URETINJ"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="UrethralRoute"> <xs:annotation> <xs:documentation>abstDomain: A17368 (C-0-T14581-A17021-A17368-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="URETHINJ"/> <xs:enumeration value="URETHINS"/> <xs:enumeration value="URETHSUP"/> <xs:enumeration value="URETHINSTL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="UrinaryBladderRoute"> <xs:annotation> <xs:documentation>abstDomain: A17373 (C-0-T14581-A17021-A17373-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="UrinaryBladderIrrigation"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="BLADINJ"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="UrinaryBladderIrrigation"> <xs:annotation> <xs:documentation>specDomain: S14725 (C-0-T14581-A17021-A17373-S14725-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="BLADIRR"/> <xs:enumeration value="BLADIRRC"/> <xs:enumeration value="BLADIRRT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="UrinaryTractRoute"> <xs:annotation> <xs:documentation>abstDomain: A17378 (C-0-T14581-A17021-A17378-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="BLADINSTL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="VaginalRoute"> <xs:annotation> <xs:documentation>abstDomain: A17380 (C-0-T14581-A17021-A17380-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="DOUCHE"/> <xs:enumeration value="VAGINSI"/> <xs:enumeration value="VAGINS"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="VitreousHumourRoute"> <xs:annotation> <xs:documentation>abstDomain: A17384 (C-0-T14581-A17021-A17384-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="IVITIMPLNT"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SCDHEC-GISSpatialAccuracyTiers"> <xs:annotation> <xs:documentation>vocSet: E19 (C-0-E19-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="SQLConjunction"> <xs:annotation> <xs:documentation>vocSet: D41 (C-0-D41-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="Sequencing"> <xs:annotation> <xs:documentation>vocSet: T390 (C-0-T390-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="A"/> <xs:enumeration value="D"/> <xs:enumeration value="N"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SetOperator"> <xs:annotation> <xs:documentation>vocSet: T17416 (C-0-T17416-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="_ValueSetOperator"/> <xs:enumeration value="H"/> <xs:enumeration value="E"/> <xs:enumeration value="I"/> <xs:enumeration value="A"/> <xs:enumeration value="P"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SoftwareName"> <xs:annotation> <xs:documentation>vocSet: D39 (C-0-D39-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="SpecialArrangement"> <xs:annotation> <xs:documentation>vocSet: D40 (C-0-D40-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"/> </xs:simpleType> <xs:simpleType name="StyleType"> <xs:annotation> <xs:documentation>vocSet: T19602 (C-0-T19602-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="FontStyle ListStyle TableRuleStyle"/> </xs:simpleType> <xs:simpleType name="FontStyle"> <xs:annotation> <xs:documentation>abstDomain: A19603 (C-0-T19602-A19603-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="bold"/> <xs:enumeration value="emphasis"/> <xs:enumeration value="italics"/> <xs:enumeration value="underline"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ListStyle"> <xs:annotation> <xs:documentation>abstDomain: A19605 (C-0-T19602-A19605-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="OrderedListStyle UnorderedListStyle cs"/> </xs:simpleType> <xs:simpleType name="OrderedListStyle"> <xs:annotation> <xs:documentation>abstDomain: A19606 (C-0-T19602-A19605-A19606-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="Arabic"/> <xs:enumeration value="BigAlpha"/> <xs:enumeration value="BigRoman"/> <xs:enumeration value="LittleAlpha"/> <xs:enumeration value="LittleRoman"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="UnorderedListStyle"> <xs:annotation> <xs:documentation>abstDomain: A19607 (C-0-T19602-A19605-A19607-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="Circle"/> <xs:enumeration value="Disc"/> <xs:enumeration value="Square"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TableRuleStyle"> <xs:annotation> <xs:documentation>abstDomain: A19604 (C-0-T19602-A19604-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="Botrule"/> <xs:enumeration value="Lrule"/> <xs:enumeration value="Rrule"/> <xs:enumeration value="Toprule"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="SubstitutionCondition"> <xs:annotation> <xs:documentation>vocSet: T17719 (C-0-T17719-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Conditional x_SubstitutionConditionNoneOrUnconditional"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="NOSUB"/> <xs:enumeration value="UNCOND"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="Conditional"> <xs:annotation> <xs:documentation>abstDomain: A17720 (C-0-T17719-A17720-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CONFIRM"/> <xs:enumeration value="NOTIFY"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_SubstitutionConditionNoneOrUnconditional"> <xs:annotation> <xs:documentation>abstDomain: A19740 (C-0-T17719-A19740-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="NOSUB"/> <xs:enumeration value="UNCOND"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TableCellHorizontalAlign"> <xs:annotation> <xs:documentation>vocSet: T10981 (C-0-T10981-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="center"/> <xs:enumeration value="char"/> <xs:enumeration value="justify"/> <xs:enumeration value="left"/> <xs:enumeration value="right"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TableCellScope"> <xs:annotation> <xs:documentation>vocSet: T11012 (C-0-T11012-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="col"/> <xs:enumeration value="colgroup"/> <xs:enumeration value="row"/> <xs:enumeration value="rowgroup"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TableCellVerticalAlign"> <xs:annotation> <xs:documentation>vocSet: T10987 (C-0-T10987-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="baseline"/> <xs:enumeration value="bottom"/> <xs:enumeration value="middle"/> <xs:enumeration value="top"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TableFrame"> <xs:annotation> <xs:documentation>vocSet: T10992 (C-0-T10992-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="above"/> <xs:enumeration value="below"/> <xs:enumeration value="border"/> <xs:enumeration value="box"/> <xs:enumeration value="hsides"/> <xs:enumeration value="lhs"/> <xs:enumeration value="rhs"/> <xs:enumeration value="void"/> <xs:enumeration value="vsides"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TableRules"> <xs:annotation> <xs:documentation>vocSet: T11002 (C-0-T11002-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="all"/> <xs:enumeration value="cols"/> <xs:enumeration value="groups"/> <xs:enumeration value="none"/> <xs:enumeration value="rows"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TargetAwareness"> <xs:annotation> <xs:documentation>vocSet: T10310 (C-0-T10310-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="D"/> <xs:enumeration value="F"/> <xs:enumeration value="I"/> <xs:enumeration value="M"/> <xs:enumeration value="P"/> <xs:enumeration value="U"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TelecommunicationAddressUse"> <xs:annotation> <xs:documentation>vocSet: T201 (C-0-T201-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="AddressUse"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="AS"/> <xs:enumeration value="EC"/> <xs:enumeration value="MC"/> <xs:enumeration value="PG"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="AddressUse"> <xs:annotation> <xs:documentation>abstDomain: A190 (C-0-T201-A190-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="HomeAddressUse WorkPlaceAddressUse"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="BAD"/> <xs:enumeration value="TMP"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="HomeAddressUse"> <xs:annotation> <xs:documentation>specDomain: S10628 (C-0-T201-A190-S10628-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="H"/> <xs:enumeration value="HP"/> <xs:enumeration value="HV"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="WorkPlaceAddressUse"> <xs:annotation> <xs:documentation>specDomain: S10631 (C-0-T201-A190-S10631-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="WP"/> <xs:enumeration value="DIR"/> <xs:enumeration value="PUB"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TimingEvent"> <xs:annotation> <xs:documentation>vocSet: T10706 (C-0-T10706-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AC"/> <xs:enumeration value="ACD"/> <xs:enumeration value="ACM"/> <xs:enumeration value="ACV"/> <xs:enumeration value="HS"/> <xs:enumeration value="IC"/> <xs:enumeration value="ICD"/> <xs:enumeration value="ICM"/> <xs:enumeration value="ICV"/> <xs:enumeration value="PC"/> <xs:enumeration value="PCD"/> <xs:enumeration value="PCM"/> <xs:enumeration value="PCV"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TransmissionRelationshipTypeCode"> <xs:annotation> <xs:documentation>vocSet: T19833 (C-0-T19833-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="SEQL"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="TribalEntityUS"> <xs:annotation> <xs:documentation>vocSet: T11631 (C-0-T11631-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="NativeEntityAlaska NativeEntityContiguous"/> </xs:simpleType> <xs:simpleType name="NativeEntityAlaska"> <xs:annotation> <xs:documentation>abstDomain: A11969 (C-0-T11631-A11969-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="339"/> <xs:enumeration value="341"/> <xs:enumeration value="342"/> <xs:enumeration value="345"/> <xs:enumeration value="347"/> <xs:enumeration value="348"/> <xs:enumeration value="352"/> <xs:enumeration value="354"/> <xs:enumeration value="355"/> <xs:enumeration value="356"/> <xs:enumeration value="359"/> <xs:enumeration value="361"/> <xs:enumeration value="364"/> <xs:enumeration value="549"/> <xs:enumeration value="369"/> <xs:enumeration value="371"/> <xs:enumeration value="372"/> <xs:enumeration value="375"/> <xs:enumeration value="376"/> <xs:enumeration value="377"/> <xs:enumeration value="378"/> <xs:enumeration value="382"/> <xs:enumeration value="383"/> <xs:enumeration value="386"/> <xs:enumeration value="388"/> <xs:enumeration value="392"/> <xs:enumeration value="395"/> <xs:enumeration value="396"/> <xs:enumeration value="398"/> <xs:enumeration value="400"/> <xs:enumeration value="401"/> <xs:enumeration value="406"/> <xs:enumeration value="411"/> <xs:enumeration value="413"/> <xs:enumeration value="414"/> <xs:enumeration value="415"/> <xs:enumeration value="417"/> <xs:enumeration value="418"/> <xs:enumeration value="419"/> <xs:enumeration value="420"/> <xs:enumeration value="422"/> <xs:enumeration value="423"/> <xs:enumeration value="424"/> <xs:enumeration value="425"/> <xs:enumeration value="427"/> <xs:enumeration value="434"/> <xs:enumeration value="435"/> <xs:enumeration value="437"/> <xs:enumeration value="438"/> <xs:enumeration value="441"/> <xs:enumeration value="443"/> <xs:enumeration value="445"/> <xs:enumeration value="450"/> <xs:enumeration value="456"/> <xs:enumeration value="455"/> <xs:enumeration value="457"/> <xs:enumeration value="459"/> <xs:enumeration value="460"/> <xs:enumeration value="463"/> <xs:enumeration value="465"/> <xs:enumeration value="466"/> <xs:enumeration value="468"/> <xs:enumeration value="340"/> <xs:enumeration value="343"/> <xs:enumeration value="346"/> <xs:enumeration value="349"/> <xs:enumeration value="357"/> <xs:enumeration value="360"/> <xs:enumeration value="362"/> <xs:enumeration value="365"/> <xs:enumeration value="366"/> <xs:enumeration value="367"/> <xs:enumeration value="368"/> <xs:enumeration value="373"/> <xs:enumeration value="374"/> <xs:enumeration value="379"/> <xs:enumeration value="380"/> <xs:enumeration value="381"/> <xs:enumeration value="385"/> <xs:enumeration value="389"/> <xs:enumeration value="390"/> <xs:enumeration value="393"/> <xs:enumeration value="394"/> <xs:enumeration value="397"/> <xs:enumeration value="399"/> <xs:enumeration value="402"/> <xs:enumeration value="403"/> <xs:enumeration value="404"/> <xs:enumeration value="405"/> <xs:enumeration value="407"/> <xs:enumeration value="408"/> <xs:enumeration value="409"/> <xs:enumeration value="412"/> <xs:enumeration value="416"/> <xs:enumeration value="430"/> <xs:enumeration value="431"/> <xs:enumeration value="433"/> <xs:enumeration value="436"/> <xs:enumeration value="439"/> <xs:enumeration value="440"/> <xs:enumeration value="442"/> <xs:enumeration value="444"/> <xs:enumeration value="446"/> <xs:enumeration value="448"/> <xs:enumeration value="449"/> <xs:enumeration value="452"/> <xs:enumeration value="453"/> <xs:enumeration value="454"/> <xs:enumeration value="461"/> <xs:enumeration value="462"/> <xs:enumeration value="464"/> <xs:enumeration value="467"/> <xs:enumeration value="469"/> <xs:enumeration value="470"/> <xs:enumeration value="471"/> <xs:enumeration value="472"/> <xs:enumeration value="473"/> <xs:enumeration value="479"/> <xs:enumeration value="481"/> <xs:enumeration value="483"/> <xs:enumeration value="488"/> <xs:enumeration value="491"/> <xs:enumeration value="496"/> <xs:enumeration value="497"/> <xs:enumeration value="500"/> <xs:enumeration value="502"/> <xs:enumeration value="504"/> <xs:enumeration value="506"/> <xs:enumeration value="507"/> <xs:enumeration value="508"/> <xs:enumeration value="509"/> <xs:enumeration value="510"/> <xs:enumeration value="517"/> <xs:enumeration value="519"/> <xs:enumeration value="522"/> <xs:enumeration value="524"/> <xs:enumeration value="525"/> <xs:enumeration value="528"/> <xs:enumeration value="529"/> <xs:enumeration value="530"/> <xs:enumeration value="532"/> <xs:enumeration value="539"/> <xs:enumeration value="542"/> <xs:enumeration value="543"/> <xs:enumeration value="544"/> <xs:enumeration value="545"/> <xs:enumeration value="547"/> <xs:enumeration value="548"/> <xs:enumeration value="552"/> <xs:enumeration value="553"/> <xs:enumeration value="555"/> <xs:enumeration value="558"/> <xs:enumeration value="559"/> <xs:enumeration value="561"/> <xs:enumeration value="563"/> <xs:enumeration value="564"/> <xs:enumeration value="474"/> <xs:enumeration value="475"/> <xs:enumeration value="476"/> <xs:enumeration value="477"/> <xs:enumeration value="478"/> <xs:enumeration value="480"/> <xs:enumeration value="482"/> <xs:enumeration value="484"/> <xs:enumeration value="485"/> <xs:enumeration value="486"/> <xs:enumeration value="487"/> <xs:enumeration value="489"/> <xs:enumeration value="490"/> <xs:enumeration value="410"/> <xs:enumeration value="426"/> <xs:enumeration value="432"/> <xs:enumeration value="451"/> <xs:enumeration value="523"/> <xs:enumeration value="494"/> <xs:enumeration value="495"/> <xs:enumeration value="498"/> <xs:enumeration value="499"/> <xs:enumeration value="501"/> <xs:enumeration value="503"/> <xs:enumeration value="505"/> <xs:enumeration value="511"/> <xs:enumeration value="512"/> <xs:enumeration value="513"/> <xs:enumeration value="514"/> <xs:enumeration value="515"/> <xs:enumeration value="518"/> <xs:enumeration value="520"/> <xs:enumeration value="526"/> <xs:enumeration value="527"/> <xs:enumeration value="531"/> <xs:enumeration value="533"/> <xs:enumeration value="534"/> <xs:enumeration value="537"/> <xs:enumeration value="538"/> <xs:enumeration value="541"/> <xs:enumeration value="546"/> <xs:enumeration value="550"/> <xs:enumeration value="551"/> <xs:enumeration value="554"/> <xs:enumeration value="556"/> <xs:enumeration value="557"/> <xs:enumeration value="338"/> <xs:enumeration value="344"/> <xs:enumeration value="350"/> <xs:enumeration value="353"/> <xs:enumeration value="358"/> <xs:enumeration value="363"/> <xs:enumeration value="370"/> <xs:enumeration value="384"/> <xs:enumeration value="387"/> <xs:enumeration value="391"/> <xs:enumeration value="421"/> <xs:enumeration value="428"/> <xs:enumeration value="429"/> <xs:enumeration value="447"/> <xs:enumeration value="458"/> <xs:enumeration value="492"/> <xs:enumeration value="493"/> <xs:enumeration value="516"/> <xs:enumeration value="521"/> <xs:enumeration value="535"/> <xs:enumeration value="536"/> <xs:enumeration value="540"/> <xs:enumeration value="560"/> <xs:enumeration value="562"/> <xs:enumeration value="565"/> <xs:enumeration value="566"/> <xs:enumeration value="351"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="NativeEntityContiguous"> <xs:annotation> <xs:documentation>abstDomain: A12548 (C-0-T11631-A12548-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="1"/> <xs:enumeration value="2"/> <xs:enumeration value="3"/> <xs:enumeration value="4"/> <xs:enumeration value="5"/> <xs:enumeration value="6"/> <xs:enumeration value="7"/> <xs:enumeration value="8"/> <xs:enumeration value="9"/> <xs:enumeration value="10"/> <xs:enumeration value="11"/> <xs:enumeration value="12"/> <xs:enumeration value="33"/> <xs:enumeration value="13"/> <xs:enumeration value="14"/> <xs:enumeration value="15"/> <xs:enumeration value="16"/> <xs:enumeration value="17"/> <xs:enumeration value="18"/> <xs:enumeration value="19"/> <xs:enumeration value="20"/> <xs:enumeration value="21"/> <xs:enumeration value="160"/> <xs:enumeration value="22"/> <xs:enumeration value="23"/> <xs:enumeration value="24"/> <xs:enumeration value="25"/> <xs:enumeration value="26"/> <xs:enumeration value="27"/> <xs:enumeration value="29"/> <xs:enumeration value="28"/> <xs:enumeration value="30"/> <xs:enumeration value="31"/> <xs:enumeration value="32"/> <xs:enumeration value="35"/> <xs:enumeration value="36"/> <xs:enumeration value="37"/> <xs:enumeration value="38"/> <xs:enumeration value="39"/> <xs:enumeration value="40"/> <xs:enumeration value="42"/> <xs:enumeration value="41"/> <xs:enumeration value="43"/> <xs:enumeration value="44"/> <xs:enumeration value="45"/> <xs:enumeration value="46"/> <xs:enumeration value="47"/> <xs:enumeration value="48"/> <xs:enumeration value="49"/> <xs:enumeration value="50"/> <xs:enumeration value="51"/> <xs:enumeration value="52"/> <xs:enumeration value="53"/> <xs:enumeration value="54"/> <xs:enumeration value="55"/> <xs:enumeration value="64"/> <xs:enumeration value="56"/> <xs:enumeration value="57"/> <xs:enumeration value="58"/> <xs:enumeration value="59"/> <xs:enumeration value="60"/> <xs:enumeration value="61"/> <xs:enumeration value="62"/> <xs:enumeration value="63"/> <xs:enumeration value="65"/> <xs:enumeration value="66"/> <xs:enumeration value="67"/> <xs:enumeration value="68"/> <xs:enumeration value="69"/> <xs:enumeration value="71"/> <xs:enumeration value="70"/> <xs:enumeration value="72"/> <xs:enumeration value="73"/> <xs:enumeration value="74"/> <xs:enumeration value="75"/> <xs:enumeration value="76"/> <xs:enumeration value="77"/> <xs:enumeration value="78"/> <xs:enumeration value="79"/> <xs:enumeration value="80"/> <xs:enumeration value="81"/> <xs:enumeration value="82"/> <xs:enumeration value="83"/> <xs:enumeration value="84"/> <xs:enumeration value="85"/> <xs:enumeration value="86"/> <xs:enumeration value="87"/> <xs:enumeration value="88"/> <xs:enumeration value="89"/> <xs:enumeration value="90"/> <xs:enumeration value="91"/> <xs:enumeration value="92"/> <xs:enumeration value="93"/> <xs:enumeration value="94"/> <xs:enumeration value="95"/> <xs:enumeration value="96"/> <xs:enumeration value="97"/> <xs:enumeration value="98"/> <xs:enumeration value="99"/> <xs:enumeration value="100"/> <xs:enumeration value="101"/> <xs:enumeration value="102"/> <xs:enumeration value="103"/> <xs:enumeration value="104"/> <xs:enumeration value="105"/> <xs:enumeration value="106"/> <xs:enumeration value="107"/> <xs:enumeration value="108"/> <xs:enumeration value="109"/> <xs:enumeration value="110"/> <xs:enumeration value="111"/> <xs:enumeration value="112"/> <xs:enumeration value="113"/> <xs:enumeration value="114"/> <xs:enumeration value="115"/> <xs:enumeration value="116"/> <xs:enumeration value="117"/> <xs:enumeration value="118"/> <xs:enumeration value="119"/> <xs:enumeration value="120"/> <xs:enumeration value="121"/> <xs:enumeration value="122"/> <xs:enumeration value="123"/> <xs:enumeration value="124"/> <xs:enumeration value="127"/> <xs:enumeration value="125"/> <xs:enumeration value="126"/> <xs:enumeration value="128"/> <xs:enumeration value="129"/> <xs:enumeration value="130"/> <xs:enumeration value="131"/> <xs:enumeration value="132"/> <xs:enumeration value="133"/> <xs:enumeration value="135"/> <xs:enumeration value="134"/> <xs:enumeration value="136"/> <xs:enumeration value="137"/> <xs:enumeration value="138"/> <xs:enumeration value="140"/> <xs:enumeration value="141"/> <xs:enumeration value="142"/> <xs:enumeration value="143"/> <xs:enumeration value="139"/> <xs:enumeration value="144"/> <xs:enumeration value="145"/> <xs:enumeration value="146"/> <xs:enumeration value="147"/> <xs:enumeration value="148"/> <xs:enumeration value="149"/> <xs:enumeration value="150"/> <xs:enumeration value="151"/> <xs:enumeration value="152"/> <xs:enumeration value="153"/> <xs:enumeration value="154"/> <xs:enumeration value="155"/> <xs:enumeration value="156"/> <xs:enumeration value="157"/> <xs:enumeration value="158"/> <xs:enumeration value="159"/> <xs:enumeration value="161"/> <xs:enumeration value="162"/> <xs:enumeration value="163"/> <xs:enumeration value="164"/> <xs:enumeration value="165"/> <xs:enumeration value="166"/> <xs:enumeration value="167"/> <xs:enumeration value="168"/> <xs:enumeration value="169"/> <xs:enumeration value="170"/> <xs:enumeration value="171"/> <xs:enumeration value="172"/> <xs:enumeration value="173"/> <xs:enumeration value="174"/> <xs:enumeration value="175"/> <xs:enumeration value="176"/> <xs:enumeration value="177"/> <xs:enumeration value="178"/> <xs:enumeration value="179"/> <xs:enumeration value="180"/> <xs:enumeration value="181"/> <xs:enumeration value="182"/> <xs:enumeration value="184"/> <xs:enumeration value="183"/> <xs:enumeration value="185"/> <xs:enumeration value="186"/> <xs:enumeration value="188"/> <xs:enumeration value="187"/> <xs:enumeration value="189"/> <xs:enumeration value="190"/> <xs:enumeration value="191"/> <xs:enumeration value="192"/> <xs:enumeration value="193"/> <xs:enumeration value="194"/> <xs:enumeration value="195"/> <xs:enumeration value="196"/> <xs:enumeration value="197"/> <xs:enumeration value="198"/> <xs:enumeration value="199"/> <xs:enumeration value="200"/> <xs:enumeration value="201"/> <xs:enumeration value="202"/> <xs:enumeration value="203"/> <xs:enumeration value="204"/> <xs:enumeration value="205"/> <xs:enumeration value="206"/> <xs:enumeration value="207"/> <xs:enumeration value="208"/> <xs:enumeration value="209"/> <xs:enumeration value="210"/> <xs:enumeration value="212"/> <xs:enumeration value="211"/> <xs:enumeration value="213"/> <xs:enumeration value="214"/> <xs:enumeration value="215"/> <xs:enumeration value="216"/> <xs:enumeration value="217"/> <xs:enumeration value="219"/> <xs:enumeration value="218"/> <xs:enumeration value="220"/> <xs:enumeration value="221"/> <xs:enumeration value="222"/> <xs:enumeration value="223"/> <xs:enumeration value="224"/> <xs:enumeration value="225"/> <xs:enumeration value="226"/> <xs:enumeration value="227"/> <xs:enumeration value="228"/> <xs:enumeration value="229"/> <xs:enumeration value="230"/> <xs:enumeration value="231"/> <xs:enumeration value="232"/> <xs:enumeration value="233"/> <xs:enumeration value="234"/> <xs:enumeration value="235"/> <xs:enumeration value="236"/> <xs:enumeration value="237"/> <xs:enumeration value="238"/> <xs:enumeration value="239"/> <xs:enumeration value="240"/> <xs:enumeration value="241"/> <xs:enumeration value="242"/> <xs:enumeration value="243"/> <xs:enumeration value="244"/> <xs:enumeration value="245"/> <xs:enumeration value="247"/> <xs:enumeration value="248"/> <xs:enumeration value="246"/> <xs:enumeration value="249"/> <xs:enumeration value="250"/> <xs:enumeration value="251"/> <xs:enumeration value="252"/> <xs:enumeration value="253"/> <xs:enumeration value="254"/> <xs:enumeration value="255"/> <xs:enumeration value="257"/> <xs:enumeration value="256"/> <xs:enumeration value="258"/> <xs:enumeration value="259"/> <xs:enumeration value="260"/> <xs:enumeration value="261"/> <xs:enumeration value="262"/> <xs:enumeration value="263"/> <xs:enumeration value="264"/> <xs:enumeration value="265"/> <xs:enumeration value="266"/> <xs:enumeration value="267"/> <xs:enumeration value="268"/> <xs:enumeration value="269"/> <xs:enumeration value="270"/> <xs:enumeration value="271"/> <xs:enumeration value="272"/> <xs:enumeration value="273"/> <xs:enumeration value="274"/> <xs:enumeration value="275"/> <xs:enumeration value="276"/> <xs:enumeration value="277"/> <xs:enumeration value="278"/> <xs:enumeration value="279"/> <xs:enumeration value="280"/> <xs:enumeration value="281"/> <xs:enumeration value="282"/> <xs:enumeration value="283"/> <xs:enumeration value="284"/> <xs:enumeration value="285"/> <xs:enumeration value="286"/> <xs:enumeration value="287"/> <xs:enumeration value="288"/> <xs:enumeration value="289"/> <xs:enumeration value="291"/> <xs:enumeration value="290"/> <xs:enumeration value="292"/> <xs:enumeration value="293"/> <xs:enumeration value="294"/> <xs:enumeration value="295"/> <xs:enumeration value="296"/> <xs:enumeration value="297"/> <xs:enumeration value="298"/> <xs:enumeration value="299"/> <xs:enumeration value="300"/> <xs:enumeration value="301"/> <xs:enumeration value="302"/> <xs:enumeration value="303"/> <xs:enumeration value="304"/> <xs:enumeration value="305"/> <xs:enumeration value="306"/> <xs:enumeration value="308"/> <xs:enumeration value="307"/> <xs:enumeration value="309"/> <xs:enumeration value="310"/> <xs:enumeration value="311"/> <xs:enumeration value="312"/> <xs:enumeration value="313"/> <xs:enumeration value="314"/> <xs:enumeration value="315"/> <xs:enumeration value="316"/> <xs:enumeration value="317"/> <xs:enumeration value="318"/> <xs:enumeration value="319"/> <xs:enumeration value="320"/> <xs:enumeration value="321"/> <xs:enumeration value="34"/> <xs:enumeration value="322"/> <xs:enumeration value="323"/> <xs:enumeration value="324"/> <xs:enumeration value="325"/> <xs:enumeration value="326"/> <xs:enumeration value="327"/> <xs:enumeration value="328"/> <xs:enumeration value="329"/> <xs:enumeration value="330"/> <xs:enumeration value="331"/> <xs:enumeration value="332"/> <xs:enumeration value="333"/> <xs:enumeration value="334"/> <xs:enumeration value="335"/> <xs:enumeration value="336"/> <xs:enumeration value="337"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="URLScheme"> <xs:annotation> <xs:documentation>vocSet: T14866 (C-0-T14866-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="x_PhoneOrEmailURLScheme x_PhoneURLScheme"> <xs:simpleType> <xs:restriction base="cs"> <xs:enumeration value="ftp"/> <xs:enumeration value="fax"/> <xs:enumeration value="file"/> <xs:enumeration value="http"/> <xs:enumeration value="mllp"/> <xs:enumeration value="mailto"/> <xs:enumeration value="modem"/> <xs:enumeration value="nfs"/> <xs:enumeration value="tel"/> <xs:enumeration value="telnet"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> <xs:simpleType name="x_PhoneOrEmailURLScheme"> <xs:annotation> <xs:documentation>abstDomain: A19741 (C-0-T14866-A19741-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="fax"/> <xs:enumeration value="mailto"/> <xs:enumeration value="tel"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="x_PhoneURLScheme"> <xs:annotation> <xs:documentation>abstDomain: A19742 (C-0-T14866-A19742-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="fax"/> <xs:enumeration value="tel"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="UnitsOfMeasureCaseInsensitive"> <xs:annotation> <xs:documentation>vocSet: T12549 (C-0-T12549-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="UnitOfMeasureAtomBaseUnitInsens UnitOfMeasureAtomInsens UnitOfMeasurePrefixInsens"/> </xs:simpleType> <xs:simpleType name="UnitOfMeasureAtomBaseUnitInsens"> <xs:annotation> <xs:documentation>abstDomain: A12550 (C-0-T12549-A12550-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="C"/> <xs:enumeration value="K"/> <xs:enumeration value="CD"/> <xs:enumeration value="G"/> <xs:enumeration value="M"/> <xs:enumeration value="RAD"/> <xs:enumeration value="S"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="UnitOfMeasureAtomInsens"> <xs:annotation> <xs:documentation>abstDomain: A12558 (C-0-T12549-A12558-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="[APL'U]"/> <xs:enumeration value="A"/> <xs:enumeration value="AO"/> <xs:enumeration value="BQ"/> <xs:enumeration value="[BETH'U]"/> <xs:enumeration value="BI"/> <xs:enumeration value="[BDSK'U]"/> <xs:enumeration value="[K]"/> <xs:enumeration value="[BTU_39]"/> <xs:enumeration value="[BTU_59]"/> <xs:enumeration value="[BTU_60]"/> <xs:enumeration value="[BTU_IT]"/> <xs:enumeration value="[BTU_M]"/> <xs:enumeration value="[BTU_TH]"/> <xs:enumeration value="[BTU]"/> <xs:enumeration value="[CAL]"/> <xs:enumeration value="[CH]"/> <xs:enumeration value="CI"/> <xs:enumeration value="[DYE'U]"/> <xs:enumeration value="F"/> <xs:enumeration value="[GPL'U]"/> <xs:enumeration value="GL"/> <xs:enumeration value="GS"/> <xs:enumeration value="GB"/> <xs:enumeration value="GY"/> <xs:enumeration value="H"/> <xs:enumeration value="HZ"/> <xs:enumeration value="[HNSF'U]"/> <xs:enumeration value="J"/> <xs:enumeration value="KY"/> <xs:enumeration value="[KA'U]"/> <xs:enumeration value="[KNK'U]"/> <xs:enumeration value="LMB"/> <xs:enumeration value="[MPL'U]"/> <xs:enumeration value="[MCLG'U]"/> <xs:enumeration value="MX"/> <xs:enumeration value="N"/> <xs:enumeration value="[GC]"/> <xs:enumeration value="OE"/> <xs:enumeration value="OHM"/> <xs:enumeration value="PAL"/> <xs:enumeration value="[H]"/> <xs:enumeration value="P"/> <xs:enumeration value="[PCA_PR]"/> <xs:enumeration value="[PNT_PR]"/> <xs:enumeration value="ROE"/> <xs:enumeration value="SIE"/> <xs:enumeration value="SV"/> <xs:enumeration value="[SMGY'U]"/> <xs:enumeration value="ST"/> <xs:enumeration value="[S]"/> <xs:enumeration value="T"/> <xs:enumeration value="[TODD'U]"/> <xs:enumeration value="U"/> <xs:enumeration value="[USP'U]"/> <xs:enumeration value="V"/> <xs:enumeration value="W"/> <xs:enumeration value="WB"/> <xs:enumeration value="[G]"/> <xs:enumeration value="[ACR_BR]"/> <xs:enumeration value="[ACR_US]"/> <xs:enumeration value="[ARB'U]"/> <xs:enumeration value="AR"/> <xs:enumeration value="ASU"/> <xs:enumeration value="ATM"/> <xs:enumeration value="ATT"/> <xs:enumeration value="BAR"/> <xs:enumeration value="BRN"/> <xs:enumeration value="[BBL_US]"/> <xs:enumeration value="BD"/> <xs:enumeration value="B"/> <xs:enumeration value="B[KW]"/> <xs:enumeration value="B[UV]"/> <xs:enumeration value="B[MV]"/> <xs:enumeration value="B[SPL]"/> <xs:enumeration value="B[V]"/> <xs:enumeration value="B[W]"/> <xs:enumeration value="BIT"/> <xs:enumeration value="BIT_S"/> <xs:enumeration value="[BF_I]"/> <xs:enumeration value="[BU_US]"/> <xs:enumeration value="[PK_BR]"/> <xs:enumeration value="BY"/> <xs:enumeration value="CAL_[15]"/> <xs:enumeration value="CAL_[20]"/> <xs:enumeration value="CAL_IT"/> <xs:enumeration value="CAL_M"/> <xs:enumeration value="CAL_TH"/> <xs:enumeration value="CAL"/> <xs:enumeration value="[CAR_M]"/> <xs:enumeration value="[CAR_AU]"/> <xs:enumeration value="[CH_BR]"/> <xs:enumeration value="[CH_US]"/> <xs:enumeration value="[RCH_US]"/> <xs:enumeration value="[CICERO]"/> <xs:enumeration value="CIRC"/> <xs:enumeration value="[CML_I]"/> <xs:enumeration value="[CR_I]"/> <xs:enumeration value="[CRD_US]"/> <xs:enumeration value="[CFT_I]"/> <xs:enumeration value="[CIN_I]"/> <xs:enumeration value="[CYD_I]"/> <xs:enumeration value="[CUP_US]"/> <xs:enumeration value="D"/> <xs:enumeration value="DEG"/> <xs:enumeration value="CEL"/> <xs:enumeration value="[DEGF]"/> <xs:enumeration value="[DIDOT]"/> <xs:enumeration value="[DIOP]"/> <xs:enumeration value="[DR_AV]"/> <xs:enumeration value="[DR_AP]"/> <xs:enumeration value="[DRP]"/> <xs:enumeration value="[DPT_US]"/> <xs:enumeration value="[DQT_US]"/> <xs:enumeration value="DYN"/> <xs:enumeration value="[M_E]"/> <xs:enumeration value="EV"/> <xs:enumeration value="[E]"/> <xs:enumeration value="EQ"/> <xs:enumeration value="ERG"/> <xs:enumeration value="[FTH_BR]"/> <xs:enumeration value="[FTH_I]"/> <xs:enumeration value="[FTH_US]"/> <xs:enumeration value="[FDR_BR]"/> <xs:enumeration value="[FDR_US]"/> <xs:enumeration value="[FOZ_BR]"/> <xs:enumeration value="[FOZ_US]"/> <xs:enumeration value="[FT_BR]"/> <xs:enumeration value="[FT_I]"/> <xs:enumeration value="[FT_US]"/> <xs:enumeration value="[RD_BR]"/> <xs:enumeration value="[FUR_US]"/> <xs:enumeration value="[GAL_BR]"/> <xs:enumeration value="[GAL_US]"/> <xs:enumeration value="[GIL_BR]"/> <xs:enumeration value="[GIL_US]"/> <xs:enumeration value="GON"/> <xs:enumeration value="[GR]"/> <xs:enumeration value="G%"/> <xs:enumeration value="GF"/> <xs:enumeration value="[HD_I]"/> <xs:enumeration value="[HPF]"/> <xs:enumeration value="HR"/> <xs:enumeration value="[IN_BR]"/> <xs:enumeration value="[IN_I]"/> <xs:enumeration value="[IN_US]"/> <xs:enumeration value="[IN_I'HG]"/> <xs:enumeration value="[IN_I'H2O]"/> <xs:enumeration value="[IU]"/> <xs:enumeration value="KAT"/> <xs:enumeration value="[KN_BR]"/> <xs:enumeration value="[KN_I]"/> <xs:enumeration value="[LY]"/> <xs:enumeration value="[LIGNE]"/> <xs:enumeration value="[LNE]"/> <xs:enumeration value="[LK_BR]"/> <xs:enumeration value="[LK_US]"/> <xs:enumeration value="[RLK_US]"/> <xs:enumeration value="L"/> <xs:enumeration value="[LCWT_AV]"/> <xs:enumeration value="[LTON_AV]"/> <xs:enumeration value="[LPF]"/> <xs:enumeration value="LM"/> <xs:enumeration value="LX"/> <xs:enumeration value="[MESH_I]"/> <xs:enumeration value="[MET]"/> <xs:enumeration value="M[HG]"/> <xs:enumeration value="M[H2O]"/> <xs:enumeration value="[MIL_I]"/> <xs:enumeration value="[MIL_US]"/> <xs:enumeration value="[MI_BR]"/> <xs:enumeration value="[MI_US]"/> <xs:enumeration value="[MIN_BR]"/> <xs:enumeration value="[MIN_US]"/> <xs:enumeration value="'"/> <xs:enumeration value="MIN"/> <xs:enumeration value="MOL"/> <xs:enumeration value="MO"/> <xs:enumeration value="MO_G"/> <xs:enumeration value="MO_J"/> <xs:enumeration value="MO_S"/> <xs:enumeration value="[NMI_BR]"/> <xs:enumeration value="[NMI_I]"/> <xs:enumeration value="NEP"/> <xs:enumeration value="OSM"/> <xs:enumeration value="[OZ_AP]"/> <xs:enumeration value="[OZ_AV]"/> <xs:enumeration value="[OZ_TR]"/> <xs:enumeration value="[PH]"/> <xs:enumeration value="[PC_BR]"/> <xs:enumeration value="PRS"/> <xs:enumeration value="[PPB]"/> <xs:enumeration value="[PPM]"/> <xs:enumeration value="[PPTH]"/> <xs:enumeration value="[PPTR]"/> <xs:enumeration value="[BU_BR]"/> <xs:enumeration value="[PK_US]"/> <xs:enumeration value="[PWT_TR]"/> <xs:enumeration value="%"/> <xs:enumeration value="[PRU]"/> <xs:enumeration value="[MU_0]"/> <xs:enumeration value="[EPS_0]"/> <xs:enumeration value="PHT"/> <xs:enumeration value="[PCA]"/> <xs:enumeration value="[PIED]"/> <xs:enumeration value="[PT_BR]"/> <xs:enumeration value="[PT_US]"/> <xs:enumeration value="[PNT]"/> <xs:enumeration value="[POUCE]"/> <xs:enumeration value="[LB_AP]"/> <xs:enumeration value="[LB_AV]"/> <xs:enumeration value="[LB_TR]"/> <xs:enumeration value="[LBF_AV]"/> <xs:enumeration value="[M_P]"/> <xs:enumeration value="[PSI]"/> <xs:enumeration value="[QT_BR]"/> <xs:enumeration value="[QT_US]"/> <xs:enumeration value="[RAD]"/> <xs:enumeration value="[REM]"/> <xs:enumeration value="[RD_US]"/> <xs:enumeration value="[SC_AP]"/> <xs:enumeration value="''"/> <xs:enumeration value="[SCT]"/> <xs:enumeration value="[SCWT_AV]"/> <xs:enumeration value="[STON_AV]"/> <xs:enumeration value="SPH"/> <xs:enumeration value="[SFT_I]"/> <xs:enumeration value="[SIN_I]"/> <xs:enumeration value="[SMI_US]"/> <xs:enumeration value="[SRD_US]"/> <xs:enumeration value="[SYD_I]"/> <xs:enumeration value="[MI_I]"/> <xs:enumeration value="STR"/> <xs:enumeration value="SB"/> <xs:enumeration value="[STONE_AV]"/> <xs:enumeration value="SR"/> <xs:enumeration value="[TBS_US]"/> <xs:enumeration value="[TSP_US]"/> <xs:enumeration value="10*"/> <xs:enumeration value="[PI]"/> <xs:enumeration value="TNE"/> <xs:enumeration value="[TWP]"/> <xs:enumeration value="[TB'U]"/> <xs:enumeration value="AMU"/> <xs:enumeration value="[C]"/> <xs:enumeration value="WK"/> <xs:enumeration value="[GAL_WI]"/> <xs:enumeration value="[YD_BR]"/> <xs:enumeration value="[YD_I]"/> <xs:enumeration value="[YD_US]"/> <xs:enumeration value="ANN"/> <xs:enumeration value="ANN_G"/> <xs:enumeration value="ANN_J"/> <xs:enumeration value="ANN_T"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="UnitOfMeasurePrefixInsens"> <xs:annotation> <xs:documentation>abstDomain: A12814 (C-0-T12549-A12814-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="A"/> <xs:enumeration value="C"/> <xs:enumeration value="D"/> <xs:enumeration value="DA"/> <xs:enumeration value="EX"/> <xs:enumeration value="F"/> <xs:enumeration value="GIB"/> <xs:enumeration value="GA"/> <xs:enumeration value="H"/> <xs:enumeration value="KIB"/> <xs:enumeration value="K"/> <xs:enumeration value="MIB"/> <xs:enumeration value="MA"/> <xs:enumeration value="U"/> <xs:enumeration value="M"/> <xs:enumeration value="N"/> <xs:enumeration value="PT"/> <xs:enumeration value="P"/> <xs:enumeration value="TIB"/> <xs:enumeration value="TR"/> <xs:enumeration value="YO"/> <xs:enumeration value="YA"/> <xs:enumeration value="ZO"/> <xs:enumeration value="ZA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="UnitsOfMeasureCaseSensitive"> <xs:annotation> <xs:documentation>vocSet: T12839 (C-0-T12839-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="UnitOfMeasureAtomBaseUnitSens UnitOfMeasureAtomSens UnitOfMeasurePrefixSens"/> </xs:simpleType> <xs:simpleType name="UnitOfMeasureAtomBaseUnitSens"> <xs:annotation> <xs:documentation>abstDomain: A12840 (C-0-T12839-A12840-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="C"/> <xs:enumeration value="K"/> <xs:enumeration value="cd"/> <xs:enumeration value="g"/> <xs:enumeration value="m"/> <xs:enumeration value="rad"/> <xs:enumeration value="s"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="UnitOfMeasureAtomSens"> <xs:annotation> <xs:documentation>abstDomain: A12848 (C-0-T12839-A12848-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="[APL'U]"/> <xs:enumeration value="A"/> <xs:enumeration value="Ao"/> <xs:enumeration value="Bq"/> <xs:enumeration value="[beth'U]"/> <xs:enumeration value="Bi"/> <xs:enumeration value="[bdsk'U]"/> <xs:enumeration value="[k]"/> <xs:enumeration value="[Btu_39]"/> <xs:enumeration value="[Btu_59]"/> <xs:enumeration value="[Btu_60]"/> <xs:enumeration value="[Btu_IT]"/> <xs:enumeration value="[Btu_m]"/> <xs:enumeration value="[Btu_th]"/> <xs:enumeration value="[Btu]"/> <xs:enumeration value="[Cal]"/> <xs:enumeration value="[Ch]"/> <xs:enumeration value="Ci"/> <xs:enumeration value="[dye'U]"/> <xs:enumeration value="F"/> <xs:enumeration value="[GPL'U]"/> <xs:enumeration value="Gal"/> <xs:enumeration value="G"/> <xs:enumeration value="Gb"/> <xs:enumeration value="Gy"/> <xs:enumeration value="H"/> <xs:enumeration value="Hz"/> <xs:enumeration value="[hnsf'U]"/> <xs:enumeration value="J"/> <xs:enumeration value="Ky"/> <xs:enumeration value="[ka'U]"/> <xs:enumeration value="[knk'U]"/> <xs:enumeration value="Lmb"/> <xs:enumeration value="[MPL'U]"/> <xs:enumeration value="[mclg'U]"/> <xs:enumeration value="Mx"/> <xs:enumeration value="N"/> <xs:enumeration value="[G]"/> <xs:enumeration value="Oe"/> <xs:enumeration value="Ohm"/> <xs:enumeration value="Pa"/> <xs:enumeration value="[h]"/> <xs:enumeration value="P"/> <xs:enumeration value="[pca_pr]"/> <xs:enumeration value="[pnt_pr]"/> <xs:enumeration value="R"/> <xs:enumeration value="S"/> <xs:enumeration value="Sv"/> <xs:enumeration value="[smgy'U]"/> <xs:enumeration value="St"/> <xs:enumeration value="[S]"/> <xs:enumeration value="T"/> <xs:enumeration value="[todd'U]"/> <xs:enumeration value="U"/> <xs:enumeration value="[USP'U]"/> <xs:enumeration value="V"/> <xs:enumeration value="W"/> <xs:enumeration value="Wb"/> <xs:enumeration value="[g]"/> <xs:enumeration value="[acr_br]"/> <xs:enumeration value="[acr_us]"/> <xs:enumeration value="[arb'U]"/> <xs:enumeration value="ar"/> <xs:enumeration value="AU"/> <xs:enumeration value="atm"/> <xs:enumeration value="att"/> <xs:enumeration value="bar"/> <xs:enumeration value="b"/> <xs:enumeration value="[bbl_us]"/> <xs:enumeration value="Bd"/> <xs:enumeration value="B"/> <xs:enumeration value="B[kW]"/> <xs:enumeration value="B[uV]"/> <xs:enumeration value="B[mV]"/> <xs:enumeration value="B[SPL]"/> <xs:enumeration value="B[V]"/> <xs:enumeration value="B[W]"/> <xs:enumeration value="bit"/> <xs:enumeration value="bit_s"/> <xs:enumeration value="[bf_i]"/> <xs:enumeration value="[bu_us]"/> <xs:enumeration value="[pk_br]"/> <xs:enumeration value="By"/> <xs:enumeration value="cal_[15]"/> <xs:enumeration value="cal_[20]"/> <xs:enumeration value="cal_IT"/> <xs:enumeration value="cal_m"/> <xs:enumeration value="cal_th"/> <xs:enumeration value="cal"/> <xs:enumeration value="[car_m]"/> <xs:enumeration value="[car_Au]"/> <xs:enumeration value="[ch_br]"/> <xs:enumeration value="[ch_us]"/> <xs:enumeration value="[rch_us]"/> <xs:enumeration value="[cicero]"/> <xs:enumeration value="circ"/> <xs:enumeration value="[cml_i]"/> <xs:enumeration value="[cr_i]"/> <xs:enumeration value="[crd_us]"/> <xs:enumeration value="[cft_i]"/> <xs:enumeration value="[cin_i]"/> <xs:enumeration value="[cyd_i]"/> <xs:enumeration value="[cup_us]"/> <xs:enumeration value="d"/> <xs:enumeration value="deg"/> <xs:enumeration value="Cel"/> <xs:enumeration value="[degF]"/> <xs:enumeration value="[didot]"/> <xs:enumeration value="[diop]"/> <xs:enumeration value="[dr_av]"/> <xs:enumeration value="[dr_ap]"/> <xs:enumeration value="[drp]"/> <xs:enumeration value="[dpt_us]"/> <xs:enumeration value="[dqt_us]"/> <xs:enumeration value="dyn"/> <xs:enumeration value="[m_e]"/> <xs:enumeration value="eV"/> <xs:enumeration value="[e]"/> <xs:enumeration value="eq"/> <xs:enumeration value="erg"/> <xs:enumeration value="[fth_br]"/> <xs:enumeration value="[fth_i]"/> <xs:enumeration value="[fth_us]"/> <xs:enumeration value="[fdr_br]"/> <xs:enumeration value="[fdr_us]"/> <xs:enumeration value="[foz_br]"/> <xs:enumeration value="[foz_us]"/> <xs:enumeration value="[ft_br]"/> <xs:enumeration value="[ft_i]"/> <xs:enumeration value="[ft_us]"/> <xs:enumeration value="[rd_br]"/> <xs:enumeration value="[fur_us]"/> <xs:enumeration value="[gal_br]"/> <xs:enumeration value="[gal_us]"/> <xs:enumeration value="[gil_br]"/> <xs:enumeration value="[gil_us]"/> <xs:enumeration value="gon"/> <xs:enumeration value="[gr]"/> <xs:enumeration value="g%"/> <xs:enumeration value="gf"/> <xs:enumeration value="[hd_i]"/> <xs:enumeration value="[HPF]"/> <xs:enumeration value="h"/> <xs:enumeration value="[in_br]"/> <xs:enumeration value="[in_i]"/> <xs:enumeration value="[in_us]"/> <xs:enumeration value="[in_i'Hg]"/> <xs:enumeration value="[in_i'H2O]"/> <xs:enumeration value="[iU]"/> <xs:enumeration value="kat"/> <xs:enumeration value="[kn_br]"/> <xs:enumeration value="[kn_i]"/> <xs:enumeration value="[ly]"/> <xs:enumeration value="[ligne]"/> <xs:enumeration value="[lne]"/> <xs:enumeration value="[lk_br]"/> <xs:enumeration value="[lk_us]"/> <xs:enumeration value="[rlk_us]"/> <xs:enumeration value="l"/> <xs:enumeration value="[lcwt_av]"/> <xs:enumeration value="[lton_av]"/> <xs:enumeration value="[LPF]"/> <xs:enumeration value="lm"/> <xs:enumeration value="lx"/> <xs:enumeration value="[mesh_i]"/> <xs:enumeration value="[MET]"/> <xs:enumeration value="m[Hg]"/> <xs:enumeration value="m[H2O]"/> <xs:enumeration value="[mil_i]"/> <xs:enumeration value="[mil_us]"/> <xs:enumeration value="[mi_br]"/> <xs:enumeration value="[mi_us]"/> <xs:enumeration value="[min_br]"/> <xs:enumeration value="[min_us]"/> <xs:enumeration value="'"/> <xs:enumeration value="min"/> <xs:enumeration value="mol"/> <xs:enumeration value="mo"/> <xs:enumeration value="mo_g"/> <xs:enumeration value="mo_j"/> <xs:enumeration value="mo_s"/> <xs:enumeration value="[nmi_br]"/> <xs:enumeration value="[nmi_i]"/> <xs:enumeration value="Np"/> <xs:enumeration value="osm"/> <xs:enumeration value="[oz_ap]"/> <xs:enumeration value="[oz_av]"/> <xs:enumeration value="[oz_tr]"/> <xs:enumeration value="[pH]"/> <xs:enumeration value="[pc_br]"/> <xs:enumeration value="pc"/> <xs:enumeration value="[ppb]"/> <xs:enumeration value="[ppm]"/> <xs:enumeration value="[ppth]"/> <xs:enumeration value="[pptr]"/> <xs:enumeration value="[bu_br]"/> <xs:enumeration value="[pk_us]"/> <xs:enumeration value="[pwt_tr]"/> <xs:enumeration value="%"/> <xs:enumeration value="[PRU]"/> <xs:enumeration value="[mu_0]"/> <xs:enumeration value="[eps_0]"/> <xs:enumeration value="ph"/> <xs:enumeration value="[pca]"/> <xs:enumeration value="[pied]"/> <xs:enumeration value="[pt_br]"/> <xs:enumeration value="[pt_us]"/> <xs:enumeration value="[pnt]"/> <xs:enumeration value="[pouce]"/> <xs:enumeration value="[lb_ap]"/> <xs:enumeration value="[lb_av]"/> <xs:enumeration value="[lb_tr]"/> <xs:enumeration value="[lbf_av]"/> <xs:enumeration value="[m_p]"/> <xs:enumeration value="[psi]"/> <xs:enumeration value="[qt_br]"/> <xs:enumeration value="[qt_us]"/> <xs:enumeration value="RAD"/> <xs:enumeration value="REM"/> <xs:enumeration value="[rd_us]"/> <xs:enumeration value="[sc_ap]"/> <xs:enumeration value="''"/> <xs:enumeration value="[sct]"/> <xs:enumeration value="[scwt_av]"/> <xs:enumeration value="[ston_av]"/> <xs:enumeration value="sph"/> <xs:enumeration value="[sft_i]"/> <xs:enumeration value="[sin_i]"/> <xs:enumeration value="[smi_us]"/> <xs:enumeration value="[srd_us]"/> <xs:enumeration value="[syd_i]"/> <xs:enumeration value="[mi_i]"/> <xs:enumeration value="st"/> <xs:enumeration value="sb"/> <xs:enumeration value="[stone_av]"/> <xs:enumeration value="sr"/> <xs:enumeration value="[tbs_us]"/> <xs:enumeration value="[tsp_us]"/> <xs:enumeration value="10*"/> <xs:enumeration value="[pi]"/> <xs:enumeration value="t"/> <xs:enumeration value="[twp]"/> <xs:enumeration value="[tb'U]"/> <xs:enumeration value="u"/> <xs:enumeration value="[c]"/> <xs:enumeration value="wk"/> <xs:enumeration value="[gal_wi]"/> <xs:enumeration value="[yd_br]"/> <xs:enumeration value="[yd_i]"/> <xs:enumeration value="[yd_us]"/> <xs:enumeration value="a"/> <xs:enumeration value="a_g"/> <xs:enumeration value="a_j"/> <xs:enumeration value="a_t"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="UnitOfMeasurePrefixSens"> <xs:annotation> <xs:documentation>abstDomain: A13104 (C-0-T12839-A13104-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="a"/> <xs:enumeration value="c"/> <xs:enumeration value="d"/> <xs:enumeration value="da"/> <xs:enumeration value="E"/> <xs:enumeration value="f"/> <xs:enumeration value="Gi"/> <xs:enumeration value="G"/> <xs:enumeration value="h"/> <xs:enumeration value="Ki"/> <xs:enumeration value="k"/> <xs:enumeration value="Mi"/> <xs:enumeration value="M"/> <xs:enumeration value="u"/> <xs:enumeration value="m"/> <xs:enumeration value="n"/> <xs:enumeration value="P"/> <xs:enumeration value="p"/> <xs:enumeration value="Ti"/> <xs:enumeration value="T"/> <xs:enumeration value="y"/> <xs:enumeration value="Y"/> <xs:enumeration value="z"/> <xs:enumeration value="Z"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="VaccineManufacturer"> <xs:annotation> <xs:documentation>vocSet: T227 (C-0-T227-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="AB"/> <xs:enumeration value="AD"/> <xs:enumeration value="ALP"/> <xs:enumeration value="AR"/> <xs:enumeration value="PMC"/> <xs:enumeration value="AVI"/> <xs:enumeration value="BA"/> <xs:enumeration value="BAY"/> <xs:enumeration value="BPC"/> <xs:enumeration value="BP"/> <xs:enumeration value="MIP"/> <xs:enumeration value="CEN"/> <xs:enumeration value="CHI"/> <xs:enumeration value="CON"/> <xs:enumeration value="EVN"/> <xs:enumeration value="GRE"/> <xs:enumeration value="IAG"/> <xs:enumeration value="IUS"/> <xs:enumeration value="KGC"/> <xs:enumeration value="LED"/> <xs:enumeration value="MA"/> <xs:enumeration value="MED"/> <xs:enumeration value="MSD"/> <xs:enumeration value="IM"/> <xs:enumeration value="MIL"/> <xs:enumeration value="NAB"/> <xs:enumeration value="NYB"/> <xs:enumeration value="NAV"/> <xs:enumeration value="NOV"/> <xs:enumeration value="OTC"/> <xs:enumeration value="ORT"/> <xs:enumeration value="PD"/> <xs:enumeration value="PRX"/> <xs:enumeration value="SCL"/> <xs:enumeration value="SKB"/> <xs:enumeration value="SI"/> <xs:enumeration value="JPN"/> <xs:enumeration value="USA"/> <xs:enumeration value="WAL"/> <xs:enumeration value="WA"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="VaccineType"> <xs:annotation> <xs:documentation>vocSet: T228 (C-0-T228-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="24"/> <xs:enumeration value="19"/> <xs:enumeration value="29"/> <xs:enumeration value="26"/> <xs:enumeration value="28"/> <xs:enumeration value="1"/> <xs:enumeration value="22"/> <xs:enumeration value="20"/> <xs:enumeration value="50"/> <xs:enumeration value="30"/> <xs:enumeration value="61"/> <xs:enumeration value="62"/> <xs:enumeration value="57"/> <xs:enumeration value="85"/> <xs:enumeration value="52"/> <xs:enumeration value="83"/> <xs:enumeration value="84"/> <xs:enumeration value="31"/> <xs:enumeration value="45"/> <xs:enumeration value="8"/> <xs:enumeration value="42"/> <xs:enumeration value="43"/> <xs:enumeration value="44"/> <xs:enumeration value="58"/> <xs:enumeration value="59"/> <xs:enumeration value="47"/> <xs:enumeration value="46"/> <xs:enumeration value="49"/> <xs:enumeration value="48"/> <xs:enumeration value="17"/> <xs:enumeration value="51"/> <xs:enumeration value="86"/> <xs:enumeration value="14"/> <xs:enumeration value="87"/> <xs:enumeration value="10"/> <xs:enumeration value="39"/> <xs:enumeration value="63"/> <xs:enumeration value="66"/> <xs:enumeration value="4"/> <xs:enumeration value="3"/> <xs:enumeration value="94"/> <xs:enumeration value="2"/> <xs:enumeration value="70"/> <xs:enumeration value="34"/> <xs:enumeration value="71"/> <xs:enumeration value="93"/> <xs:enumeration value="73"/> <xs:enumeration value="76"/> <xs:enumeration value="13"/> <xs:enumeration value="98"/> <xs:enumeration value="95"/> <xs:enumeration value="96"/> <xs:enumeration value="97"/> <xs:enumeration value="9"/> <xs:enumeration value="92"/> <xs:enumeration value="81"/> <xs:enumeration value="80"/> <xs:enumeration value="36"/> <xs:enumeration value="82"/> <xs:enumeration value="54"/> <xs:enumeration value="55"/> <xs:enumeration value="27"/> <xs:enumeration value="56"/> <xs:enumeration value="12"/> <xs:enumeration value="60"/> <xs:enumeration value="88"/> <xs:enumeration value="15"/> <xs:enumeration value="16"/> <xs:enumeration value="64"/> <xs:enumeration value="65"/> <xs:enumeration value="67"/> <xs:enumeration value="5"/> <xs:enumeration value="68"/> <xs:enumeration value="32"/> <xs:enumeration value="7"/> <xs:enumeration value="69"/> <xs:enumeration value="11"/> <xs:enumeration value="23"/> <xs:enumeration value="33"/> <xs:enumeration value="100"/> <xs:enumeration value="89"/> <xs:enumeration value="90"/> <xs:enumeration value="40"/> <xs:enumeration value="18"/> <xs:enumeration value="72"/> <xs:enumeration value="74"/> <xs:enumeration value="6"/> <xs:enumeration value="38"/> <xs:enumeration value="75"/> <xs:enumeration value="35"/> <xs:enumeration value="77"/> <xs:enumeration value="78"/> <xs:enumeration value="91"/> <xs:enumeration value="101"/> <xs:enumeration value="25"/> <xs:enumeration value="41"/> <xs:enumeration value="53"/> <xs:enumeration value="79"/> <xs:enumeration value="21"/> <xs:enumeration value="37"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ValueSetOperator"> <xs:annotation> <xs:documentation>vocSet: T11037 (C-0-T11037-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="E"/> <xs:enumeration value="I"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ValueSetPropertyId"> <xs:annotation> <xs:documentation>vocSet: T19362 (C-0-T19362-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="appliesTo"/> <xs:enumeration value="howApplies"/> <xs:enumeration value="openIssue"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ValueSetStatus"> <xs:annotation> <xs:documentation>vocSet: T19360-1 (C-0-T19360-1-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="A"/> <xs:enumeration value="D"/> <xs:enumeration value="P"/> <xs:enumeration value="R"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="VocabularyDomainQualifier"> <xs:annotation> <xs:documentation>vocSet: T11046 (C-0-T11046-cpt)</xs:documentation> </xs:annotation> <xs:union memberTypes="Extensibility RealmOfUse"/> </xs:simpleType> <xs:simpleType name="Extensibility"> <xs:annotation> <xs:documentation>abstDomain: A11047 (C-0-T11046-A11047-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="CNE"/> <xs:enumeration value="CWE"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="RealmOfUse"> <xs:annotation> <xs:documentation>abstDomain: A11050 (C-0-T11046-A11050-cpt)</xs:documentation> </xs:annotation> <xs:restriction base="cs"> <xs:enumeration value="Canada"/> <xs:enumeration value="NorthAmerica"/> <xs:enumeration value="USA"/> <xs:enumeration value="UV"/> </xs:restriction> </xs:simpleType> </xs:schema>
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:choice minOccurs="0" maxOccurs="unbounded"> <xs:element name="content" type="StrucDoc.Content"/> <xs:element name="linkHtml" type="StrucDoc.LinkHtml"/> <xs:element name="sub" type="StrucDoc.Sub"/> <xs:element name="sup" type="StrucDoc.Sup"/> <xs:element name="br" type="StrucDoc.Br"/> <xs:element name="footnote" type="StrucDoc.Footnote"/> <xs:element name="footnoteRef" type="StrucDoc.FootnoteRef"/> <xs:element name="renderMultiMedia" type="StrucDoc.RenderMultiMedia"/> <xs:element name="paragraph" type="StrucDoc.Paragraph"/> <xs:element name="list" type="StrucDoc.List"/> <xs:element name="table" type="StrucDoc.Table"/> </xs:choice> <xs:attribute name="ID" type="xs:ID"/> <xs:attribute name="language" type="xs:NMTOKEN"/> <xs:attribute name="styleCode" type="xs:NMTOKENS"/> <xs:attribute name="mediaType" type="xs:string" fixed="text/x-hl7-text+xml"/> </xs:complexType> <xs:complexType name="StrucDoc.Title" mixed="true"> <xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:element name="content" type="StrucDoc.TitleContent"/> <xs:element name="sub" type="StrucDoc.Sub"/> <xs:element name="sup" type="StrucDoc.Sup"/> <xs:element name="br" type="StrucDoc.Br"/> <xs:element name="footnote" type="StrucDoc.TitleFootnote"/> <xs:element name="footnoteRef" type="StrucDoc.FootnoteRef"/> </xs:choice> <xs:attribute name="ID" type="xs:ID"/> <xs:attribute name="language" type="xs:NMTOKEN"/> <xs:attribute name="styleCode" type="xs:NMTOKENS"/> <xs:attribute name="mediaType" type="xs:string" fixed="text/x-hl7-title+xml"/> </xs:complexType><!-- DELETE THIS, we don't need to define a global element for text <xs:element name="text" type="text"/> --> <xs:complexType name="StrucDoc.Br"/> <xs:complexType name="StrucDoc.Caption" mixed="true"> <xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:element name="linkHtml" type="StrucDoc.LinkHtml"/> <xs:element name="sub" type="StrucDoc.Sub"/> <xs:element name="sup" type="StrucDoc.Sup"/> <xs:element name="footnote" type="StrucDoc.Footnote"/> <xs:element name="footnoteRef" type="StrucDoc.FootnoteRef"/> </xs:choice> <xs:attribute name="ID" type="xs:ID"/> <xs:attribute name="language" type="xs:NMTOKEN"/> <xs:attribute name="styleCode" type="xs:NMTOKENS"/> </xs:complexType> <xs:complexType name="StrucDoc.Col"> <xs:attribute name="ID" type="xs:ID"/> <xs:attribute name="language" type="xs:NMTOKEN"/> <xs:attribute name="styleCode" type="xs:NMTOKENS"/> <xs:attribute name="span" type="xs:string" default="1"/> <xs:attribute name="width" type="xs:string"/> <xs:attribute name="align"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="left"/> <xs:enumeration value="center"/> <xs:enumeration value="right"/> <xs:enumeration value="justify"/> <xs:enumeration value="char"/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="char" type="xs:string"/> <xs:attribute name="charoff" type="xs:string"/> <xs:attribute name="valign"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="top"/> <xs:enumeration value="middle"/> <xs:enumeration value="bottom"/> <xs:enumeration value="baseline"/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:complexType> <xs:complexType name="StrucDoc.Colgroup"> <xs:sequence minOccurs="0" maxOccurs="unbounded"> <xs:element name="col" type="StrucDoc.Col"/> </xs:sequence> <xs:attribute name="ID" type="xs:ID"/> <xs:attribute name="language" type="xs:NMTOKEN"/> <xs:attribute name="styleCode" type="xs:NMTOKENS"/> <xs:attribute name="span" type="xs:string" default="1"/> <xs:attribute name="width" type="xs:string"/> <xs:attribute name="align"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="left"/> <xs:enumeration value="center"/> <xs:enumeration value="right"/> <xs:enumeration value="justify"/> <xs:enumeration value="char"/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="char" type="xs:string"/> <xs:attribute name="charoff" type="xs:string"/> <xs:attribute name="valign"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="top"/> <xs:enumeration value="middle"/> <xs:enumeration value="bottom"/> <xs:enumeration value="baseline"/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:complexType> <xs:complexType name="StrucDoc.Content" mixed="true"> <xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:element name="content" type="StrucDoc.Content"/> <xs:element name="linkHtml" type="StrucDoc.LinkHtml"/> <xs:element name="sub" type="StrucDoc.Sub"/> <xs:element name="sup" type="StrucDoc.Sup"/> <xs:element name="br" type="StrucDoc.Br"/> <xs:element name="footnote" type="StrucDoc.Footnote"/> <xs:element name="footnoteRef" type="StrucDoc.FootnoteRef"/> <xs:element name="renderMultiMedia" type="StrucDoc.RenderMultiMedia"/> </xs:choice> <xs:attribute name="ID" type="xs:ID"/> <xs:attribute name="language" type="xs:NMTOKEN"/> <xs:attribute name="styleCode" type="xs:NMTOKENS"/> <xs:attribute name="revised"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="insert"/> <xs:enumeration value="delete"/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:complexType> <xs:complexType name="StrucDoc.TitleContent" mixed="true"> <xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:element name="content" type="StrucDoc.TitleContent"/> <xs:element name="sub" type="StrucDoc.Sub"/> <xs:element name="sup" type="StrucDoc.Sup"/> <xs:element name="br" type="StrucDoc.Br"/> <xs:element name="footnote" type="StrucDoc.TitleFootnote"/> <xs:element name="footnoteRef" type="StrucDoc.FootnoteRef"/> </xs:choice> <xs:attribute name="ID" type="xs:ID"/> <xs:attribute name="language" type="xs:NMTOKEN"/> <xs:attribute name="styleCode" type="xs:NMTOKENS"/> </xs:complexType> <xs:complexType name="StrucDoc.Footnote" mixed="true"> <xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:element name="content" type="StrucDoc.Content"/> <xs:element name="linkHtml" type="StrucDoc.LinkHtml"/> <xs:element name="sub" type="StrucDoc.Sub"/> <xs:element name="sup" type="StrucDoc.Sup"/> <xs:element name="br" type="StrucDoc.Br"/> <xs:element name="renderMultiMedia" type="StrucDoc.RenderMultiMedia"/> <xs:element name="paragraph" type="StrucDoc.Paragraph"/> <xs:element name="list" type="StrucDoc.List"/> <xs:element name="table" type="StrucDoc.Table"/> </xs:choice> <xs:attribute name="ID" type="xs:ID"/> <xs:attribute name="language" type="xs:NMTOKEN"/> <xs:attribute name="styleCode" type="xs:NMTOKENS"/> </xs:complexType> <xs:complexType name="StrucDoc.TitleFootnote" mixed="true"> <xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:element name="content" type="StrucDoc.TitleContent"/> <xs:element name="sub" type="StrucDoc.Sub"/> <xs:element name="sup" type="StrucDoc.Sup"/> <xs:element name="br" type="StrucDoc.Br"/> </xs:choice> <xs:attribute name="ID" type="xs:ID"/> <xs:attribute name="language" type="xs:NMTOKEN"/> <xs:attribute name="styleCode" type="xs:NMTOKENS"/> </xs:complexType> <xs:complexType name="StrucDoc.FootnoteRef"> <xs:attribute name="ID" type="xs:ID"/> <xs:attribute name="language" type="xs:NMTOKEN"/> <xs:attribute name="styleCode" type="xs:NMTOKENS"/> <xs:attribute name="IDREF" type="xs:IDREF" use="required"/> </xs:complexType> <xs:complexType name="StrucDoc.Item" mixed="true"> <xs:sequence> <xs:element name="caption" type="StrucDoc.Caption" minOccurs="0"/> <xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:element name="content" type="StrucDoc.Content"/> <xs:element name="linkHtml" type="StrucDoc.LinkHtml"/> <xs:element name="sub" type="StrucDoc.Sub"/> <xs:element name="sup" type="StrucDoc.Sup"/> <xs:element name="br" type="StrucDoc.Br"/> <xs:element name="footnote" type="StrucDoc.Footnote"/> <xs:element name="footnoteRef" type="StrucDoc.FootnoteRef"/> <xs:element name="renderMultiMedia" type="StrucDoc.RenderMultiMedia"/> <xs:element name="paragraph" type="StrucDoc.Paragraph"/> <xs:element name="list" type="StrucDoc.List"/> <xs:element name="table" type="StrucDoc.Table"/> </xs:choice> </xs:sequence> <xs:attribute name="ID" type="xs:ID"/> <xs:attribute name="language" type="xs:NMTOKEN"/> <xs:attribute name="styleCode" type="xs:NMTOKENS"/> </xs:complexType> <xs:complexType name="StrucDoc.LinkHtml" mixed="true"> <xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:element name="footnote" type="StrucDoc.Footnote"/> <xs:element name="footnoteRef" type="StrucDoc.FootnoteRef"/> </xs:choice> <xs:attribute name="name" type="xs:string"/> <xs:attribute name="href" type="xs:string"/> <xs:attribute name="rel" type="xs:string"/> <xs:attribute name="rev" type="xs:string"/> <xs:attribute name="title" type="xs:string"/> <xs:attribute name="ID" type="xs:ID"/> <xs:attribute name="language" type="xs:NMTOKEN"/> <xs:attribute name="styleCode" type="xs:NMTOKENS"/> </xs:complexType> <xs:complexType name="StrucDoc.List"> <xs:sequence> <xs:element name="caption" type="StrucDoc.Caption" minOccurs="0"/> <xs:element name="item" type="StrucDoc.Item" maxOccurs="unbounded"/> </xs:sequence> <xs:attribute name="ID" type="xs:ID"/> <xs:attribute name="language" type="xs:NMTOKEN"/> <xs:attribute name="styleCode" type="xs:NMTOKENS"/> <xs:attribute name="listType" default="unordered"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="ordered"/> <xs:enumeration value="unordered"/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:complexType> <xs:complexType name="StrucDoc.Paragraph" mixed="true"> <xs:sequence> <xs:element name="caption" type="StrucDoc.Caption" minOccurs="0"/> <xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:element name="content" type="StrucDoc.Content"/> <xs:element name="linkHtml" type="StrucDoc.LinkHtml"/> <xs:element name="sub" type="StrucDoc.Sub"/> <xs:element name="sup" type="StrucDoc.Sup"/> <xs:element name="br" type="StrucDoc.Br"/> <xs:element name="footnote" type="StrucDoc.Footnote"/> <xs:element name="footnoteRef" type="StrucDoc.FootnoteRef"/> <xs:element name="renderMultiMedia" type="StrucDoc.RenderMultiMedia"/> </xs:choice> </xs:sequence> <xs:attribute name="ID" type="xs:ID"/> <xs:attribute name="language" type="xs:NMTOKEN"/> <xs:attribute name="styleCode" type="xs:NMTOKENS"/> </xs:complexType> <xs:complexType name="StrucDoc.RenderMultiMedia"> <xs:sequence> <xs:element name="caption" type="StrucDoc.Caption" minOccurs="0"/> </xs:sequence> <xs:attribute name="referencedObject" type="xs:IDREFS" use="required"/> <xs:attribute name="ID" type="xs:ID"/> <xs:attribute name="language" type="xs:NMTOKEN"/> <xs:attribute name="styleCode" type="xs:NMTOKENS"/> </xs:complexType> <xs:complexType name="StrucDoc.Sub" mixed="true"/> <xs:complexType name="StrucDoc.Sup" mixed="true"/> <xs:complexType name="StrucDoc.Table"> <xs:sequence> <xs:element name="caption" type="StrucDoc.Caption" minOccurs="0"/> <xs:choice> <xs:element name="col" type="StrucDoc.Col" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="colgroup" type="StrucDoc.Colgroup" minOccurs="0" maxOccurs="unbounded"/> </xs:choice> <xs:element name="thead" type="StrucDoc.Thead" minOccurs="0"/> <xs:element name="tfoot" type="StrucDoc.Tfoot" minOccurs="0"/> <xs:element name="tbody" type="StrucDoc.Tbody" maxOccurs="unbounded"/> </xs:sequence> <xs:attribute name="ID" type="xs:ID"/> <xs:attribute name="language" type="xs:NMTOKEN"/> <xs:attribute name="styleCode" type="xs:NMTOKENS"/> <xs:attribute name="summary" type="xs:string"/> <xs:attribute name="width" type="xs:string"/> <xs:attribute name="border" type="xs:string"/> <xs:attribute name="frame"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="void"/> <xs:enumeration value="above"/> <xs:enumeration value="below"/> <xs:enumeration value="hsides"/> <xs:enumeration value="lhs"/> <xs:enumeration value="rhs"/> <xs:enumeration value="vsides"/> <xs:enumeration value="box"/> <xs:enumeration value="border"/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="rules"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="none"/> <xs:enumeration value="groups"/> <xs:enumeration value="rows"/> <xs:enumeration value="cols"/> <xs:enumeration value="all"/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="cellspacing" type="xs:string"/> <xs:attribute name="cellpadding" type="xs:string"/> </xs:complexType> <xs:complexType name="StrucDoc.Tbody"> <xs:sequence maxOccurs="unbounded"> <xs:element name="tr" type="StrucDoc.Tr"/> </xs:sequence> <xs:attribute name="ID" type="xs:ID"/> <xs:attribute name="language" type="xs:NMTOKEN"/> <xs:attribute name="styleCode" type="xs:NMTOKENS"/> <xs:attribute name="align"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="left"/> <xs:enumeration value="center"/> <xs:enumeration value="right"/> <xs:enumeration value="justify"/> <xs:enumeration value="char"/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="char" type="xs:string"/> <xs:attribute name="charoff" type="xs:string"/> <xs:attribute name="valign"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="top"/> <xs:enumeration value="middle"/> <xs:enumeration value="bottom"/> <xs:enumeration value="baseline"/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:complexType> <xs:complexType name="StrucDoc.Td" mixed="true"> <xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:element name="content" type="StrucDoc.Content"/> <xs:element name="linkHtml" type="StrucDoc.LinkHtml"/> <xs:element name="sub" type="StrucDoc.Sub"/> <xs:element name="sup" type="StrucDoc.Sup"/> <xs:element name="br" type="StrucDoc.Br"/> <xs:element name="footnote" type="StrucDoc.Footnote"/> <xs:element name="footnoteRef" type="StrucDoc.FootnoteRef"/> <xs:element name="renderMultiMedia" type="StrucDoc.RenderMultiMedia"/> <xs:element name="paragraph" type="StrucDoc.Paragraph"/> <xs:element name="list" type="StrucDoc.List"/> </xs:choice> <xs:attribute name="ID" type="xs:ID"/> <xs:attribute name="language" type="xs:NMTOKEN"/> <xs:attribute name="styleCode" type="xs:NMTOKENS"/> <xs:attribute name="abbr" type="xs:string"/> <xs:attribute name="axis" type="xs:string"/> <xs:attribute name="headers" type="xs:IDREFS"/> <xs:attribute name="scope"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="row"/> <xs:enumeration value="col"/> <xs:enumeration value="rowgroup"/> <xs:enumeration value="colgroup"/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="rowspan" type="xs:string" default="1"/> <xs:attribute name="colspan" type="xs:string" default="1"/> <xs:attribute name="align"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="left"/> <xs:enumeration value="center"/> <xs:enumeration value="right"/> <xs:enumeration value="justify"/> <xs:enumeration value="char"/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="char" type="xs:string"/> <xs:attribute name="charoff" type="xs:string"/> <xs:attribute name="valign"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="top"/> <xs:enumeration value="middle"/> <xs:enumeration value="bottom"/> <xs:enumeration value="baseline"/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:complexType> <xs:complexType name="StrucDoc.Tfoot"> <xs:sequence maxOccurs="unbounded"> <xs:element name="tr" type="StrucDoc.Tr"/> </xs:sequence> <xs:attribute name="ID" type="xs:ID"/> <xs:attribute name="language" type="xs:NMTOKEN"/> <xs:attribute name="styleCode" type="xs:NMTOKENS"/> <xs:attribute name="align"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="left"/> <xs:enumeration value="center"/> <xs:enumeration value="right"/> <xs:enumeration value="justify"/> <xs:enumeration value="char"/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="char" type="xs:string"/> <xs:attribute name="charoff" type="xs:string"/> <xs:attribute name="valign"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="top"/> <xs:enumeration value="middle"/> <xs:enumeration value="bottom"/> <xs:enumeration value="baseline"/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:complexType> <xs:complexType name="StrucDoc.Th" mixed="true"> <xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:element name="content" type="StrucDoc.Content"/> <xs:element name="linkHtml" type="StrucDoc.LinkHtml"/> <xs:element name="sub" type="StrucDoc.Sub"/> <xs:element name="sup" type="StrucDoc.Sup"/> <xs:element name="br" type="StrucDoc.Br"/> <xs:element name="footnote" type="StrucDoc.Footnote"/> <xs:element name="footnoteRef" type="StrucDoc.FootnoteRef"/> <xs:element name="renderMultiMedia" type="StrucDoc.RenderMultiMedia"/> </xs:choice> <xs:attribute name="ID" type="xs:ID"/> <xs:attribute name="language" type="xs:NMTOKEN"/> <xs:attribute name="styleCode" type="xs:NMTOKENS"/> <xs:attribute name="abbr" type="xs:string"/> <xs:attribute name="axis" type="xs:string"/> <xs:attribute name="headers" type="xs:IDREFS"/> <xs:attribute name="scope"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="row"/> <xs:enumeration value="col"/> <xs:enumeration value="rowgroup"/> <xs:enumeration value="colgroup"/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="rowspan" type="xs:string" default="1"/> <xs:attribute name="colspan" type="xs:string" default="1"/> <xs:attribute name="align"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="left"/> <xs:enumeration value="center"/> <xs:enumeration value="right"/> <xs:enumeration value="justify"/> <xs:enumeration value="char"/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="char" type="xs:string"/> <xs:attribute name="charoff" type="xs:string"/> <xs:attribute name="valign"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="top"/> <xs:enumeration value="middle"/> <xs:enumeration value="bottom"/> <xs:enumeration value="baseline"/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:complexType> <xs:complexType name="StrucDoc.Thead"> <xs:sequence maxOccurs="unbounded"> <xs:element name="tr" type="StrucDoc.Tr"/> </xs:sequence> <xs:attribute name="ID" type="xs:ID"/> <xs:attribute name="language" type="xs:NMTOKEN"/> <xs:attribute name="styleCode" type="xs:NMTOKENS"/> <xs:attribute name="align"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="left"/> <xs:enumeration value="center"/> <xs:enumeration value="right"/> <xs:enumeration value="justify"/> <xs:enumeration value="char"/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="char" type="xs:string"/> <xs:attribute name="charoff" type="xs:string"/> <xs:attribute name="valign"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="top"/> <xs:enumeration value="middle"/> <xs:enumeration value="bottom"/> <xs:enumeration value="baseline"/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:complexType> <xs:complexType name="StrucDoc.Tr"> <xs:choice maxOccurs="unbounded"> <xs:element name="th" type="StrucDoc.Th"/> <xs:element name="td" type="StrucDoc.Td"/> </xs:choice> <xs:attribute name="ID" type="xs:ID"/> <xs:attribute name="language" type="xs:NMTOKEN"/> <xs:attribute name="styleCode" type="xs:NMTOKENS"/> <xs:attribute name="align"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="left"/> <xs:enumeration value="center"/> <xs:enumeration value="right"/> <xs:enumeration value="justify"/> <xs:enumeration value="char"/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="char" type="xs:string"/> <xs:attribute name="charoff" type="xs:string"/> <xs:attribute name="valign"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="top"/> <xs:enumeration value="middle"/> <xs:enumeration value="bottom"/> <xs:enumeration value="baseline"/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:complexType> </xs:schema>
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 retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. All advertising materials mentioning features or use of this software must display the following acknowledgement: This product includes software developed by Health Level Seven. THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --> <!-- This schema is generated from a Generic Schema Definition (GSD) by gsd2xsl. Do not edit this file. --> <xs:schema xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> <xs:annotation> <xs:documentation> Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 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 retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. All advertising materials mentioning features or use of this software must display the following acknowledgement: This product includes software developed by Health Level Seven. THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Generated by $Id: datatypes-base.xsd,v 1.1.2.1.8.2 2012/02/09 21:30:54 cchin Exp $</xs:documentation> </xs:annotation> <xs:include schemaLocation="voc.xsd"/> <xs:annotation> <xs:documentation> $Id: datatypes-base.xsd,v 1.1.2.1.8.2 2012/02/09 21:30:54 cchin Exp $ Generated by $Id: datatypes-base.xsd,v 1.1.2.1.8.2 2012/02/09 21:30:54 cchin Exp $</xs:documentation> </xs:annotation> <xs:complexType name="ANY" abstract="true"> <xs:annotation> <xs:documentation> Defines the basic properties of every data value. This is an abstract type, meaning that no value can be just a data value without belonging to any concrete type. Every concrete type is a specialization of this general abstract DataValue type. </xs:documentation> </xs:annotation> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"> <xs:annotation> <xs:documentation> An exceptional value expressing missing information and possibly the reason why the information is missing. </xs:documentation> </xs:annotation> </xs:attribute> </xs:complexType> <xs:simpleType name="bl"> <xs:annotation> <xs:documentation> The Boolean type stands for the values of two-valued logic. A Boolean value can be either true or false, or, as any other value may be NULL. </xs:documentation> </xs:annotation> <xs:restriction base="xs:boolean"> <xs:pattern value="true|false"/> </xs:restriction> </xs:simpleType> <xs:complexType name="BL"> <xs:annotation> <xs:documentation> The Boolean type stands for the values of two-valued logic. A Boolean value can be either true or false, or, as any other value may be NULL. </xs:documentation> <xs:appinfo> <sch:pattern name="validate BL"> <sch:rule abstract="true" id="rule-BL"> <sch:report test="(@nullFlavor or @value) and not(@nullFlavor and @value)"/> </sch:rule> </sch:pattern> </xs:appinfo> </xs:annotation> <xs:complexContent> <xs:extension base="ANY"> <xs:attribute name="value" use="optional" type="bl"/> </xs:extension> </xs:complexContent> </xs:complexType> <xs:simpleType name="bn"> <xs:annotation> <xs:documentation> The BooleanNonNull type is used where a Boolean cannot have a null value. A Boolean value can be either true or false. </xs:documentation> </xs:annotation> <xs:restriction base="bl"/> </xs:simpleType> <xs:complexType name="ANYNonNull"> <xs:annotation> <xs:documentation> The BooleanNonNull type is used where a Boolean cannot have a null value. A Boolean value can be either true or false. </xs:documentation> </xs:annotation> <xs:complexContent> <xs:restriction base="ANY"> <xs:attribute name="nullFlavor" type="NullFlavor" use="prohibited"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType name="BN"> <xs:annotation> <xs:documentation> The BooleanNonNull type is used where a Boolean cannot have a null value. A Boolean value can be either true or false. </xs:documentation> </xs:annotation> <xs:complexContent> <xs:extension base="ANYNonNull"> <xs:attribute name="value" use="optional" type="bn"/> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="BIN" abstract="true" mixed="true"> <xs:annotation> <xs:documentation> Binary data is a raw block of bits. Binary data is a protected type that MUST not be used outside the data type specification. </xs:documentation> </xs:annotation> <xs:complexContent> <xs:extension base="ANY"> <xs:attribute name="representation" use="optional" type="BinaryDataEncoding" default="TXT"> <xs:annotation> <xs:documentation> Specifies the representation of the binary data that is the content of the binary data value. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:simpleType name="bin"> <xs:annotation> <xs:documentation> Binary data is a raw block of bits. Binary data is a protected type that MUST not be used outside the data type specification. </xs:documentation> </xs:annotation> <xs:restriction base="xs:base64Binary"/> </xs:simpleType> <xs:simpleType name="BinaryDataEncoding"> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="B64"/> <xs:enumeration value="TXT"/> </xs:restriction> </xs:simpleType> <xs:complexType name="ED" mixed="true"> <xs:annotation> <xs:documentation> Data that is primarily intended for human interpretation or for further machine processing is outside the scope of HL7. This includes unformatted or formatted written language, multimedia data, or structured information as defined by a different standard (e.g., XML-signatures.) Instead of the data itself, an ED may contain only a reference (see TEL.) Note that the ST data type is a specialization of when the is text/plain. </xs:documentation> </xs:annotation> <xs:complexContent> <xs:extension base="BIN"> <xs:sequence> <xs:element name="reference" type="TEL" minOccurs="0" maxOccurs="1"> <xs:annotation> <xs:documentation> A telecommunication address (TEL), such as a URL for HTTP or FTP, which will resolve to precisely the same binary data that could as well have been provided as inline data. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="thumbnail" minOccurs="0" maxOccurs="1" type="thumbnail"/> </xs:sequence> <xs:attribute name="mediaType" type="cs" use="optional" default="text/plain"> <xs:annotation> <xs:documentation> Identifies the type of the encapsulated data and identifies a method to interpret or render the data. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="language" type="cs" use="optional"> <xs:annotation> <xs:documentation> For character based information the language property specifies the human language of the text. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="compression" type="CompressionAlgorithm" use="optional"> <xs:annotation> <xs:documentation> Indicates whether the raw byte data is compressed, and what compression algorithm was used. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="integrityCheck" type="bin" use="optional"> <xs:annotation> <xs:documentation> The integrity check is a short binary value representing a cryptographically strong checksum that is calculated over the binary data. The purpose of this property, when communicated with a reference is for anyone to validate later whether the reference still resolved to the same data that the reference resolved to when the encapsulated data value with reference was created. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="integrityCheckAlgorithm" type="IntegrityCheckAlgorithm" use="optional" default="SHA-1"> <xs:annotation> <xs:documentation> Specifies the algorithm used to compute the integrityCheck value. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="thumbnail" mixed="true"> <xs:annotation> <xs:documentation> A thumbnail is an abbreviated rendition of the full data. A thumbnail requires significantly fewer resources than the full data, while still maintaining some distinctive similarity with the full data. A thumbnail is typically used with by-reference encapsulated data. It allows a user to select data more efficiently before actually downloading through the reference. </xs:documentation> </xs:annotation> <xs:complexContent> <xs:restriction base="ED"> <xs:sequence> <xs:element name="reference" type="TEL" minOccurs="0" maxOccurs="1"/> <xs:element name="thumbnail" type="thumbnail" minOccurs="0" maxOccurs="0"/> </xs:sequence> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:simpleType name="st"> <xs:annotation> <xs:documentation> The character string data type stands for text data, primarily intended for machine processing (e.g., sorting, querying, indexing, etc.) Used for names, symbols, and formal expressions. </xs:documentation> </xs:annotation> <xs:restriction base="xs:string"> <xs:minLength value="1"/> </xs:restriction> </xs:simpleType> <xs:complexType name="ST" mixed="true"> <xs:annotation> <xs:documentation> The character string data type stands for text data, primarily intended for machine processing (e.g., sorting, querying, indexing, etc.) Used for names, symbols, and formal expressions. </xs:documentation> <xs:appinfo> <sch:pattern name="validate ST"> <sch:rule abstract="true" id="rule-ST"> <sch:report test="(@nullFlavor or text()) and not(@nullFlavor and text())"> <p xmlns:gsd="http://aurora.regenstrief.org/GenericXMLSchema" xmlns:xlink="http://www.w3.org/TR/WD-xlink">Text content is only allowed in non-NULL values.</p> </sch:report> </sch:rule> </sch:pattern> </xs:appinfo> </xs:annotation> <xs:complexContent> <xs:restriction base="ED"> <xs:sequence> <xs:element name="reference" type="TEL" minOccurs="0" maxOccurs="0"/> <xs:element name="thumbnail" type="ED" minOccurs="0" maxOccurs="0"/> </xs:sequence> <xs:attribute name="representation" type="BinaryDataEncoding" fixed="TXT"/> <xs:attribute name="mediaType" type="cs" fixed="text/plain"/> <xs:attribute name="language" type="cs" use="optional"/> <xs:attribute name="compression" type="CompressionAlgorithm" use="prohibited"/> <xs:attribute name="integrityCheck" type="bin" use="prohibited"/> <xs:attribute name="integrityCheckAlgorithm" type="IntegrityCheckAlgorithm" use="prohibited"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:simpleType name="cs"> <xs:annotation> <xs:documentation> Coded data in its simplest form, consists of a code. The code system and code system version is fixed by the context in which the value occurs. is used for coded attributes that have a single HL7-defined value set. </xs:documentation> </xs:annotation> <xs:restriction base="xs:token"> <xs:pattern value="[^\s]+"/> </xs:restriction> </xs:simpleType> <xs:complexType name="CD"> <xs:annotation> <xs:documentation> A concept descriptor represents any kind of concept usually by giving a code defined in a code system. A concept descriptor can contain the original text or phrase that served as the basis of the coding and one or more translations into different coding systems. A concept descriptor can also contain qualifiers to describe, e.g., the concept of a "left foot" as a postcoordinated term built from the primary code "FOOT" and the qualifier "LEFT". In exceptional cases, the concept descriptor need not contain a code but only the original text describing that concept. </xs:documentation> </xs:annotation> <xs:complexContent> <xs:extension base="ANY"> <xs:sequence> <xs:element name="originalText" type="ED" minOccurs="0" maxOccurs="1"> <xs:annotation> <xs:documentation> The text or phrase used as the basis for the coding. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="qualifier" type="CR" minOccurs="0" maxOccurs="unbounded"> <xs:annotation> <xs:documentation> Specifies additional codes that increase the specificity of the primary code. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="translation" type="CD" minOccurs="0" maxOccurs="unbounded"> <xs:annotation> <xs:documentation> A set of other concept descriptors that translate this concept descriptor into other code systems. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> <xs:attribute name="code" type="cs" use="optional"> <xs:annotation> <xs:documentation> The plain code symbol defined by the code system. For example, "784.0" is the code symbol of the ICD-9 code "784.0" for headache. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="codeSystem" type="uid" use="optional"> <xs:annotation> <xs:documentation> Specifies the code system that defines the code. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="codeSystemName" type="st" use="optional"> <xs:annotation> <xs:documentation> A common name of the coding system. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="codeSystemVersion" type="st" use="optional"> <xs:annotation> <xs:documentation> If applicable, a version descriptor defined specifically for the given code system. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="displayName" type="st" use="optional"> <xs:annotation> <xs:documentation> A name or title for the code, under which the sending system shows the code value to its users. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="CE"> <xs:annotation> <xs:documentation> Coded data, consists of a coded value (CV) and, optionally, coded value(s) from other coding systems that identify the same concept. Used when alternative codes may exist. </xs:documentation> </xs:annotation> <xs:complexContent> <xs:restriction base="CD"> <xs:sequence> <xs:element name="originalText" type="ED" minOccurs="0" maxOccurs="1"> <xs:annotation> <xs:documentation> The text or phrase used as the basis for the coding. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="qualifier" type="CR" minOccurs="0" maxOccurs="0"/> <xs:element name="translation" type="CD" minOccurs="0" maxOccurs="unbounded"> <xs:annotation> <xs:documentation> A set of other concept descriptors that translate this concept descriptor into other code systems. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> <xs:attribute name="code" type="cs" use="optional"> <xs:annotation> <xs:documentation> The plain code symbol defined by the code system. For example, "784.0" is the code symbol of the ICD-9 code "784.0" for headache. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="codeSystem" type="uid" use="optional"> <xs:annotation> <xs:documentation> Specifies the code system that defines the code. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="codeSystemName" type="st" use="optional"> <xs:annotation> <xs:documentation> A common name of the coding system. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="codeSystemVersion" type="st" use="optional"> <xs:annotation> <xs:documentation> If applicable, a version descriptor defined specifically for the given code system. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="displayName" type="st" use="optional"> <xs:annotation> <xs:documentation> A name or title for the code, under which the sending system shows the code value to its users. </xs:documentation> </xs:annotation> </xs:attribute> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType name="CV"> <xs:annotation> <xs:documentation> Coded data, consists of a code, display name, code system, and original text. Used when a single code value must be sent. </xs:documentation> </xs:annotation> <xs:complexContent> <xs:restriction base="CE"> <xs:sequence> <xs:element name="originalText" type="ED" minOccurs="0" maxOccurs="1"> <xs:annotation> <xs:documentation> The text or phrase used as the basis for the coding. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="translation" type="CD" minOccurs="0" maxOccurs="0"/> </xs:sequence> <xs:attribute name="code" type="cs" use="optional"> <xs:annotation> <xs:documentation> The plain code symbol defined by the code system. For example, "784.0" is the code symbol of the ICD-9 code "784.0" for headache. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="codeSystem" type="uid" use="optional"> <xs:annotation> <xs:documentation> Specifies the code system that defines the code. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="codeSystemName" type="st" use="optional"> <xs:annotation> <xs:documentation> A common name of the coding system. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="codeSystemVersion" type="st" use="optional"> <xs:annotation> <xs:documentation> If applicable, a version descriptor defined specifically for the given code system. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="displayName" type="st" use="optional"> <xs:annotation> <xs:documentation> A name or title for the code, under which the sending system shows the code value to its users. </xs:documentation> </xs:annotation> </xs:attribute> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType name="CS"> <xs:annotation> <xs:documentation> Coded data, consists of a code, display name, code system, and original text. Used when a single code value must be sent. </xs:documentation> </xs:annotation> <xs:complexContent> <xs:restriction base="CV"> <xs:attribute name="code" type="cs" use="optional"> <xs:annotation> <xs:documentation> The plain code symbol defined by the code system. For example, "784.0" is the code symbol of the ICD-9 code "784.0" for headache. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="codeSystem" type="uid" use="prohibited"/> <xs:attribute name="codeSystemName" type="st" use="prohibited"/> <xs:attribute name="codeSystemVersion" type="st" use="prohibited"/> <xs:attribute name="displayName" type="st" use="prohibited"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType name="CO"> <xs:annotation> <xs:documentation> Coded data, where the domain from which the codeset comes is ordered. The Coded Ordinal data type adds semantics related to ordering so that models that make use of such domains may introduce model elements that involve statements about the order of the terms in a domain. </xs:documentation> </xs:annotation> <xs:complexContent> <xs:extension base="CV"/> </xs:complexContent> </xs:complexType> <xs:complexType name="CR"> <xs:annotation> <xs:documentation> A concept qualifier code with optionally named role. Both qualifier role and value codes must be defined by the coding system. For example, if SNOMED RT defines a concept "leg", a role relation "has-laterality", and another concept "left", the concept role relation allows to add the qualifier "has-laterality: left" to a primary code "leg" to construct the meaning "left leg". </xs:documentation> <xs:appinfo> <sch:pattern name="validate CR"> <sch:rule abstract="true" id="rule-CR"> <sch:report test="(value or @nullFlavor) and not(@nullFlavor and node())"> <p xmlns:gsd="http://aurora.regenstrief.org/GenericXMLSchema" xmlns:xlink="http://www.w3.org/TR/WD-xlink"> A value component is required or else the code role is NULL. </p> </sch:report> </sch:rule> </sch:pattern> </xs:appinfo> </xs:annotation> <xs:complexContent> <xs:extension base="ANY"> <xs:sequence> <xs:element name="name" type="CV" minOccurs="0" maxOccurs="1"> <xs:annotation> <xs:documentation> Specifies the manner in which the concept role value contributes to the meaning of a code phrase. For example, if SNOMED RT defines a concept "leg", a role relation "has-laterality", and another concept "left", the concept role relation allows to add the qualifier "has-laterality: left" to a primary code "leg" to construct the meaning "left leg". In this example "has-laterality" is . </xs:documentation> </xs:annotation> </xs:element> <xs:element name="value" type="CD" minOccurs="0" maxOccurs="1"> <xs:annotation> <xs:documentation> The concept that modifies the primary code of a code phrase through the role relation. For example, if SNOMED RT defines a concept "leg", a role relation "has-laterality", and another concept "left", the concept role relation allows adding the qualifier "has-laterality: left" to a primary code "leg" to construct the meaning "left leg". In this example "left" is . </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> <xs:attribute name="inverted" type="bn" use="optional" default="false"> <xs:annotation> <xs:documentation> Indicates if the sense of the role name is inverted. This can be used in cases where the underlying code system defines inversion but does not provide reciprocal pairs of role names. By default, inverted is false. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="SC" mixed="true"> <xs:annotation> <xs:documentation> An ST that optionally may have a code attached. The text must always be present if a code is present. The code is often a local code. </xs:documentation> </xs:annotation> <xs:complexContent> <xs:extension base="ST"> <xs:attribute name="code" type="cs" use="optional"> <xs:annotation> <xs:documentation> The plain code symbol defined by the code system. For example, "784.0" is the code symbol of the ICD-9 code "784.0" for headache. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="codeSystem" type="uid" use="optional"> <xs:annotation> <xs:documentation> Specifies the code system that defines the code. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="codeSystemName" type="st" use="optional"> <xs:annotation> <xs:documentation> A common name of the coding system. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="codeSystemVersion" type="st" use="optional"> <xs:annotation> <xs:documentation> If applicable, a version descriptor defined specifically for the given code system. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="displayName" type="st" use="optional"> <xs:annotation> <xs:documentation> A name or title for the code, under which the sending system shows the code value to its users. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:simpleType name="uid"> <xs:annotation> <xs:documentation> A unique identifier string is a character string which identifies an object in a globally unique and timeless manner. The allowable formats and values and procedures of this data type are strictly controlled by HL7. At this time, user-assigned identifiers may be certain character representations of ISO Object Identifiers () and DCE Universally Unique Identifiers (). HL7 also reserves the right to assign other forms of UIDs (, such as mnemonic identifiers for code systems. </xs:documentation> </xs:annotation> <xs:union memberTypes="oid uuid ruid"/> </xs:simpleType> <xs:simpleType name="oid"> <xs:annotation> <xs:documentation/> </xs:annotation> <xs:restriction base="xs:string"> <xs:pattern value="[0-2](\.(0|[1-9][0-9]*))*"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="uuid"> <xs:annotation> <xs:documentation/> </xs:annotation> <xs:restriction base="xs:string"> <xs:pattern value="[0-9a-zA-Z]{8}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{12}"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="ruid"> <xs:annotation> <xs:documentation/> </xs:annotation> <xs:restriction base="xs:string"> <xs:pattern value="[A-Za-z][A-Za-z0-9\-]*"/> </xs:restriction> </xs:simpleType> <xs:complexType name="II"> <xs:annotation> <xs:documentation> An identifier that uniquely identifies a thing or object. Examples are object identifier for HL7 RIM objects, medical record number, order id, service catalog item id, Vehicle Identification Number (VIN), etc. Instance identifiers are defined based on ISO object identifiers. </xs:documentation> <xs:appinfo> <sch:pattern name="validate II"> <sch:rule abstract="true" id="rule-II"> <sch:report test="(@root or @nullFlavor) and not(@root and @nullFlavor)"> A root component is required or else the II value is NULL. </sch:report> </sch:rule> </sch:pattern> </xs:appinfo> </xs:annotation> <xs:complexContent> <xs:extension base="ANY"> <xs:attribute name="root" type="uid" use="optional"> <xs:annotation> <xs:documentation> A unique identifier that guarantees the global uniqueness of the instance identifier. The root alone may be the entire instance identifier. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="extension" type="st" use="optional"> <xs:annotation> <xs:documentation> A character string as a unique identifier within the scope of the identifier root. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="assigningAuthorityName" type="st" use="optional"> <xs:annotation> <xs:documentation> A human readable name or mnemonic for the assigning authority. This name may be provided solely for the convenience of unaided humans interpreting an value and can have no computational meaning. Note: no automated processing must depend on the assigning authority name to be present in any form. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="displayable" type="bl" use="optional"> <xs:annotation> <xs:documentation> Specifies if the identifier is intended for human display and data entry (displayable = true) as opposed to pure machine interoperation (displayable = false). </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:simpleType name="url"> <xs:annotation> <xs:documentation> A telecommunications address specified according to Internet standard RFC 1738 [http://www.ietf.org/rfc/rfc1738.txt]. The URL specifies the protocol and the contact point defined by that protocol for the resource. Notable uses of the telecommunication address data type are for telephone and telefax numbers, e-mail addresses, Hypertext references, FTP references, etc. </xs:documentation> </xs:annotation> <xs:restriction base="xs:anyURI"/> </xs:simpleType> <xs:complexType name="URL" abstract="true"> <xs:annotation> <xs:documentation> A telecommunications address specified according to Internet standard RFC 1738 [http://www.ietf.org/rfc/rfc1738.txt]. The URL specifies the protocol and the contact point defined by that protocol for the resource. Notable uses of the telecommunication address data type are for telephone and telefax numbers, e-mail addresses, Hypertext references, FTP references, etc. </xs:documentation> <xs:appinfo> <sch:pattern name="validate URL"> <sch:rule abstract="true" id="rule-URL"> <sch:report test="(@nullFlavor or @value) and not(@nullFlavor and @value)"/> </sch:rule> </sch:pattern> </xs:appinfo> </xs:annotation> <xs:complexContent> <xs:extension base="ANY"> <xs:attribute name="value" type="url" use="optional"/> </xs:extension> </xs:complexContent> </xs:complexType> <xs:simpleType name="ts"> <xs:annotation> <xs:documentation> A quantity specifying a point on the axis of natural time. A point in time is most often represented as a calendar expression. </xs:documentation> </xs:annotation> <xs:restriction base="xs:string"> <xs:pattern value="[0-9]{1,8}|([0-9]{9,14}|[0-9]{14,14}\.[0-9]+)([+\-][0-9]{1,4})?"/> </xs:restriction> </xs:simpleType> <xs:complexType name="TS"> <xs:annotation> <xs:documentation> A quantity specifying a point on the axis of natural time. A point in time is most often represented as a calendar expression. </xs:documentation> <xs:appinfo> <diff>PQ</diff> </xs:appinfo> </xs:annotation> <xs:complexContent> <xs:extension base="QTY"> <xs:attribute name="value" use="optional" type="ts"/> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="TEL"> <xs:annotation> <xs:documentation> A telephone number (voice or fax), e-mail address, or other locator for a resource (information or service) mediated by telecommunication equipment. The address is specified as a URL qualified by time specification and use codes that help in deciding which address to use for a given time and purpose. </xs:documentation> </xs:annotation> <xs:complexContent> <xs:extension base="URL"> <xs:sequence> <xs:element name="useablePeriod" minOccurs="0" maxOccurs="unbounded" type="SXCM_TS"> <xs:annotation> <xs:documentation> Specifies the periods of time during which the telecommunication address can be used. For a telephone number, this can indicate the time of day in which the party can be reached on that telephone. For a web address, it may specify a time range in which the web content is promised to be available under the given address. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> <xs:attribute name="use" use="optional" type="set_TelecommunicationAddressUse"> <xs:annotation> <xs:documentation> One or more codes advising a system or user which telecommunication address in a set of like addresses to select for a given telecommunication need. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="ADXP" mixed="true"> <xs:annotation> <xs:documentation> A character string that may have a type-tag signifying its role in the address. Typical parts that exist in about every address are street, house number, or post box, postal code, city, country but other roles may be defined regionally, nationally, or on an enterprise level (e.g. in military addresses). Addresses are usually broken up into lines, which are indicated by special line-breaking delimiter elements (e.g., DEL). </xs:documentation> </xs:annotation> <xs:complexContent> <xs:extension base="ST"> <xs:attribute name="partType" type="AddressPartType"> <xs:annotation> <xs:documentation> Specifies whether an address part names the street, city, country, postal code, post box, etc. If the type is NULL the address part is unclassified and would simply appear on an address label as is. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.delimiter"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="DEL"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.country"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="CNT"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.state"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="STA"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.county"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="CPA"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.city"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="CTY"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.postalCode"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="ZIP"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.streetAddressLine"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="SAL"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.houseNumber"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="BNR"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.houseNumberNumeric"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="BNN"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.direction"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="DIR"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.streetName"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="STR"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.streetNameBase"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="STB"/> </xs:restriction> </xs:complexContent> </xs:complexType> <!-- jaxb implementors note: the jaxb code generator (v1.0.?) will fail to append "Type" to streetNameType so that there will be duplicate definitions in the java source for streetNameType. You will have to fix this manually. --> <xs:complexType mixed="true" name="adxp.streetNameType"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="STTYP"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.additionalLocator"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="ADL"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.unitID"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="UNID"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.unitType"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="UNIT"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.careOf"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="CAR"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.censusTract"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="CEN"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.deliveryAddressLine"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="DAL"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.deliveryInstallationType"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="DINST"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.deliveryInstallationArea"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="DINSTA"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.deliveryInstallationQualifier"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="DINSTQ"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.deliveryMode"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="DMOD"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.deliveryModeIdentifier"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="DMODID"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.buildingNumberSuffix"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="BNS"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.postBox"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="POB"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType mixed="true" name="adxp.precinct"> <xs:complexContent> <xs:restriction base="ADXP"> <xs:attribute name="partType" type="AddressPartType" fixed="PRE"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType name="AD" mixed="true"> <xs:annotation> <xs:documentation> Mailing and home or office addresses. A sequence of address parts, such as street or post office Box, city, postal code, country, etc. </xs:documentation> </xs:annotation> <xs:complexContent> <xs:extension base="ANY"> <xs:sequence> <xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:element name="delimiter" type="adxp.delimiter"/> <xs:element name="country" type="adxp.country"/> <xs:element name="state" type="adxp.state"/> <xs:element name="county" type="adxp.county"/> <xs:element name="city" type="adxp.city"/> <xs:element name="postalCode" type="adxp.postalCode"/> <xs:element name="streetAddressLine" type="adxp.streetAddressLine"/> <xs:element name="houseNumber" type="adxp.houseNumber"/> <xs:element name="houseNumberNumeric" type="adxp.houseNumberNumeric"/> <xs:element name="direction" type="adxp.direction"/> <xs:element name="streetName" type="adxp.streetName"/> <xs:element name="streetNameBase" type="adxp.streetNameBase"/> <xs:element name="streetNameType" type="adxp.streetNameType"/> <xs:element name="additionalLocator" type="adxp.additionalLocator"/> <xs:element name="unitID" type="adxp.unitID"/> <xs:element name="unitType" type="adxp.unitType"/> <xs:element name="careOf" type="adxp.careOf"/> <xs:element name="censusTract" type="adxp.censusTract"/> <xs:element name="deliveryAddressLine" type="adxp.deliveryAddressLine"/> <xs:element name="deliveryInstallationType" type="adxp.deliveryInstallationType"/> <xs:element name="deliveryInstallationArea" type="adxp.deliveryInstallationArea"/> <xs:element name="deliveryInstallationQualifier" type="adxp.deliveryInstallationQualifier"/> <xs:element name="deliveryMode" type="adxp.deliveryMode"/> <xs:element name="deliveryModeIdentifier" type="adxp.deliveryModeIdentifier"/> <xs:element name="buildingNumberSuffix" type="adxp.buildingNumberSuffix"/> <xs:element name="postBox" type="adxp.postBox"/> <xs:element name="precinct" type="adxp.precinct"/> </xs:choice> <xs:element name="useablePeriod" minOccurs="0" maxOccurs="unbounded" type="SXCM_TS"> <xs:annotation> <xs:documentation> A GTS specifying the periods of time during which the address can be used. This is used to specify different addresses for different times of the year or to refer to historical addresses. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> <xs:attribute name="use" use="optional" type="set_PostalAddressUse"> <xs:annotation> <xs:documentation> A set of codes advising a system or user which address in a set of like addresses to select for a given purpose. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="isNotOrdered" type="bl" use="optional"> <xs:annotation> <xs:documentation> A boolean value specifying whether the order of the address parts is known or not. While the address parts are always a Sequence, the order in which they are presented may or may not be known. Where this matters, can be used to convey this information. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="ENXP" mixed="true"> <xs:annotation> <xs:documentation> A character string token representing a part of a name. May have a type code signifying the role of the part in the whole entity name, and a qualifier code for more detail about the name part type. Typical name parts for person names are given names, and family names, titles, etc. </xs:documentation> </xs:annotation> <xs:complexContent> <xs:extension base="ST"> <xs:attribute name="partType" type="EntityNamePartType"> <xs:annotation> <xs:documentation> Indicates whether the name part is a given name, family name, prefix, suffix, etc. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="qualifier" use="optional" type="set_EntityNamePartQualifier"> <xs:annotation> <xs:documentation> is a set of codes each of which specifies a certain subcategory of the name part in addition to the main name part type. For example, a given name may be flagged as a nickname, a family name may be a pseudonym or a name of public records. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="en.delimiter" mixed="true"> <xs:complexContent> <xs:restriction base="ENXP"> <xs:attribute name="partType" type="EntityNamePartType" fixed="DEL"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType name="en.family" mixed="true"> <xs:complexContent> <xs:restriction base="ENXP"> <xs:attribute name="partType" type="EntityNamePartType" fixed="FAM"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType name="en.given" mixed="true"> <xs:complexContent> <xs:restriction base="ENXP"> <xs:attribute name="partType" type="EntityNamePartType" fixed="GIV"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType name="en.prefix" mixed="true"> <xs:complexContent> <xs:restriction base="ENXP"> <xs:attribute name="partType" type="EntityNamePartType" fixed="PFX"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType name="en.suffix" mixed="true"> <xs:complexContent> <xs:restriction base="ENXP"> <xs:attribute name="partType" type="EntityNamePartType" fixed="SFX"/> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType name="EN" mixed="true"> <xs:annotation> <xs:documentation> A name for a person, organization, place or thing. A sequence of name parts, such as given name or family name, prefix, suffix, etc. Examples for entity name values are "Jim Bob Walton, Jr.", "Health Level Seven, Inc.", "Lake Tahoe", etc. An entity name may be as simple as a character string or may consist of several entity name parts, such as, "Jim", "Bob", "Walton", and "Jr.", "Health Level Seven" and "Inc.", "Lake" and "Tahoe". </xs:documentation> </xs:annotation> <xs:complexContent> <xs:extension base="ANY"> <xs:sequence> <xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:element name="delimiter" type="en.delimiter"/> <xs:element name="family" type="en.family"/> <xs:element name="given" type="en.given"/> <xs:element name="prefix" type="en.prefix"/> <xs:element name="suffix" type="en.suffix"/> </xs:choice> <xs:element name="validTime" minOccurs="0" maxOccurs="1" type="IVL_TS"> <xs:annotation> <xs:documentation> An interval of time specifying the time during which the name is or was used for the entity. This accomodates the fact that people change names for people, places and things. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> <xs:attribute name="use" use="optional" type="set_EntityNameUse"> <xs:annotation> <xs:documentation> A set of codes advising a system or user which name in a set of like names to select for a given purpose. A name without specific use code might be a default name useful for any purpose, but a name with a specific use code would be preferred for that respective purpose. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="PN" mixed="true"> <xs:annotation> <xs:documentation> A name for a person. A sequence of name parts, such as given name or family name, prefix, suffix, etc. PN differs from EN because the qualifier type cannot include LS (Legal Status). </xs:documentation> </xs:annotation> <xs:complexContent> <xs:extension base="EN"/> </xs:complexContent> </xs:complexType> <xs:complexType name="ON" mixed="true"> <xs:annotation> <xs:documentation> A name for an organization. A sequence of name parts. </xs:documentation> </xs:annotation> <xs:complexContent> <xs:restriction base="EN"> <xs:sequence> <xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:element name="delimiter" type="en.delimiter"/> <xs:element name="prefix" type="en.prefix"/> <xs:element name="suffix" type="en.suffix"/> </xs:choice> <xs:element name="validTime" minOccurs="0" maxOccurs="1" type="IVL_TS"> <xs:annotation> <xs:documentation> An interval of time specifying the time during which the name is or was used for the entity. This accomodates the fact that people change names for people, places and things. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> <xs:attribute name="use" use="optional" type="set_EntityNameUse"> <xs:annotation> <xs:documentation> A set of codes advising a system or user which name in a set of like names to select for a given purpose. A name without specific use code might be a default name useful for any purpose, but a name with a specific use code would be preferred for that respective purpose. </xs:documentation> </xs:annotation> </xs:attribute> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType name="TN" mixed="true"> <xs:annotation> <xs:documentation> A restriction of entity name that is effectively a simple string used for a simple name for things and places. </xs:documentation> </xs:annotation> <xs:complexContent> <xs:restriction base="EN"> <xs:sequence> <xs:element name="validTime" minOccurs="0" maxOccurs="1" type="IVL_TS"> <xs:annotation> <xs:documentation> An interval of time specifying the time during which the name is or was used for the entity. This accomodates the fact that people change names for people, places and things. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> </xs:restriction> </xs:complexContent> </xs:complexType> <xs:complexType name="QTY" abstract="true"> <xs:annotation> <xs:documentation> is an abstract generalization for all data types (1) whose value set has an order relation (less-or-equal) and (2) where difference is defined in all of the data type's totally ordered value subsets. The quantity type abstraction is needed in defining certain other types, such as the interval and the probability distribution. </xs:documentation> <xs:appinfo> <diff>QTY</diff> </xs:appinfo> </xs:annotation> <xs:complexContent> <xs:extension base="ANY"/> </xs:complexContent> </xs:complexType> <xs:simpleType name="int"> <xs:annotation> <xs:documentation> Integer numbers (-1,0,1,2, 100, 3398129, etc.) are precise numbers that are results of counting and enumerating. Integer numbers are discrete, the set of integers is infinite but countable. No arbitrary limit is imposed on the range of integer numbers. Two NULL flavors are defined for the positive and negative infinity. </xs:documentation> </xs:annotation> <xs:restriction base="xs:integer"/> </xs:simpleType> <xs:complexType name="INT"> <xs:annotation> <xs:documentation> Integer numbers (-1,0,1,2, 100, 3398129, etc.) are precise numbers that are results of counting and enumerating. Integer numbers are discrete, the set of integers is infinite but countable. No arbitrary limit is imposed on the range of integer numbers. Two NULL flavors are defined for the positive and negative infinity. </xs:documentation> <xs:appinfo> <diff>INT</diff> <sch:pattern name="validate INT"> <sch:rule abstract="true" id="rule-INT"> <sch:report test="(@value or @nullFlavor) and not(@value and @nullFlavor)"/> </sch:rule> </sch:pattern> </xs:appinfo> </xs:annotation> <xs:complexContent> <xs:extension base="QTY"> <xs:attribute name="value" use="optional" type="int"/> </xs:extension> </xs:complexContent> </xs:complexType> <xs:simpleType name="real"> <xs:annotation> <xs:documentation> Fractional numbers. Typically used whenever quantities are measured, estimated, or computed from other real numbers. The typical representation is decimal, where the number of significant decimal digits is known as the precision. Real numbers are needed beyond integers whenever quantities of the real world are measured, estimated, or computed from other real numbers. The term "Real number" in this specification is used to mean that fractional values are covered without necessarily implying the full set of the mathematical real numbers. </xs:documentation> </xs:annotation> <xs:union memberTypes="xs:decimal xs:double"/> </xs:simpleType> <xs:complexType name="REAL"> <xs:annotation> <xs:documentation> Fractional numbers. Typically used whenever quantities are measured, estimated, or computed from other real numbers. The typical representation is decimal, where the number of significant decimal digits is known as the precision. Real numbers are needed beyond integers whenever quantities of the real world are measured, estimated, or computed from other real numbers. The term "Real number" in this specification is used to mean that fractional values are covered without necessarily implying the full set of the mathematical real numbers. </xs:documentation> <xs:appinfo> <diff>REAL</diff> <sch:pattern name="validate REAL"> <sch:rule abstract="true" id="rule-REAL"> <sch:report test="(@nullFlavor or @value) and not(@nullFlavor and @value)"/> </sch:rule> </sch:pattern> </xs:appinfo> </xs:annotation> <xs:complexContent> <xs:extension base="QTY"> <xs:attribute name="value" use="optional" type="real"/> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="PQR"> <xs:annotation> <xs:documentation> A representation of a physical quantity in a unit from any code system. Used to show alternative representation for a physical quantity. </xs:documentation> </xs:annotation> <xs:complexContent> <xs:extension base="CV"> <xs:attribute name="value" type="real" use="optional"> <xs:annotation> <xs:documentation> The magnitude of the measurement value in terms of the unit specified in the code. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="PQ"> <xs:annotation> <xs:documentation> A dimensioned quantity expressing the result of a measurement act. </xs:documentation> <xs:appinfo> <diff>PQ</diff> </xs:appinfo> </xs:annotation> <xs:complexContent> <xs:extension base="QTY"> <xs:sequence> <xs:element name="translation" type="PQR" minOccurs="0" maxOccurs="unbounded"> <xs:annotation> <xs:documentation> An alternative representation of the same physical quantity expressed in a different unit, of a different unit code system and possibly with a different value. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> <xs:attribute name="value" type="real" use="optional"> <xs:annotation> <xs:documentation> The magnitude of the quantity measured in terms of the unit. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="unit" type="cs" use="optional" default="1"> <xs:annotation> <xs:documentation> The unit of measure specified in the Unified Code for Units of Measure (UCUM) [http://aurora.rg.iupui.edu/UCUM]. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="MO"> <xs:annotation> <xs:documentation> A monetary amount is a quantity expressing the amount of money in some currency. Currencies are the units in which monetary amounts are denominated in different economic regions. While the monetary amount is a single kind of quantity (money) the exchange rates between the different units are variable. This is the principle difference between physical quantity and monetary amounts, and the reason why currency units are not physical units. </xs:documentation> <xs:appinfo> <diff>MO</diff> <sch:pattern name="validate MO"> <sch:rule abstract="true" id="rule-MO"> <sch:report test="not(@nullFlavor and (@value or @currency))"/> </sch:rule> </sch:pattern> </xs:appinfo> </xs:annotation> <xs:complexContent> <xs:extension base="QTY"> <xs:attribute name="value" type="real" use="optional"> <xs:annotation> <xs:documentation> The magnitude of the monetary amount in terms of the currency unit. </xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="currency" type="cs" use="optional"> <xs:annotation> <xs:documentation> The currency unit as defined in ISO 4217. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="RTO"> <xs:annotation> <xs:documentation> A quantity constructed as the quotient of a numerator quantity divided by a denominator quantity. Common factors in the numerator and denominator are not automatically cancelled out. supports titers (e.g., "1:128") and other quantities produced by laboratories that truly represent ratios. Ratios are not simply "structured numerics", particularly blood pressure measurements (e.g. "120/60") are not ratios. In many cases REAL should be used instead of . </xs:documentation> </xs:annotation> <xs:complexContent> <xs:extension base="RTO_QTY_QTY"/> </xs:complexContent> </xs:complexType> <xs:simpleType name="probability"> <xs:annotation> <xs:documentation> The probability assigned to the value, a decimal number between 0 (very uncertain) and 1 (certain). </xs:documentation> </xs:annotation> <xs:restriction base="xs:double"> <xs:minInclusive value="0.0"/> <xs:maxInclusive value="1.0"/> </xs:restriction> </xs:simpleType> <xs:complexType name="EIVL.event"> <xs:annotation> <xs:documentation> A code for a common (periodical) activity of daily living based on which the event related periodic interval is specified. </xs:documentation> </xs:annotation> <xs:complexContent> <xs:restriction base="CE"> <xs:attribute name="code" type="TimingEvent" use="optional"/> <xs:attribute name="codeSystem" type="uid" fixed="2.16.840.1.113883.5.139"/> <xs:attribute name="codeSystemName" type="st" fixed="TimingEvent"/> </xs:restriction> </xs:complexContent> </xs:complexType> <!-- Instantiated templates --> <xs:complexType name="SXCM_TS"> <xs:complexContent> <xs:extension base="TS"> <xs:attribute name="operator" type="SetOperator" use="optional" default="I"> <xs:annotation> <xs:documentation> A code specifying whether the set component is included (union) or excluded (set-difference) from the set, or other set operations with the current set component and the set as constructed from the representation stream up to the current point. </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:simpleType name="set_TelecommunicationAddressUse"> <xs:list itemType="TelecommunicationAddressUse"/> </xs:simpleType> <xs:simpleType name="set_PostalAddressUse"> <xs:list itemType="PostalAddressUse"/> </xs:simpleType> <xs:simpleType name="set_EntityNamePartQualifier"> <xs:list itemType="EntityNamePartQualifier"/> </xs:simpleType> <xs:complexType name="IVL_TS"> <xs:complexContent> <xs:extension base="SXCM_TS"> <xs:choice minOccurs="0"> <xs:sequence> <xs:element name="low" minOccurs="1" maxOccurs="1" type="IVXB_TS"> <xs:annotation> <xs:documentation> The low limit of the interval. </xs:documentation> </xs:annotation> </xs:element> <xs:choice minOccurs="0"> <xs:element name="width" minOccurs="0" maxOccurs="1" type="PQ"> <xs:annotation> <xs:documentation> The difference between high and low boundary. The purpose of distinguishing a width property is to handle all cases of incomplete information symmetrically. In any interval representation only two of the three properties high, low, and width need to be stated and the third can be derived. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="high" minOccurs="0" maxOccurs="1" type="IVXB_TS"> <xs:annotation> <xs:documentation> The high limit of the interval. </xs:documentation> </xs:annotation> </xs:element> </xs:choice> </xs:sequence> <xs:element name="high" minOccurs="1" maxOccurs="1" type="IVXB_TS"> <xs:annotation> <xs:documentation/> </xs:annotation> </xs:element> <xs:sequence> <xs:element name="width" minOccurs="1" maxOccurs="1" type="PQ"> <xs:annotation> <xs:documentation> The difference between high and low boundary. The purpose of distinguishing a width property is to handle all cases of incomplete information symmetrically. In any interval representation only two of the three properties high, low, and width need to be stated and the third can be derived. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="high" minOccurs="0" maxOccurs="1" type="IVXB_TS"> <xs:annotation> <xs:documentation> The high limit of the interval. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> <xs:sequence> <xs:element name="center" minOccurs="1" maxOccurs="1" type="TS"> <xs:annotation> <xs:documentation> The arithmetic mean of the interval (low plus high divided by 2). The purpose of distinguishing the center as a semantic property is for conversions of intervals from and to point values. </xs:documentation> </xs:annotation> </xs:element> <xs:element name="width" minOccurs="0" maxOccurs="1" type="PQ"> <xs:annotation> <xs:documentation> The difference between high and low boundary. The purpose of distinguishing a width property is to handle all cases of incomplete information symmetrically. In any interval representation only two of the three properties high, low, and width need to be stated and the third can be derived. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> </xs:choice> </xs:extension> </xs:complexContent> </xs:complexType> <xs:complexType name="IVXB_TS"> <xs:complexContent> <xs:extension base="TS"> <xs:attribute name="inclusive" type="bl" use="optional" default="true"> <xs:annotation> <xs:documentation> Specifies whether the limit is included in the interval (interval is closed) or excluded from the interval (interval is open). </xs:documentation> </xs:annotation> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> <xs:simpleType name="set_EntityNameUse"> <xs:list itemType="EntityNameUse"/> </xs:simpleType> <xs:complexType name="RTO_QTY_QTY"> <xs:annotation> <xs:appinfo> <diff>RTO_QTY_QTY</diff> </xs:appinfo> </xs:annotation> <xs:complexContent> <xs:extension base="QTY"> <xs:sequence> <xs:element name="numerator" type="QTY"> <xs:annotation> <xs:documentation> The quantity that is being divided in the ratio. The default is the integer number 1 (one). </xs:documentation> </xs:annotation> </xs:element> <xs:element name="denominator" type="QTY"> <xs:annotation> <xs:documentation> The quantity that devides the numerator in the ratio. The default is the integer number 1 (one). The denominator must not be zero. </xs:documentation> </xs:annotation> </xs:element> </xs:sequence> </xs:extension> </xs:complexContent> </xs:complexType> </xs:schema>
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:annotation xmlns="urn:hl7-org:v3"> <xs:documentation>Source Information Rendered by: RoseTree 4.2.7 Rendered on: 2008-03-22T24:01:25 This model was rendered into XML using software provided to HL7 by Beeler Consulting LLC. Transform: $RCSfile: infrastructureRoot.xsd,v $ $Revision: 1.1.2.1 $ $Date: 2010/09/15 16:12:11 $ Generated using schema builder version: 3.1.6 RIM MIF Infrastructure Root to Schema Transform: $Id: infrastructureRoot.xsd,v 1.1.2.1 2010/09/15 16:12:11 cchin Exp $ Static MIF to Schema Transform: $Id: infrastructureRoot.xsd,v 1.1.2.1 2010/09/15 16:12:11 cchin Exp $ Package Id Conversion: $Id: infrastructureRoot.xsd,v 1.1.2.1 2010/09/15 16:12:11 cchin Exp $</xs:documentation> </xs:annotation> <xs:include schemaLocation="../coreschemas/voc.xsd"/> <xs:include schemaLocation="../coreschemas/datatypes.xsd"/> <xs:group name="InfrastructureRootElements"> <xs:sequence> <xs:element xmlns="urn:hl7-org:v3" name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded"/> <xs:element xmlns="urn:hl7-org:v3" name="typeId" type="II" minOccurs="0" maxOccurs="1"/> <xs:element xmlns="urn:hl7-org:v3" name="templateId" type="II" minOccurs="0" maxOccurs="unbounded"/> </xs:sequence> </xs:group> <xs:attributeGroup name="InfrastructureRootAttributes"/> </xs:schema>
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 Information Rendered by: RoseTree 4.2.7 Rendered on: This document was rendered into XML using software provided to HL7 by Beeler Consulting LLC. PubDB to MIF Transform: $RCSfile: PRPA_IN201305UV02.xsd,v $ $Revision: 1.1.2.1 $ $Date: 2010/09/15 16:12:09 $ Fix names transform: $Id: PRPA_IN201305UV02.xsd,v 1.1.2.1 2010/09/15 16:12:09 cchin Exp $ HTML to MIF Markup transform: $Id: PRPA_IN201305UV02.xsd,v 1.1.2.1 2010/09/15 16:12:09 cchin Exp $ Base transform: $Id: PRPA_IN201305UV02.xsd,v 1.1.2.1 2010/09/15 16:12:09 cchin Exp $ Package Id Conversion: $Id: PRPA_IN201305UV02.xsd,v 1.1.2.1 2010/09/15 16:12:09 cchin Exp $ Generated using schema builder version: 3.1.6 and DynamicMifToXSD.xsl version: 1.4 Dynamic MIF to Schema Transform: $Id: PRPA_IN201305UV02.xsd,v 1.1.2.1 2010/09/15 16:12:09 cchin Exp $ Static MIF to Schema Transform: $Id: PRPA_IN201305UV02.xsd,v 1.1.2.1 2010/09/15 16:12:09 cchin Exp $ Package Id Conversion: $Id: PRPA_IN201305UV02.xsd,v 1.1.2.1 2010/09/15 16:12:09 cchin Exp $</xs:documentation> </xs:annotation> <xs:include schemaLocation="../coreschemas/infrastructureRoot.xsd"/> <xs:include schemaLocation="MCCI_MT000100UV01.xsd"/> <xs:include schemaLocation="QUQI_MT021001UV01.xsd"/> <xs:include schemaLocation="PRPA_MT201306UV02.xsd"/> <xs:element name="PRPA_IN201305UV02"> <xs:complexType> <xs:complexContent> <xs:extension base="PRPA_IN201305UV02.MCCI_MT000100UV01.Message"> <xs:attribute name="ITSVersion" type="xs:string" use="required" fixed="XML_1.0"/> </xs:extension> </xs:complexContent> </xs:complexType> </xs:element> <xs:complexType name="PRPA_IN201305UV02.MCCI_MT000100UV01.Message"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="id" type="II" minOccurs="1" maxOccurs="1"/> <xs:element name="creationTime" type="TS" minOccurs="1" maxOccurs="1"/> <xs:element name="securityText" type="ST" minOccurs="0" maxOccurs="1"/> <xs:element name="versionCode" type="CS" minOccurs="0" maxOccurs="1"/> <xs:element name="interactionId" type="II" minOccurs="1" maxOccurs="1"/> <xs:element name="profileId" type="II" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="processingCode" type="CS" minOccurs="1" maxOccurs="1"/> <xs:element name="processingModeCode" type="CS" minOccurs="1" maxOccurs="1"/> <xs:element name="acceptAckCode" type="CS" minOccurs="1" maxOccurs="1"/> <xs:element name="sequenceNumber" type="INT" minOccurs="0" maxOccurs="1"/> <xs:element name="attachmentText" type="ED" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="receiver" type="MCCI_MT000100UV01.Receiver" minOccurs="1" maxOccurs="unbounded"/> <xs:element name="respondTo" type="MCCI_MT000100UV01.RespondTo" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="sender" type="MCCI_MT000100UV01.Sender" minOccurs="1" maxOccurs="1"/> <xs:element name="attentionLine" type="MCCI_MT000100UV01.AttentionLine" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="controlActProcess" type="PRPA_IN201305UV02.QUQI_MT021001UV01.ControlActProcess" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_IN201305UV02.QUQI_MT021001UV01.ControlActProcess"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="code" type="CD" minOccurs="0" maxOccurs="1"/> <xs:element name="text" type="ED" minOccurs="0" maxOccurs="1"/> <xs:element name="effectiveTime" type="IVL_TS" minOccurs="0" maxOccurs="1"/> <xs:element name="priorityCode" type="CE" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="reasonCode" type="CE" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="languageCode" type="CE" minOccurs="0" maxOccurs="1"/> <xs:element name="overseer" type="QUQI_MT021001UV01.Overseer" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="authorOrPerformer" type="QUQI_MT021001UV01.AuthorOrPerformer" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="dataEnterer" type="QUQI_MT021001UV01.DataEnterer" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="informationRecipient" type="QUQI_MT021001UV01.InformationRecipient" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="reasonOf" type="QUQI_MT021001UV01.Reason" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="queryByParameter" type="PRPA_MT201306UV02.QueryByParameter" nillable="true" minOccurs="0" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="classCode" type="ActClassControlAct" use="required"/> <xs:attribute name="moodCode" type="x_ActMoodIntentEvent" use="required"/> </xs:complexType> </xs:schema>
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 Information Rendered by: RoseTree 4.2.7 Rendered on: This document was rendered into XML using software provided to HL7 by Beeler Consulting LLC. PubDB to MIF Transform: $RCSfile: PRPA_IN201302UV02.xsd,v $ $Revision: 1.1.2.1 $ $Date: 2010/09/15 16:12:07 $ Fix names transform: $Id: PRPA_IN201302UV02.xsd,v 1.1.2.1 2010/09/15 16:12:07 cchin Exp $ HTML to MIF Markup transform: $Id: PRPA_IN201302UV02.xsd,v 1.1.2.1 2010/09/15 16:12:07 cchin Exp $ Base transform: $Id: PRPA_IN201302UV02.xsd,v 1.1.2.1 2010/09/15 16:12:07 cchin Exp $ Package Id Conversion: $Id: PRPA_IN201302UV02.xsd,v 1.1.2.1 2010/09/15 16:12:07 cchin Exp $ Generated using schema builder version: 3.1.6 and DynamicMifToXSD.xsl version: 1.4 Dynamic MIF to Schema Transform: $Id: PRPA_IN201302UV02.xsd,v 1.1.2.1 2010/09/15 16:12:07 cchin Exp $ Static MIF to Schema Transform: $Id: PRPA_IN201302UV02.xsd,v 1.1.2.1 2010/09/15 16:12:07 cchin Exp $ Package Id Conversion: $Id: PRPA_IN201302UV02.xsd,v 1.1.2.1 2010/09/15 16:12:07 cchin Exp $</xs:documentation> </xs:annotation> <xs:include schemaLocation="../coreschemas/infrastructureRoot.xsd"/> <xs:include schemaLocation="MCCI_MT000100UV01.xsd"/> <xs:include schemaLocation="MFMI_MT700701UV01.xsd"/> <xs:include schemaLocation="PRPA_MT201302UV02.xsd"/> <xs:element name="PRPA_IN201302UV02"> <xs:complexType> <xs:complexContent> <xs:extension base="PRPA_IN201302UV02.MCCI_MT000100UV01.Message"> <xs:attribute name="ITSVersion" type="xs:string" use="required" fixed="XML_1.0"/> </xs:extension> </xs:complexContent> </xs:complexType> </xs:element> <xs:complexType name="PRPA_IN201302UV02.MCCI_MT000100UV01.Message"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="id" type="II" minOccurs="1" maxOccurs="1"/> <xs:element name="creationTime" type="TS" minOccurs="1" maxOccurs="1"/> <xs:element name="securityText" type="ST" minOccurs="0" maxOccurs="1"/> <xs:element name="versionCode" type="CS" minOccurs="0" maxOccurs="1"/> <xs:element name="interactionId" type="II" minOccurs="1" maxOccurs="1"/> <xs:element name="profileId" type="II" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="processingCode" type="CS" minOccurs="1" maxOccurs="1"/> <xs:element name="processingModeCode" type="CS" minOccurs="1" maxOccurs="1"/> <xs:element name="acceptAckCode" type="CS" minOccurs="1" maxOccurs="1"/> <xs:element name="sequenceNumber" type="INT" minOccurs="0" maxOccurs="1"/> <xs:element name="attachmentText" type="ED" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="receiver" type="MCCI_MT000100UV01.Receiver" minOccurs="1" maxOccurs="unbounded"/> <xs:element name="respondTo" type="MCCI_MT000100UV01.RespondTo" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="sender" type="MCCI_MT000100UV01.Sender" minOccurs="1" maxOccurs="1"/> <xs:element name="attentionLine" type="MCCI_MT000100UV01.AttentionLine" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="controlActProcess" type="PRPA_IN201302UV02.MFMI_MT700701UV01.ControlActProcess" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_IN201302UV02.MFMI_MT700701UV01.ControlActProcess"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="code" type="CD" minOccurs="0" maxOccurs="1"/> <xs:element name="text" type="ED" minOccurs="0" maxOccurs="1"/> <xs:element name="effectiveTime" type="IVL_TS" minOccurs="0" maxOccurs="1"/> <xs:element name="priorityCode" type="CE" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="reasonCode" type="CE" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="languageCode" type="CE" minOccurs="0" maxOccurs="1"/> <xs:element name="overseer" type="MFMI_MT700701UV01.Overseer" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="authorOrPerformer" type="MFMI_MT700701UV01.AuthorOrPerformer" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="dataEnterer" type="MFMI_MT700701UV01.DataEnterer" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="informationRecipient" type="MFMI_MT700701UV01.InformationRecipient" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="subject" type="PRPA_IN201302UV02.MFMI_MT700701UV01.Subject1" nillable="true" minOccurs="1" maxOccurs="unbounded"/> <xs:element name="reasonOf" type="MFMI_MT700701UV01.Reason" nillable="true" minOccurs="0" maxOccurs="unbounded"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="classCode" type="ActClassControlAct" use="required"/> <xs:attribute name="moodCode" type="x_ActMoodIntentEvent" use="required"/> </xs:complexType> <xs:complexType name="PRPA_IN201302UV02.MFMI_MT700701UV01.Subject1"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="registrationEvent" type="PRPA_IN201302UV02.MFMI_MT700701UV01.RegistrationEvent" nillable="true" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="typeCode" type="ActRelationshipType" use="required" fixed="SUBJ"/> <xs:attribute name="contextConductionInd" type="bl" use="optional" default="false"/> </xs:complexType> <xs:complexType name="PRPA_IN201302UV02.MFMI_MT700701UV01.RegistrationEvent"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="statusCode" type="CS" minOccurs="1" maxOccurs="1"/> <xs:element name="effectiveTime" type="IVL_TS" minOccurs="0" maxOccurs="1"/> <xs:element name="subject1" type="PRPA_IN201302UV02.MFMI_MT700701UV01.Subject2" minOccurs="1" maxOccurs="1"/> <xs:element name="author" type="MFMI_MT700701UV01.Author2" nillable="true" minOccurs="0" maxOccurs="1"/> <xs:element name="custodian" type="MFMI_MT700701UV01.Custodian" nillable="true" minOccurs="1" maxOccurs="1"/> <xs:element name="inFulfillmentOf" type="MFMI_MT700701UV01.InFulfillmentOf" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="definition" type="MFMI_MT700701UV01.Definition" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="replacementOf" type="MFMI_MT700701UV01.ReplacementOf" nillable="true" minOccurs="0" maxOccurs="unbounded"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="classCode" type="ActClass" use="required" fixed="REG"/> <xs:attribute name="moodCode" type="ActMood" use="required" fixed="EVN"/> </xs:complexType> <xs:complexType name="PRPA_IN201302UV02.MFMI_MT700701UV01.Subject2"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="patient" type="PRPA_MT201302UV02.Patient" nillable="true" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="typeCode" type="ParticipationTargetSubject" use="required"/> </xs:complexType> </xs:schema>
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"><!-- ***************************************************************************************************************** * XML schema for message type QUQI_MT021001UV01. * Source information: * Rendered by: RoseTree 4.2.7 * Rendered on: * HMD was rendered into XML using software provided to HL7 by Beeler Consulting LLC. HMD to MIF Transform: $Id: QUQI_MT021001UV01.xsd,v 1.1.2.1 2010/09/15 16:12:08 cchin Exp $ Base transform: $Id: QUQI_MT021001UV01.xsd,v 1.1.2.1 2010/09/15 16:12:08 cchin Exp $ Package Id Conversion: $Id: QUQI_MT021001UV01.xsd,v 1.1.2.1 2010/09/15 16:12:08 cchin Exp $ HTML To MIF markup: $Id: QUQI_MT021001UV01.xsd,v 1.1.2.1 2010/09/15 16:12:08 cchin Exp $ Flat to Serialization Transform: $Id: QUQI_MT021001UV01.xsd,v 1.1.2.1 2010/09/15 16:12:08 cchin Exp $ Fix Names Transform: $Id: QUQI_MT021001UV01.xsd,v 1.1.2.1 2010/09/15 16:12:08 cchin Exp $ Base transform: $Id: QUQI_MT021001UV01.xsd,v 1.1.2.1 2010/09/15 16:12:08 cchin Exp $ Package Id Conversion: $Id: QUQI_MT021001UV01.xsd,v 1.1.2.1 2010/09/15 16:12:08 cchin Exp $ * * Generated by XMLITS version 3.1.6 * MIF to XSD Transform $Id: QUQI_MT021001UV01.xsd,v 1.1.2.1 2010/09/15 16:12:08 cchin Exp $ * Package Id Conversion: $Id: QUQI_MT021001UV01.xsd,v 1.1.2.1 2010/09/15 16:12:08 cchin Exp $ * * Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007 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 retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by Health Level Seven. * THIS SOFTWARE IS PROVIDED BY HEALTH LEVEL SEVEN, INC. AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ******************************************************************************************************************** --><xs:annotation> <xs:documentation>Generated using schema builder version 3.1.6. Stylesheets: HMD was rendered into XML using software provided to HL7 by Beeler Consulting LLC. HMD to MIF Transform: $Id: QUQI_MT021001UV01.xsd,v 1.1.2.1 2010/09/15 16:12:08 cchin Exp $ Base transform: $Id: QUQI_MT021001UV01.xsd,v 1.1.2.1 2010/09/15 16:12:08 cchin Exp $ Package Id Conversion: $Id: QUQI_MT021001UV01.xsd,v 1.1.2.1 2010/09/15 16:12:08 cchin Exp $ HTML To MIF markup: $Id: QUQI_MT021001UV01.xsd,v 1.1.2.1 2010/09/15 16:12:08 cchin Exp $ Flat to Serialization Transform: $Id: QUQI_MT021001UV01.xsd,v 1.1.2.1 2010/09/15 16:12:08 cchin Exp $ Fix Names Transform: $Id: QUQI_MT021001UV01.xsd,v 1.1.2.1 2010/09/15 16:12:08 cchin Exp $ Base transform: $Id: QUQI_MT021001UV01.xsd,v 1.1.2.1 2010/09/15 16:12:08 cchin Exp $ Package Id Conversion: $Id: QUQI_MT021001UV01.xsd,v 1.1.2.1 2010/09/15 16:12:08 cchin Exp $ StaticMifToXsd.xsl version 2.0</xs:documentation> </xs:annotation> <xs:include schemaLocation="../coreschemas/infrastructureRoot.xsd"/> <xs:include schemaLocation="COCT_MT090300UV01.xsd"/> <xs:include schemaLocation="COCT_MT090100UV01.xsd"/> <xs:include schemaLocation="MCAI_MT900001UV01.xsd"/> <xs:complexType name="QUQI_MT021001UV01.AuthorOrPerformer"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="noteText" type="ED" minOccurs="0" maxOccurs="1"/> <xs:element name="time" type="IVL_TS" minOccurs="0" maxOccurs="1"/> <xs:element name="modeCode" type="CE" minOccurs="0" maxOccurs="1"/> <xs:element name="signatureCode" type="CE" minOccurs="0" maxOccurs="1"/> <xs:element name="signatureText" type="ED" minOccurs="0" maxOccurs="1"/> <xs:choice> <xs:element name="assignedDevice" type="COCT_MT090300UV01.AssignedDevice" nillable="true" minOccurs="1" maxOccurs="1"/> <xs:element name="assignedPerson" type="COCT_MT090100UV01.AssignedPerson" nillable="true" minOccurs="1" maxOccurs="1"/> </xs:choice> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="typeCode" type="x_ParticipationAuthorPerformer" use="required"/> <xs:attribute name="contextControlCode" type="ContextControl" use="optional" default="AP"/> </xs:complexType><!--<xs:complexType name="QUQI_MT021001UV01.ControlActProcess"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="code" type="CD" minOccurs="0" maxOccurs="1"/> <xs:element name="text" type="ED" minOccurs="0" maxOccurs="1"/> <xs:element name="effectiveTime" type="IVL_TS" minOccurs="0" maxOccurs="1"/> <xs:element name="priorityCode" type="CE" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="reasonCode" type="CE" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="languageCode" type="CE" minOccurs="0" maxOccurs="1"/> <xs:element name="overseer" type="QUQI_MT021001UV01.Overseer" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="authorOrPerformer" type="QUQI_MT021001UV01.AuthorOrPerformer" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="dataEnterer" type="QUQI_MT021001UV01.DataEnterer" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="informationRecipient" type="QUQI_MT021001UV01.InformationRecipient" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="reasonOf" type="QUQI_MT021001UV01.Reason" nillable="true" minOccurs="0" maxOccurs="unbounded"/> Placeholder for element referencing stub: QueryByParameter <xs:element name="REPLACE_ME" type="xs:anyType" nillable="true" minOccurs="0" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="classCode" type="ActClassControlAct" use="required"/> <xs:attribute name="moodCode" type="x_ActMoodIntentEvent" use="required"/> </xs:complexType>--><xs:complexType name="QUQI_MT021001UV01.DataEnterer"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="time" type="IVL_TS" minOccurs="0" maxOccurs="1"/> <xs:element name="assignedPerson" type="COCT_MT090100UV01.AssignedPerson" nillable="true" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="typeCode" type="ParticipationType" use="required" fixed="ENT"/> <xs:attribute name="contextControlCode" type="ContextControl" use="optional" default="AP"/> </xs:complexType> <xs:complexType name="QUQI_MT021001UV01.InformationRecipient"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="time" type="IVL_TS" minOccurs="0" maxOccurs="1"/> <xs:element name="assignedPerson" type="COCT_MT090100UV01.AssignedPerson" nillable="true" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="typeCode" type="ParticipationInformationRecipient" use="required"/> <xs:attribute name="contextControlCode" type="ContextControl" use="optional" default="AP"/> </xs:complexType> <xs:complexType name="QUQI_MT021001UV01.Overseer"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="noteText" type="ED" minOccurs="0" maxOccurs="1"/> <xs:element name="time" type="IVL_TS" minOccurs="0" maxOccurs="1"/> <xs:element name="modeCode" type="CE" minOccurs="0" maxOccurs="1"/> <xs:element name="signatureCode" type="CE" minOccurs="0" maxOccurs="1"/> <xs:element name="signatureText" type="ED" minOccurs="0" maxOccurs="1"/> <xs:element name="assignedPerson" type="COCT_MT090100UV01.AssignedPerson" nillable="true" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="typeCode" type="x_ParticipationVrfRespSprfWit" use="required"/> <xs:attribute name="contextControlCode" type="ContextControl" use="optional" default="AP"/> </xs:complexType> <xs:complexType name="QUQI_MT021001UV01.Reason"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="detectedIssueEvent" type="MCAI_MT900001UV01.DetectedIssueEvent" nillable="true" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="typeCode" type="ActRelationshipReason" use="required"/> <xs:attribute name="contextConductionInd" type="bl" use="optional"/> </xs:complexType> </xs:schema>
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"><!-- ***************************************************************************************************************** * XML schema for message type PRPA_MT201306UV02. * Source information: * Rendered by: Visio to MIF transform * Rendered on: * * * Generated by XMLITS version 3.1.6 * MIF to XSD Transform $Id: PRPA_MT201306UV02.xsd,v 1.1.2.1 2010/09/15 16:12:05 cchin Exp $ * Package Id Conversion: $Id: PRPA_MT201306UV02.xsd,v 1.1.2.1 2010/09/15 16:12:05 cchin Exp $ * * Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007 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 retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by Health Level Seven. * THIS SOFTWARE IS PROVIDED BY HEALTH LEVEL SEVEN, INC. AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ******************************************************************************************************************** --><xs:annotation> <xs:documentation>Generated using schema builder version 3.1.6. Stylesheets: StaticMifToXsd.xsl version 2.0</xs:documentation> </xs:annotation> <xs:include schemaLocation="../coreschemas/infrastructureRoot.xsd"/> <xs:complexType name="PRPA_MT201306UV02.LivingSubjectAdministrativeGender"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="value" type="CE" minOccurs="1" maxOccurs="unbounded"/> <xs:element name="semanticsText" type="ST" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_MT201306UV02.LivingSubjectBirthPlaceAddress"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="value" type="AD" minOccurs="1" maxOccurs="unbounded"/> <xs:element name="semanticsText" type="ST" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_MT201306UV02.LivingSubjectBirthPlaceName"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="value" type="EN" minOccurs="1" maxOccurs="unbounded"/> <xs:element name="semanticsText" type="ST" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_MT201306UV02.LivingSubjectBirthTime"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="value" type="IVL_TS" minOccurs="1" maxOccurs="unbounded"/> <xs:element name="semanticsText" type="ST" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_MT201306UV02.LivingSubjectDeceasedTime"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="value" type="IVL_TS" minOccurs="1" maxOccurs="unbounded"/> <xs:element name="semanticsText" type="ST" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_MT201306UV02.LivingSubjectId"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="value" type="II" minOccurs="1" maxOccurs="unbounded"/> <xs:element name="semanticsText" type="ST" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_MT201306UV02.LivingSubjectName"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="value" type="EN" minOccurs="1" maxOccurs="unbounded"/> <xs:element name="semanticsText" type="ST" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_MT201306UV02.MatchAlgorithm"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="value" type="ANY" minOccurs="1" maxOccurs="1"/> <xs:element name="semanticsText" type="ST" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_MT201306UV02.MatchCriterionList"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="id" type="II" minOccurs="0" maxOccurs="1"/> <xs:element name="matchAlgorithm" type="PRPA_MT201306UV02.MatchAlgorithm" nillable="true" minOccurs="0" maxOccurs="1"/> <xs:element name="matchWeight" type="PRPA_MT201306UV02.MatchWeight" nillable="true" minOccurs="0" maxOccurs="1"/> <xs:element name="minimumDegreeMatch" type="PRPA_MT201306UV02.MinimumDegreeMatch" nillable="true" minOccurs="0" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_MT201306UV02.MatchWeight"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="value" type="ANY" minOccurs="1" maxOccurs="1"/> <xs:element name="semanticsText" type="ST" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_MT201306UV02.MinimumDegreeMatch"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="value" type="ANY" minOccurs="1" maxOccurs="1"/> <xs:element name="semanticsText" type="ST" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_MT201306UV02.MothersMaidenName"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="value" type="PN" minOccurs="1" maxOccurs="unbounded"/> <xs:element name="semanticsText" type="ST" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_MT201306UV02.OtherIDsScopingOrganization"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="value" type="II" minOccurs="1" maxOccurs="unbounded"/> <xs:element name="semanticsText" type="ST" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_MT201306UV02.ParameterList"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="id" type="II" minOccurs="0" maxOccurs="1"/> <xs:element name="livingSubjectAdministrativeGender" type="PRPA_MT201306UV02.LivingSubjectAdministrativeGender" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="livingSubjectBirthPlaceAddress" type="PRPA_MT201306UV02.LivingSubjectBirthPlaceAddress" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="livingSubjectBirthPlaceName" type="PRPA_MT201306UV02.LivingSubjectBirthPlaceName" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="livingSubjectBirthTime" type="PRPA_MT201306UV02.LivingSubjectBirthTime" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="livingSubjectDeceasedTime" type="PRPA_MT201306UV02.LivingSubjectDeceasedTime" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="livingSubjectId" type="PRPA_MT201306UV02.LivingSubjectId" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="livingSubjectName" type="PRPA_MT201306UV02.LivingSubjectName" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="mothersMaidenName" type="PRPA_MT201306UV02.MothersMaidenName" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="otherIDsScopingOrganization" type="PRPA_MT201306UV02.OtherIDsScopingOrganization" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="patientAddress" type="PRPA_MT201306UV02.PatientAddress" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="patientStatusCode" type="PRPA_MT201306UV02.PatientStatusCode" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="patientTelecom" type="PRPA_MT201306UV02.PatientTelecom" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="principalCareProviderId" type="PRPA_MT201306UV02.PrincipalCareProviderId" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="principalCareProvisionId" type="PRPA_MT201306UV02.PrincipalCareProvisionId" nillable="true" minOccurs="0" maxOccurs="unbounded"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_MT201306UV02.PatientAddress"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="value" type="AD" minOccurs="1" maxOccurs="unbounded"/> <xs:element name="semanticsText" type="ST" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_MT201306UV02.PatientStatusCode"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="value" type="CV" minOccurs="1" maxOccurs="1"/> <xs:element name="semanticsText" type="ST" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_MT201306UV02.PatientTelecom"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="value" type="TEL" minOccurs="1" maxOccurs="unbounded"/> <xs:element name="semanticsText" type="ST" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_MT201306UV02.PrincipalCareProviderId"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="value" type="II" minOccurs="1" maxOccurs="unbounded"/> <xs:element name="semanticsText" type="ST" minOccurs="0" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_MT201306UV02.PrincipalCareProvisionId"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="value" type="II" minOccurs="1" maxOccurs="unbounded"/> <xs:element name="semanticsText" type="ST" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_MT201306UV02.QueryByParameter"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="queryId" type="II" minOccurs="1" maxOccurs="1"/> <xs:element name="statusCode" type="CS" minOccurs="1" maxOccurs="1"/> <xs:element name="modifyCode" type="CS" minOccurs="0" maxOccurs="1"/> <xs:element name="responseElementGroupId" type="II" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="responseModalityCode" type="CS" minOccurs="0" maxOccurs="1"/> <xs:element name="responsePriorityCode" type="CS" minOccurs="0" maxOccurs="1"/> <xs:element name="initialQuantity" type="INT" minOccurs="0" maxOccurs="1"/> <xs:element name="initialQuantityCode" type="CE" minOccurs="0" maxOccurs="1"/> <xs:element name="executionAndDeliveryTime" type="TS" minOccurs="0" maxOccurs="1"/> <xs:element name="matchCriterionList" type="PRPA_MT201306UV02.MatchCriterionList" nillable="true" minOccurs="0" maxOccurs="1"/> <xs:element name="parameterList" type="PRPA_MT201306UV02.ParameterList" minOccurs="1" maxOccurs="1"/> <xs:element name="sortControl" type="PRPA_MT201306UV02.SortControl" nillable="true" minOccurs="0" maxOccurs="unbounded"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_MT201306UV02.SortControl"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="sequenceNumber" type="INT" minOccurs="0" maxOccurs="1"/> <xs:element name="elementName" type="SC" minOccurs="0" maxOccurs="1"/> <xs:element name="directionCode" type="CS" minOccurs="0" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> </xs:schema>
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 Information Rendered by: RoseTree 4.2.7 Rendered on: This document was rendered into XML using software provided to HL7 by Beeler Consulting LLC. PubDB to MIF Transform: $RCSfile: PRPA_IN201301UV02.xsd,v $ $Revision: 1.1.2.1 $ $Date: 2010/09/15 16:12:04 $ Fix names transform: $Id: PRPA_IN201301UV02.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ HTML to MIF Markup transform: $Id: PRPA_IN201301UV02.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ Base transform: $Id: PRPA_IN201301UV02.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ Package Id Conversion: $Id: PRPA_IN201301UV02.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ Generated using schema builder version: 3.1.6 and DynamicMifToXSD.xsl version: 1.4 Dynamic MIF to Schema Transform: $Id: PRPA_IN201301UV02.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ Static MIF to Schema Transform: $Id: PRPA_IN201301UV02.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ Package Id Conversion: $Id: PRPA_IN201301UV02.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $</xs:documentation> </xs:annotation> <xs:include schemaLocation="../coreschemas/infrastructureRoot.xsd"/> <xs:include schemaLocation="MCCI_MT000100UV01.xsd"/> <xs:include schemaLocation="MFMI_MT700701UV01.xsd"/> <xs:include schemaLocation="PRPA_MT201301UV02.xsd"/> <xs:element name="PRPA_IN201301UV02"> <xs:complexType> <xs:complexContent> <xs:extension base="PRPA_IN201301UV02.MCCI_MT000100UV01.Message"> <xs:attribute name="ITSVersion" type="xs:string" use="required" fixed="XML_1.0"/> </xs:extension> </xs:complexContent> </xs:complexType> </xs:element> <xs:complexType name="PRPA_IN201301UV02.MCCI_MT000100UV01.Message"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="id" type="II" minOccurs="1" maxOccurs="1"/> <xs:element name="creationTime" type="TS" minOccurs="1" maxOccurs="1"/> <xs:element name="securityText" type="ST" minOccurs="0" maxOccurs="1"/> <xs:element name="versionCode" type="CS" minOccurs="0" maxOccurs="1"/> <xs:element name="interactionId" type="II" minOccurs="1" maxOccurs="1"/> <xs:element name="profileId" type="II" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="processingCode" type="CS" minOccurs="1" maxOccurs="1"/> <xs:element name="processingModeCode" type="CS" minOccurs="1" maxOccurs="1"/> <xs:element name="acceptAckCode" type="CS" minOccurs="1" maxOccurs="1"/> <xs:element name="sequenceNumber" type="INT" minOccurs="0" maxOccurs="1"/> <xs:element name="attachmentText" type="ED" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="receiver" type="MCCI_MT000100UV01.Receiver" minOccurs="1" maxOccurs="unbounded"/> <xs:element name="respondTo" type="MCCI_MT000100UV01.RespondTo" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="sender" type="MCCI_MT000100UV01.Sender" minOccurs="1" maxOccurs="1"/> <xs:element name="attentionLine" type="MCCI_MT000100UV01.AttentionLine" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="controlActProcess" type="PRPA_IN201301UV02.MFMI_MT700701UV01.ControlActProcess" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="PRPA_IN201301UV02.MFMI_MT700701UV01.ControlActProcess"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="code" type="CD" minOccurs="0" maxOccurs="1"/> <xs:element name="text" type="ED" minOccurs="0" maxOccurs="1"/> <xs:element name="effectiveTime" type="IVL_TS" minOccurs="0" maxOccurs="1"/> <xs:element name="priorityCode" type="CE" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="reasonCode" type="CE" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="languageCode" type="CE" minOccurs="0" maxOccurs="1"/> <xs:element name="overseer" type="MFMI_MT700701UV01.Overseer" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="authorOrPerformer" type="MFMI_MT700701UV01.AuthorOrPerformer" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="dataEnterer" type="MFMI_MT700701UV01.DataEnterer" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="informationRecipient" type="MFMI_MT700701UV01.InformationRecipient" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="subject" type="PRPA_IN201301UV02.MFMI_MT700701UV01.Subject1" nillable="true" minOccurs="1" maxOccurs="unbounded"/> <xs:element name="reasonOf" type="MFMI_MT700701UV01.Reason" nillable="true" minOccurs="0" maxOccurs="unbounded"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="classCode" type="ActClassControlAct" use="required"/> <xs:attribute name="moodCode" type="x_ActMoodIntentEvent" use="required"/> </xs:complexType> <xs:complexType name="PRPA_IN201301UV02.MFMI_MT700701UV01.Subject1"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="registrationEvent" type="PRPA_IN201301UV02.MFMI_MT700701UV01.RegistrationEvent" nillable="true" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="typeCode" type="ActRelationshipType" use="required" fixed="SUBJ"/> <xs:attribute name="contextConductionInd" type="bl" use="optional" default="false"/> </xs:complexType> <xs:complexType name="PRPA_IN201301UV02.MFMI_MT700701UV01.RegistrationEvent"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="statusCode" type="CS" minOccurs="1" maxOccurs="1"/> <xs:element name="effectiveTime" type="IVL_TS" minOccurs="0" maxOccurs="1"/> <xs:element name="subject1" type="PRPA_IN201301UV02.MFMI_MT700701UV01.Subject2" minOccurs="1" maxOccurs="1"/> <xs:element name="author" type="MFMI_MT700701UV01.Author2" nillable="true" minOccurs="0" maxOccurs="1"/> <xs:element name="custodian" type="MFMI_MT700701UV01.Custodian" nillable="true" minOccurs="1" maxOccurs="1"/> <xs:element name="inFulfillmentOf" type="MFMI_MT700701UV01.InFulfillmentOf" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="definition" type="MFMI_MT700701UV01.Definition" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="replacementOf" type="MFMI_MT700701UV01.ReplacementOf" nillable="true" minOccurs="0" maxOccurs="unbounded"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="classCode" type="ActClass" use="required" fixed="REG"/> <xs:attribute name="moodCode" type="ActMood" use="required" fixed="EVN"/> </xs:complexType> <xs:complexType name="PRPA_IN201301UV02.MFMI_MT700701UV01.Subject2"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="patient" type="PRPA_MT201301UV02.Patient" nillable="true" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="typeCode" type="ParticipationTargetSubject" use="required"/> </xs:complexType> </xs:schema>
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"><!-- ***************************************************************************************************************** * XML schema for message type MCCI_MT000100UV01. * Source information: * Rendered by: RoseTree 4.2.7 * Rendered on: * HMD was rendered into XML using software provided to HL7 by Beeler Consulting LLC. HMD to MIF Transform: $Id: MCCI_MT000100UV01.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ Base transform: $Id: MCCI_MT000100UV01.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ Package Id Conversion: $Id: MCCI_MT000100UV01.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ HTML To MIF markup: $Id: MCCI_MT000100UV01.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ Flat to Serialization Transform: $Id: MCCI_MT000100UV01.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ Fix Names Transform: $Id: MCCI_MT000100UV01.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ Base transform: $Id: MCCI_MT000100UV01.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ Package Id Conversion: $Id: MCCI_MT000100UV01.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ * * Generated by XMLITS version 3.1.6 * MIF to XSD Transform $Id: MCCI_MT000100UV01.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ * Package Id Conversion: $Id: MCCI_MT000100UV01.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ * * Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007 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 retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by Health Level Seven. * THIS SOFTWARE IS PROVIDED BY HEALTH LEVEL SEVEN, INC. AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ******************************************************************************************************************** --><xs:annotation> <xs:documentation>Generated using schema builder version 3.1.6. Stylesheets: HMD was rendered into XML using software provided to HL7 by Beeler Consulting LLC. HMD to MIF Transform: $Id: MCCI_MT000100UV01.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ Base transform: $Id: MCCI_MT000100UV01.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ Package Id Conversion: $Id: MCCI_MT000100UV01.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ HTML To MIF markup: $Id: MCCI_MT000100UV01.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ Flat to Serialization Transform: $Id: MCCI_MT000100UV01.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ Fix Names Transform: $Id: MCCI_MT000100UV01.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ Base transform: $Id: MCCI_MT000100UV01.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ Package Id Conversion: $Id: MCCI_MT000100UV01.xsd,v 1.1.2.1 2010/09/15 16:12:04 cchin Exp $ StaticMifToXsd.xsl version 2.0</xs:documentation> </xs:annotation> <xs:include schemaLocation="../coreschemas/infrastructureRoot.xsd"/> <xs:include schemaLocation="COCT_MT040203UV01.xsd"/> <xs:complexType name="MCCI_MT000100UV01.Agent"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="representedOrganization" type="MCCI_MT000100UV01.Organization" nillable="true" minOccurs="0" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="classCode" type="RoleClassAgent" use="required"/> </xs:complexType> <xs:complexType name="MCCI_MT000100UV01.AttentionLine"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="keyWordText" type="SC" minOccurs="0" maxOccurs="1"/> <xs:element name="value" type="ANY" minOccurs="0" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType> <xs:complexType name="MCCI_MT000100UV01.Device"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="id" type="II" minOccurs="1" maxOccurs="unbounded"/> <xs:element name="name" type="EN" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="desc" type="ED" minOccurs="0" maxOccurs="1"/> <xs:element name="existenceTime" type="IVL_TS" minOccurs="0" maxOccurs="1"/> <xs:element name="telecom" type="TEL" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="manufacturerModelName" type="SC" minOccurs="0" maxOccurs="1"/> <xs:element name="softwareName" type="SC" minOccurs="0" maxOccurs="1"/> <xs:element name="asAgent" type="MCCI_MT000100UV01.Agent" nillable="true" minOccurs="0" maxOccurs="1"/> <xs:element name="asLocatedEntity" type="MCCI_MT000100UV01.LocatedEntity" nillable="true" minOccurs="0" maxOccurs="unbounded"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="classCode" type="EntityClassDevice" use="required"/> <xs:attribute name="determinerCode" type="EntityDeterminer" use="required" fixed="INSTANCE"/> </xs:complexType> <xs:complexType name="MCCI_MT000100UV01.EntityRsp"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="id" type="II" minOccurs="1" maxOccurs="1"/> <xs:element name="name" type="EN" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="telecom" type="TEL" minOccurs="0" maxOccurs="unbounded"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="classCode" type="EntityClassRoot" use="required"/> <xs:attribute name="determinerCode" type="EntityDeterminer" use="required" fixed="INSTANCE"/> </xs:complexType> <xs:complexType name="MCCI_MT000100UV01.LocatedEntity"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="location" type="MCCI_MT000100UV01.Place" nillable="true" minOccurs="0" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="classCode" type="RoleClassLocatedEntity" use="required"/> </xs:complexType><!--<xs:complexType name="MCCI_MT000100UV01.Message"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="id" type="II" minOccurs="1" maxOccurs="1"/> <xs:element name="creationTime" type="TS" minOccurs="1" maxOccurs="1"/> <xs:element name="securityText" type="ST" minOccurs="0" maxOccurs="1"/> <xs:element name="versionCode" type="CS" minOccurs="0" maxOccurs="1"/> <xs:element name="interactionId" type="II" minOccurs="1" maxOccurs="1"/> <xs:element name="profileId" type="II" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="processingCode" type="CS" minOccurs="1" maxOccurs="1"/> <xs:element name="processingModeCode" type="CS" minOccurs="1" maxOccurs="1"/> <xs:element name="acceptAckCode" type="CS" minOccurs="1" maxOccurs="1"/> <xs:element name="sequenceNumber" type="INT" minOccurs="0" maxOccurs="1"/> <xs:element name="attachmentText" type="ED" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="receiver" type="MCCI_MT000100UV01.Receiver" minOccurs="1" maxOccurs="unbounded"/> <xs:element name="respondTo" type="MCCI_MT000100UV01.RespondTo" nillable="true" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="sender" type="MCCI_MT000100UV01.Sender" minOccurs="1" maxOccurs="1"/> <xs:element name="attentionLine" type="MCCI_MT000100UV01.AttentionLine" nillable="true" minOccurs="0" maxOccurs="unbounded"/> Placeholder for element referencing stub: ControlActProcess <xs:element name="REPLACE_ME" type="xs:anyType" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> </xs:complexType>--><xs:complexType name="MCCI_MT000100UV01.Organization"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="id" type="II" minOccurs="1" maxOccurs="unbounded"/> <xs:element name="name" type="EN" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="telecom" type="TEL" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="notificationParty" type="COCT_MT040203UV01.NotificationParty" nillable="true" minOccurs="0" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="classCode" type="EntityClassOrganization" use="required"/> <xs:attribute name="determinerCode" type="EntityDeterminer" use="required" fixed="INSTANCE"/> </xs:complexType> <xs:complexType name="MCCI_MT000100UV01.Place"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="id" type="II" minOccurs="1" maxOccurs="unbounded"/> <xs:element name="name" type="EN" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="telecom" type="TEL" minOccurs="0" maxOccurs="unbounded"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="classCode" type="EntityClassPlace" use="required"/> <xs:attribute name="determinerCode" type="EntityDeterminer" use="required" fixed="INSTANCE"/> </xs:complexType> <xs:complexType name="MCCI_MT000100UV01.Receiver"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="telecom" type="TEL" minOccurs="0" maxOccurs="1"/> <xs:element name="device" type="MCCI_MT000100UV01.Device" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="typeCode" type="CommunicationFunctionType" use="required"/> </xs:complexType> <xs:complexType name="MCCI_MT000100UV01.RespondTo"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="telecom" type="TEL" minOccurs="0" maxOccurs="1"/> <xs:element name="entityRsp" type="MCCI_MT000100UV01.EntityRsp" nillable="true" minOccurs="1" maxOccurs="unbounded"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="typeCode" type="CommunicationFunctionType" use="required"/> </xs:complexType> <xs:complexType name="MCCI_MT000100UV01.Sender"> <xs:sequence> <xs:group ref="InfrastructureRootElements"/> <xs:element name="telecom" type="TEL" minOccurs="0" maxOccurs="1"/> <xs:element name="device" type="MCCI_MT000100UV01.Device" minOccurs="1" maxOccurs="1"/> </xs:sequence> <xs:attributeGroup ref="InfrastructureRootAttributes"/> <xs:attribute name="nullFlavor" type="NullFlavor" use="optional"/> <xs:attribute name="typeCode" type="CommunicationFunctionType" use="required"/> </xs:complexType> </xs:schema>
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: config.protocol } # Settings specified here will take precedence over those in config/application.rb. # Code is not reloaded between requests. config.cache_classes = true # Eager load code on boot. This eager loads most of Rails and # your application in memory, allowing both threaded web servers # and those relying on copy on write to perform better. # Rake tasks automatically ignore this option for performance. config.eager_load = true # Full error reports are disabled and caching is turned on. config.consider_all_requests_local = false config.action_controller.perform_caching = true # Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"] # or in config/master.key. This key is used to decrypt credentials (and other encrypted files). # config.require_master_key = true # Disable serving static files from the `/public` folder by default since # Apache or NGINX already handles this. config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present? # Store files in AWS unless running locally config.active_storage.service = ENV['RAILS_LOCAL_STORAGE'] == 'true' ? :local : :amazon # Compress CSS using a preprocessor. # config.assets.css_compressor = :sass # Do not fallback to assets pipeline if a precompiled asset is missed. # config.assets.compile = false # Specifies the header that your server uses for sending files. # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. # config.force_ssl = true # Include generic and useful information about system operation, but avoid logging too much # information to avoid inadvertent exposure of personally identifiable information (PII). config.log_level = :info # Prepend all log lines with the following tags. config.log_tags = { request_id: :request_id, remote_ip: :remote_ip, user_agent: ->(request) { request.user_agent }, fingerprint: ->(request) { "#{request.remote_ip} #{request.user_agent}" }, ref: ->(_request) { AppInfo::GIT_REVISION }, referer: ->(request) { request.headers['Referer'] }, consumer_id: ->(request) { request.headers['X-Consumer-ID'] }, consumer_username: ->(request) { request.headers['X-Consumer-Username'] }, consumer_custom_id: ->(request) { request.headers['X-Consumer-Custom-ID'] }, credential_username: ->(request) { request.headers['X-Credential-Username'] }, csrf_token: ->(request) { request.headers['X-Csrf-Token'] }, correlation_id: ->(request) { request.headers['Correlation-ID'] } } config.rails_semantic_logger.format = :json config.rails_semantic_logger.add_file_appender = false config.semantic_logger.add_appender(io: $stdout, level: config.log_level, formatter: config.rails_semantic_logger.format) config.semantic_logger.application = if Sidekiq.server? 'vets-api-worker' else 'vets-api-server' end # Use a different cache store in production. config.cache_store = :redis_cache_store, { connect_timeout: 2, url: Settings.redis.rails_cache.url, expires_in: 30.minutes, pool: { size: ENV.fetch('RAILS_MAX_THREADS', 5).to_i } } config.action_mailer.perform_caching = false # Ignore bad email addresses and do not raise email delivery errors. # Set this to true and configure the email server for immediate delivery to raise delivery errors. # config.action_mailer.raise_delivery_errors = false # Enable locale fallbacks for I18n (makes lookups for any locale fall back to # the I18n.default_locale when a translation cannot be found). config.i18n.fallbacks = [I18n.default_locale] # Send deprecation notices to registered listeners. config.active_support.deprecation = :notify # Log disallowed deprecations. config.active_support.disallowed_deprecation = :log # Tell Active Support which deprecation messages to disallow. config.active_support.disallowed_deprecation_warnings = [] # Use default logging formatter so that PID and timestamp are not suppressed. config.log_formatter = Logger::Formatter.new # Use a different logger for distributed setups. # require 'syslog/logger' # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name') # Log to standard out, with specified formatter $stdout.sync = config.autoflush_log logger = ActiveSupport::Logger.new($stdout) logger.formatter = config.log_formatter config.logger = ActiveSupport::TaggedLogging.new(logger) # Do not dump schema after migrations. # config.active_record.dump_schema_after_migration = false ConfigHelper.setup_action_mailer(config) # Inserts middleware to perform automatic connection switching. # The `database_selector` hash is used to pass options to the DatabaseSelector # middleware. The `delay` is used to determine how long to wait after a write # to send a subsequent read to the primary. # # The `database_resolver` class is used by the middleware to determine which # database is appropriate to use based on the time delay. # # The `database_resolver_context` class is used by the middleware to set # timestamps for the last write to the primary. The resolver uses the context # class timestamps to determine how long to wait before reading from the # replica. # # By default Rails will store a last write timestamp in the session. The # DatabaseSelector middleware is designed as such you can define your own # strategy for connection switching and pass that into the middleware through # these configuration options. # config.active_record.database_selector = { delay: 2.seconds } # config.active_record.database_resolver = ActiveRecord::Middleware::DatabaseSelector::Resolver # config.active_record.database_resolver_context = ActiveRecord::Middleware::DatabaseSelector::Resolver::Session end
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 config.hosts = Settings.virtual_hosts config.hosts << /.*\.ngrok.*\.(io|app|dev)/ config.protocol = 'http' routes.default_url_options = { host: config.hostname, protocol: config.protocol } # In the development environment your application's code is reloaded any time # it changes. This slows down response time but is perfect for development # since you don't have to restart the web server when you make code changes. config.cache_classes = false # Do not eager load code on boot. config.eager_load = false # Show full error reports. config.consider_all_requests_local = true # Enable/disable caching. By default caching is disabled. # Run rails dev:cache to toggle caching. if Rails.root.join('tmp', 'caching-dev.txt').exist? config.action_controller.perform_caching = true config.action_controller.enable_fragment_cache_logging = true config.cache_store = :redis_cache_store, { url: Settings.redis.rails_cache.url, expires_in: 30.minutes } config.public_file_server.headers = { 'Cache-Control' => "public, max-age=#{2.days.to_i}" } else config.action_controller.perform_caching = false config.cache_store = :null_store end # Store files locally. To switch to aws locally use :amazon config.active_storage.service = :local # Don't care if the mailer can't send. # config.action_mailer.raise_delivery_errors = false config.action_mailer.perform_caching = false config.action_mailer.logger = Logger.new('./log/mailer.log') if File.exist?('./log/mailer.log') # Print deprecation notices to the Rails logger. config.active_support.deprecation = :log # Raise exceptions for disallowed deprecations. config.active_support.disallowed_deprecation = :raise # Tell Active Support which deprecation messages to disallow. config.active_support.disallowed_deprecation_warnings = [] # Raise an error on page load if there are pending migrations. # config.active_record.migration_error = :page_load # Highlight code that triggered database queries in logs. config.active_record.verbose_query_logs = true # Debug mode disables concatenation and preprocessing of assets. # This option may cause significant delays in view rendering with a large # number of complex assets. # config.assets.debug = true # Suppress logger output for asset requests. # config.assets.quiet = true # Raises error for missing translations. config.i18n.raise_on_missing_translations = true # Raise error if a controller references an action callback that isn't defined config.action_controller.raise_on_missing_callback_actions = true ConfigHelper.setup_action_mailer(config) # Control what Semantic Logger logs from Rails internals: config.rails_semantic_logger.semantic = false # Don't use SemanticLogger's "semantic" mode config.rails_semantic_logger.started = true # Log when a controller action starts config.rails_semantic_logger.processing = true # Log when processing completes config.rails_semantic_logger.rendered = true # Log rendering details (views/partials) # Set SemanticLogger to log to stdout for foreman and rails console. config.semantic_logger.add_appender( io: $stdout, level: :info, # For debug, see log/development.log formatter: config.rails_semantic_logger.format ) end
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 'active_support/core_ext/integer/time' Rails.application.configure do # Specify environment specific hostname and protocol config.hostname = Settings.hostname config.protocol = 'http' routes.default_url_options = { host: config.hostname, protocol: config.protocol } # Settings specified here will take precedence over those in config/application.rb. config.cache_classes = false config.action_view.cache_template_loading = true # Do not eager load code on boot. This avoids loading your whole application # just for the purpose of running a single test. If you are using a tool that # preloads Rails for running tests, you may have to set it to true. config.eager_load = ENV['CI'].present? # Configure public file server for tests with Cache-Control for performance. config.public_file_server.enabled = true config.public_file_server.headers = { 'Cache-Control' => "public, max-age=#{1.hour.to_i}" } # Show full error reports and disable caching. config.consider_all_requests_local = true config.action_controller.perform_caching = false config.cache_store = :null_store # Raise exceptions instead of rendering exception templates. config.action_dispatch.show_exceptions = :none # Disable request forgery protection in test environment. config.action_controller.allow_forgery_protection = false # Store uploaded files on the local file system in a temporary directory. config.active_storage.service = :test config.action_mailer.perform_caching = false # Tell Action Mailer not to deliver emails to the real world. # The :test delivery method accumulates sent emails in the # ActionMailer::Base.deliveries array. config.action_mailer.delivery_method = :test # Print deprecation notices to the stderr. config.active_support.deprecation = :stderr # Raise exceptions for disallowed deprecations. config.active_support.disallowed_deprecation = :raise # Tell Active Support which deprecation messages to disallow. config.active_support.disallowed_deprecation_warnings = [] # Raises error for missing translations. config.i18n.raise_on_missing_translations = true config.action_controller.raise_on_missing_callback_actions = true # Prepend all log lines with the following tags. config.log_tags = { request_id: :request_id, correlation_id: ->(request) { request.headers['Correlation-ID'] } } # Speed up specs by not writing logs during RSpec runs unless ENV.fetch('RAILS_ENABLE_TEST_LOG', false) config.logger = Logger.new(nil) config.log_level = :fatal end end
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/" xmlns:tns="http://service.soa.eoas.cem.va.gov/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://service.soa.eoas.cem.va.gov/" name="PreNeedApplicationService"> <wsp:UsingPolicy wssutil:Required="true" /> <wsp:Policy wssutil:Id="Mtom.xml"> <ns1:OptimizedMimeSerialization xmlns:ns1="http://schemas.xmlsoap.org/ws/2004/09/policy/optimizedmimeserialization" /> </wsp:Policy> <types> <xsd:schema> <xsd:import namespace="http://service.soa.eoas.cem.va.gov/" schemaLocation="application.xsd" /> </xsd:schema> </types> <message name="getMilitaryRankForBranchOfService"> <part name="parameters" element="tns:getMilitaryRankForBranchOfService" /> </message> <message name="getMilitaryRankForBranchOfServiceResponse"> <part name="parameters" element="tns:getMilitaryRankForBranchOfServiceResponse" /> </message> <message name="getStates"> <part name="parameters" element="tns:getStates" /> </message> <message name="getStatesResponse"> <part name="parameters" element="tns:getStatesResponse" /> </message> <message name="addAttachment"> <part name="parameters" element="tns:addAttachment" /> </message> <message name="addAttachmentResponse"> <part name="parameters" element="tns:addAttachmentResponse" /> </message> <message name="getAttachmentTypes"> <part name="parameters" element="tns:getAttachmentTypes" /> </message> <message name="getAttachmentTypesResponse"> <part name="parameters" element="tns:getAttachmentTypesResponse" /> </message> <message name="receivePreNeedApplication"> <part name="parameters" element="tns:receivePreNeedApplication" /> </message> <message name="receivePreNeedApplicationResponse"> <part name="parameters" element="tns:receivePreNeedApplicationResponse" /> </message> <message name="getCemeteries"> <part name="parameters" element="tns:getCemeteries" /> </message> <message name="getCemeteriesResponse"> <part name="parameters" element="tns:getCemeteriesResponse" /> </message> <message name="getDischargeTypes"> <part name="parameters" element="tns:getDischargeTypes" /> </message> <message name="getDischargeTypesResponse"> <part name="parameters" element="tns:getDischargeTypesResponse" /> </message> <message name="getBranchesOfService"> <part name="parameters" element="tns:getBranchesOfService" /> </message> <message name="getBranchesOfServiceResponse"> <part name="parameters" element="tns:getBranchesOfServiceResponse" /> </message> <portType name="PreNeedApplicationWebService"> <operation name="getMilitaryRankForBranchOfService"> <input message="tns:getMilitaryRankForBranchOfService" /> <output message="tns:getMilitaryRankForBranchOfServiceResponse" /> </operation> <operation name="getStates"> <input message="tns:getStates" /> <output message="tns:getStatesResponse" /> </operation> <operation name="addAttachment"> <input message="tns:addAttachment" /> <output message="tns:addAttachmentResponse" /> </operation> <operation name="getAttachmentTypes"> <input message="tns:getAttachmentTypes" /> <output message="tns:getAttachmentTypesResponse" /> </operation> <operation name="receivePreNeedApplication"> <input message="tns:receivePreNeedApplication" /> <output message="tns:receivePreNeedApplicationResponse" /> </operation> <operation name="getCemeteries"> <input message="tns:getCemeteries" /> <output message="tns:getCemeteriesResponse" /> </operation> <operation name="getDischargeTypes"> <input message="tns:getDischargeTypes" /> <output message="tns:getDischargeTypesResponse" /> </operation> <operation name="getBranchesOfService"> <input message="tns:getBranchesOfService" /> <output message="tns:getBranchesOfServiceResponse" /> </operation> </portType> <binding name="PreNeedApplicationWebServicePortBinding" type="tns:PreNeedApplicationWebService"> <wsp:PolicyReference URI="#Mtom.xml" /> <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" /> <operation name="getMilitaryRankForBranchOfService"> <soap:operation soapAction="" /> <input> <soap:body use="literal" /> </input> <output> <soap:body use="literal" /> </output> </operation> <operation name="getStates"> <soap:operation soapAction="" /> <input> <soap:body use="literal" /> </input> <output> <soap:body use="literal" /> </output> </operation> <operation name="addAttachment"> <soap:operation soapAction="" /> <input> <soap:body use="literal" /> </input> <output> <soap:body use="literal" /> </output> </operation> <operation name="getAttachmentTypes"> <soap:operation soapAction="" /> <input> <soap:body use="literal" /> </input> <output> <soap:body use="literal" /> </output> </operation> <operation name="receivePreNeedApplication"> <soap:operation soapAction="" /> <input> <soap:body use="literal" /> </input> <output> <soap:body use="literal" /> </output> </operation> <operation name="getCemeteries"> <soap:operation soapAction="" /> <input> <soap:body use="literal" /> </input> <output> <soap:body use="literal" /> </output> </operation> <operation name="getDischargeTypes"> <soap:operation soapAction="" /> <input> <soap:body use="literal" /> </input> <output> <soap:body use="literal" /> </output> </operation> <operation name="getBranchesOfService"> <soap:operation soapAction="" /> <input> <soap:body use="literal" /> </input> <output> <soap:body use="literal" /> </output> </operation> </binding> <service name="PreNeedApplicationService"> <port name="PreNeedApplicationWebServicePort" binding="tns:PreNeedApplicationWebServicePortBinding"> <soap:address location="http://ci.pnw.r2group.co/eoas_SOA/PreNeedApplicationPort" /> </port> </service> </definitions>
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", "Bahamas": "808", "Bahrain": "832", "Bangladesh": "865", "Barbados": "818", "Barbuda": "816", "Belarus": "727", "Belgium": "748", "Belize": "992", "Benin": "692", "Bermuda": "828", "Bhutan": "862", "Bolivia": "913", "Bosnia-Herzegovina": "817", "Botswana": "663", "Brazil": "706", "Brunei": "820", "Bulgaria": "903", "Burkina Faso": "689", "Burma": "923", "Burundi": "683", "Cambodia": "981", "Cameroon": "943", "Canada": "953", "Cape Verde": "710", "Cayman Islands": "838", "Central African Republic": "690", "Chad": "691", "Chile": "768", "China": "973", "Colombia": "757", "Comoros": "876", "Congo, Democratic Republic of": "719", "Congo, People's Republic of": "670", "Costa Rica": "983", "Cote d'Ivoire": "819", "Croatia": "651", "Cuba": "737", "Cyprus": "904", "Czech Republic": "914", "Denmark": "924", "Djibouti": "799", "Dominica": "811", "Dominican Republic": "934", "Ecuador": "729", "Egypt": "759", "El Salvador": "958", "England": "800", "Equatorial Guinea": "898", "Eritrea": "760", "Estonia": "995", "Ethiopia": "779", "Fiji": "809", "Finland": "964", "France": "912", "French Guiana": "888", "Gabon": "693", "Gambia": "698", "Georgia": "730", "Germany": "732", "Ghana": "984", "Gibraltar": "800", "Great Britain": "800", "Great Britain and Gibraltar": "800", "Greece": "701", "Greenland": "924", "Grenada": "813", "Guadeloupe": "881", "Guatemala": "915", "Guinea": "928", "Guinea, Republic of Guinea": "928", "Guinea-Bissau": "910", "Guyana": "894", "Haiti": "925", "Honduras": "822", "Hong Kong": "945", "Hungary": "955", "Iceland": "965", "India": "862", "Indonesia": "975", "Iran": "833", "Iraq": "803", "Ireland": "900", "Israel (Jerusalem)": "977", "Israel (Tel Aviv)": "873", "Italy": "700", "Jamaica": "838", "Japan": "713", "Jordan": "985", "Kazakhstan": "740", "Kenya": "869", "Kosovo": "921", "Kuwait": "926", "Kyrgyzstan": "750", "Laos": "936", "Latvia": "991", "Lebanon": "956", "Leeward Islands": "816", "Lesotho": "866", "Liberia": "966", "Libya": "804", "Liechtenstein": "886", "Lithuania": "993", "Luxembourg": "986", "Macao": "945", "Macedonia": "856", "Madagascar": "892", "Malawi": "650", "Malaysia": "824", "Mali": "694", "Malta": "907", "Martinique": "878", "Mauritania": "666", "Mauritius": "897", "Mexico": "773", "Moldavia": "770", "Mongolia": "927", "Montenegro": "920", "Montserrat": "816", "Morocco": "854", "Mozambique": "882", "Namibia": "880", "Nepal": "872", "Netherlands": "874", "Netherlands Antilles": "825", "Nevis": "816", "New Caledonia": "809", "New Zealand": "875", "Nicaragua": "957", "Niger": "682", "Nigeria": "967", "North Korea": "906", "Northern Ireland": "800", "Norway": "703", "Oman": "834", "Pakistan": "835", "Panama": "806", "Papua New Guinea": "947", "Paraguay": "987", "Peru": "997", "Philippines": "600", "Philippines (restricted payments)": "601", "Poland": "908", "Portugal": "705", "Qatar": "917", "Republic of Yemen": "849", "Romania": "938", "Russia": "978", "Rwanda": "669", "Sao-Tome/Principe": "890", "Saudi Arabia": "836", "Scotland": "800", "Senegal": "889", "Serbia": "902", "Serbia/Montenegro": "902", "Seychelles": "870", "Sicily": "695", "Sierra Leone": "859", "Singapore": "968", "Slovakia": "720", "Slovenia": "840", "Somalia": "998", "South Africa": "887", "South Korea": "916", "Spain": "745", "Sri Lanka": "963", "St. Kitts": "816", "St. Lucia": "810", "St. Vincent": "812", "Sudan": "988", "Suriname": "909", "Swaziland": "660", "Sweden": "782", "Switzerland": "846", "Syria": "807", "Taiwan": "919", "Tajikistan": "784", "Tanzania": "697", "Thailand": "929", "Togo": "805", "Trinidad and Tobago": "848", "Tunisia": "949", "Turkey (Adana only)": "857", "Turkey (except Adana)": "847", "Turkmenistan": "790", "Uganda": "969", "Ukraine": "801", "United Arab Emirates": "837", "United Kingdom": "800", "Uruguay": "979", "Uzbekistan": "731", "Vanuatu": "809", "Venezuela": "707", "Vietnam": "962", "Wales": "800", "Western Samoa": "815", "Yemen Arab Republic": "849", "Zambia": "662", "Zimbabwe": "918" }
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: "2017-05-31" - type: nod date: "2017-06-04" - type: form9 date: "2017-06-04" - type: ssoc date: "2017-06-04" - type: soc date: "2018-03-15" relationships: scheduled_hearings: data: [] "111223333": data: - id: 123C type: appeals attributes: type: original active: true requested_hearing_type: "judgement" prior_decision_date: "2017-05-05" events: - type: ssoc date: "2017-05-28" - type: bva_final_decision date: "2017-05-31" - type: nod date: "2017-06-04" - type: form9 date: "2017-06-04" - type: ssoc date: "2017-06-04" - type: soc date: "2017-06-06" relationships: scheduled_hearings: data: - id: 53 type: hearings included: - id: 53 type: hearings attributes: type: travel_board date: "2018-03-12"
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_request/default" # BID Awards - :name: "BID Awards" :base_uri: "bid-api-test.dev.bip.va.gov:443" :endpoints: - :method: :get :path: "/api/v1/awards/pension/*" :file_path: "bid/awards/pension/" :cache_multiple_responses: :uid_location: url :uid_locator: '\/api\/v1\/awards\/pension\/(.+)' #CRM API GET endpoint - :name: "CRM API GET endpoint" :base_uri: <%= "#{URI(Settings.ask_va_api.crm_api.base_url).host}:#{URI(Settings.ask_va_api.crm_api.base_url).port}" %> :endpoints: - :method: :get :path: <%= "/#{Settings.ask_va_api.crm_api.veis_api_path}/ping" %> :file_path: "/ask_va/dynamics_api" :response_delay: 15 - :method: :post :path: <%= "/#{Settings.ask_va_api.crm_api.veis_api_path}/inquiries/new" %> :file_path: "/ask_va/crm_api/post_inquiries/default" :response_delay: 0.3 ## Travel Pay - :method: :post :path: "/veis/api/btsss/travelclaim/api/v2/Auth/access-token" :file_path: "/travel_pay/btsss_token/default" :response_delay: 0.3 - :method: :get :path: "/veis/api/btsss/travelclaim/api/v2/claims/search-by-appointment-date" :file_path: "/travel_pay/claims/index/default" :response_delay: 0.3 - :method: :get :path: "/veis/api/btsss/travelclaim/api/v2/claims" :file_path: "/travel_pay/claims/index/default" :response_delay: 0.3 - :method: :get :path: "/veis/api/btsss/travelclaim/api/v2/claims/*/documents" :file_path: "/travel_pay/claims/show/docs" :response_delay: 0.3 :cache_multiple_responses: :uid_location: url :uid_locator: '\/veis\/api\/btsss\/travelclaim\/api\/v2\/claims\/(.+)\/documents' - :method: :get :path: "/veis/api/btsss/travelclaim/api/v2/claims/[0-9a-fA-F-]{36}" :file_path: "/travel_pay/claims/show" :response_delay: 0.3 :cache_multiple_responses: :uid_location: url :uid_locator: '\/veis\/api\/btsss\/travelclaim\/api\/v2\/claims\/(.+)' - :method: :get :path: "/veis/api/btsss/travelclaim/api/v2/appointments" :file_path: "/travel_pay/appointments/default" :response_delay: 0.3 - :method: :post :path: "/veis/api/btsss/travelclaim/api/v2/appointments/find-or-add" :file_path: "/travel_pay/appointments/default" :response_delay: 0.3 - :method: :patch :path: "/veis/api/btsss/travelclaim/api/v2/claims/*/submit" :file_path: "/travel_pay/claims/submit" :response_delay: 0.3 :cache_multiple_responses: :uid_location: url :uid_locator: '\/veis\/api\/btsss\/travelclaim\/api\/v2\/claims\/(.+)\/submit' - :method: :post :path: "/veis/api/btsss/travelclaim/api/v2/claims" :file_path: "/travel_pay/claims/create/default" :response_delay: 0.3 - :method: :get :path: "/veis/api/btsss/travelclaim/api/v2/claims/*/documents/*" :file_path: "/travel_pay/documents" :cache_multiple_responses: :uid_location: url :uid_locator: '\/veis\/api\/btsss\/travelclaim\/api\/v2\/claims\/(.+)\/documents\/(.+)' :response_delay: 0.3 ## Expenses - :method: :post :path: "/veis/api/btsss/travelclaim/api/v2/expenses/mileage" :file_path: "/travel_pay/expenses/default" :response_delay: 0.3 - :method: :post :path: "/veis/api/btsss/travelclaim/api/v1/expenses/other" :file_path: "/travel_pay/expenses/other/create" :response_delay: 0.3 #CRM Token post - :name: "CRM VEIS Auth Service" :base_uri: <%= "#{URI(Settings.ask_va_api.crm_api.auth_url).host}:#{URI(Settings.ask_va_api.crm_api.auth_url).port}" %> :endpoints: - :method: :post :path: <%= "/#{Settings.ask_va_api.crm_api.tenant_id}/oauth2/v2.0/token" %> :file_path: "/ask_va/token/default" :response_delay: 0.3 - :method: :post :path: <%= "/#{Settings.travel_pay.veis.tenant_id}/oauth2/token" %> :file_path: "/travel_pay/token/default" :response_delay: 0.3 - :name: 'carma' :base_uri: <%= "#{URI(Settings['salesforce-carma'].url).host}:#{URI(Settings['salesforce-carma'].url).port}" %> :endpoints: - :method: :post :path: "/services/oauth2/token" :file_path: "carma/oauth" - :method: :post :path: "/services/apexrest/carma/v1/1010-cg-submissions" :file_path: "carma/create" - :method: :post :path: "/services/data/v47.0/composite/tree/ContentVersion" :file_path: "carma/attachment" - :name: 'DMC' :base_uri: <%= "#{URI(Settings.dmc.url).host}:#{URI(Settings.dmc.url).port}" %> :endpoints: - :method: :post :path: "/api/v1/digital-services/debt-letter/get" :file_path: "debts/index" :cache_multiple_responses: :uid_location: body :uid_locator: 'fileNumber":"(\w+)"' :optional_code_locator: '"countOnly":(true|false)' - :method: :post :path: "/api/v1/digital-services/financial-status-report/formtopdf" :file_path: "debt_management_center/financial_status_reports/create" :cache_multiple_responses: :uid_location: body :uid_locator: 'fileNumber":"(\w+)"' - :method: :post :path: "/api/v1/digital-services/dispute-debt" :file_path: "debt_management_center/digital_dispute/create" :cache_multiple_responses: :uid_location: body :uid_locator: 'fileNumber":"(\w+)"' - :name: 'VBS' :base_uri: <%= "#{URI(Settings.mcp.vbs_v2.url).host}:#{URI(Settings.mcp.vbs_v2.url).port}" %> :endpoints: - :method: :post :path: "/vbsapi/GetStatementsByEDIPIAndVistaAccountNumber" :file_path: "vbs/index" :cache_multiple_responses: :uid_location: body :uid_locator: 'id' - :method: :post :path: "/vbsapi/UploadFSRJsonDocument" :file_path: "vbs/fsr" - :name: 'VHA' :base_uri: <%= "#{URI('https://' + Settings.vha.sharepoint.sharepoint_url).host}:#{URI('https://' + Settings.vha.sharepoint.sharepoint_url).port}" %> :endpoints: - :method: :post :path: <%= "/#{Settings.vha.sharepoint.base_path}/_api/Web/GetFolderByServerRelativeUrl('#{Settings.vha.sharepoint.base_path}/Submissions')/Files/*" %> :file_path: "vha/sharepoint/create" - :method: :post :path: <%= "/#{Settings.vha.sharepoint.base_path}/_api/Web/Lists/GetByTitle('Submissions')/items/*" %> :file_path: "vha/sharepoint/create" - :method: :get :path: "/_api/Web/*" :file_path: "vha/sharepoint/show" - :name: 'ACS' :base_uri: <%= "#{URI(Settings.vha.sharepoint.authentication_url).host}:#{URI(Settings.vha.sharepoint.authentication_url).port}" %> :endpoints: - :method: :post :path: <%= "/#{Settings.vha.sharepoint.tenant_id}/tokens/OAuth/2" %> :file_path: "vha/sharepoint/authenticate" - :name: 'MDOT' :base_uri: <%= "#{URI(Settings.mdot.url).host}:#{URI(Settings.mdot.url).port}" %> :endpoints: - :method: :get :path: "/supplies" :file_path: "mdot/supplies/index" :cache_multiple_responses: :uid_location: header :uid_locator: 'va_veteran_id' - :method: :post :path: "/supplies" :file_path: "mdot/supplies/create" :cache_multiple_responses: :uid_location: header :uid_locator: 'vaapikey' - :name: 'MHV UserAccount Creation' :base_uri: <%= "#{URI(IdentitySettings.mhv.account_creation.host).host}:#{URI(IdentitySettings.mhv.account_creation.host).port}" %> :endpoints: - :method: :post :path: '/v1/usermgmt/account-service/account' :file_path: 'mhv/account_creation/create_account/default' - :name: 'MHV_Rx' :base_uri: <%= "#{URI(Settings.mhv.rx.host).host}:#{URI(Settings.mhv.rx.host).port}" %> :endpoints: # data classes - :method: :get :path: "/mhv-api/patient/v1/bluebutton/geteligibledataclass" :file_path: "mhv/bluebutton/geteligibledataclass" :cache_multiple_responses: :uid_location: header :uid_locator: 'Token' # MHV rx active - :method: :get :path: "/v1/pharmacy/ess/getactiverx" :file_path: "mhv/prescription/getactiverx" :cache_multiple_responses: :uid_location: header :uid_locator: 'Token' # MHV rx medications - :method: :get :path: "/v1/pharmacy/ess/medications" :file_path: "mhv/prescription/medications" :cache_multiple_responses: :uid_location: header :uid_locator: 'Token' # MHV rx history - :method: :get :path: "/v1/pharmacy/ess/gethistoryrx" :file_path: "mhv/prescription/gethistoryrx" :cache_multiple_responses: :uid_location: header :uid_locator: 'Token' # MHV Session - :method: :get :path: "/mhv-api/patient/v1/session" :file_path: "mhv/session" :cache_multiple_responses: :uid_location: 'header' :uid_locator: 'mhvCorrelationId' # MHV rx refill - :method: :post :path: "/v1/pharmacy/ess/rxrefill/*" :file_path: "mhv/prescription/rxrefill" :cache_multiple_responses: :uid_location: url :uid_locator: '\/rxrefill\/(.+)' # SM Session - :method: :get :path: "/mhv-sm-api/patient/v1/session" :file_path: "mhv/session" :cache_multiple_responses: :uid_location: 'header' :uid_locator: 'mhvCorrelationId' # SM Folders - :method: :get :path: "/mhv-sm-api/patient/v1/folder" :file_path: "mhv/secure_messaging/folders" :cache_multiple_responses: :uid_location: header :uid_locator: 'Token' # SM Folder/* - :method: :get :path: "/mhv-sm-api/patient/v1/folder/*" :file_path: "mhv/secure_messaging/folder" :cache_multiple_responses: :uid_location: url :uid_locator: '\/folder\/(.+)' # SM Recipients - :method: :get :path: "/mhv-sm-api/patient/v1/triageteam" :file_path: "mhv/secure_messaging/triageteam" :cache_multiple_responses: :uid_location: header :uid_locator: 'Token' # SM Folder messages - :method: :get :path: "/mhv-sm-api/patient/v1/folder/*/message/page/*/pageSize/*" :file_path: "mhv/secure_messaging/folder_messages" :cache_multiple_responses: :uid_location: url :uid_locator: '\/folder\/(.+)\/message' # SM messages - :method: :get :path: "/mhv-sm-api/patient/v1/message/*/read" :file_path: "mhv/secure_messaging/messages" :cache_multiple_responses: :uid_location: url :uid_locator: '\/message\/(.+)\/read' # SM thread - :method: :get :path: "/mhv-sm-api/patient/v1/message/*/history" :file_path: "mhv/secure_messaging/history" :cache_multiple_responses: :uid_location: url :uid_locator: '\/message\/(.+)\/history' # MHV account create - :method: :post :path: '/mhv-api/patient/v1/account/register' :file_path: 'mhv/account/register' :cache_multiple_responses: :uid_location: body :uid_locator: 'icn":"(\w+)"' # MHV account upgrade - :method: :post :path: '/mhv-api/patient/v1/account/upgrade' :file_path: 'mhv/account/upgrade' :cache_multiple_responses: :uid_location: body :uid_locator: 'userId":(\d+)' # MHV correlation id - :method: :get :path: '/validmhvid/*' :file_path: 'mhv/correlation_id' :cache_multiple_responses: :uid_location: url :uid_locator: '\/validmhvid\/(.+)' # MHV id - :method: :get :path: '/mhvacctinfo/*' :file_path: 'mhv/account_info' :cache_multiple_responses: :uid_location: url :uid_locator: '\/mhvacctinfo\/(.+)' # EVSS - :name: 'EVSS' :base_uri: <%= "#{URI(Settings.evss.url).host}:#{URI(Settings.evss.url).port}" %> :endpoints: # Intent To File - :method: :get :path: "/wss-intenttofile-services-web/rest/intenttofile/v1" :file_path: "evss/itf/all_itf" :cache_multiple_responses: :uid_location: header :uid_locator: 'va_eauth_pnid' - :method: :get :path: "/wss-intenttofile-services-web/rest/intenttofile/v1/compensation/active" :file_path: "evss/itf/active_itf" :cache_multiple_responses: :uid_location: header :uid_locator: 'va_eauth_pnid' - :method: :post :path: "/wss-intenttofile-services-web/rest/intenttofile/v1/compensation" :file_path: "evss/itf/post_itf" :cache_multiple_responses: :uid_location: header :uid_locator: 'va_eauth_pnid' # Disability Compensation Form - :method: :get :path: "/wss-form526-services-web/rest/form526/v1/ratedDisabilities" :file_path: "evss/disability_form/rated_disabilities" :cache_multiple_responses: :uid_location: header :uid_locator: 'va_eauth_pnid' - :method: :get :path: "/wss-form526-services-web-v2/rest/form526/v2/ratedDisabilities" :file_path: "evss/disability_form/rated_disabilities" :cache_multiple_responses: :uid_location: header :uid_locator: 'va_eauth_pnid' - :method: :post :path: <%= "/#{Settings.evss.alternate_service_name}/rest/form526/v2/submit" %> :file_path: "evss/disability_form/form526" :cache_multiple_responses: :uid_location: header :uid_locator: 'va_eauth_pnid' - :method: :post :path: <%= "/#{Settings.evss.alternate_service_name}/rest/form526/v2/validate" %> :file_path: "evss/disability_form/form526_validate" :cache_multiple_responses: :uid_location: header :uid_locator: 'va_eauth_pnid' - :method: :post :path: <%= "/#{Settings.evss.alternate_service_name}/rest/form526/v2/getPDF" %> :file_path: "evss/disability_form/getPDF" :cache_multiple_responses: :uid_location: header :uid_locator: 'va_eauth_pnid' - :method: :post :path: <%= "/wss-common-services-web-#{Settings.evss.versions.common}/rest/ratingInfoService/#{Settings.evss.versions.common}/findRatingInfoPID" %> :file_path: "evss/disability_form/rating_info" :cache_multiple_responses: :uid_location: header :uid_locator: 'va_eauth_pnid' - :method: :get :path: "/wss-referencedata-services-web/rest/referencedata/v1/intakesites" :file_path: "evss/reference_data/intakesites" - :method: :get :path: "/wss-referencedata-services-web/rest/referencedata/v1/countries" :file_path: "evss/reference_data/countries" # Letters - :method: :get :path: "/wss-lettergenerator-services-web/rest/letters/v1" :file_path: "evss/letters/list" :cache_multiple_responses: :uid_location: header :uid_locator: 'va_eauth_pnid' - :method: :get :path: "/wss-lettergenerator-services-web/rest/letters/v1/letterBeneficiary" :file_path: "evss/letters/beneficiary" :cache_multiple_responses: :uid_location: header :uid_locator: 'va_eauth_pnid' - :method: :get :path: "/wss-lettergenerator-services-web/rest/letters/v1/*" :file_path: "evss/letters/download_pdf" :cache_multiple_responses: :uid_location: "url" :uid_locator: "\/wss-lettergenerator-services-web/rest/letters/v1\/(.+)" - :method: :post :path: "/wss-lettergenerator-services-web/rest/letters/v1/*/generate" :file_path: "evss/letters/download_pdf" :cache_multiple_responses: :uid_location: "url" :uid_locator: "\/wss-lettergenerator-services-web/rest/letters/v1\/(.+)\/generate" # Claims - :method: :get :path: <%= "/wss-claims-services-web-#{Settings.evss.versions.claims}/rest/vbaClaimStatusService/getClaims" %> :file_path: "evss/claims/index" :cache_multiple_responses: :uid_location: header :uid_locator: 'va_eauth_pnid' - :method: :post :path: <%= "/wss-claims-services-web-#{Settings.evss.versions.claims}/rest/vbaClaimStatusService/getClaimDetailById" %> :file_path: "evss/claims/show" :cache_multiple_responses: :uid_location: header :uid_locator: 'va_eauth_pnid' # EVSS Container - :name: 'EVSS Container' :base_uri: <%= "#{URI(Settings.evss.dvp.url).host}:#{URI(Settings.evss.dvp.url).port}" %> :endpoints: # Disability Compensation Form - :method: :post :path: <%= "/#{Settings.evss.service_name}/rest/form526/v2/submit" %> :file_path: "evss_container/disability_form/form526" :symbolize_response: true :cache_multiple_responses: :uid_location: header :uid_locator: 'va_eauth_pnid' - :method: :post :path: <%= "/#{Settings.evss.service_name}/rest/form526/v2/validate" %> :file_path: "evss_container/disability_form/form526_validate" :symbolize_response: true :cache_multiple_responses: :uid_location: header :uid_locator: 'va_eauth_pnid' # MVI - :name: 'MVI' :base_uri: <%= "#{URI(IdentitySettings.mvi.url).host}:#{URI(IdentitySettings.mvi.url).port}" %> :endpoints: - :method: :post :path: <%= URI(IdentitySettings.mvi.url).path %> :file_path: "mvi/profile" :cache_multiple_responses: :uid_location: body :uid_locator: '(?:root="2.16.840.1.113883.4.1" )?extension="(\d{9})"(?: root="2.16.840.1.113883.4.1")?' :optional_code_locator: 'modifyCode code="(MVI\.COMP1\.RMS|MVI\.COMP2)"' - :method: :post :path: <%= URI(IdentitySettings.mvi.url).path %> :file_path: "mvi/profile_icn" :cache_multiple_responses: :uid_location: body :uid_locator: 'id extension="([V0-9]*)"(?: root="2.16.840.1.113883.4.349")' :optional_code_locator: 'modifyCode code="(MVI\.COMP1\.RMS|MVI\.COMP2)"' - :method: :post :path: <%= URI(IdentitySettings.mvi.url).path %> :file_path: "mvi/profile_icn" :cache_multiple_responses: :uid_location: body :uid_locator: 'id (?:root="2.16.840.1.113883.4.349" )extension="([V0-9]*)"' :optional_code_locator: 'modifyCode code="(MVI\.COMP1\.RMS|MVI\.COMP2)"' - :method: :post :path: <%= URI(IdentitySettings.mvi.url).path %> :file_path: "mvi/profile_edipi" :cache_multiple_responses: :uid_location: body :uid_locator: '(?:root="2.16.840.1.113883.3.42.10001.100001.12" )?extension="(\d{10})"(?: root="2.16.840.1.113883.3.42.10001.100001.12")?' :optional_code_locator: 'modifyCode code="(MVI\.COMP1\.RMS|MVI\.COMP2)"' - :method: :post :path: <%= URI(IdentitySettings.mvi.url).path %> :file_path: "mvi/profile_idme_uuid" :cache_multiple_responses: :uid_location: body :uid_locator: 'id (?:root="2.16.840.1.113883.4.349" )?extension="(.*)\^PN\^200VIDM\^USDVA\^A"(?:root="2.16.840.1.113883.4.349")?' :optional_code_locator: 'modifyCode code="(MVI\.COMP1\.RMS|MVI\.COMP2)"' - :method: :post :path: <%= URI(IdentitySettings.mvi.url).path %> :file_path: "mvi/profile_logingov_uuid" :cache_multiple_responses: :uid_location: body :uid_locator: 'id (?:root="2.16.840.1.113883.4.349" )?extension="(.*)\^PN\^200VLGN\^USDVA\^A"(?:root="2.16.840.1.113883.4.349")?' :optional_code_locator: 'modifyCode code="(MVI\.COMP1\.RMS|MVI\.COMP2)"' - :method: :post :path: <%= URI(IdentitySettings.mvi.url).path %> :file_path: "mvi/add_person_proxy_icn" :cache_multiple_responses: :uid_location: body :uid_locator: 'id (?:root="2.16.840.1.113883.4.349" )extension="([V0-9]*\^NI\^200M\^USVHA\^P)"' :optional_code_locator: 'PROXY_ADD' - :method: :post :path: <%= URI(IdentitySettings.mvi.url).path %> :file_path: "mvi/add_person_implicit_logingov_uuid" :cache_multiple_responses: :uid_location: body :uid_locator: 'id (?:root="2.16.840.1.113883.4.349" )?extension="(.*)\^PN\^200VLGN\^USDVA\^A"(?:root="2.16.840.1.113883.4.349")?' :optional_code_locator: 'PRPA_IN201301UV02' - :method: :post :path: <%= URI(IdentitySettings.mvi.url).path %> :file_path: "mvi/add_person_implicit_idme_uuid" :cache_multiple_responses: :uid_location: body :uid_locator: 'id (?:root="2.16.840.1.113883.4.349" )?extension="(.*)\^PN\^200VIDM\^USDVA\^A"(?:root="2.16.840.1.113883.4.349")?' :optional_code_locator: 'PRPA_IN201301UV02' - :method: :post :path: <%= URI(IdentitySettings.mvi.url).path %> :file_path: "mvi/update_profile_idme_uuid" :cache_multiple_responses: :uid_location: body :uid_locator: 'id (?:root="2.16.840.1.113883.4.349" )?extension="(.*)\^PN\^200VIDM\^USDVA\^A"(?:root="2.16.840.1.113883.4.349")?' :optional_code_locator: 'PRPA_IN201302UV02' - :method: :post :path: <%= URI(IdentitySettings.mvi.url).path %> :file_path: "mvi/update_profile_logingov_uuid" :cache_multiple_responses: :uid_location: body :uid_locator: 'id (?:root="2.16.840.1.113883.4.349" )?extension="(.*)\^PN\^200VLGN\^USDVA\^A"(?:root="2.16.840.1.113883.4.349")?' :optional_code_locator: 'PRPA_IN201302UV02' - :method: :post :path: <%= URI(IdentitySettings.mvi.url).path %> :file_path: "mvi/update_profile_edipi" :cache_multiple_responses: :uid_location: body :uid_locator: 'id (?:root="2.16.840.1.113883.3.42.10001.100001.12" )?extension="(.*)\^NI\^200DOD\^USDOD\^A"(?:root="2.16.840.1.113883.3.42.10001.100001.12")?' :optional_code_locator: 'PRPA_IN201302UV02' # Appeals - :name: 'Caseflow' :base_uri: <%= "#{URI(Settings.caseflow.host).host}:#{URI(Settings.caseflow.host).port}" %> :endpoints: - :method: :get :path: "/api/v2/appeals" :file_path: "appeals/get_appeals" :cache_multiple_responses: :uid_location: header :uid_locator: ssn - :method: :get :path: "/api/v3/decision_reviews/supplemental_claims/contestable_issues/*" :file_path: "modules_appeals_api/contestable_issues" :cache_multiple_responses: :uid_location: header :uid_locator: X-VA-SSN - :method: :get :path: "/api/v3/decision_reviews/higher_level_reviews/contestable_issues/*" :file_path: "modules_appeals_api/contestable_issues" :cache_multiple_responses: :uid_location: header :uid_locator: X-VA-SSN - :method: :get :path: "/api/v3/decision_reviews/appeals/contestable_issues" :file_path: "modules_appeals_api/notice_of_disagreements/contestable_issues" :cache_multiple_responses: :uid_location: header :uid_locator: X-VA-SSN - :method: :get :path: "/health-check" :file_path: "appeals/health-check" - :method: :get :path: "/api/v3/decision_reviews/legacy_appeals" :file_path: modules_appeals_api/get_legacy_appeals :cache_multiple_responses: :uid_location: header :uid_locator: X-VA-SSN # Search - :name: 'Search' :base_uri: <%= "#{URI(Settings.search.url).host}:#{URI(Settings.search.url).port}" %> :endpoints: # Search results - :method: :get :path: "/api/v2/search/i14y" :file_path: "search/default" # Search GSA - :name: 'Search GSA' :base_uri: <%= "#{URI(Settings.search_gsa.url).host}:#{URI(Settings.search_gsa.url).port}" %> :endpoints: # Search results - :method: :get :path: "/technology/searchgov/v2/results/i14y" :file_path: "search/default" #VANotify - :name: 'VANotify' :base_uri: <%= "#{URI(Settings.vanotify.client_url).host}:#{URI(Settings.vanotify.client_url).port}" %> :endpoints: - :method: :post :path: "/v2/notifications/email" :file_path: "va_notify/email" :cache_multiple_responses: :uid_location: body :uid_locator: 'email_address":"(.*?)"' - :method: :post :path: "/vanotify/v2/notifications/sms" :file_path: "va_notify/sms" :cache_multiple_responses: :uid_location: body :uid_locator: 'phone_number":"(.*?)"' #VAOS Appointments Service - :name: "VAOS Appointments" :base_uri: <%= "#{URI(Settings.va_mobile.url).host}:#{URI(Settings.va_mobile.url).port}" %> :endpoints: - :method: :get :path: "/vaos/v1/patients/*/appointments" :file_path: "vaos/appointments" :response_delay: 0.3 :cache_multiple_responses: :uid_location: 'url' :uid_locator: '\/vaos\/v1\/patients\/^[a-zA-Z0-9]+$\/appointments' - :method: :get :path: "/vaos/v1/patients/*/appointments/*" :file_path: "vaos/appointments/get" :response_delay: 0.3 :cache_multiple_responses: :uid_location: 'url' :uid_locator: '\/vaos\/v1\/patients\/^[a-zA-Z0-9]+$\/appointments\/^[a-zA-Z0-9]+' - :method: :get :path: "/vpg/v1/patients/*/appointments" :file_path: "vaos/vpg/appointments" :response_delay: 0.3 :cache_multiple_responses: :uid_location: 'url' :uid_locator: '\/vpg\/v1\/patients\/([a-zA-Z0-9]+)\/appointments' - :method: :get :path: "/facilities/v2/facilities" :file_path: "vaos/facilities" :response_delay: 0.3 :cache_multiple_responses: :uid_location: 'query' :uid_locator: 'ids' - :method: :get :path: "/facilities/v2/facilities/*" :file_path: "vaos/facilities/get" :response_delay: 0.3 :cache_multiple_responses: :uid_location: 'url' :uid_locator: '\/facilities\/v2\/facilities\/^[0-9]+$' - :method: :get :path: "/facilities/v2/facilities/*/clinics/*" :file_path: "vaos/clinics" :response_delay: 0.3 :cache_multiple_responses: :uid_location: 'url' :uid_locator: '\/facilities\/v2\/facilities\/^[0-9]+$\/clinics\/^[0-9]+$' # Get referral list - :method: :get :path: "/vaos/v1/patients/*/referrals" :file_path: "vaos/referrals/referral_list" :cache_multiple_responses: :uid_location: url :uid_locator: '\/vaos\/v1\/patients\/(.+)\/referrals' # Get referral details - :method: :get :path: "/vaos/v1/patients/*/referrals/*" :file_path: "vaos/referrals/get_referral" :cache_multiple_responses: :uid_location: url :uid_locator: '\/vaos\/v1\/patients\/(?:.+)\/referrals\/(.+)' #LoROTA (CheckIn) - :name: "LoROTA" :base_uri: <%= "#{URI(Settings.check_in.lorota_v2.url).host}:#{URI(Settings.check_in.lorota_v2.url).port}" %> :endpoints: - :method: :post :path: <%= "/#{Settings.check_in.lorota_v2.base_path}/token" %> :file_path: "/lorota/token" :response_delay: 0.2 :cache_multiple_responses: :uid_location: body :uid_locator: 'dob":[\s]*"\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])"' - :method: :get :path: <%= "/#{Settings.check_in.lorota_v2.base_path}/data/*" %> :file_path: "/lorota/data" :response_delay: 0.2 :cache_multiple_responses: :uid_location: url :uid_locator: '\/data\/(.+)' #CheckIn Travel Claim VEIS Auth (BTSSS) - :name: "Travel Claim VEIS Auth Service" :base_uri: <%= "#{URI(Settings.check_in.travel_reimbursement_api_v2.auth_url).host}:#{URI(Settings.check_in.travel_reimbursement_api_v2.auth_url).port}" %> :endpoints: - :method: :post :path: <%= "/#{Settings.check_in.travel_reimbursement_api_v2.tenant_id}/oauth2/v2.0/token" %> :file_path: "/travel_claim/v0/token/default" :response_delay: 0.3 - :method: :post :path: <%= "/#{Settings.check_in.travel_reimbursement_api_v2.tenant_id}/oauth2/token" %> :file_path: "/travel_claim/v1/token/default" :response_delay: 0.3 #CheckIn Travel Claim Service (BTSSS) - :name: "CheckIn Travel Claim Service" :base_uri: <%= "#{URI(Settings.check_in.travel_reimbursement_api_v2.claims_url).host}:#{URI(Settings.check_in.travel_reimbursement_api_v2.claims_url).port}" %> :endpoints: - :method: :post :path: <%= "/#{Settings.check_in.travel_reimbursement_api_v2.claims_base_path}/api/ClaimIngest/submitclaim" %> :file_path: "/travel_claim/v0/submitclaim/default" :response_delay: 0.3 - :method: :post :path: <%= "/#{Settings.check_in.travel_reimbursement_api_v2.claims_base_path}/api/ClaimIngest/V1/GetClaimsStatus" %> :file_path: "/travel_claim/v0/claimstatus/default" :response_delay: 0.3 - :method: :post :path: "/api/v4/auth/system-access-token" :file_path: "/travel_claim/v1/btsss_token/default" :response_delay: 0.3 - :method: :get :path: "/api/v3/claims" :file_path: "/travel_claim/claims/index/default" :response_delay: 0.3 - :method: :post :path: "/api/v3/appointments/find-or-add" :file_path: "/travel_claim/v1/appointments/default" :response_delay: 0.3 - :method: :patch :path: "/api/v3/claims/*/submit" :file_path: "/travel_claim/v1/claims/submit/default" :response_delay: 0.3 - :method: :post :path: "/api/v3/claims" :file_path: "/travel_claim/v1/claims/create/default" :response_delay: 0.3 - :method: :post :path: "/api/v3/expenses/mileage" :file_path: "/travel_claim/v1/expenses/create/default" :response_delay: 0.3 #CHIP - :name: "CHIP" :base_uri: <%= "#{URI(Settings.chip.url).host}:#{URI(Settings.chip.url).port}" %> :endpoints: - :method: :post :path: <%= "/#{Settings.chip.base_path}/token" %> :file_path: "/chip/token/default" :response_delay: 0.2 - :method: :post :path: <%= "/#{Settings.check_in.chip_api_v2.base_path}/actions/initiate-check-in/*" %> :file_path: "/chip/initiate-check-in/default" :response_delay: 10 - :method: :post :path: <%= "/#{Settings.check_in.chip_api_v2.base_path}/actions/check-in/*" %> :file_path: "/chip/check-in/default" :response_delay: 5 - :method: :post :path: <%= "/#{Settings.check_in.chip_api_v2.base_path}/actions/refresh-appointments/*" %> :file_path: "/chip/refresh-appointments/default" :response_delay: 2 - :method: :post :path: <%= "/#{Settings.check_in.chip_api_v2.base_path}/actions/pre-checkin/*" %> :file_path: "/chip/pre-checkin/default" :response_delay: 2 - :method: :post :path: <%= "/#{Settings.check_in.chip_api_v2.base_path}/actions/confirm-demographics" %> :file_path: "/chip/confirm-demographics/default" :response_delay: 1 - :method: :post :path: <%= "/#{Settings.check_in.chip_api_v2.base_path}/actions/set-precheckin-started/*" %> :file_path: "/chip/set-precheckin-started/default" :response_delay: 2 - :method: :post :path: <%= "/#{Settings.check_in.chip_api_v2.base_path}/actions/refresh-precheckin/*" %> :file_path: "/chip/refresh-precheckin/default" :response_delay: 4 - :method: :post :path: <%= "/#{Settings.chip.base_path}/actions/authenticated-checkin" %> :file_path: "/chip/authenticated-check-in/default" :response_delay: 4 - :method: :delete :path: <%= "/#{Settings.check_in.chip_api_v2.base_path}/actions/deleteFromLorota/*" %> :file_path: "/chip/deleteFromLorota/default" :response_delay: 4 - :method: post :path: <%= "/#{Settings.chip.base_path}/actions/authenticated-demographics" %> :file_path: "/chip/update-demographics/default" :response_delay: 4 - :method: :post :path: <%= "/#{Settings.check_in.chip_api_v2.base_path}/actions/set-e-check-in-started" %> :file_path: "/chip/set-echeckin-started/default" :response_delay: 2 # LGY: Certificate of Eligibility - :name: "LGY" :base_uri: <%= "#{URI(Settings.lgy.base_url).host}:#{URI(Settings.lgy.base_url).port}" %> :endpoints: - :method: :get :path: "/eligibility-manager/api/eligibility/application" :file_path: "/lgy/get_application" :cache_multiple_responses: :uid_location: 'query' :uid_locator: 'edipi' - :method: :put :path: "/eligibility-manager/api/eligibility/application" :file_path: "/lgy/put_application" :cache_multiple_responses: :uid_location: 'query' :uid_locator: 'edipi' - :method: :get :path: "/eligibility-manager/api/eligibility/determination" :file_path: "/lgy/get_determination" :cache_multiple_responses: :uid_location: 'query' :uid_locator: 'edipi' - :method: :get :path: "/eligibility-manager/api/eligibility/documents" :file_path: "/lgy/get_documents" :cache_multiple_responses: :uid_location: 'query' :uid_locator: 'edipi' - :method: :post :path: "/eligibility-manager/api/eligibility/document" :file_path: "/lgy/post_document" :cache_multiple_responses: :uid_location: 'query' :uid_locator: 'edipi' - :method: :get :path: "/eligibility-manager/api/eligibility/document/*/file" :file_path: "/lgy/get_document_download" :cache_multiple_responses: :uid_location: 'url' :uid_locator: '\/eligibility-manager/api/eligibility/document\/(.+)\/file' - :method: :get :path: "/eligibility-manager/api/eligibility/documents/coe/file" :file_path: "/lgy/get_coe_file" :cache_multiple_responses: :uid_location: 'query' :uid_locator: 'edipi' # Lighthouse - :name: "Lighthouse" :base_uri: <%= "#{URI(Settings.lighthouse.benefits_claims.host).host}:#{URI(Settings.lighthouse.benefits_claims.host).port}" %> :endpoints: # Benefits Claims API - :method: :get :path: "/services/claims/v2/veterans/*/claims" :file_path: "/lighthouse/benefits_claims/index" :cache_multiple_responses: :uid_location: "url" :uid_locator: "\/services/claims/v2/veterans\/(.+)\/claims" - :method: :get :path: "/services/claims/v2/veterans/*/claims/*" :file_path: "/lighthouse/benefits_claims/show" :cache_multiple_responses: :uid_location: "url" :uid_locator: "\/services/claims/v2/veterans\/(?:.+)\/claims\/(.+)" - :method: :post :path: "/services/claims/v2/veterans/*/claims/*/5103" :file_path: "/lighthouse/benefits_claims/submit_5103" :cache_multiple_responses: :uid_location: "url" :uid_locator: "\/services/claims/v2/veterans\/(?:.+)\/claims\/(.+)/5103" # Benefits Documents API - :method: :post :path: "/services/benefits-documents/v1/documents" :file_path: "/lighthouse/claims_api/benefits_documents/upload" - :method: :post :path: "/services/benefits-documents/v1/documents/search" :file_path: "/lighthouse/claims_api/benefits_documents/search/default" # Service History and Eligibility API V2 - :method: :get :path: "/services/veteran_verification/v2/disability_rating/*" :file_path: "/lighthouse/veteran_verification/rated_disabilities" :cache_multiple_responses: :uid_location: "url" :uid_locator: "\/services/veteran_verification/v2/disability_rating\/(.+)" # Benefits Education - :method: :get :path: '/services/benefits-education/v1/education/chapter33' :file_path: "/lighthouse/benefits_education" :cache_multiple_responses: :uid_location: "query" :uid_locator: "icn" # Patient Health API - :method: :post :path: "/oauth2/health/system/v1/token" :file_path: "/lighthouse/veterans_health/token" - :method: :get :path: "/services/fhir/v0/r4/AllergyIntolerance/*" :file_path: "/lighthouse/veterans_health/AllergyIntolerance/show" :cache_multiple_responses: :uid_location: url :uid_locator: "\/services\/fhir\/v0\/r4\/AllergyIntolerance\/(.*)" - :method: :get :path: "/services/fhir/v0/r4/Immunization" :file_path: "/lighthouse/veterans_health/Immunization/index" :cache_multiple_responses: :uid_location: query :uid_locator: patient - :method: :get :path: "/services/fhir/v0/r4/AllergyIntolerance" :file_path: "/lighthouse/veterans_health/AllergyIntolerance/index" :cache_multiple_responses: :uid_location: query :uid_locator: patient - :method: :get :path: "/services/health-care-costs-coverage/v0/r4/ChargeItem" :file_path: "/lighthouse/health_care_costs_and_coverage/charge_item/default" - :method: :get :path: "/services/health-care-costs-coverage/v0/r4/Encounter" :file_path: "/lighthouse/health_care_costs_and_coverage/encounter/default" - :method: :get :path: "/services/health-care-costs-coverage/v0/r4/Invoice" :file_path: "/lighthouse/health_care_costs_and_coverage/invoice/default" - :method: :get :path: "/services/health-care-costs-coverage/v0/r4/MedicationDispense" :file_path: "/lighthouse/health_care_costs_and_coverage/medication_dispense/default" - :method: :get :path: "/services/health-care-costs-coverage/v0/r4/Organization" :file_path: "/lighthouse/health_care_costs_and_coverage/organization/default" - :method: :get :path: "/services/health-care-costs-coverage/v0/r4/Patient" :file_path: "/lighthouse/health_care_costs_and_coverage/patient/default" - :method: :get :path: "/services/health-care-costs-coverage/v0/r4/PaymentReconciliation" :file_path: "/lighthouse/health_care_costs_and_coverage/payment_reconciliation/default" # EPS (Enhanced Patient Services) API - :name: "EPS API" :base_uri: <%= "#{URI(Settings.vaos.eps.api_url).host}:#{URI(Settings.vaos.eps.api_url).port}" %> :endpoints: # Get a provider's service details - :method: :get :path: "/care-navigation/v1/provider-services" :file_path: "vaos/eps/providers/get_provider_services/default" - :method: :get :path: "/care-navigation/v1/provider-services/*" :file_path: "vaos/eps/providers/get_provider_services" :cache_multiple_responses: :uid_location: url :uid_locator: '\/care-navigation\/v1\/provider-services\/(.+)' # Get list of appointments - :method: :get :path: "/care-navigation/v1/appointments" :file_path: "vaos/eps/appointments/get_appointments/default" # Get appointment details - :method: :get :path: "/care-navigation/v1/appointments/*" :file_path: "vaos/eps/appointments/get_appointment" :cache_multiple_responses: :uid_location: url :uid_locator: '\/care-navigation\/v1\/appointments\/(.+)' # Get provider service slots - :method: :get :path: "/care-navigation/v1/provider-services/*/slots" :file_path: "vaos/eps/providers/get_provider_slots" :cache_multiple_responses: :uid_location: url :uid_locator: '\/care-navigation\/v1\/provider-services\/(.+)\/slots' # Create draft appointment - :method: :post :path: "/care-navigation/v1/appointments" :file_path: "vaos/eps/appointments/create_draft_appointment" :cache_multiple_responses: :uid_location: body :uid_locator: 'referralNumber":"(\w+)"' # Submit appointment - :method: :post :path: "/care-navigation/v1/appointments/*/submit" :file_path: "vaos/eps/appointments/submit_appointment" :cache_multiple_responses: :uid_location: url :uid_locator: '\/care-navigation\/v1\/appointments\/(.+)\/submit' # Lighthouse Benefits Documents API - :name: "Lighthouse Benefits Documents" :base_uri: <%= "#{URI(Settings.lighthouse.benefits_documents.host).host}:#{URI(Settings.lighthouse.benefits_documents.host).port}" %> :endpoints: - :method: :post :path: "/benefits-documents/v1/documents" :file_path: "/lighthouse/benefits_documents" # After Visit Summary API - :name: "AVS" :base_uri: <%= "#{URI(Settings.avs.url).host}:#{URI(Settings.avs.url).port}" %> :endpoints: - :method: :get :path: "/avs-by-appointment/*/*" :file_path: "/avs/index" :cache_multiple_responses: :uid_location: url :uid_locator: '\/avs-by-appointment\/(.*)' - :method: :get :path: "/avs/*" :file_path: "/avs/show" :cache_multiple_responses: :uid_location: url :uid_locator: '\/avs\/(.*)' # Security Token Service API - :name: "MAP STS" :base_uri: <%= "#{URI(IdentitySettings.map_services.oauth_url).host}:#{URI(IdentitySettings.map_services.oauth_url).port}" %> :endpoints: - :method: :post :path: "/sts/oauth/v1/token" :file_path: "map/secure_token_service/token" - :method: :get :path: "/sts/oauth/v1/jwks" :file_path: "map/secure_token_service/jwks" # Sign Up Service Terms API - :name: "MAP SUS" :base_uri: <%= "#{URI(IdentitySettings.map_services.sign_up_service_url).host}:#{URI(IdentitySettings.map_services.sign_up_service_url).port}" %> :endpoints: - :method: :get :path: "/signup/v1/patients/*/status/summary" :file_path: "map/sign_up_service/status" :cache_multiple_responses: :uid_location: url :uid_locator: '\/signup\/v1\/patients\/([V0-9]*)/status\/summary' - :method: :post :path: "/signup/v1/patients/*/agreements" :file_path: "map/sign_up_service/agreements_accept" :cache_multiple_responses: :uid_location: url :uid_locator: '\/signup\/v1\/patients\/([V0-9]*)\/agreements' - :method: :delete :path: "/signup/v1/patients/*/agreements" :file_path: "map/sign_up_service/agreements_delete" :cache_multiple_responses: :uid_location: url :uid_locator: '\/signup\/v1\/patients\/([V0-9]*)\/agreements' - :method: :put :path: "/signup/v1/patients/*/provisioning/cerner" :file_path: "map/sign_up_service/update_provisioning" :cache_multiple_responses: :uid_location: url :uid_locator: '\/signup\/v1\/patients\/([V0-9]*)\/provisioning\/cerner' # VA Profile (formerly known as Vet360) - :name: "VA Profile" :base_uri: <%= "#{URI(Settings.vet360.url).host}:#{URI(Settings.vet360.url).port}" %> :endpoints: - :method: :get :path: "/demographics/demographics/v1/*/*" :file_path: "vet360/demographics/default" - :method: :post :path: "/profile-service/profile/v3/*/*" :file_path: "vet360/profile-service/default" - :method: :get :path: "/contact-information-hub/contact-information/v2/*/*" :file_path: "vet360/contact_information_hub/default" # MHV Unified Health Data security service - :name: "MHV UHD Security" :base_uri: <%= "#{URI(Settings.mhv.uhd.security_host).host}:#{URI(Settings.mhv.uhd.security_host).port}" %> :endpoints: - :method: :post :path: "/mhvapi/security/v1/login" :file_path: "mhv/uhd/security-service/default" # MHV Unified Health Data service - :name: "MHV UHD" :base_uri: <%= "#{URI(Settings.mhv.uhd.host).host}:#{URI(Settings.mhv.uhd.host).port}" %> :endpoints: - :method: :get :path: "/v1/medicalrecords/allergies" :file_path: "mhv/uhd/allergies" :cache_multiple_responses: :uid_location: "query" :uid_locator: "patientId" - :method: :get :path: "/v1/medicalrecords/labs" :file_path: "mhv/uhd/labs" :cache_multiple_responses: :uid_location: "query" :uid_locator: "patient-id" - :method: :get :path: "/v1/medicalrecords/conditions" :file_path: "mhv/uhd/conditions" :cache_multiple_responses: :uid_location: "query" :uid_locator: "patientId" - :method: :get :path: "/v1/medicalrecords/notes" :file_path: "mhv/uhd/notes" :cache_multiple_responses: :uid_location: "query" :uid_locator: "patient-id" - :method: :get :path: "/v1/medicalrecords/vitals" :file_path: "mhv/uhd/vitals" :cache_multiple_responses: :uid_location: "query" :uid_locator: "patient-id" - :method: :get :path: "/v1/medicalrecords/ccd" :file_path: "mhv/uhd/ccd" :cache_multiple_responses: :uid_location: "query" :uid_locator: "patientId" # VRE - :name: "VRE" :base_uri: <%= "#{URI(Settings.res.base_url).host}:#{URI(Settings.res.base_url).port}" %> :endpoints: - :method: :post :path: "/suite/webapi/chapter31-eligibility-details-search" :file_path: "vre/ch31_eligibility" :cache_multiple_responses: :uid_location: body :uid_locator: 'icn":"(\w+)"' - :method: :post :path: "/suite/webapi/get-ch31-case-details" :file_path: "vre/ch31_case_details" :cache_multiple_responses: :uid_location: body :uid_locator: 'icn":"(\w+)"' # SOB/DGI - :name: "SOB" :base_uri: <%= "#{URI(Settings.dgi.sob.claimants.url).host}:#{URI(Settings.dgi.sob.claimants.url).port}" %> :endpoints: - :method: :post :path: "/external-api-service/api/v1/claimants" :file_path: "dgi/sob" :cache_multiple_responses: :uid_location: body :uid_locator: 'ssn":"(\w+)"'
0
code_files/vets-api-private/config
code_files/vets-api-private/config/ca-trust/fwdproxy.crt
-----BEGIN CERTIFICATE----- MIIEADCCAuigAwIBAgIJAJ5OodmaRJm8MA0GCSqGSIb3DQEBBQUAMF0xCzAJBgNV BAYTAlVTMQowCAYDVQQIEwEuMQowCAYDVQQHEwEuMQowCAYDVQQKEwEuMSowKAYD VQQDFCEqLnVzLWdvdi13ZXN0LTEuZWxiLmFtYXpvbmF3cy5jb20wHhcNMTcwMjIz MjM0MjI1WhcNMjcwMjIxMjM0MjI1WjBdMQswCQYDVQQGEwJVUzEKMAgGA1UECBMB LjEKMAgGA1UEBxMBLjEKMAgGA1UEChMBLjEqMCgGA1UEAxQhKi51cy1nb3Ytd2Vz dC0xLmVsYi5hbWF6b25hd3MuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB CgKCAQEAnD52gIfC0LwZomI8Yc5k2P2FiAPvEBPoAk+OaRTya5COHHEadorpbP58 77qzLlQ3pdpRlrdhYnMfJiv5Ir1tWveF/AxTtFpdCJ231N+hvuykk6Vk2a9mGdzI Bxy3Aab2gDjvYWeNg+n0fov3dNDLVwIcGhXIIk4A03q/1q4ZxDZqmevTLfiNaVrq eFwSam34vhMcZTUyYNndHK8ofBePvQEiQJi+C0iMVhabt3WoCyMbYIF/dgkNWQex kCaC1ylyLA9IXlWt4maRIm1Ip7Mfh9DoygzgU1n6/1kOEi3L05w2oSgwLZjTVS+y n4mPBZeQZOwM5ScQLm5Uu05Cbdm5BQIDAQABo4HCMIG/MB0GA1UdDgQWBBRvO63K dgpZtqEwi4zRDYXCD3vqszCBjwYDVR0jBIGHMIGEgBRvO63KdgpZtqEwi4zRDYXC D3vqs6FhpF8wXTELMAkGA1UEBhMCVVMxCjAIBgNVBAgTAS4xCjAIBgNVBAcTAS4x CjAIBgNVBAoTAS4xKjAoBgNVBAMUISoudXMtZ292LXdlc3QtMS5lbGIuYW1hem9u YXdzLmNvbYIJAJ5OodmaRJm8MAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQAD ggEBABxBfJV1wSG/NqE2JG8z8fP+UfUX2YwRHh2y4sjANHdOUCgisoOAMWfoOYBv H1JYykdW4QmNqAvDVtzx/DP1BdAAB1k+5QG2Rl7XKcO8CkdZVB2fvZvzcfPyzTcC YGJ/MIZxdgYtfnppTejl5C/tD47AmSAwdeWHPh4xBSqCnjdn3CjB2ZFPe4aNBiDp FwQG4QBXla5nbJIhbB0pp+0uqxvq2tyMgFloravRgQXD3WFvSPGbKrKDkcwrQYb2 aMxcCVujSNItvIOdowHaa7uig1CtSg0yw+8xCK+b6vHyzqe0LmYvZI80fBObCu6t sFjIuGR9AMmur8NvEq+9T7EYHJA= -----END CERTIFICATE-----
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 time.
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_information, address] bankAccount: bankAccountType: [payment_information, account_type] bankAccountNumber: [payment_information, account_number] bankRoutingNumber: [payment_information, routing_number] bankName: [payment_information, bank_name]
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_information, service_number] dateOfBirth: [identity_information, date_of_birth] contactInformation: email: [contact_information, email] phone: [contact_information, us_phone] workPhone: [personal_information, work_phone] address: [contact_information, address] avaProfile: schoolInfo: schoolFacilityCode: [ava_profile, school_facility_code] schoolName: [ava_profile, school_name] businessPhone: [ava_profile, business_phone] businessEmail: [ava_profile, business_email] veteranServiceInformation: branchOfService: [military_information, last_service_branch] serviceDateRange: from: [military_information, last_entry_date] to: [military_information, last_discharge_date]
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_information, mobile_phone] veteranAddress: [contact_information, address] email: [contact_information, email] toursOfDuty: [military_information, tours_of_duty] currentlyActiveDuty: [military_information, currently_active_duty_hash]
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] dateOfBirth: [identity_information, date_of_birth] eligibility: [mdot_supplies, eligibility] supplies: [mdot_supplies, available]
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_information, home_phone] usPhone: [contact_information, us_phone] emailAddress: [contact_information, email] dependents: [dependents_information]
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: [contact_information, us_phone] verified: [military_information, vic_verified] gender: [identity_information, gender]
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_information, mobile_phone] international_phone: [contact_information, home_phone] service_branch: [military_information, service_branches_for_pensions] active_service_date_range: from: [military_information, first_uniformed_entry_date] to: [military_information, last_active_discharge_date] service_number: [military_information, service_number]
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_information, address, country] postalCode: [contact_information, address, postal_code] ssn: [identity_information, ssn] phone_number: [contact_information, us_phone] email_address: [contact_information, email]
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: 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/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: [contact_information, address] email: [contact_information, email] toursOfDuty: [military_information, tours_of_duty] currentlyActiveDuty: [military_information, currently_active_duty_hash]
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] militaryInformation: serviceBranch: [military_information, last_service_branch] serviceDateRange: from: [military_information, last_entry_date] to: [military_information, last_discharge_date] identityValidation: hasICN: [identity_validation, has_icn] hasParticipantId: [identity_validation, has_participant_id] isLoa3: [identity_validation, is_loa3]
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 for prefill without errors. mailingAddress: [contact_information, address]
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] claimantPhoneNumber: [contact_information, us_phone] claimantEmailAddress: [contact_information, email]