Table of Contents

pfMedicineResource

Description

Defines a medicine and its withholding requirements within a scheme. This extends the ICAR schema.

The pfMedicineResource schema inherits from icarMedicineResource.

Properties

Name Description Required Type
Form No pfMedicineForm
Registrant The registering company or manufacturer of the medicine. No string
RegistrationDate The date the medicine was registered in the scheme. No date
ExpiryDate The date the registration of the medicine in the scheme expires. No date
Classification No pfMedicineClassification
Species The species that may be treated by this medicine. No Array of  icarAnimalSpecieType
ActiveIngredients The active ingredients in the medicine. No Array of  pfMedicineIngredientType
Withholdings The withholding periods defined for this medicine for a species for a particular product or food item. No Array of  pfMedicineWithholdingType
Name Name of the medicine or remedy given for this treatment No string
Approved An indicator whether the medicine or remedy is an approved medicine No string
RegisteredID Registered ID in the scheme and ID format. No icarIdentifierType
Self Uniform resource identifier (URI) of the resource (rel=self). No string
Meta Meta-data for the resource. Mandatory if you wish to support synchronisation. No icarMetaDataType
Location Unique location scheme and identifier combination. No icarIdentifierType

Examples

Example 1

{
  "resourceType": "/livestock/treatment/medicine-resource",
  "dataPointKey": "sample-data-medicine-resource-1",
  "name": "Backstop Combination Drench For Sheep",
  "approved": "Registered",
  "registeredID": {
    "id": "77777",
    "scheme": "au.gov.apvma"
  },
  "form": "OralSolution/Suspension",
  "registrant": "Backstop Limited",
  "registrationDate": "2022-09-16",
  "expiryDate": "2023-06-30",
  "classification": "Parasiticides",
  "species": [
    "Sheep"
  ],
  "withholdings": [
    {
      "productType": "Meat",
      "hours": 336,
      "market": "au.gov.apvma.whp",
      "species": "Sheep"
    },
    {
      "productType": "Meat",
      "hours": 1008,
      "market": "au.gov.apvma.esi",
      "species": "Sheep"
    }
  ],
  "activeIngredients": [
    {
      "name": "Abamectin"
    },
    {
      "name": "Levamisole as Levamisole Hydrochloride"
    },
    {
      "name": "Albendazole"
    },
    {
      "name": "Cobalt as Cobalt EDTA"
    },
    {
      "name": "Selenium as Sodium Selenate"
    }
  ]
}

Example 2

{
  "resourceType": "/livestock/treatment/medicine-resource",
  "dataPointKey": "sample-data-medicine-resource-2",
  "name": "Backstop 300mg/mL Injection",
  "approved": "Registered",
  "registeredID": {
    "id": "999999",
    "scheme": "au.gov.apvma"
  },
  "form": "ParenteralLiquid/Solution/Suspension",
  "registrant": "Backstop Pty Ltd",
  "registrationDate": "2022-09-07",
  "expiryDate": "2023-06-30",
  "classification": "Antibiotic+Related",
  "species": [
    "Cattle",
    "Sheep",
    "Pig"
  ],
  "withholdings": [
    {
      "productType": "Meat",
      "hours": 672,
      "market": "au.gov.apvma.whp",
      "species": "Sheep"
    },
    {
      "productType": "Meat",
      "hours": 672,
      "market": "au.gov.apvma.whp",
      "species": "Pig"
    },
    {
      "productType": "Meat",
      "hours": 840,
      "market": "au.gov.apvma.whp",
      "species": "Cattle"
    },
    {
      "productType": "Milk",
      "hours": 168,
      "market": "au.gov.apvma.whp",
      "species": "Cattle"
    },
    {
      "productType": "Milk",
      "hours": 192,
      "market": "au.gov.apvma.whp",
      "species": "Sheep"
    }
  ],
  "activeIngredients": [
    {
      "name": "Oxytetracycline as the Dihydrate"
    }
  ]
}