Logo: Department of HealthLogo: Pharmaceutical Benefits SchemeMapping Specification
PBS XML Schema Version 3.1.9

This document provides a guide to the differences between PBS XML Schema version 2.12 and PBS XML Schema version 3.0.

Temporal (History) Data

'Temporal Data' refers to data that changes over time. See the document PBS XML Developers' Guide, Temporal Data for an explanation of the Temporal Data Module in the PBS XML Schema.

Version 3 of the PBS XML Schema has different data structures for temporal data (i.e. history). The new version of the schema allows history to be included in the data, rather than just a snapshot of the Schedule for the current month and differences from the previous month.

Version 2 of the PBS XML Schema includes a "delta" of the Schedule from the previous month in the pbs:changes-list element. This data is separate from the Schedule data. Effectivity information is included in pbs:effectivity elements throughout the schedule data, giving the starting dates for various objects.

Start Dates

In version 2 of the PBS XML Schema, start dates are given in the pbs:effectivity/pbs:start element. Only certain elements contain a start date.

In version 3 of the PBS XML Schema, start dates are given in the effective/date element. All PBS elements contain a start date.

Example 1. Start Date: Version 2

<pbs:effectivity>
  <pbs:start>2012-08-01</pbs:start>
</pbs:effectivity>
	

Example 2. Start Date: Version 3

<effective>
  <date>2012-08-01</date>
</effective>
	

Additions

