BioMaxis Implementation Guide - Local Development build (v0.0.0-semantic-release) built by the FHIR (HL7® FHIR® Standard) Build Tools. See the Directory of published versions
: BioMaxis Invoice - Balanced (Alternative Example) - TTL Representation
Raw ttl | Download
@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
a fhir:Invoice ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "invoice-example-02"] ; #
fhir:meta [
( fhir:profile [
fhir:v "http://biomaxis.com/fhir/StructureDefinition/biomaxis-invoice"^^xsd:anyURI ;
fhir:l <http://biomaxis.com/fhir/StructureDefinition/biomaxis-invoice> ] )
] ; #
fhir:text [
fhir:status [ fhir:v "extensions" ] ;
fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Invoice invoice-example-02</b></p><a name=\"invoice-example-02\"> </a><a name=\"hcinvoice-example-02\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-biomaxis-invoice.html\">BioMaxis Invoice</a></p></div><p><b>Invoice Amount Paid</b>: <span title=\"Nepalese Rupee\">NPR2,750.50</span> (NPR)</p><p><b>status</b>: balanced</p><p><b>subject</b>: <a href=\"Patient/example\">Jane Smith</a></p><p><b>date</b>: 2025-01-20</p><p><b>issuer</b>: <a href=\"Organization/example\">BioMaxis Hospital</a></p><h3>TotalNets</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Value</b></td><td><b>Currency</b></td></tr><tr><td style=\"display: none\">*</td><td>2750.5</td><td>Nepalese rupee</td></tr></table><h3>TotalGrosses</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Value</b></td><td><b>Currency</b></td></tr><tr><td style=\"display: none\">*</td><td>2750.5</td><td>Nepalese rupee</td></tr></table></div>"^^rdf:XMLLiteral ]
] ; #
fhir:extension ( [
fhir:url [
fhir:v "http://biomaxis.com/fhir/StructureDefinition/invoice-amountPaid"^^xsd:anyURI ;
fhir:l <http://biomaxis.com/fhir/StructureDefinition/invoice-amountPaid> ] ;
fhir:value [
a fhir:Money ;
fhir:value [ fhir:v 2750.5 ] ;
fhir:currency [ fhir:v "NPR" ] ]
] ) ; #
fhir:status [ fhir:v "balanced"] ; #
fhir:subject [
fhir:l fhir:Patient/example ;
fhir:reference [ fhir:v "Patient/example" ] ;
fhir:display [ fhir:v "Jane Smith" ]
] ; #
fhir:date [ fhir:v "2025-01-20"^^xsd:date] ; #
fhir:issuer [
fhir:l fhir:Organization/example ;
fhir:reference [ fhir:v "Organization/example" ] ;
fhir:display [ fhir:v "BioMaxis Hospital" ]
] ; #
fhir:totalNet [
fhir:value [ fhir:v 2750.5 ] ;
fhir:currency [ fhir:v "NPR" ]
] ; #
fhir:totalGross [
fhir:value [ fhir:v 2750.5 ] ;
fhir:currency [ fhir:v "NPR" ]
] . #