"status": "active"
"identifier": [
{
"system": "urn:oid:0.1.2.3.4.5.6.7",
"value": "654321"
}
]
"name": "HACC Funded Billing for Peter James Chalmers"
"guarantor":
"subject": {
"display": "Peter James Chalmers",
"reference": "Patient/example"
}
"period": {
"start": "2016-01-01",
"end": "2016-06-30"
}
"active": {
"start": "2016-01-01",
"end": "2016-06-30"
}
"coverage": [
{
"priority": 1,
"coverage": {
"reference": "Coverage/7546D"
}
}
]
"owner": {
"reference": "Organization/hl7"
}
"balance": {
"code": "USD",
"unit": "USD",
"value": -1200,
"system": "urn:iso:std:iso:4217"
}
"type": {
"text": "patient",
"coding": [
{
"code": "PBILLACCT",
"system": "http://hl7.org/fhir/v3/ActCode",
"display": "patient billing account"
}
]
}
"description": "Hospital charges"
{
"status": "active",
"balance": {
"code": "USD",
"unit": "USD",
"value": -1200,
"system": "urn:iso:std:iso:4217"
},
"name": "HACC Funded Billing for Peter James Chalmers",
"resourceType": "Account",
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">HACC Funded Billing for Peter James Chalmers</div>"
},
"description": "Hospital charges",
"period": {
"start": "2016-01-01",
"end": "2016-06-30"
},
"owner": {
"reference": "Organization/hl7"
},
"coverage": [
{
"priority": 1,
"coverage": {
"reference": "Coverage/7546D"
}
}
],
"active": {
"start": "2016-01-01",
"end": "2016-06-30"
},
"identifier": [
{
"system": "urn:oid:0.1.2.3.4.5.6.7",
"value": "654321"
}
],
"type": {
"text": "patient",
"coding": [
{
"code": "PBILLACCT",
"system": "http://hl7.org/fhir/v3/ActCode",
"display": "patient billing account"
}
]
},
"id": "example",
"subject": {
"display": "Peter James Chalmers",
"reference": "Patient/example"
}
}
{
"resourceType" : "Account",
// from Resource: id, meta, implicitRules, and language
// from DomainResource: text, contained, extension, and modifierExtension
"identifier" : [{ Identifier }], // Account number
"status" : "<code>", // active | inactive | entered-in-error
"type" : { CodeableConcept }, // E.g. patient, expense, depreciation
"name" : "<string>", // Human-readable label
"subject" : { Reference(Patient|Device|Practitioner|Location|
HealthcareService|Organization) }, // What is account tied to?
"period" : { Period }, // Transaction window
"active" : { Period }, // Time window that transactions may be posted to this account
"balance" : { Money }, // How much is in account?
"coverage" : [{ // The party(s) that are responsible for covering the payment of this account, and what order should they be applied to the account
"coverage" : { Reference(Coverage) }, // R! The party(s) that are responsible for covering the payment of this account
"priority" : "<positiveInt>" // The priority of the coverage in the context of this account
}],
"owner" : { Reference(Organization) }, // Who is responsible?
"description" : "<string>", // Explanation of purpose/use
"guarantor" : [{ // Responsible for the account
"party" : { Reference(Patient|RelatedPerson|Organization) }, // R! Responsible entity
"onHold" : <boolean>, // Credit or other hold applied
"period" : { Period } // Guarrantee account during
}]
}
The following search parameters can be used to query Account resources. Just submit them like so:
https://api.1up.health/fhir/stu3/Account?query-param=queryvalue
Search Parameter | Field Type | Resource Fields Searched |
---|---|---|
balance | quantity | balance |
identifier | text | identifier |
name | text | name |
owner | reference | owner |
patient | reference | subject |
period | date | period |
status | text | status |
subject | reference | subject |
type | text | type |