In version 2 of the PBS XML Schema, whenever an element is added to the Schedule (compared to the previous month's Schedule) a pbs:addition element is included in the pbs:changes-list element.

In version 3 of the PBS XML Schema, new elements have their effective date set to the same value as the Schedule's valid date.

Example 3. New Element: Version 2

<pbs:change>
  <pbs:addition>
    <pbs:any-reference xlink:href="#n1"/>
  </pbs:addition>
</pbs:change>
  ...
<rwt:restriction-reference xlink:href="#n2" xml:id="n1">
  <pbs:effectivity>
    <pbs:start>2016-01-01</pbs:start>
  </pbs:effectivity>
</rwt:restriction-reference>
	

Example 4. New Element: Version 3

<root>
  <info>
    <dct:valid>2016-01-01</dct:valid>
  </info>
  ...
<restriction-reference xlink:href="#n2">
  <code>58261</code>
  <effective>
    <date>2016-01-01</date>
  </effective>
</restriction-reference>
	

Deletions

In version 2 of the PBS XML Schema, whenever an element is removed from the Schedule (compared to the previous month's Schedule) a pbs:deletion element is included in the pbs:changes-list element that contains an image of the deleted element.

In version 3 of the PBS XML Schema, removed elements are replaced with a moved element and an image of the deleted element is included in the previous-list element.

Example 5. Deleted Element: Version 2

<pbs:deletion xlink:href="#d1">
  <pbs:previous>
    <rwt:restriction-reference xlink:href="#d2">
      <pbs:effectivity>
        <pbs:start>2015-12-01</pbs:start>
        <pbs:non-effective>2016-01-01</pbs:non-effective>
      </pbs:effectivity>
    </rwt:restriction-reference>
  </pbs:previous>
</pbs:deletion>
	

Example 6. Deleted Element: Version 3

<previous xml:id="d3" xlink:href="#d4">
  <restriction-reference xlink:href="#d2">
    <code>57201</code>
    <effective>
      <date>2015-12-01</date>
    </effective>
  </restriction-reference>
</previous>
  ...
<restriction-references-list xml:id="d1">
  <moved xlink:href="#d3"
    xml:id="d4"
    rdf:resource="http://pbs.gov.au/change/removed">
    <effective>
      <date>2016-01-01</date>
    </effective>
  </moved>
</restriction-references-list>
	

In the above example, a reference to a restriction has been removed from a prescribing rule's restriction references list. A moved element is included where the reference was deleted, and the rdf:resource attribute indicates that the element was removed (as opposed to being relocated). The moved element's xlink:href attribute is a hyperlink to the image of the restriction reference in the previous list.

Alterations

In version 2 of the PBS XML Schema, whenever an element is modified an pbs:alteration element is included in the pbs:changes-list element that contains an image of the previous value of the element.

In version 3 of the PBS XML Schema, modified elements have a previous attribute added that contains a hyperlink to an image of previous value of the element. The previous image is included in the previous-list element.

Example 7. Altered Element: Version 2

<pbs:alteration>
  <pbs:any-reference xlink:href="#a247773504"/>
  <pbs:previous>
    <pbs:amount>9.47</pbs:amount>
  </pbs:previous>
</pbs:alteration>
	

Example 8. Altered Element: Version 3

<previous xml:id="dd5e96" xlink:href="#a247773504">
  <amount xml:id="d3e39">9.47</amount>
</previous>
  ...
<amount previous="#d3e39" xml:id="a247773504">9.61</amount>
	

In the above example, an amount has changed from "$9.47" to "$9.61". A moved element is included where the reference was deleted, and the rdf:resource attribute indicates that the element was removed (as opposed to being relocated). The moved element's xlink:href attribute is a hyperlink to the image of the restriction reference in the previous list.

Advance Notices

In version 2 of the PBS XML Schema, if it is known ahead of time that a product is to be delisted then an pbs:advance-notice element is included in the pbs:changes-list element. The advance notice references the product to be deleted and gives the date when the product will become non-effective.

Example 9. Advance Notice: Version 2

<pbs:advance-notice>
  <pbs:effectivity>
    <pbs:start>2016-05-01</pbs:start>
    <pbs:non-effective>2016-08-01</pbs:non-effective>
  </pbs:effectivity>
  <pbs:to-be-deleted xlink:href="#a284003956"/>
</pbs:advance-notice>
	

In version 3 of the PBS XML Schema, an advance notice is indicated by including a nested non-effective or supply-only element within the effectivity element for the product listing. It is also possible to nest a non-effective element within a supply-only element.

Example 10. Advance Notice: Version 3

<product-listing>
  <effective>
    <date>2016-05-01</date>
    <supply-only>
      <date>2017-08-01</date>
      <non-effective>
        <date>2018-08-01</date>
      </non-effective>
    </supply-only>
  </effective>
</product-listing>
	

The example above shows that a product listing became effective on the 1st May 2016. It will become supply-only on the 1st August 2017. After that, it will become non-effective on the 1st August 2018.

Listing Information

Version 3 of the PBS XML Schema simplifies and rationalises the data structures for listing information.

Schedule and Programs

The Schedule of Pharmaceutical Benefits is encoded by the schedule element. There are various values that apply to the schedule as a whole. In version 2 of the PBS XML Schema these were included int he pbs:copayments-list element. In version 3 of the PBS XML Schema this element has been renamed to the values-list element.

A "program" is a set of prescribing rules that follow a certain set of business rules. In version 2 of the PBS XML Schema, a program is encoded by the pbs:listings-list element. In version 3 of the PBS XML Schema a program is encoded by the program element.

Dispensing Rules

Dispensing rules provide data for pricing in different dispensing environments. All prescribing rules in a program use the same set of dispensing rules. Each dispensing rule has three definition parts: , and

Benefit Types

In version 2 of the PBS XML Schema, the benefit type of a prescribing rule is encoded by the rwt:authority-method element, which is contained in a rwt:circumstance element that is associated with a restriction. As a short-cut, the restriction level of the prescribing rule is encoded using the type attribute.

Example 11. Authority Method: Version 2

<pbs:prescribing-rule type="restricted">
  <pbs:code>10005N</pbs:code>
  <pbs:ready-prepared>
    <rwt:restriction-references-list>
      <rwt:restriction-reference xlink:href="#a284681745"/>
    </rwt:restriction-references-list>
  </pbs:ready-prepared>
</pbs:prescribing-rule>

<rwt:restriction xml:id="a284681745">
  <pbs:code>4311</pbs:code>
  <rwt:circumstance-reference xlink:href="#a284738797"/>
</rwt:restriction>

<rwt:circumstance xml:id="a284738797">
  <rwt:authority-method>auth:restricted</rwt:authority-method>
  <rwt:requirement-reference xlink:href="#a284930493"/>
  <rwt:requirement-reference xlink:href="#a284929794"/>
</rwt:circumstance>
	

In version 3 of the PBS XML Schema, the benefit type of a prescribing rule is encoded by the benefit-type element in the prescribing rule itself. The restriction level of the benefit type is given by the rdf:resource attribute.

Example 12. Benefit Type: Version 3

<prescribing-rule>
  <benefit-types-list>
    <benefit-type rdf:resource="http://pbs.gov.au/benefit-type/restricted">
      <member-of-list>
        <member-of rdf:resource="http://pbs.gov.au/prescriber/nurse">
          <code>nurse</code>
        </member-of>
        <member-of rdf:resource="http://pbs.gov.au/prescriber/medical">
          <code>medical</code>
        </member-of>
      </member-of-list>
      <restriction-references-list>
        <restriction-reference xlink:href="#r708971619168919">
          <code>4311</code>
        </restriction-reference>
      </restriction-references-list>
    </benefit-type>
  </benefit-types-list>
  <code rdf:resource="http://pbs.gov.au/code/item">10005N</code>
</prescribing-rule>
	

See the document PBS XML Developers' Guide, Listing Information for an explanation of benefit types in the PBS XML Schema.

Maximum Quantity

In version 2 of the PBS XML Schema, the maximum quantity for a prescribing rule is given by the pbs:maximum-quantity element. In version 3 of the PBS XML Schema, this element has been replaced by the maximum-prescribable.

Example 13. Maximum Quantity: Version 2

<pbs:maximum-quantity
	unit="mg"
        amount="1"
        reference="unit-of-measure"
	int:determined="yes">
  720
</pbs:maxmum-quantity>
	

Example 14. Maximum Prescribable: Version 3

<maximum-prescribable
	rdf:resource="http://pbs.gov.au/reference/unit-of-measure/mg">
  <value>720</value>
  <mp-reference xlink:href="#a247800960">
    <code rdf:resource="http://snomed.info/sct/900062011000036108">73357011000036107</code>
    <effective>
      <date>2014-04-01</date>
    </effective>
  </mp-reference>
  <determined/>
  <effective>
    <date>2014-04-01</date>
  </effective>
</maximum-prescribable>

ATC Codes

In version 2 of the PBS XML Schema, ATC codes are included in a pbs:classification parent element. In version 3 of the PBS XML Schema, the parent element has been removed.

Example 15. ATC Code: Version 2

<pbs:classification>
  <pbs:ATC>atc:L01XE23</pbs:ATC>
</pbs:classification>
	

Example 16. ATC Code: Version 3

<ATC rdf:resource="http://www.whocc.no/ATC#L01XE23">
  <code rdf:resource="http://www.whocc.no/ATC#">L01XE23</code>
  <effective>
  <date>2013-12-01</date>
  </effective>
</ATC>
	

Manner of Administration

In version 2 of the PBS XML Schema, Manner of Administration (MoA) is represented by a pbs:administration element that contains a pbs:moa-value child element. In version 3 of the PBS XML Schema, there is no separate element for MoA, instead it is represented by a group.

Example 17. MoA: Version 2

<pbs:administration>
  <pbs:moa-value>admin:oral</pbs:moa-value>
</pbs:administration>
	

Example 18. MoA: Version 3

<member-of-list>
  <member-of rdf:resource="http://pbs.gov.au/manner-of-administration/oral">
    <code>oral</code>
    <effective>
      <date>2013-12-01</date>
    </effective>
  </member-of>
</member-of-list>
	

Safety Net

In version 2 of the PBS XML Schema, information about the Safety Net is represented by a pbs:safety-net element that contains a pbs:days and pbs:counted child elements. In version 3 of the PBS XML Schema, the content of the safety-net element has changed.

Example 19. Safety Net: Version 2

<pbs:safety-net>
  <pbs:days>P20D</pbs:days>
  <pbs:counted/>
</pbs:safety-net>
	

Example 20. Safety Net: Version 3

<safety-net>
  <duration>P20D</duration>
</safety-net>
<member-of-list>
  <member-of rdf:resource="http://pbs.gov.au/safety-net/early-supply/no-penalty">
    <code>Y</code>
    <effective>
      <date>2013-12-01</date>
    </effective>
  </member-of>
</member-of-list>
	

Pricing

Version 3 of the PBS XML Schema simplifies and rationalises the data structures for various aspects of pricing.

Fees

Version 3 of the PBS XML Schema has renamed the pbs:fees-list element to fee-definitions-list.

Markups

Version 3 of the PBS XML Schema has rationalised markup bands. Markup amounts given in prices are unchanged.

Markup Bands

The element that contains the list of markup band definitions has been renamed from pbs:markups-list to markup-bands-list.

In version 2, there are three types of markup bands: fixed (dollar) amount, variable (percentage) and combined (AHI). In version 3 these have been rationalised into a single markup band type with two components: fixed and variable.

Example 21. Markup Bands: Version 2

<pbs:markup-band xml:id="m1">
  <pbs:code>A</pbs:code>
  <pbs:limit>0.01</pbs:limit>
  <pbs:type>markup:percent</pbs:type>
  <pbs:amount>0.00</pbs:amount>
</pbs:markup-band>
<pbs:markup-band xml:id="m2">
  <pbs:code>C</pbs:code>
  <pbs:limit>0.01</pbs:limit>
  <pbs:type>markup:dollar</pbs:type>
  <pbs:amount>3.49</pbs:amount>
</pbs:markup-band>
<pbs:markup-band xml:id="m3">
  <pbs:code>C</pbs:code>
  <pbs:limit>180.00</pbs:limit>
  <pbs:type>markup:percent</pbs:type>
  <pbs:amount>3.50</pbs:amount>
  <ext:markup-type>markup:combined</ext:markup-type>
  <ext:markup-offset>-180.00</ext:markup-offset>
  <ext:markup-fixed>3.49</ext:markup-fixed>
</pbs:markup-band>
	

The example above shows three markup bands. "m1" is a variable (percentage) markup band where the percentage value is "0%". "m2" is a fixed (dollar) markup band where the markup is $3.49. "m3" is a combined markup band where the fixed component is $3.50, the variable component is "3.49%" and the offset amount is "$-180.00".

Example 22. Markup Bands: Version 3

<markup-band xml:id="m1">
  <code rdf:resource="http://pbs.gov.au/markup/band/none">A</code>
  <limit>0.01</limit>
  <offset>0.00</offset>
  <fixed>0.00</fixed>
  <variable>0.00</variable>
  <effective>
    <date>1990-01-01</date>
  </effective>
</markup-band>
<markup-band xml:id="m2">
  <code rdf:resource="http://pbs.gov.au/markup/band/community-pharmacy">C</code>
  <limit>0.01</limit>
  <offset>0.00</offset>
  <fixed>3.49</fixed>
  <variable>0.00</variable>
  <effective>
    <date>1990-01-01</date>
  </effective>
</markup-band>
<markup-band xml:id="m3">
  <code rdf:resource="http://pbs.gov.au/markup/band/community-pharmacy">C</code>
  <limit>180.00</limit>
  <offset>-180.00</offset>
  <fixed>3.49</fixed>
  <variable>3.50</variable>
  <effective>
    <date>1990-01-01</date>
  </effective>
</markup-band>
	

The example above shows the same three markup bands, but in version 3 format. "m1" is a variable (percentage) markup band where the percentage value is "0%". The fixed and offset values are also given as "0". "m2" is a fixed (dollar) markup band where the fixed component is $3.49. The variable component is set to "0%". "m3" is a combined markup band where the fixed component is $3.50, the variable component is "3.49%" and the offset amount is "$-180.00".

Markup Amounts

Whenever a price includes a markup, the markup element contains the markup in its amount child element and the xlink:href attribute is a hyperlink to the markup band.

Example 23. Markup Amount: Version 2

<pbs:markup xlink:href="#m3">32.84</pbs:markup>
	

Example 24. Markup Amount: Version 3

<markup xlink:href="#m3">
  <amount>32.84</amount>
  <effective>
    <date>2016-01-01</date>
  </effective>
</markup>
	

Containers

Version 3 of the PBS XML Schema has renamed the pbs:containers-list element to container-definitions-list.

Product Listings

A "product listing" is the connection between a prescribing rule and a TPP. Version 2 of the PBS XML Schema has different element structures for ready-prepared and infusible product listings. Version 3 of the PBS XML Schema rationalises these different structures into a single element structure. It also denormalises the data for ease of processing.

Ready-Prepared Pricing

In version 2 of the PBS XML Schema, a ready-prepared prescribing rule specifies pricing information in the pbs:pricing element. The Commonwealth pricing, lowest and manufacturer prices are all specified separately. Manufacturer prices are given in pbs:prices elements.

Example 25. Pricing, Ready-prepared: Version 2

<pbs:pricing>
  <pbs:reimbursement>
    <pbs:ex-manufacturer>436.72</pbs:ex-manufacturer>
    <pbs:to-pharmacist>
      <pbs:price dispensing-rule="dr:RP/s90-cp">
        <pbs:amount>469.56</pbs:amount>
        <pbs:markup xlink:href="#a247774619">32.84</pbs:markup>
      </pbs:price>
      <pbs:price dispensing-rule="dr:RP/s94-private">
        <pbs:amount>485.20</pbs:amount>
        <pbs:markup xlink:href="#a247774643">48.48</pbs:markup>
      </pbs:price>
      <pbs:price dispensing-rule="dr:RP/s94-public">
        <pbs:amount>485.20</pbs:amount>
        <pbs:markup xlink:href="#a247774655">48.48</pbs:markup>
      </pbs:price>
    </pbs:to-pharmacist>
    <pbs:pack-price>
      ...
    </pbs:pack-price>
    <pbs:dpmq>
      ...
    </pbs:dpmq>
  </pbs:reimbursement>
  <pbs:lowest>
    ...
  </pbs:lowest>
  <pbs:maximum-safety-net-value>
    ...
  </pbs:maximum-safety-net-value>
  <pbs:prices>
    <pbs:tpp-reference xlink:href="#a247902300"/>
    ...
  </pbs:prices>
	

The example above shows pricing data in the version 2 PBS XML format. The pbs:reimbursement element gives pricing paid by the Commonwealth. The pbs:lowest element gives the lowest of the manufacturer prices (which may be set by a product with a different pack size). The pbs:prices element (which may be repeated) gives the manufacturer price for a listed TPP, referenced by the pbs:tpp-reference element. There are pricing element for each stage of the pricing formula: pbs:ex-manufacturer, pbs:to-pharmacist, pbs:pack-price and pbs:dpmq. Each of these pricing elements specifies the price in each dispensing rule for the program.

Example 26. Pricing, Ready-prepared: Version 3

<product-listing>
  <tpp-reference xlink:href="#a247902300">
    <code rdf:resource="http://snomed.info/sct/900062011000036108">94291000036105</code>
  </tpp-reference>
  <code rdf:resource="http://pbs.gov.au/code/product-listing">20204</code>
  <code rdf:resource="http://pbs.gov.au/code/manufacturer">NE</code>
  <reimbursement>
    <ex-manufacturer>
      <amount>436.72</amount>
    </ex-manufacturer>
    <to-pharmacist>
      <price>
	<dispensing-rule-reference xlink:href="#d4e7877">
	  <code>rp-s90-cp</code>
	</dispensing-rule-reference>
	<amount>469.56</amount>
	<markup xlink:href="#a247774619">
	  <amount>32.84</amount>
	</markup>
      </price>
      <price>
	<dispensing-rule-reference xlink:href="#d4e8004">
	  <code>rp-s94-private</code>
	</dispensing-rule-reference>
	<amount>485.20</amount>
	<markup xlink:href="#a247774643">
	  <amount>48.48</amount>
	</markup>
      </price>
      <price>
	<dispensing-rule-reference xlink:href="#d4e8090">
	  <code>rp-s94-public</code>
	</dispensing-rule-reference>
	<amount>485.20</amount>
	<markup xlink:href="#a247774655">
	  <amount>48.48</amount>
	</markup>
      </price>
    </to-pharmacist>
    <pharmacist>
      ...
    </pharmacist>
    <dpmq>
      ...
    </dpmq>
  </reimbursement>
  <lowest>
    ...
  </lowest>
  <manufacturer>
    ...
  </manufacturer>
  <maximum-safety-net-value>
    ...
  </maximum-safety-net-value>
  <maximum-patient-charge>
    ...
  </maximum-patient-charge>
</product-listing>
	

The example above shows pricing data in the version 3 PBS XML format (effectivity elements are not shown for brevity). The product-listing element replaces the pbs:prices element. All pricing data is denormalised: each product-listing element contains all pricing components, even though these may be repeated across different product listings in the same prescribing rule. Thus the reimbursement, lowest, manufacturer, maximum-safety-net-value and maximum-patient-charge are all contained within the product-listing element. The specification of prices for each dispensing rule remains unchanged.

Infusible Pricing

In version 2 of the PBS XML Schema, an infusible prescribing rule specifies pricing information separately for the Commonwealth reimbursement prices and manufacturer prices. Product listings are grouped into pbs:prices and pbs:tpp-list elements.

In version 3 of the PBS XML Schema, infusible prescribing rules list their product listings in the same manner as ready-prepared listings.

Example 27. Pricing, Infusible: Version 2

<pbs:pricing>
  <pbs:reimbursement>
    <pbs:prices>
      <pbs:tpp-list>
        <pbs:tpuu-ex-manufacturer>2912.00</pbs:tpuu-ex-manufacturer>
        <pbs:tpuu-pharmacy-price>
          <pbs:price dispensing-rule="dr:IN/s90-cp">
            <pbs:amount>2947.00</pbs:amount>
            <pbs:markup xlink:href="#a247774850">35.00</pbs:markup>
          </pbs:price>
          <pbs:price dispensing-rule="dr:IN/s94-private">
            <pbs:amount>2952.77</pbs:amount>
            <pbs:markup xlink:href="#a247774862">40.77</pbs:markup>
          </pbs:price>
        </pbs:tpuu-pharmacy-price>
	<pbs:pack-content unit="mg" amount="1">400</pbs:pack-content>
	<pbs:vial-content amount="1" unit="mg">400</pbs:vial-content>
	<pbs:tpp-reference xlink:href="#a247900389"/>
      </pbs:tpp-list>
      ...
    </pbs:prices>
    <pbs:dpmq>
      <pbs:price dispensing-rule="dr:IN/s90-cp">
        <pbs:amount>6014.26</pbs:amount>
        <pbs:fee xlink:href="#a247774209">5.07</pbs:fee>
        <pbs:fee xlink:href="#a247774213">82.67</pbs:fee>
        <pbs:fee xlink:href="#a247774217">25.59</pbs:fee>
        <pbs:fee xlink:href="#a247774221">6.93</pbs:fee>
      </pbs:price>
      <pbs:price dispensing-rule="dr:IN/s94-private">
        <pbs:amount>6025.78</pbs:amount>
        <pbs:fee xlink:href="#a247774237">5.07</pbs:fee>
        <pbs:fee xlink:href="#a247774241">82.67</pbs:fee>
        <pbs:fee xlink:href="#a247774245">25.59</pbs:fee>
        <pbs:fee xlink:href="#a247774249">6.93</pbs:fee>
      </pbs:price>
    </pbs:dpmq>
  </pbs:reimbursement>
  <pbs:maximum-safety-net-value>
    ...
  </pbs:maximum-safety-net-value>
  <pbs:maximum-patient-charge>
    ...
  </pbs:maximum-patient-charge>
  <pbs:manufacturer>
    <pbs:prices>
      <pbs:tpp-list>
        <pbs:tpuu-ex-manufacturer>2912.00</pbs:tpuu-ex-manufacturer>
        <pbs:tpuu-pharmacy-price>
          <pbs:price dispensing-rule="dr:IN/s90-cp">
            <pbs:amount>2947.00</pbs:amount>
            <pbs:markup xlink:href="#a247774850">35.00</pbs:markup>
          </pbs:price>
          <pbs:price dispensing-rule="dr:IN/s94-private">
            <pbs:amount>2952.77</pbs:amount>
            <pbs:markup xlink:href="#a247774862">40.77</pbs:markup>
          </pbs:price>
        </pbs:tpuu-pharmacy-price>
	<pbs:pack-content unit="mg" amount="1">400</pbs:pack-content>
	<pbs:vial-content amount="1" unit="mg">400</pbs:vial-content>
	<pbs:tpp-reference xlink:href="#a247900389"/>
      </pbs:tpp-list>
      ...
    </pbs:prices>
  </pbs:manufacturer>
</pbs:pricing>
	  

The example above shows infusible pricing data in the version 2 PBS XML format. Prices for Commonwealth reimbursement for separate to prices for the manufacturers of the listed products. Note that the pack (TPP) is listed, but prices are given for the TPUU.

Example 28. Pricing, Infusible: Version 3

<product-listing>
  <tpuu-reference xlink:href="#a247907771">
    <code rdf:resource="http://snomed.info/sct/900062011000036108">72962011000036103</code>
  </tpuu-reference>
  <code rdf:resource="http://pbs.gov.au/code/manufacturer">AN</code>
  <reimbursement>
    <ex-manufacturer>
      <amount>728.00</amount>
    </ex-manufacturer>
    <pharmacist>
      <price>
	<dispensing-rule-reference xlink:href="#d4e1118713">
	  <code>in-s90-cp</code>
	</dispensing-rule-reference>
	<amount>736.75</amount>
	<markup xlink:href="#a247774850">
	  <amount>8.75</amount>
	</markup>
      </price>
      <price>
	<dispensing-rule-reference xlink:href="#d4e1118802">
	  <code>in-s94-private</code>
	</dispensing-rule-reference>
	<amount>738.19</amount>
	<markup xlink:href="#a247774862">
	  <amount>10.19</amount>
	</markup>
      </price>
    </pharmacist>
    <content rdf:resource="http://pbs.gov.au/reference/unit-of-measure/mg">100</content>
    <dpmq>
      <price>
	<dispensing-rule-reference xlink:href="#d4e1118713">
	  <code>in-s90-cp</code>
	</dispensing-rule-reference>
	<amount>6014.26</amount>
	<fee xlink:href="#a247774209">
	  <amount>5.07</amount>
	</fee>
	<fee xlink:href="#a247774213">
	  <amount>82.67</amount>
	</fee>
	<fee xlink:href="#a247774217">
	  <amount>25.59</amount>
	</fee>
	<fee xlink:href="#a247774221">
	  <amount>6.93</amount>
	</fee>
      </price>
      <price>
	<dispensing-rule-reference xlink:href="#d4e1118802">
	  <code>in-s94-private</code>
	</dispensing-rule-reference>
	<amount>6025.78</amount>
	<fee xlink:href="#a247774237">
	  <amount>5.07</amount>
	</fee>
	<fee xlink:href="#a247774241">
	  <amount>82.67</amount>
	</fee>
	<fee xlink:href="#a247774245">
	  <amount>25.59</amount>
	</fee>
	<fee xlink:href="#a247774249">
	  <amount>6.93</amount>
	</fee>
      </price>
    </dpmq>
  </reimbursement>
  <manufacturer>
    <pharmacist>
      ...
    </pharmacist>
    <content rdf:resource="http://pbs.gov.au/reference/unit-of-measure/mg">100</content>
    <dpmq>
      ...
    </dpmq>
  </manufacturer>
  <maximum-safety-net-value>
    ...
  </maximum-safety-net-value>
  <maximum-patient-charge>
    ...
  </maximum-patient-charge>
</product-listing>
	  

The example above shows infusible pricing data in the version 3 PBS XML format. Note that the TPUU is listed, rather than the TPP, and all pricing is for the TPUU. Each product listing contains both the Commonwealth and manufacturer pricing, i.e. the pricing data is denormalised, as for ready-prepared listings.

Obsolete Pricing Concepts

The pricing concept pbs:wastage-pack-price has been removed. The pricing concept pharmacist should now be used instead.

Restrictions

Version 3 of the PBS XML Schema provides new features for restrictions.

Logical Operators

When a prescribing rule is either restricted or authority required it will have one or more restrictions associated with it. At least one of these restrictions must be satisified in order for the prescriber to be able to prescribe the medicine for the patient.

In version 2 of the PBS XML Schema a restriction may include rwt:circumstance elements, which in turn may contain criteria and parameters. These are combined using implicit logical operations in order to determine whether the restriction as a whole is satisified, as follows:

  • A restriction is satisifed when at least one of its circumstances is satisifed,

  • A circumstance is satisified when all of its criteria are satisified,

  • A criteria is satisifed when at least one of its parameters are satisified.

In version 3 of the PBS XML Schema, the logical relationship between restriction components is made explicit. This is done using the following three elements:

all

Every child component must be satisified in order for the parent element to be satisfied.

any

At least one child component must be satisfied in order for the parent element to be satisfied.

one-of

One and only one child component must be satisfied in order for the parent element to be satisfied.

Structure

In version 2 of the PBS XML Schema, the rwt:restrictions-list element contains all restriction components. A restriction contains circumstances, which in turn contain requirements, which in turn contain parameters.

In version 3 of the PBS XML Schema, both the terminology and structure of restrictions has changed. The rwt:restrictions-list element has been renamed to the prescribing-texts-list element. The "circumstance" level has been removed. "Requirements" have been renamed to "Criteria". Parameters are unchanged.

Certain elements in the version 3 PBS XML Schema have also changed. In version 2 of the PBS XML Schema, the rwt:condition element is used in both an indication and as a parameter. In version 3 of the PBS XML Schema the parameter has been renamed condition-parameter.

The foreword elements has been added in the version 3 PBS XML Schema to represent a non-legal note that should be displayed before all administrative-advice elements.

CAR Items

In version 2 of the PBS XML Schema, Complex authority Required (CAR) items are indicated by including the element ext:complex-authority-required in a restriction.

In version 3 of the PBS XML Schema, a CAR Item is indicated using an administrative-advice element. The administrative-advice element is associated with the terminology concept http://pbs.gov.au/DHS/authority/complex.

Also in version 3 of the PBS XML Schema, those PBS Items that are legally defined to be "Complex Authority Required" drugs are indicated by their membership in the group http://pbs.gov.au/complex-authority-required/is-complex. PBS Items that are not defined to be legally CAR are members of the group http://pbs.gov.au/complex-authority-required/not-complex.

Increases

In version 2 of the PBS XML Schema, increases to the maximum quantity and/or number of repeats are contained in the element rwt:increase which is contained in the rwt:circumstance element. There are separate specifications for the increase that may be obtained electronically, by direct application to the Department of Human Services and for the CPAP program.

In version 3 of the PBS XML Schema, increases are now specified using the increase element. This element is contained directly in a prescribing rule.

Constraints

In version 2 of the PBS XML Schema, constraints on the prescribing of an item are contained in the element rwt:constraints. This element could contain the rwt:date-required or rwt:text-required elements.

In version 3 of the PBS XML Schema, constraints are now specified as references to PBS Terminology concepts, using the rdf:resource attribute.

Drug Information

The PBS XML uses the Australian Medicines Terminology to describe and codify drug concepts.

Structure

In version 2 of the PBS XML Schema, information about medicines is specified in a hierarchy starting with the pbs:mp element.

In version 3 of the PBS XML Schema, information about medicines is specified as a graph. Each element for a drug concept includes the element drug-references-list that contains other drug concepts that are related to the current drug concept.

Unit-of-Use

In version 2 of the PBS XML Schema, details of a medicines unit-of-use is specified both in a pbs:mpuu and pbs:tpuu, as well as with elements prefixed by tpuu- or vial-.

In version 3 of the PBS XML Schema, all details of the unit-of-use of a medicine are only included in the pbs:mpuu or pbs:tpuu element. In addition, other concept-specific element names have been replaced by more generic names, such as content. The context of the element determines what the value is referring to.

Containered Trade Product Unit-of-Use (CTPP)

Version 2 of the PBS XML Schema does not support the concept type Containered Trade Product Unit-of-Use (CTPP).

In version 3 of the PBS XML Schema, a CTPP is represented by the ctpp element.

Miscellaneous

Other changes in version 3 of the PBS XML Schema.

Text

In version 2 of the PBS XML Schema, there are certain objects that may include a textual description. For example, business rules for a program. These are encoded using DocBook elements. In version 3 of the PBS XML Schema, the DocBook elements are contained within a block-container element.

Example 29. Text: Version 2

<pbs:program>
  <dbk:title>Palliative Care</dbk:title>
  <code>PL</code>
  <pbs:info>
    <dbk:para>More information on this program can be found at http://www.pbs.gov.au/browse/palliative-care</dbk:para>
  </pbs:info>
</pbs:program>
	

Example 30. Text: Version 3

<program>
  <info>
  <dbk:title>Palliative Care</dbk:title>
  <code>PL</code>
  <block-container>
    <dbk:para>More information on this program can be found at http://www.pbs.gov.au/browse/palliative-care</dbk:para>
  </block-container>
  </info>
</program>
	

Contact Details

Similarly to textual descriptions, in version 2 of the PBS XML Schema an organisation's contact information are encoded using DocBook elements. In version 3 of the PBS XML Schema, the DocBook elements are contained within a contact element.

Example 31. Contact Details: Version 2

<pbs:organisation>
  <pbs:code>AG</pbs:code>
  <dbk:title>Allergan Australia Pty Limited</dbk:title>
  <pbs:address>
    <dbk:street>Level 4, 810 Pacific Highway</dbk:street>
    <dbk:city>Gordon</dbk:city>
    <dbk:state>NSW</dbk:state>
    <dbk:postcode>2072</dbk:postcode>
  </pbs:address>
  <dbk:phone>1800 252 224</dbk:phone>
</pbs:organisation>
	

Example 32. Contact Details: Version 3

<organisation>
  <code rdf:resource="http://pbs.gov.au/code/manufacturer">AG</code>
  <title>Allergan Australia Pty Limited</title>
  <address>
    <dbk:street>Level 4, 810 Pacific Highway</dbk:street>
    <dbk:city>Gordon</dbk:city>
    <dbk:state>NSW</dbk:state>
    <dbk:postcode>2072</dbk:postcode>
  </address>
  <contact>
    <dbk:phone>1800 252 224</dbk:phone>
  </contact>
</organisation>
	

Brand Substitution

In version 2 of the PBS XML Schema, brand substitution is represented by group membership. Both TPPs and prescribing rules may be members of a brand substitution group. Whether a product may be substituted for another product depends on the TPPs and their listing prescribing rules being members of the same brand substitution group: i.e. the intersection of the group needs to be computed.

In version 3 of the PBS XML Schema, brand substitution is represented at the product listing level. Mmebership of a brand substitution group is given in the product-listing element. If two product-listing elements are in the same brand substitution group, then the two products may be substituted for each other within the context for their respective prescribing rules. NB. every product-listing element is a member of a brand substitution group; if it is the only member of that group then the product listing may not be substituted with any other product.

Element Summary

Each element in the respective schemas are detailed below. A status of "Unchanged" only means that the element name is the same; the context, cardinality and/or content may be changed.

Version 2.12

Version 3.0

Status

Comments

pbs:addition

Removed

See Temporal Data.

pbs:address

address

Unchanged

pbs:administration

Removed

Represented by group http://pbs.gov.au/manner-of-administration.

rwt:administrative-advice

administrative-advice

Unchanged

rwt:administrative-advice-reference

administrative-advice-reference

Unchanged

pbs:advance-notice

Removed

See Temporal Data.

rwt:age

age

Unchanged

pbs:agreed-price-unit

agreed-price-unit

Unchanged

all

Added

pbs:alteration

Removed

See Temporal Data.

rwt:alternate-text

Removed

pbs:amount

amount

Unchanged

any

Added

pbs:any-reference

Removed

See Temporal Data.

assessment

Added

pbs:ATC

ATC

Unchanged

pbs:authorised-by

Removed

rwt:authority-method

Removed

See Benefit Type.

benefit-type

Added

benefit-types-list

Added

block-container

Added

pbs:build

build

Unchanged

rwt:care-type

care-type

Unchanged

pbs:category

category

Unchanged

rwt:caution

caution

Unchanged

rwt:caution-reference

caution-reference

Unchanged

pbs:change

Removed

See Temporal Data.

pbs:changes-list

Removed

See Temporal Data.

pbs:chart-categories-list

chart-categories-list

Unchanged

pbs:chart-category

chart-category

Unchanged

pbs:choice

Removed

Represented by group http://pbs.gov.au/emergency-drug-supply.

rwt:circumstance

criteria

Rename

rwt:circumstance-reference

criteria-reference

Rename

pbs:classification

Removed

See ATC.

rwt:clinical

clinical

Unchanged

pbs:code

code

Unchanged

pbs:combine

Removed

ext:complex-authority-required

Removed

See Complex Authority Required.

rwt:condition

condition

Unchanged

condition-parameter

Added

condition-reference

Added

rwt:constraints

Removed

contact

Added

pbs:container

container

Unchanged

pbs:container-definition

container-definition

Unchanged

pbs:containers-list

container-definitions-list

Rename

content

Added

pbs:continued-dispensing

Removed

Represented by group http://pbs.gov.au/continued-dispensing.

pbs:contribution

contribution

Unchanged

pbs:copayment

copayment

Unchanged

pbs:copayments-list

values-list

Rename

pbs:counted

Removed

Represented by group http://pbs.gov.au/safety-net/early-supply.

rwt:cpap

Removed

criteria-reference

Added

ctpp

Added

ctpp-reference

Added

date

Added

rwt:date-required

Removed

pbs:days

duration

Replaced

ext:default

Removed

Represented by group http://pbs.gov.au/dispensing-rule/default.

rwt:definition

definition

Unchanged

rwt:definition-reference

definition-reference

Unchanged

pbs:deletion

Removed

See Temporal Data.

pbs:description

Removed

The group definition in the PBS Ontology may include additional descriptive text.

determined

Added

ext:discount

discount

Unchanged

ext:discounts-list

discounts-list

Unchanged

pbs:dispensing-rule

dispensing-rule

Unchanged

dispensing-rule-reference

Added

pbs:dispensing-rules-list

dispensing-rules-list

Unchanged

pbs:dpmq

dpmq

Unchanged

drug-references-list

Added

pbs:drug-tariff

drug-tariff

Unchanged

pbs:drug-tariff-prices

drug-tariff-prices

Unchanged

pbs:drugs-list

drugs-list

Unchanged

duration

Added

g2g:eauthority

value

Replaced

effective

Added

See Temporal Data.

pbs:effectivity

Removed

See Temporal Data.

rwt:episodicity

episodicity

Unchanged

episodicity-reference

Added

pbs:ex-manufacturer

ex-manufacturer

Unchanged

pbs:extemporaneous-preparation

extemporaneous-preparation

Unchanged

pbs:fee

fee

Unchanged

pbs:fee-definition

fee-definition

Unchanged

pbs:fees-list

fee-definitions-list

Renamed

fixed

Added

foreword

Added

foreword-reference

Added

pbs:group

Removed

Implemented in PBS Ontology.

pbs:groups-list

Removed

Implemented in PBS Ontology.

pbs:hundred-grams

hundred-grams

Unchanged

pbs:incentive

incentive

Unchanged

pbs:incentives-list

incentives-list

Unchanged

rwt:increase

increase

Unchanged

Location and structure have changed.

increases-list

Added

rwt:indication

indication

Unchanged

rwt:indication-reference

indication-reference

Unchanged

pbs:info

info

Unchanged

pbs:infusible

infusible

Unchanged

pbs:injectable

injectable

Unchanged

pbs:label

Removed

Replaced by preferred-term, block-container.

pbs:limit

limit

Unchanged

pbs:linear-prices

linear-prices

Unchanged

pbs:listing-reference

listing-reference

Unchanged

pbs:listings-list

program

Renamed

rwt:location

location

Unchanged

pbs:lowest

lowest

Unchanged

pbs:manufacturer

manufacturer

Unchanged

pbs:markup

markup

Unchanged

pbs:markup-band

markup-band

Unchanged

ext:markup-fixed

fixed

Renamed

pbs:markups-list

markup-bands-list

Renamed

ext:markup-offset

offset

Renamed

ext:markup-type

Removed

pbs:maximum-patient-charge

maximum-patient-charge

Unchanged

pbs:maximum-quantity

maximum-prescribable

Renamed

pbs:maximum-safety-net-value

maximum-safety-net-value

Unchanged

pbs:medication-chart

Removed

Represented by http://pbs.gov.au/medication-chart.

pbs:medication-chart-definition

medication-chart-definition

Unchanged

pbs:member-of

member-of

Unchanged

pbs:member-of-list

member-of-list

Unchanged

pbs:member-type

Removed

pbs:moa-value

Removed

moved

Added

pbs:mp

mp

Unchanged

pbs:mp-reference

mp-reference

Unchanged

pbs:mpp

mpp

Unchanged

pbs:mpp-reference

mpp-reference

Unchanged

pbs:mpuu

mpuu

Unchanged

mpuu-reference

Added

pbs:name

Removed

pbs:non-effective

non-effective

Unchanged

See Temporal Data.

pbs:not-to-be-broken

Removed

Represented by group http://pbs.gov.au/pack-breakability.

pbs:not-to-be-broken-prices

not-to-be-broken-prices

Unchanged

pbs:note

Removed

See also block-container.

pbs:number-repeats

number-repeats

Unchanged

offset

Added

pbs:one-gram

one-gram

Unchanged

one-of

Added

pbs:one-tenth

one-tenth

Unchanged

pbs:organisation

organisation

Unchanged

pbs:organisation-reference

organisation-reference

Unchanged

pbs:organisations-list

organisations-list

Unchanged

rwt:other

other

Unchanged

pbs:pack-content

content

Replaced

pbs:pack-price

pharmacist

Renamed

pbs:pack-size

pack-size

Unchanged

rwt:parameter-reference

parameter-reference

Unchanged

rwt:patient

patient

Unchanged

pbs:person

Removed

pbs:person-reference

Removed

rwt:population

population

Unchanged

pbs:preferred-term

preferred-term

Unchanged

rwt:prescriber

prescriber

Unchanged

rwt:prescriber-instruction

prescriber-instruction

Unchanged

rwt:prescriber-instruction-reference

prescriber-instruction-reference

Unchanged

pbs:prescribing-rule

prescribing-rule

Unchanged

pbs:previous

previous

Unchanged

See Temporal Data.

pbs:price

price

Unchanged

pbs:prices

product-listing

Renamed

All pricing data is denormalised.

pbs:pricing

Removed

This element has been replaced by product-listing in all cases except as a child of the standard-formula-preparation element.

pbs:pricing-model

pricing-model

Unchanged

product-listing

Added

pbs:quantity

quantity

Unchanged

pbs:ready-prepared

ready-prepared

Unchanged

pbs:recovery-price-reference

recovery-price-reference

Unchanged

pbs:recovery-prices

recovery-prices

Unchanged

pbs:reimbursement

reimbursement

Unchanged

pbs:reimbursement-dpmq

Removed

rwt:requirement-reference

criteria-reference

Replaced

rwt:restriction

restriction

Unchanged

rwt:restriction-reference

restriction-reference

Unchanged

rwt:restriction-references-list

restriction-references-list

Unchanged

rwt:restrictions-list

prescribing-texts-list

Renamed

pbs:revision

revision

Unchanged

pbs:root

root

Unchanged

pbs:safety-net

safety-net

Unchanged

pbs:schedule

schedule

Unchanged

rwt:severity

severity

Unchanged

rwt:sex

sex

Unchanged

rwt:single-treatment

Removed

pbs:solvent

solvent

Unchanged

pbs:solvent-rule

solvent-rule

Unchanged

pbs:standard-formula-preparation

standard-formula-preparation

Unchanged

pbs:start

Removed

See Temporal Data.

supply-only

Added

pbs:ten-grams

ten-grams

Unchanged

rwt:text-required

Removed

pbs:threshold

threshold

Unchanged

pbs:to-be-deleted

Removed

See Temporal Data.

pbs:to-pharmacist

to-pharmacist

Unchanged

g2g:total

Removed

pbs:tpp

tpp

Unchanged

pbs:tpp-reference

tpp-reference

Unchanged

pbs:tpuu

tpuu

Unchanged

pbs:tpuu-ex-manufacturer

ex-manufacturer

Replaced

pbs:tpuu-pharmacy-price

pharmacist

Replaced

pbs:tpuu-reference

tpuu-reference

Unchanged

rwt:treatment

treatment

Unchanged

rwt:treatment-parameter

treatment-parameter

Unchanged

rwt:treatment-phase

treatment-phase

Unchanged

ext:type

Removed

Replaced by rdf:resource attribute.

pbs:type

Removed

Replaced by rdf:resource attribute.

rwt:type

Removed

Replaced by rdf:resource attribute.

variable

Added

pbs:vial-content

content

Replaced

pbs:wastage-pack-price

Removed

pbs:wholesale-price

Removed

pbs:wholesaler

Removed

Controlled Vocabulary to Terminology Mapping

Version 2 of the PBS XML Shchema included a specification of controlled vocabularies, which are values fixed in meaning. Version 3 of the PBS XML Schema replaces these with the PBS Ontology, which is a set of terminology concepts. Below is a mapping of values in controlled vocabularies to terminology concepts.

Controlled Vocabulary Value

PBS Terminology Concept

Description/Title

Comments

pbs:continued-dispensing-default

Removed

Groups specify their default value.

pbs:medication-chart-racf

http://pbs.gov.au/medication-chart/racf

RACF Medication Chart

pbs:medication-chart-racf-default

Removed

Groups specify their default value.

pbs:medication-chart-hospital

http://pbs.gov.au/medication-chart/hospital

pbs:medication-chart-hospital-default

Removed

Groups specify their default value.

pbs:discount-general

http://pbs.gov.au/discount/general

General Patient Copayment Discount

pbs:discount-hospital

http://pbs.gov.au/discount/hospital

Hospital Patient Copayment Discount

dr:RP/s90-cp

http://pbs.gov.au/dispensing-rule/rp-s90-cp

Community Pharmacy

dr:RP/s94-private

http://pbs.gov.au/dispensing-rule/rp-s94-private

Private Hospital

dr:RP/s94-public

http://pbs.gov.au/dispensing-rule/rp-s94-public

Public Hospital

dr:IN/s90-cp

http://pbs.gov.au/dispensing-rule/in-s90-cp

Community Pharmacy

dr:IN/s94-private

http://pbs.gov.au/dispensing-rule/in-s94-private

Private Hospital

dr:IN/s94-public

http://pbs.gov.au/dispensing-rule/in-s94-public

Public Hospital

dr:RP-NP-NC/s90-cp

http://pbs.gov.au/dispensing-rule/rp-np-nc-s90-cp

Community Pharmacy

dr:RP-NP/s90-cp

http://pbs.gov.au/dispensing-rule/rp-np-s90-cp

Community Pharmacy

dr:RP/s90-cp-s100

http://pbs.gov.au/dispensing-rule/rp-s90-cp-s100

Community Pharmacy

dr:RP/s94-private-s100

http://pbs.gov.au/dispensing-rule/rp-s94-private-s100

Private Hospital

dr:RP/s94-public-s100

http://pbs.gov.au/dispensing-rule/rp-s94-public-s100

Public Hospital

dr:IN/s90-cp-sa

http://pbs.gov.au/dispensing-rule/in-s90-cp-sa

Community Pharmacy

dr:IN/s94-private-sa

http://pbs.gov.au/dispensing-rule/in-s94-private-sa

Private Hospital

dr:IN/s94-public-sa

http://pbs.gov.au/dispensing-rule/in-s94-public-sa

Public Hospital

dr:RP-NP-NC/ds-assoc

http://pbs.gov.au/dispensing-rule/rp-np-nc-ds-assoc

Direct Supply

dr:RP-NP-NC/ds-manu

http://pbs.gov.au/dispensing-rule/rp-np-nc-ds-manu

Direct Supply

dr:EP/combined

http://pbs.gov.au/dispensing-rule/ep-combined

Extemporaneous

incentive:dispensing

http://pbs.gov.au/incentive/dispensing

sn:general

http://pbs.gov.au/threshold/general

General Patient Safety Net

sn:concessional

http://pbs.gov.au/threshold/concessional

Concessional Beneficiary Safety Net

sn:default-days

Removed

Groups specify their default value.

sn:default-counted

Removed

Groups specify their default value.

copay:general

http://pbs.gov.au/copayment/general

General Patient Charge

copay:concessional

http://pbs.gov.au/copayment/concessional

Concessional Beneficiary Charge

contrib:brand-premium

http://pbs.gov.au/contribution/brand

Brand Premium

contrib:special-patient

http://pbs.gov.au/contribution/special-patient

Other Special Patient Contribution

contrib:therapeutic-group

http://pbs.gov.au/contribution/therapeutic-group

Therapeutic Group Premium

container:injectable

http://pbs.gov.au/container/injectable

Container for Injectables

container:other

http://pbs.gov.au/container/other

Container for Other Items

container:bottle-dispensing

http://pbs.gov.au/container/bottle-dispensing

Dispensing Bottle

container:bottle-poison

http://pbs.gov.au/container/bottle-poison

Poison Bottle

container:jar-screw-cap

http://pbs.gov.au/container/jar-screw-cap

Screw Cap Jar

container:dropper-polythene

http://pbs.gov.au/container/dropper-polythene

Polythene Dropper

container:dropper-glass

http://pbs.gov.au/container/dropper-glass

Glass Dropper

fee:dispensing

http://pbs.gov.au/fee/dispensing

Dispensing Fee

fee:extra

http://pbs.gov.au/fee/extra

Additional Extra Fee

fee:safety-net-recording

http://pbs.gov.au/fee/safety-net-recording

Safety Net Recording Fee

fee:safety-net-recording-extemp

http://pbs.gov.au/fee/safety-net-recording-extemp

Safety Net Recording Fee for Extemporaneous Items

fee:safety-net-card-issue

http://pbs.gov.au/fee/safety-net-card-issue

Safety Net Card Issue Fee

fee:water-added

http://pbs.gov.au/fee/water-added

Water Added Fee

fee:dangerous-drug

http://pbs.gov.au/fee/dangerous-drug

Dangerous Drug Fee

fee:extemp

http://pbs.gov.au/fee/extemp

Extemporaneous Fee

fee:container-injectable

http://pbs.gov.au/fee/container-injectable

Container Fee - Injectable

fee:container-other

http://pbs.gov.au/fee/container-other

Container Fee - Other

fee:none

http://pbs.gov.au/fee/none

No Fee

fee:infusion-wholesale

http://pbs.gov.au/fee/infusion-wholesale

Wholesaler Fee (Infusion)

fee:infusion-preparation

http://pbs.gov.au/fee/infusion-preparation

Preparation Fee (Infusion)

fee:diluent

http://pbs.gov.au/fee/diluent

Diluent Fee

markup:dollar

Removed

Markup band structure has changed.

markup:percent

Removed

Markup band structure has changed.

markup:percent-combined

Removed

Markup band structure has changed.

group:premium-exemption

http://pbs.gov.au/premium-exemption

Premium Exemption

group:tpg

http://pbs.gov.au/therapeutic-group

Therapeutic Group

group:formulary

http://pbs.gov.au/formulary

Formulary

group:brand-substitutable

http://pbs.gov.au/brand-substitution

Brand Substitution

group:brand-substitution-pr-limited

Removed

No longer required due to change to representation of brand substitution groups.

group:extemp

http://pbs.gov.au/special-handling/extemporaneous

Special Handling: Extemporaneous

group:emergency-drug-supply

http://pbs.gov.au/emergency-drug-supply

Emergency Drug Supply

group:dangerous-drug

http://pbs.gov.au/dangerous-drug

Dangerous Drug Group

group:water-added

http://pbs.gov.au/special-handling/water-added

Special Handling: Water Added

group:solvent-required

Removed

Obsolete.

group:prescriber-type

http://pbs.gov.au/prescriber

Prescriber Type

group:solvent

Removed

Obsolete.

group:container-injectable

http://pbs.gov.au/container/injectable

Container for Injectables

group:container-other

http://pbs.gov.au/container/other

Container for Other Items

auth:all

Removed

No longer required due to change to authority assessment.

auth:in-writing

http://pbs.gov.au/assessment/full

Full Assessment

auth:telephone

http://pbs.gov.au/assessment/immediate

Immediate Assessment

auth:emergency

Removed

Obsolete.

auth:electronic

http://pbs.gov.au/assessment/immediate

Immediate Assessment

auth:streamlined

http://pbs.gov.au/benefit-type/streamlined

Authority Required Benefit: Streamlined

auth:restricted

http://pbs.gov.au/benefit-type/restricted

Restricted Benefit

auth:none

Removed

Obsolete.

auth:not-specified

Removed

Obsolete.

auth:increase-maximum-quantity

Removed

Increases are represented by an element.

auth:increase-number-repeats

Removed

Increases are represented by an element.

rwti:increase

Removed

Obsolete.

rwti:none

http://pbs.gov.au/benefit-type/none

Not Permitted

Increases are represented by an element that contains a benefit type. This concept is used as the benefit type to indicate that an increase is not permitted.

Complex Authority Required

Certain authority-required items that require full assessment are determined to have additional administrative handling procedures for the Department of Human Services. These are indicated by an pbs:administrative-advice element being associated with the terminology concept http://pbs.gov.au/DHS/authority/complex.