Skip to content

ClaimLocation

Frozen location data from a submitted claim snapshot

Fields

city · String · City
country · String · Country
id · ID · Location ID
line1 · String · Street address line 1
line2 · String · Street address line 2
name · String · Location name
npi · String · Location NPI
other_id · String · Other ID of the location
other_id_qualifier · String · Other ID qualifier of the location
place_of_service_code · String · Place of service code
state · String · State
zip · String · ZIP code

Used By

Definition

"""
Frozen location data from a submitted claim snapshot
"""
type ClaimLocation {
"""
City
"""
city: String
"""
Country
"""
country: String
"""
Location ID
"""
id: ID
"""
Street address line 1
"""
line1: String
"""
Street address line 2
"""
line2: String
"""
Location name
"""
name: String
"""
Location NPI
"""
npi: String
"""
Other ID of the location
"""
other_id: String
"""
Other ID qualifier of the location
"""
other_id_qualifier: String
"""
Place of service
"""
place_of_service: ClaimPlaceOfService
"""
Place of service code
"""
place_of_service_code: String
"""
State
"""
state: String
"""
ZIP code
"""
zip: String
}