Skip to contents

Place of Service Codes are two-digit codes placed on health care professional claims to indicate the setting in which a service was provided. The Centers for Medicare & Medicaid Services (CMS) maintain POS codes used throughout the health care industry.

Usage

search_pos(pos_code = NULL, pos_type = NULL, ...)

Arguments

pos_code

<chr> vector of 2-character Place of Service codes; default is NULL

pos_type

<chr> Place of Service type, one of Facility or Non-Facility; default is NULL

...

These dots are for future extensions and must be empty.

Value

a tibble

Details

This code set is required for use in the implementation guide adopted as the national standard for electronic transmission of professional health care claims under the provisions of the Health Insurance Portability and Accountability Act of 1996 (HIPAA).

HIPAA directed the Secretary of HHS to adopt national standards for electronic transactions. These standard transactions require all health plans and providers to use standard code sets to populate data elements in each transaction.

The Transaction and Code Set Rule adopted the ASC X12N-837 Health Care Claim: Professional, volumes 1 and 2, version 4010, as the standard for electronic submission of professional claims.

This standard names the POS code set currently maintained by CMS as the code set to be used for describing sites of service in such claims. POS information is often needed to determine the acceptability of direct billing of Medicare, Medicaid and private insurance services provided by a given provider.

See also

Examples

search_pos(pos_code = c("11", "21"))
#> # A tibble: 2 × 4
#>   pos_code pos_type     pos_name           pos_description                      
#>   <chr>    <fct>        <chr>              <chr>                                
#> 1 11       Non-Facility Office             Location, other than a hospital, ski…
#> 2 21       Facility     Inpatient Hospital A facility, other than psychiatric, …

search_pos(pos_type = "Facility")
#> # A tibble: 18 × 4
#>    pos_code pos_type pos_name                                    pos_description
#>    <chr>    <fct>    <chr>                                       <chr>          
#>  1 02       Facility Telehealth Provided Other than in Patient’… The location w…
#>  2 06       Facility Indian Health Service Provider-based Facil… A facility or …
#>  3 08       Facility Tribal 638 Provider-based Facility          A facility or …
#>  4 19       Facility Off Campus-Outpatient Hospital              A portion of a…
#>  5 21       Facility Inpatient Hospital                          A facility, ot…
#>  6 22       Facility On Campus-Outpatient Hospital               A portion of a…
#>  7 23       Facility Emergency Room-Hospital                     A portion of a…
#>  8 24       Facility Ambulatory Surgical Center                  A freestanding…
#>  9 26       Facility Military Treatment Facility                 A medical faci…
#> 10 31       Facility Skilled Nursing Facility                    A facility whi…
#> 11 34       Facility Hospice                                     A facility, ot…
#> 12 41       Facility Ambulance-Land                              A land vehicle…
#> 13 42       Facility Ambulance-Air or Water                      An air or wate…
#> 14 51       Facility Inpatient Psychiatric Facility              A facility tha…
#> 15 52       Facility Psychiatric Facility-Partial Hospitalizati… A facility for…
#> 16 53       Facility Community Mental Health Center              A facility tha…
#> 17 56       Facility Psychiatric Residential Treatment Center    A facility or …
#> 18 61       Facility Comprehensive Inpatient Rehabilitation Fac… A facility tha…