[
  {
    "phenotype_id": "PH3656",
    "phenotype_version_id": 8761,
    "name": "Pharmacy First - Sinusitis treatment full dmd codelist",
    "definition": "This codelist was taken from [OpenCodelists](https://www.opencodelists.org/), created by [OpenSAFELY](https://www.opensafely.org/). We recommend viewing this Phenotype on the OpenCodelist website to view the most recent version.\n\n\nThis codelist is used to identify supply of any medication included in the Pharmacy First Patient Group Directions for treatment of sinusitis.\n\n\nIt is specific to only the strength/formulations included in the PGDs for sinusitis (including both brands and generics).\n\n\n© University of Oxford for the Bennett Institute for Applied Data Science 2025\\. This work may be copied freely for non\\-commercial research and study.\n\n",
    "implementation": null,
    "publications": null,
    "validation": null,
    "citation_requirements": null,
    "created": "2026-01-26T23:28:27.014906Z",
    "author": "OpenSAFELY",
    "collections": [
      {
        "name": "OpenCodelist",
        "value": 31
      },
      {
        "name": "Phenotype Library",
        "value": 18
      }
    ],
    "tags": null,
    "organisation": {
      "id": 1,
      "slug": "opensafely",
      "name": "OpenSAFELY"
    },
    "world_access": 1,
    "updated": "2026-01-26T23:28:31.190687Z",
    "references": [
      {
        "url": "https://github.com/opensafely/codelist-development/issues/303",
        "title": "GitHub issue"
      }
    ],
    "signed_off": [],
    "methodology": "PGDs: \n\n\nhttps://www.england.nhs.uk/wp\\-content/uploads/2023/11/PRN01010\\-6a.\\-Sinusitis\\-fluticasone\\-nasal\\-spray\\-patient\\-group\\-direction\\-Pharmacy\\-First.pdf\n\n\n\\[ttps://www.england.nhs.uk/wp\\-content/uploads/2023/11/PRN01010\\-6b.\\-Sinusitis\\-mometasone\\-nasal\\-spray\\-patient\\-group\\-direction\\-Pharmacy\\-First.pdf\n\n\nhttps://www.england.nhs.uk/wp\\-content/uploads/2023/11/PRN01010\\-6c.\\-Sinusitis\\-phenoxymethylpenicillin\\-patient\\-group\\-direction\\-Pharmacy\\-First.pdf\n\n\nhttps://www.england.nhs.uk/wp\\-content/uploads/2023/11/PRN01010\\-6d.\\-Sinusitis\\-clairthromycin\\-patient\\-group\\-direction\\-Pharmacy\\-First.pdf\n\n\nhttps://www.england.nhs.uk/wp\\-content/uploads/2023/11/PRN01010\\-6e.\\-Sinusitis\\-doxycycline\\-patient\\-group\\-direction\\-Pharmacy\\-First.pdf\n\n\nhttps://www.england.nhs.uk/wp\\-content/uploads/2023/11/PRN01010\\-6f.\\-Sinusitis\\-erythromycin\\-patient\\-group\\-direction\\-Pharmacy\\-First.pdf\n\n\nThe following SQL code was used to build the codelist natively in dmd to ensure products without a corresponding BNF code were also included.\n\n\n\n```\nSELECT DISTINCT\ndmd_type, dmd_id, dmd_name, bnf_code\nFROM\n`chris.union_amp_vmp`\nWHERE\n(\n  ingredient = 426409006  -- fluticasone furoate\n  AND\n  ingredient_count = 1 -- ensure not combo product\n  AND\n  strength_num = 27.5\n  AND\n  formroute LIKE '%.nasal'\n)\nOR\n(\n  ingredient = 395802006 -- Mometasone furoate\n  AND\n  ingredient_count = 1\n  AND\n  formroute LIKE '%.nasal'\n  AND\n  strength_num = 50\n)\nOR\n(\n  vtm = 'Phenoxymethylpenicillin' \n  AND formroute IN ('tablet.oral') \n  AND strength_num IN (250)\n)\nOR\n(\n  vtm = 'Phenoxymethylpenicillin' \n  AND formroute IN ('solution.oral', 'suspension.oral')\n  AND (((5/strength_den)*strength_num) IN (125, 250)) -- strength is often expressed as mg/ml - this calculation converts to dose per 5ml as expressed in inclusion criteria\n)\nOR\n(\n  vtm = 'Clarithromycin'\n  AND formroute IN ('tablet.oral')\n  AND strength_num IN (250, 500)\n)\nOR\n(\n  vtm = 'Clarithromycin' \n  AND formroute IN ('solution.oral', 'suspension.oral')\n  AND (((5/strength_den)*strength_num) IN (125, 250)) -- strength is often expressed as mg/ml - this calculation converts to dose per 5ml as expressed in inclusion criteria\n)\nOR\n(\n  vtm = 'Doxycycline'\n  AND\n  strength_num IN (50, 100)\n  AND\n  formroute IN ('capsule.oral')\n)\nOR\n(\n  vtm = 'Doxycycline'\n  AND\n  strength_num IN (100)\n  AND\n  form = 'Dispersible tablet'\n)\nOR\n(\n  ingredient = 372694001 -- use ingredient code for erythromycin base substance here not vtm as a number of different erythromycin salts\n  AND\n  formroute IN ('tablet.oral', 'tabletgastro-resistant.oral')\n  AND\n  strength_num IN (250, 500)\n)\nOR\n(\n  ingredient = 372694001 -- use ingredient code for erythromycin base substance here not vtm as a number of different erythromycin salts\n  AND\n  formroute IN ('solution.oral', 'suspension.oral')\n  AND \n  (((5/strength_den)*strength_num) IN (125, 250, 500)) -- strength is often expressed as mg/ml - this calculation converts to dose per 5ml as expressed in inclusion criteria\n)\n\n```\n\n**Updated 20/10/2025**\n\n\nUpdated PGDs reviewed:  \n\nhttps://www.england.nhs.uk/wp\\-content/uploads/2023/11/PRN01010\\-6a.\\-sinusitis\\-fluticasone\\-nasal\\-spray\\-patient\\-group\\-direction\\-pharmacy\\-first.pdf  \n\nhttps://www.england.nhs.uk/wp\\-content/uploads/2023/11/PRN01010\\-6b.\\-sinusitis\\-mometasone\\-nasal\\-spray\\-patient\\-group\\-direction\\-pharmacy\\-first.pdf  \n\nhttps://www.england.nhs.uk/wp\\-content/uploads/2023/11/PRN01010\\-6c.\\-sinusitis\\-phenoxymethylpenicillin\\-patient\\-group\\-direction\\-pharmacy\\-first.pdf  \n\nhttps://www.england.nhs.uk/wp\\-content/uploads/2023/11/PRN01010\\-6d.\\-sinusitis\\-clarithromycin\\-patient\\-group\\-direction\\-pharmacy\\-first.pdf  \n\nhttps://www.england.nhs.uk/wp\\-content/uploads/2023/11/PRN01010\\-6e.\\-sinusitis\\-doxycycline\\-patient\\-group\\-direction\\-pharmacy\\-first.pdf  \n\nhttps://www.england.nhs.uk/wp\\-content/uploads/2023/11/PRN01010\\-6f.\\-sinusitis\\-erythromycin\\-patient\\-group\\-direction\\-pharmacy\\-first.pdf \n\n\nThese products have been removed from latest PGDs:  \n\nErythromycin 500mg/5mL oral suspension (or oral solution)  \n\nErythromycin 500mg/5mL sugar free oral suspension (or oral solution) \n\n\nDecision made to keep them in the codelist to capture any use prior to PGD update.\n\n\nCodelist update using existing SQL query.\n\n",
    "coding_system": [
      {
        "name": "dm+d codes",
        "value": 23
      }
    ],
    "open_codelist_id": "opensafely/pharmacy-first-sinusitis-treatment-full-dmd-codelist",
    "source_reference": "https://www.opencodelists.org/codelist/opensafely/pharmacy-first-sinusitis-treatment-full-dmd-codelist/78b12caf",
    "concept_information": [
      {
        "concept_id": 8938,
        "concept_version_id": 16423,
        "concept_name": "opensafely/pharmacy-first-sinusitis-treatment-full-dmd-codelist/78b12caf",
        "coding_system": {
          "id": 23,
          "name": "dm+d codes",
          "description": "dm+d codes"
        },
        "phenotype_id": "PH3656",
        "phenotype_version_id": 8761,
        "phenotype_name": "Pharmacy First - Sinusitis treatment full dmd codelist",
        "code_attribute_header": [
          "dmd_id",
          "dmd_type"
        ],
        "codes": [
          {
            "code": "10060511000001100",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension sugar free (Abbott Laboratories Ltd)",
            "attributes": {
              "dmd_id": "10060511000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "10060711000001105",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension sugar free (Abbott Laboratories Ltd)",
            "attributes": {
              "dmd_id": "10060711000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "10060911000001107",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension sugar free (Abbott Laboratories Ltd)",
            "attributes": {
              "dmd_id": "10060911000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "10307311000001109",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension (Focus Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "10307311000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "10307511000001103",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension sugar free (Focus Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "10307511000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "10307711000001108",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension (Focus Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "10307711000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "10308011000001107",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension sugar free (Focus Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "10308011000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "10308311000001105",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension (Focus Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "10308311000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "10308511000001104",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension sugar free (Focus Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "10308511000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "103911000001104",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension (Sandoz Ltd)",
            "attributes": {
              "dmd_id": "103911000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "10405011000001108",
            "description": "Doxycycline 50mg capsules (Arrow Generics Ltd)",
            "attributes": {
              "dmd_id": "10405011000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "10405211000001103",
            "description": "Doxycycline 100mg capsules (Arrow Generics Ltd)",
            "attributes": {
              "dmd_id": "10405211000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "10406411000001108",
            "description": "Erythromycin 250mg gastro-resistant tablets (Arrow Generics Ltd)",
            "attributes": {
              "dmd_id": "10406411000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "10430511000001103",
            "description": "Phenoxymethylpenicillin 250mg tablets (Arrow Generics Ltd)",
            "attributes": {
              "dmd_id": "10430511000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "10452211000001101",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution (Arrow Generics Ltd)",
            "attributes": {
              "dmd_id": "10452211000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "10452411000001102",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution (Arrow Generics Ltd)",
            "attributes": {
              "dmd_id": "10452411000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "10452611000001104",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution sugar free (Arrow Generics Ltd)",
            "attributes": {
              "dmd_id": "10452611000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "10452811000001100",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution sugar free (Arrow Generics Ltd)",
            "attributes": {
              "dmd_id": "10452811000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "10536411000001109",
            "description": "Erythroped A 500mg tablets (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "10536411000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "10711000001104",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution (Alliance Healthcare (Distribution) Ltd)",
            "attributes": {
              "dmd_id": "10711000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "10724511000001104",
            "description": "Doxycycline 100mg capsules (Teva UK Ltd)",
            "attributes": {
              "dmd_id": "10724511000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "10833311000001107",
            "description": "Clarithromycin 125mg/5ml oral suspension (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "10833311000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "10833511000001101",
            "description": "Clarithromycin 250mg/5ml oral suspension (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "10833511000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "108811000001104",
            "description": "Erythroped SF 250mg/5ml oral suspension (Advanz Pharma)",
            "attributes": {
              "dmd_id": "108811000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "11020911000001106",
            "description": "Erythromycin 250mg gastro-resistant tablets (Dr Reddy's Laboratories (UK) Ltd)",
            "attributes": {
              "dmd_id": "11020911000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "11144611000001104",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution (Karib Kemi-Pharm Ltd)",
            "attributes": {
              "dmd_id": "11144611000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "11403911000001104",
            "description": "Doxycycline 50mg capsules (Almus Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "11403911000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "11404211000001106",
            "description": "Doxycycline 100mg capsules (Almus Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "11404211000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "11533211000001107",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution sugar free (Sandoz Ltd)",
            "attributes": {
              "dmd_id": "11533211000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "123711000001109",
            "description": "Nasonex 50micrograms/dose nasal spray (Organon Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "123711000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "126311000001101",
            "description": "Erythromycin 250mg gastro-resistant tablets (Viatris UK Healthcare Ltd)",
            "attributes": {
              "dmd_id": "126311000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "13225711000001103",
            "description": "Clarithromycin 250mg/5ml oral suspension (Dowelhurst Ltd)",
            "attributes": {
              "dmd_id": "13225711000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "13236311000001105",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution sugar free (Dowelhurst Ltd)",
            "attributes": {
              "dmd_id": "13236311000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "13236511000001104",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution sugar free (Dowelhurst Ltd)",
            "attributes": {
              "dmd_id": "13236511000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "13237211000001100",
            "description": "Phenoxymethylpenicillin 250mg tablets (Dowelhurst Ltd)",
            "attributes": {
              "dmd_id": "13237211000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "13620311000001107",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension (Pinewood Healthcare)",
            "attributes": {
              "dmd_id": "13620311000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "13620511000001101",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension (Pinewood Healthcare)",
            "attributes": {
              "dmd_id": "13620511000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "13620711000001106",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension (Pinewood Healthcare)",
            "attributes": {
              "dmd_id": "13620711000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "13620911000001108",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension sugar free (Pinewood Healthcare)",
            "attributes": {
              "dmd_id": "13620911000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "13621111000001104",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension sugar free (Pinewood Healthcare)",
            "attributes": {
              "dmd_id": "13621111000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "13621311000001102",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension sugar free (Pinewood Healthcare)",
            "attributes": {
              "dmd_id": "13621311000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "13745611000001101",
            "description": "Clarithromycin 250mg tablets (Tillomed Laboratories Ltd)",
            "attributes": {
              "dmd_id": "13745611000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "13745811000001102",
            "description": "Clarithromycin 500mg tablets (Tillomed Laboratories Ltd)",
            "attributes": {
              "dmd_id": "13745811000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "13765011000001103",
            "description": "Clarithromycin 250mg tablets (Apotex UK Ltd)",
            "attributes": {
              "dmd_id": "13765011000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "13765211000001108",
            "description": "Clarithromycin 500mg tablets (Apotex UK Ltd)",
            "attributes": {
              "dmd_id": "13765211000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "13875411000001102",
            "description": "Erythrocin 500 tablets (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "13875411000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "13935811000001108",
            "description": "Nasonex 50micrograms/dose nasal spray (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "13935811000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "13970711000001108",
            "description": "Vibramycin-D 100mg dispersible tablets (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "13970711000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "14161611000001103",
            "description": "Doxycycline 100mg capsules (Healthcare Pharma Ltd)",
            "attributes": {
              "dmd_id": "14161611000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "14201611000001100",
            "description": "Doxycycline 50mg capsules (Healthcare Pharma Ltd)",
            "attributes": {
              "dmd_id": "14201611000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "14222611000001101",
            "description": "Erythrocin 500 tablets (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "14222611000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "14223111000001103",
            "description": "Erythroped A 500mg tablets (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "14223111000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "14323511000001103",
            "description": "Nasonex 50micrograms/dose nasal spray (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "14323511000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "14694011000001106",
            "description": "Clarithromycin 250mg tablets (Actavis UK Ltd)",
            "attributes": {
              "dmd_id": "14694011000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "14694411000001102",
            "description": "Clarithromycin 500mg tablets (Actavis UK Ltd)",
            "attributes": {
              "dmd_id": "14694411000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "14734611000001104",
            "description": "Klaricid 500 tablets (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "14734611000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "14735011000001105",
            "description": "Klaricid 250mg tablets (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "14735011000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "14758011000001101",
            "description": "Vibramycin-D 100mg dispersible tablets (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "14758011000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "15046311000001109",
            "description": "Avamys 27.5micrograms/dose nasal spray (GlaxoSmithKline UK Ltd)",
            "attributes": {
              "dmd_id": "15046311000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "15080411000001108",
            "description": "Clarithromycin 125mg/5ml oral suspension (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "15080411000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "15080711000001102",
            "description": "Clarithromycin 250mg tablets (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "15080711000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "15080911000001100",
            "description": "Clarithromycin 250mg/5ml oral suspension (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "15080911000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "15083411000001100",
            "description": "Doxycycline 100mg capsules (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "15083411000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "15311000001105",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution (Teva UK Ltd)",
            "attributes": {
              "dmd_id": "15311000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "16063111000001105",
            "description": "Phenoxymethylpenicillin 250mg tablets (Bristol Laboratories Ltd)",
            "attributes": {
              "dmd_id": "16063111000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "16165811000001108",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution sugar free (Alliance Healthcare (Distribution) Ltd)",
            "attributes": {
              "dmd_id": "16165811000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "16166011000001106",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution sugar free (Alliance Healthcare (Distribution) Ltd)",
            "attributes": {
              "dmd_id": "16166011000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "16172811000001109",
            "description": "Erythroped A 500mg tablets (Lexon (UK) Ltd)",
            "attributes": {
              "dmd_id": "16172811000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "16544311000001103",
            "description": "Erythrocin 500 tablets (Stephar (U.K.) Ltd)",
            "attributes": {
              "dmd_id": "16544311000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "16551711000001104",
            "description": "Klaricid 500 tablets (Stephar (U.K.) Ltd)",
            "attributes": {
              "dmd_id": "16551711000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "16558811000001101",
            "description": "Nasonex 50micrograms/dose nasal spray (Mawdsley-Brooks &amp; Company Ltd)",
            "attributes": {
              "dmd_id": "16558811000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "16572211000001101",
            "description": "Erythroped A 500mg tablets (Mawdsley-Brooks &amp; Company Ltd)",
            "attributes": {
              "dmd_id": "16572211000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "16680811000001103",
            "description": "Vibramycin-D 100mg dispersible tablets (Stephar (U.K.) Ltd)",
            "attributes": {
              "dmd_id": "16680811000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17198711000001106",
            "description": "Erythromycin 250mg gastro-resistant tablets (Sovereign Medical Ltd)",
            "attributes": {
              "dmd_id": "17198711000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "173511000001103",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension sugar free (Teva UK Ltd)",
            "attributes": {
              "dmd_id": "173511000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17472811000001106",
            "description": "Vibramycin-D 100mg dispersible tablets (Mawdsley-Brooks &amp; Company Ltd)",
            "attributes": {
              "dmd_id": "17472811000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17503311000001109",
            "description": "Erythrocin 500 tablets (Mawdsley-Brooks &amp; Company Ltd)",
            "attributes": {
              "dmd_id": "17503311000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17522411000001102",
            "description": "Clarithromycin 250mg tablets (Somex Pharma)",
            "attributes": {
              "dmd_id": "17522411000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17522611000001104",
            "description": "Clarithromycin 500mg tablets (Somex Pharma)",
            "attributes": {
              "dmd_id": "17522611000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17627611000001109",
            "description": "Erythrolar 500mg tablets (Ennogen Pharma Ltd)",
            "attributes": {
              "dmd_id": "17627611000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17628011000001101",
            "description": "Erythrolar 250mg tablets (Ennogen Pharma Ltd)",
            "attributes": {
              "dmd_id": "17628011000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "177211000001105",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension sugar free (A A H Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "177211000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17859611000001109",
            "description": "Clarithromycin 250mg tablets (Phoenix Healthcare Distribution Ltd)",
            "attributes": {
              "dmd_id": "17859611000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17859811000001108",
            "description": "Clarithromycin 500mg tablets (Phoenix Healthcare Distribution Ltd)",
            "attributes": {
              "dmd_id": "17859811000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "178911000001100",
            "description": "Erythroped Forte SF 500mg/5ml oral suspension (Advanz Pharma)",
            "attributes": {
              "dmd_id": "178911000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17894611000001103",
            "description": "Doxycycline 50mg capsules (Phoenix Healthcare Distribution Ltd)",
            "attributes": {
              "dmd_id": "17894611000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17894811000001104",
            "description": "Doxycycline 100mg capsules (Phoenix Healthcare Distribution Ltd)",
            "attributes": {
              "dmd_id": "17894811000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17899311000001109",
            "description": "Erythromycin ethyl succinate 500mg tablets (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "17899311000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17902311000001105",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension (Phoenix Healthcare Distribution Ltd)",
            "attributes": {
              "dmd_id": "17902311000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17902611000001100",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension sugar free (Phoenix Healthcare Distribution Ltd)",
            "attributes": {
              "dmd_id": "17902611000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17902811000001101",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension (Phoenix Healthcare Distribution Ltd)",
            "attributes": {
              "dmd_id": "17902811000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17903011000001103",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension sugar free (Phoenix Healthcare Distribution Ltd)",
            "attributes": {
              "dmd_id": "17903011000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17903311000001100",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension (Phoenix Healthcare Distribution Ltd)",
            "attributes": {
              "dmd_id": "17903311000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17903511000001106",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension sugar free (Phoenix Healthcare Distribution Ltd)",
            "attributes": {
              "dmd_id": "17903511000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17903711000001101",
            "description": "Erythromycin 250mg gastro-resistant tablets (Phoenix Healthcare Distribution Ltd)",
            "attributes": {
              "dmd_id": "17903711000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17954311000001108",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution sugar free (Phoenix Healthcare Distribution Ltd)",
            "attributes": {
              "dmd_id": "17954311000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17954511000001102",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution sugar free (Phoenix Healthcare Distribution Ltd)",
            "attributes": {
              "dmd_id": "17954511000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17954711000001107",
            "description": "Phenoxymethylpenicillin 250mg tablets (Phoenix Healthcare Distribution Ltd)",
            "attributes": {
              "dmd_id": "17954711000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17965211000001106",
            "description": "Clarithromycin 250mg tablets (Almus Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "17965211000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "17965511000001109",
            "description": "Clarithromycin 500mg tablets (Almus Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "17965511000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "18051311000001109",
            "description": "Avamys 27.5micrograms/dose nasal spray (Lexon (UK) Ltd)",
            "attributes": {
              "dmd_id": "18051311000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "18056411000001108",
            "description": "Erythrocin 500 tablets (Lexon (UK) Ltd)",
            "attributes": {
              "dmd_id": "18056411000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "18101811000001104",
            "description": "Clarithromycin 125mg/5ml oral suspension (Phoenix Healthcare Distribution Ltd)",
            "attributes": {
              "dmd_id": "18101811000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "18103211000001101",
            "description": "Clarithromycin 250mg/5ml oral suspension (Phoenix Healthcare Distribution Ltd)",
            "attributes": {
              "dmd_id": "18103211000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "18211411000001101",
            "description": "Avamys 27.5micrograms/dose nasal spray (Mawdsley-Brooks &amp; Company Ltd)",
            "attributes": {
              "dmd_id": "18211411000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "18257211000001100",
            "description": "Erythrocin 500 tablets (Necessity Supplies Ltd)",
            "attributes": {
              "dmd_id": "18257211000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "18257511000001102",
            "description": "Erythroped A 500mg tablets (Necessity Supplies Ltd)",
            "attributes": {
              "dmd_id": "18257511000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "18271111000001101",
            "description": "Klaricid 250mg tablets (Necessity Supplies Ltd)",
            "attributes": {
              "dmd_id": "18271111000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "18271311000001104",
            "description": "Klaricid 500 tablets (Necessity Supplies Ltd)",
            "attributes": {
              "dmd_id": "18271311000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "18281911000001106",
            "description": "Erythromycin 250mg gastro-resistant tablets (Strides Pharma UK Ltd)",
            "attributes": {
              "dmd_id": "18281911000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "18719011000001104",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "18719011000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "18719411000001108",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "18719411000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "189311000001103",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution (IVAX Pharmaceuticals UK Ltd)",
            "attributes": {
              "dmd_id": "189311000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "19191611000001104",
            "description": "Erythromycin 250mg gastro-resistant tablets (Milpharm Ltd)",
            "attributes": {
              "dmd_id": "19191611000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "19715011000001104",
            "description": "Clarithromycin 250mg tablets (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "19715011000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "19715211000001109",
            "description": "Clarithromycin 500mg tablets (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "19715211000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "19730711000001101",
            "description": "Phenoxymethylpenicillin 250mg tablets (Medreich Plc)",
            "attributes": {
              "dmd_id": "19730711000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "19733011000001108",
            "description": "Erythromycin 250mg gastro-resistant tablets (Medreich Plc)",
            "attributes": {
              "dmd_id": "19733011000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "19736211000001105",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution (Medreich Plc)",
            "attributes": {
              "dmd_id": "19736211000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "20096711000001105",
            "description": "Clarithromycin 250mg tablets (Wockhardt UK Ltd)",
            "attributes": {
              "dmd_id": "20096711000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "20097311000001109",
            "description": "Clarithromycin 500mg tablets (Wockhardt UK Ltd)",
            "attributes": {
              "dmd_id": "20097311000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "20129511000001108",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution (Crescent Pharma Ltd)",
            "attributes": {
              "dmd_id": "20129511000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "20129711000001103",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution (Crescent Pharma Ltd)",
            "attributes": {
              "dmd_id": "20129711000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "20165611000001102",
            "description": "Clarithromycin 250mg tablets (Accord-UK Ltd)",
            "attributes": {
              "dmd_id": "20165611000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "20165811000001103",
            "description": "Clarithromycin 500mg tablets (Accord-UK Ltd)",
            "attributes": {
              "dmd_id": "20165811000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "20562711000001106",
            "description": "Vibramycin-D 100mg dispersible tablets (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "20562711000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "209811000001108",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution (Accord-UK Ltd)",
            "attributes": {
              "dmd_id": "209811000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21038311000001109",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution (Bristol Laboratories Ltd)",
            "attributes": {
              "dmd_id": "21038311000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21038511000001103",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution (Bristol Laboratories Ltd)",
            "attributes": {
              "dmd_id": "21038511000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21038711000001108",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution sugar free (Bristol Laboratories Ltd)",
            "attributes": {
              "dmd_id": "21038711000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21038911000001105",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution sugar free (Bristol Laboratories Ltd)",
            "attributes": {
              "dmd_id": "21038911000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "211000001101",
            "description": "Klaricid Paediatric 250mg/5ml oral suspension (Viatris UK Healthcare Ltd)",
            "attributes": {
              "dmd_id": "211000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21203711000001101",
            "description": "Avamys 27.5micrograms/dose nasal spray (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "21203711000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21532411000001101",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution (Ennogen Healthcare Ltd)",
            "attributes": {
              "dmd_id": "21532411000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21532611000001103",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution (Ennogen Healthcare Ltd)",
            "attributes": {
              "dmd_id": "21532611000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21834511000001106",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution sugar free (Cubic Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "21834511000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21844311000001104",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution sugar free (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "21844311000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21844511000001105",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution sugar free (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "21844511000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21844711000001100",
            "description": "Phenoxymethylpenicillin 250mg tablets (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "21844711000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21854311000001101",
            "description": "Clarithromycin 125mg/5ml oral suspension (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "21854311000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21854511000001107",
            "description": "Clarithromycin 250mg/5ml oral suspension (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "21854511000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21854711000001102",
            "description": "Clarithromycin 250mg tablets (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "21854711000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21854911000001100",
            "description": "Clarithromycin 500mg tablets (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "21854911000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21863211000001102",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution sugar free (Cubic Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "21863211000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21933211000001100",
            "description": "Doxycycline 50mg capsules (Sovereign Medical Ltd)",
            "attributes": {
              "dmd_id": "21933211000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21933411000001101",
            "description": "Doxycycline 100mg capsules (Sovereign Medical Ltd)",
            "attributes": {
              "dmd_id": "21933411000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21935211000001101",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "21935211000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21975211000001103",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "21975211000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21975411000001104",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "21975411000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21975611000001101",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension sugar free (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "21975611000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21975811000001102",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension sugar free (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "21975811000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21976011000001104",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension sugar free (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "21976011000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "21976211000001109",
            "description": "Erythromycin 250mg gastro-resistant tablets (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "21976211000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "220811000001105",
            "description": "Klaricid 250mg tablets (Abbott Laboratories Ltd)",
            "attributes": {
              "dmd_id": "220811000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "22878811000001100",
            "description": "Erythrocin 500 tablets (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "22878811000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "231611000001103",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension (Sandoz Ltd)",
            "attributes": {
              "dmd_id": "231611000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "235411000001103",
            "description": "Rommix 250 EC tablets (Ashbourne Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "235411000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "23655711000001104",
            "description": "Mometasone 50micrograms/dose nasal spray (Sandoz Ltd)",
            "attributes": {
              "dmd_id": "23655711000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "23679811000001107",
            "description": "Mometasone 50micrograms/dose nasal spray (A A H Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "23679811000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "23679911000001102",
            "description": "Mometasone 50micrograms/dose nasal spray (Teva UK Ltd)",
            "attributes": {
              "dmd_id": "23679911000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "23726411000001109",
            "description": "Mometasone 50micrograms/dose nasal spray (Alliance Healthcare (Distribution) Ltd)",
            "attributes": {
              "dmd_id": "23726411000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "237511000001108",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension (Kent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "237511000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "23880711000001109",
            "description": "Doxycycline 100mg capsules (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "23880711000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "23881111000001102",
            "description": "Doxycycline 50mg capsules (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "23881111000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "23902711000001102",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "23902711000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "23902911000001100",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "23902911000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "23903111000001109",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "23903111000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "23903311000001106",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension sugar free (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "23903311000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "23903511000001100",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension sugar free (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "23903511000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "23903711000001105",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension sugar free (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "23903711000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "23903911000001107",
            "description": "Erythromycin 250mg gastro-resistant tablets (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "23903911000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "24099111000001103",
            "description": "Erythromycin 250mg gastro-resistant tablets (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "24099111000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2411000001108",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension sugar free (IVAX Pharmaceuticals UK Ltd)",
            "attributes": {
              "dmd_id": "2411000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "24389111000001103",
            "description": "Erythromycin 250mg gastro-resistant tablets (Bristol Laboratories Ltd)",
            "attributes": {
              "dmd_id": "24389111000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "24410611000001107",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "24410611000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "24605011000001106",
            "description": "Mometasone 50micrograms/dose nasal spray (Actavis UK Ltd)",
            "attributes": {
              "dmd_id": "24605011000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "273611000001101",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension sugar free (IVAX Pharmaceuticals UK Ltd)",
            "attributes": {
              "dmd_id": "273611000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "274611000001103",
            "description": "Erythrocin 250 tablets (Advanz Pharma)",
            "attributes": {
              "dmd_id": "274611000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "28097111000001105",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution sugar free (Almus Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "28097111000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "28097311000001107",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution sugar free (Almus Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "28097311000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2847211000001103",
            "description": "Vibramycin-D 100mg dispersible tablets (Pfizer Ltd)",
            "attributes": {
              "dmd_id": "2847211000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2847611000001101",
            "description": "Doxycycline 50mg capsules (A A H Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "2847611000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2847811000001102",
            "description": "Doxycycline 50mg capsules (Accord-UK Ltd)",
            "attributes": {
              "dmd_id": "2847811000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2848011000001109",
            "description": "Doxycycline 50mg capsules (Teva UK Ltd)",
            "attributes": {
              "dmd_id": "2848011000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2848211000001104",
            "description": "Demix 50 capsules (Ashbourne Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "2848211000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2848411000001100",
            "description": "Doxycycline 50mg capsules (The Boots Company Plc)",
            "attributes": {
              "dmd_id": "2848411000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2848611000001102",
            "description": "Doxycycline 50mg capsules (IVAX Pharmaceuticals UK Ltd)",
            "attributes": {
              "dmd_id": "2848611000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2849111000001103",
            "description": "Doxycycline 50mg capsules (Kent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "2849111000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2849311000001101",
            "description": "Doxylar 50mg capsules (Sandoz Ltd)",
            "attributes": {
              "dmd_id": "2849311000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2849511000001107",
            "description": "Vibramycin 50 capsules (Pfizer Ltd)",
            "attributes": {
              "dmd_id": "2849511000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2849711000001102",
            "description": "Vibramycin Acne Pack 50mg capsules (Pfizer Ltd)",
            "attributes": {
              "dmd_id": "2849711000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2849911000001100",
            "description": "Doxycycline 50mg capsules (Alliance Healthcare (Distribution) Ltd)",
            "attributes": {
              "dmd_id": "2849911000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2850911000001108",
            "description": "Doxycycline 100mg capsules (A A H Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "2850911000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2851411000001109",
            "description": "Doxycycline 100mg capsules (Accord-UK Ltd)",
            "attributes": {
              "dmd_id": "2851411000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2851811000001106",
            "description": "Doxycycline 100mg capsules (Approved Prescription Services Ltd)",
            "attributes": {
              "dmd_id": "2851811000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2852111000001109",
            "description": "Demix 100 capsules (Ashbourne Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "2852111000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2852311000001106",
            "description": "Doxycycline 100mg capsules (The Boots Company Plc)",
            "attributes": {
              "dmd_id": "2852311000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2852511000001100",
            "description": "Doxycycline 100mg capsules (IVAX Pharmaceuticals UK Ltd)",
            "attributes": {
              "dmd_id": "2852511000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2852911000001107",
            "description": "Doxycycline 100mg capsules (Viatris UK Healthcare Ltd)",
            "attributes": {
              "dmd_id": "2852911000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2853211000001109",
            "description": "Doxycycline 100mg capsules (Kent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "2853211000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2853411000001108",
            "description": "Doxylar 100mg capsules (Sandoz Ltd)",
            "attributes": {
              "dmd_id": "2853411000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2853611000001106",
            "description": "Vibrox 100mg capsules (Kent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "2853611000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2854011000001102",
            "description": "Vibramycin 100mg capsules (Pfizer Ltd)",
            "attributes": {
              "dmd_id": "2854011000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "2854311000001104",
            "description": "Doxycycline 100mg capsules (Alliance Healthcare (Distribution) Ltd)",
            "attributes": {
              "dmd_id": "2854311000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "28985911000001106",
            "description": "Phenoxymethylpenicillin 250mg tablets (Crescent Pharma Ltd)",
            "attributes": {
              "dmd_id": "28985911000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "289911000001104",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution (Teva UK Ltd)",
            "attributes": {
              "dmd_id": "289911000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "294211000001105",
            "description": "Erythroped PI SF 125mg/5ml oral suspension (Advanz Pharma)",
            "attributes": {
              "dmd_id": "294211000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "29789111000001103",
            "description": "Clarithromycin 500mg tablets (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "29789111000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "29836111000001100",
            "description": "Doxycycline 50mg capsules (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "29836111000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "29851811000001101",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension sugar free (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "29851811000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "29852211000001109",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "29852211000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "29852611000001106",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension sugar free (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "29852611000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "29856111000001104",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "29856111000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "29856311000001102",
            "description": "Erythromycin 250mg gastro-resistant tablets (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "29856311000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "29856611000001107",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "29856611000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "29925411000001109",
            "description": "Mometasone 50micrograms/dose nasal spray (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "29925411000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "29983311000001107",
            "description": "Phenoxymethylpenicillin 250mg tablets (Sigma Pharmaceuticals Plc)",
            "attributes": {
              "dmd_id": "29983311000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "30031911000001106",
            "description": "Clarithromycin 125mg/5ml oral suspension (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "30031911000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "30041111000001109",
            "description": "Clarithromycin 250mg/5ml oral suspension (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "30041111000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "30061811000001108",
            "description": "Mometasone 50micrograms/dose nasal spray (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "30061811000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "30123211000001107",
            "description": "Doxycycline 100mg capsules (Mawdsley-Brooks &amp; Company Ltd)",
            "attributes": {
              "dmd_id": "30123211000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "30125811000001107",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension sugar free (Mawdsley-Brooks &amp; Company Ltd)",
            "attributes": {
              "dmd_id": "30125811000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "30611000001101",
            "description": "Erythrocin 500 tablets (Advanz Pharma)",
            "attributes": {
              "dmd_id": "30611000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "30761711000001102",
            "description": "Clarithromycin 125mg/5ml oral suspension (Almus Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "30761711000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "30761911000001100",
            "description": "Clarithromycin 250mg/5ml oral suspension (Almus Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "30761911000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "30810111000001105",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension sugar free (Mawdsley-Brooks &amp; Company Ltd)",
            "attributes": {
              "dmd_id": "30810111000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "30825911000001105",
            "description": "Erythromycin 250mg gastro-resistant tablets (Mawdsley-Brooks &amp; Company Ltd)",
            "attributes": {
              "dmd_id": "30825911000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "30856011000001103",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution (Mawdsley-Brooks &amp; Company Ltd)",
            "attributes": {
              "dmd_id": "30856011000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "30856211000001108",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution sugar free (Mawdsley-Brooks &amp; Company Ltd)",
            "attributes": {
              "dmd_id": "30856211000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "30856411000001107",
            "description": "Phenoxymethylpenicillin 250mg tablets (Mawdsley-Brooks &amp; Company Ltd)",
            "attributes": {
              "dmd_id": "30856411000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "31058611000001104",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution sugar free (Accord-UK Ltd)",
            "attributes": {
              "dmd_id": "31058611000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "31058811000001100",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution sugar free (Accord-UK Ltd)",
            "attributes": {
              "dmd_id": "31058811000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "32163811000001106",
            "description": "Erythromycin ethyl succinate 500mg tablets (Drugsrus Ltd)",
            "attributes": {
              "dmd_id": "32163811000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "322611000001104",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution (Alliance Healthcare (Distribution) Ltd)",
            "attributes": {
              "dmd_id": "322611000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "323416001",
            "description": "VMP previous to 41953811000001101",
            "attributes": {
              "dmd_id": "323416001",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "323418000",
            "description": "VMP previous to 41953711000001109",
            "attributes": {
              "dmd_id": "323418000",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "323420002",
            "description": "VMP previous to 41953911000001106",
            "attributes": {
              "dmd_id": "323420002",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "324059006",
            "description": "VMP previous to 41948311000001104",
            "attributes": {
              "dmd_id": "324059006",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "324070004",
            "description": "VMP previous to 41948611000001109",
            "attributes": {
              "dmd_id": "324070004",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "324072007",
            "description": "VMP previous to 39710311000001106",
            "attributes": {
              "dmd_id": "324072007",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "324178009",
            "description": "VMP previous to 41948811000001108",
            "attributes": {
              "dmd_id": "324178009",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "324179001",
            "description": "VMP previous to 41949111000001108",
            "attributes": {
              "dmd_id": "324179001",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "324180003",
            "description": "VMP previous to 41949311000001105",
            "attributes": {
              "dmd_id": "324180003",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "324181004",
            "description": "VMP previous to 41949411000001103",
            "attributes": {
              "dmd_id": "324181004",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "324191005",
            "description": "VMP previous to 36564711000001108",
            "attributes": {
              "dmd_id": "324191005",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "324192003",
            "description": "VMP previous to 39107311000001103",
            "attributes": {
              "dmd_id": "324192003",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "324203007",
            "description": "VMP previous to 39107211000001106",
            "attributes": {
              "dmd_id": "324203007",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "324232005",
            "description": "VMP previous to 41948911000001103",
            "attributes": {
              "dmd_id": "324232005",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "324233000",
            "description": "VMP previous to 41949011000001107",
            "attributes": {
              "dmd_id": "324233000",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "324234006",
            "description": "VMP previous to 41949211000001102",
            "attributes": {
              "dmd_id": "324234006",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "32423511000001103",
            "description": "Mometasone 50micrograms/dose nasal spray (Kent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "32423511000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "324238009",
            "description": "VMP previous to 41946311000001103",
            "attributes": {
              "dmd_id": "324238009",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "324240004",
            "description": "VMP previous to 35368711000001104",
            "attributes": {
              "dmd_id": "324240004",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "324244008",
            "description": "VMP previous to 41946511000001109",
            "attributes": {
              "dmd_id": "324244008",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "324250003",
            "description": "VMP previous to 37083211000001101",
            "attributes": {
              "dmd_id": "324250003",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "32489211000001105",
            "description": "Phenoxymethylpenicillin 250mg tablets (Brown &amp; Burk UK Ltd)",
            "attributes": {
              "dmd_id": "32489211000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "32490911000001108",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution sugar free (Brown &amp; Burk UK Ltd)",
            "attributes": {
              "dmd_id": "32490911000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "32492211000001103",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution sugar free (Brown &amp; Burk UK Ltd)",
            "attributes": {
              "dmd_id": "32492211000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "32506411000001108",
            "description": "Erythromycin ethyl succinate 500mg tablets (Alliance Healthcare (Distribution) Ltd)",
            "attributes": {
              "dmd_id": "32506411000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "32800711000001104",
            "description": "Erythromycin 250mg gastro-resistant tablets (Genesis Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "32800711000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "331080007",
            "description": "VMP previous to 39109911000001109",
            "attributes": {
              "dmd_id": "331080007",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "333711000001103",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution (Sandoz Ltd)",
            "attributes": {
              "dmd_id": "333711000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "348611000001104",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension (A A H Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "348611000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "34957111000001107",
            "description": "Mometasone 50micrograms/dose nasal spray (Almus Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "34957111000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "35140911000001102",
            "description": "Clarithromycin 250mg tablets (Milpharm Ltd)",
            "attributes": {
              "dmd_id": "35140911000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "35141111000001106",
            "description": "Clarithromycin 500mg tablets (Milpharm Ltd)",
            "attributes": {
              "dmd_id": "35141111000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "35211000001107",
            "description": "Phenoxymethylpenicillin 250mg tablets (Accord-UK Ltd)",
            "attributes": {
              "dmd_id": "35211000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "35368711000001104",
            "description": "Clarithromycin 125mg/5ml oral suspension",
            "attributes": {
              "dmd_id": "35368711000001104",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "35996611000001100",
            "description": "Erythromycin 250mg gastro-resistant tablets (Ennogen Healthcare International Ltd)",
            "attributes": {
              "dmd_id": "35996611000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "364011000001109",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension sugar free (Alliance Healthcare (Distribution) Ltd)",
            "attributes": {
              "dmd_id": "364011000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "364211000001104",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension sugar free (IVAX Pharmaceuticals UK Ltd)",
            "attributes": {
              "dmd_id": "364211000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "36564711000001108",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension sugar free",
            "attributes": {
              "dmd_id": "36564711000001108",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "36621611000001102",
            "description": "Clarithromycin 125mg/5ml oral suspension (Accord-UK Ltd)",
            "attributes": {
              "dmd_id": "36621611000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "36621811000001103",
            "description": "Clarithromycin 250mg/5ml oral suspension (Accord-UK Ltd)",
            "attributes": {
              "dmd_id": "36621811000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "36806611000001106",
            "description": "Mometasone 50micrograms/dose nasal spray (NorthStar Healthcare Unlimited Company)",
            "attributes": {
              "dmd_id": "36806611000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "36846911000001107",
            "description": "Clarithromycin 250mg tablets (Torrent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "36846911000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "36847211000001101",
            "description": "Clarithromycin 500mg tablets (Torrent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "36847211000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "37071111000001104",
            "description": "Doxycycline 50mg capsules (Mawdsley-Brooks &amp; Company Ltd)",
            "attributes": {
              "dmd_id": "37071111000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "37083211000001101",
            "description": "Clarithromycin 250mg/5ml oral suspension",
            "attributes": {
              "dmd_id": "37083211000001101",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "37122311000001100",
            "description": "Mometasone 50micrograms/dose nasal spray (Mawdsley-Brooks &amp; Company Ltd)",
            "attributes": {
              "dmd_id": "37122311000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "37149211000001103",
            "description": "Erythromycin ethyl succinate 500mg tablets (P.I.E. Pharma Ltd)",
            "attributes": {
              "dmd_id": "37149211000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "37369311000001108",
            "description": "Erythrocin 250 tablets (CST Pharma Ltd)",
            "attributes": {
              "dmd_id": "37369311000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "37369811000001104",
            "description": "Erythrocin 500 tablets (CST Pharma Ltd)",
            "attributes": {
              "dmd_id": "37369811000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "37376611000001104",
            "description": "Erythromycin ethyl succinate 500mg tablets (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "37376611000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "37402011000001108",
            "description": "Clarithromycin 250mg tablets (HEC Pharm GmbH)",
            "attributes": {
              "dmd_id": "37402011000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "37402811000001102",
            "description": "Clarithromycin 500mg tablets (HEC Pharm GmbH)",
            "attributes": {
              "dmd_id": "37402811000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "37772411000001102",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution sugar free (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "37772411000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "37772611000001104",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "37772611000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "37772811000001100",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution sugar free (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "37772811000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "37773011000001102",
            "description": "Phenoxymethylpenicillin 250mg tablets (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "37773011000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "37896911000001104",
            "description": "Doxycycline 100mg capsules (Drugsrus Ltd)",
            "attributes": {
              "dmd_id": "37896911000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "37897811000001106",
            "description": "Doxycycline 50mg capsules (Drugsrus Ltd)",
            "attributes": {
              "dmd_id": "37897811000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "37911311000001102",
            "description": "Erythromycin stearate 250mg tablets (Key Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "37911311000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "37911611000001107",
            "description": "Erythromycin stearate 500mg tablets (Key Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "37911611000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "38073211000001103",
            "description": "Erythromycin 250mg gastro-resistant tablets (Noumed Life Sciences Ltd)",
            "attributes": {
              "dmd_id": "38073211000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "38081711000001100",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution (Flamingo Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "38081711000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "38081911000001103",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution (Flamingo Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "38081911000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "38118411000001108",
            "description": "Avamys 27.5micrograms/dose nasal spray (DE Pharmaceuticals)",
            "attributes": {
              "dmd_id": "38118411000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "38215511000001102",
            "description": "Erythromycin stearate 250mg tablets (Alliance Healthcare (Distribution) Ltd)",
            "attributes": {
              "dmd_id": "38215511000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "38215811000001104",
            "description": "Erythromycin stearate 500mg tablets (Alliance Healthcare (Distribution) Ltd)",
            "attributes": {
              "dmd_id": "38215811000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "38836811000001108",
            "description": "Clarithromycin 250mg tablets (Medihealth (Northern) Ltd)",
            "attributes": {
              "dmd_id": "38836811000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "38837011000001104",
            "description": "Clarithromycin 500mg tablets (Medihealth (Northern) Ltd)",
            "attributes": {
              "dmd_id": "38837011000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "38840411000001105",
            "description": "Clarithromycin 125mg/5ml oral suspension (Medihealth (Northern) Ltd)",
            "attributes": {
              "dmd_id": "38840411000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "38840711000001104",
            "description": "Clarithromycin 250mg/5ml oral suspension (Medihealth (Northern) Ltd)",
            "attributes": {
              "dmd_id": "38840711000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "38877111000001100",
            "description": "Doxycycline 100mg capsules (Medihealth (Northern) Ltd)",
            "attributes": {
              "dmd_id": "38877111000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "38877411000001105",
            "description": "Doxycycline 50mg capsules (Medihealth (Northern) Ltd)",
            "attributes": {
              "dmd_id": "38877411000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "38889611000001109",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension (Medihealth (Northern) Ltd)",
            "attributes": {
              "dmd_id": "38889611000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "38889811000001108",
            "description": "Erythromycin 250mg gastro-resistant tablets (Medihealth (Northern) Ltd)",
            "attributes": {
              "dmd_id": "38889811000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "38890011000001106",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension (Medihealth (Northern) Ltd)",
            "attributes": {
              "dmd_id": "38890011000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "38890211000001101",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension sugar free (Medihealth (Northern) Ltd)",
            "attributes": {
              "dmd_id": "38890211000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "38890411000001102",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension sugar free (Medihealth (Northern) Ltd)",
            "attributes": {
              "dmd_id": "38890411000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "39049411000001104",
            "description": "Mometasone 50micrograms/dose nasal spray (Medihealth (Northern) Ltd)",
            "attributes": {
              "dmd_id": "39049411000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "39107211000001106",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension sugar free",
            "attributes": {
              "dmd_id": "39107211000001106",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "39107311000001103",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension sugar free",
            "attributes": {
              "dmd_id": "39107311000001103",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "39109911000001109",
            "description": "Mometasone 50micrograms/dose nasal spray",
            "attributes": {
              "dmd_id": "39109911000001109",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "39176911000001106",
            "description": "Phenoxymethylpenicillin 250mg tablets (Medihealth (Northern) Ltd)",
            "attributes": {
              "dmd_id": "39176911000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "39177211000001100",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution (Medihealth (Northern) Ltd)",
            "attributes": {
              "dmd_id": "39177211000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "39177411000001101",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution sugar free (Medihealth (Northern) Ltd)",
            "attributes": {
              "dmd_id": "39177411000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "39177611000001103",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution (Medihealth (Northern) Ltd)",
            "attributes": {
              "dmd_id": "39177611000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "39177811000001104",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution sugar free (Medihealth (Northern) Ltd)",
            "attributes": {
              "dmd_id": "39177811000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "39239111000001100",
            "description": "Mometasone 50micrograms/dose nasal spray (Pilsco Ltd)",
            "attributes": {
              "dmd_id": "39239111000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "392411000001109",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution (A A H Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "392411000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "39710311000001106",
            "description": "Doxycycline 100mg dispersible tablets sugar free",
            "attributes": {
              "dmd_id": "39710311000001106",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "398811000001108",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension (Actavis UK Ltd)",
            "attributes": {
              "dmd_id": "398811000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "40635711000001102",
            "description": "Erythromycin 250mg gastro-resistant tablets (NorthStar Healthcare Unlimited Company)",
            "attributes": {
              "dmd_id": "40635711000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "40924711000001104",
            "description": "Erythromycin stearate 250mg tablets (Ennogen Healthcare International Ltd)",
            "attributes": {
              "dmd_id": "40924711000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "40926011000001106",
            "description": "Erythromycin stearate 500mg tablets (Ennogen Healthcare International Ltd)",
            "attributes": {
              "dmd_id": "40926011000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "41153411000001100",
            "description": "Mometasone 50micrograms/dose nasal spray (Cipla EU Ltd)",
            "attributes": {
              "dmd_id": "41153411000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "41341211000001106",
            "description": "Phenoxymethylpenicillin 250mg tablets (Rudipharm Ltd)",
            "attributes": {
              "dmd_id": "41341211000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "41347211000001101",
            "description": "Doxycycline 50mg capsules (Genesis Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "41347211000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "41347411000001102",
            "description": "Doxycycline 100mg capsules (Genesis Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "41347411000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "41501711000001106",
            "description": "Mometasone 50micrograms/dose nasal spray (Alissa Healthcare Research Ltd)",
            "attributes": {
              "dmd_id": "41501711000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "415511000001109",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension sugar free (Viatris UK Healthcare Ltd)",
            "attributes": {
              "dmd_id": "415511000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "41946311000001103",
            "description": "Clarithromycin 250mg tablets",
            "attributes": {
              "dmd_id": "41946311000001103",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "41946511000001109",
            "description": "Clarithromycin 500mg tablets",
            "attributes": {
              "dmd_id": "41946511000001109",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "41948311000001104",
            "description": "Doxycycline 100mg capsules",
            "attributes": {
              "dmd_id": "41948311000001104",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "41948611000001109",
            "description": "Doxycycline 50mg capsules",
            "attributes": {
              "dmd_id": "41948611000001109",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "41948811000001108",
            "description": "Erythromycin 250mg gastro-resistant tablets",
            "attributes": {
              "dmd_id": "41948811000001108",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "41948911000001103",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension",
            "attributes": {
              "dmd_id": "41948911000001103",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "41949011000001107",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension",
            "attributes": {
              "dmd_id": "41949011000001107",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "41949111000001108",
            "description": "Erythromycin ethyl succinate 500mg tablets",
            "attributes": {
              "dmd_id": "41949111000001108",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "41949211000001102",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension",
            "attributes": {
              "dmd_id": "41949211000001102",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "41949311000001105",
            "description": "Erythromycin stearate 250mg tablets",
            "attributes": {
              "dmd_id": "41949311000001105",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "41949411000001103",
            "description": "Erythromycin stearate 500mg tablets",
            "attributes": {
              "dmd_id": "41949411000001103",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "41953711000001109",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution",
            "attributes": {
              "dmd_id": "41953711000001109",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "41953811000001101",
            "description": "Phenoxymethylpenicillin 250mg tablets",
            "attributes": {
              "dmd_id": "41953811000001101",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "41953911000001106",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution",
            "attributes": {
              "dmd_id": "41953911000001106",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "420411000001107",
            "description": "Phenoxymethylpenicillin 250mg tablets (IVAX Pharmaceuticals UK Ltd)",
            "attributes": {
              "dmd_id": "420411000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "42189811000001109",
            "description": "Fluticasone furoate 27.5micrograms/dose nasal spray",
            "attributes": {
              "dmd_id": "42189811000001109",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "42203711000001100",
            "description": "Clarithromycin 250mg tablets (Brown &amp; Burk UK Ltd)",
            "attributes": {
              "dmd_id": "42203711000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "42204811000001106",
            "description": "Erythromycin 250mg gastro-resistant tablets (Brown &amp; Burk UK Ltd)",
            "attributes": {
              "dmd_id": "42204811000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "42205211000001106",
            "description": "Clarithromycin 500mg tablets (Brown &amp; Burk UK Ltd)",
            "attributes": {
              "dmd_id": "42205211000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "42455811000001101",
            "description": "Clarithromycin 250mg tablets (Krka UK Ltd)",
            "attributes": {
              "dmd_id": "42455811000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "42456611000001105",
            "description": "Clarithromycin 500mg tablets (Krka UK Ltd)",
            "attributes": {
              "dmd_id": "42456611000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "42484111000001104",
            "description": "Doxycycline 100mg capsules (AAH Hillcross)",
            "attributes": {
              "dmd_id": "42484111000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "42533911000001101",
            "description": "Coryen 27.5micrograms/dose nasal spray (Alissa Healthcare Research Ltd)",
            "attributes": {
              "dmd_id": "42533911000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "42591311000001106",
            "description": "Phenoxymethylpenicillin 250mg tablets (Flamingo Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "42591311000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "425984002",
            "description": "VMP previous to 42189811000001109",
            "attributes": {
              "dmd_id": "425984002",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "42816811000001105",
            "description": "Clarithromycin 250mg tablets (Drugsrus Ltd)",
            "attributes": {
              "dmd_id": "42816811000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "42830211000001104",
            "description": "Clarithromycin 500mg tablets (Drugsrus Ltd)",
            "attributes": {
              "dmd_id": "42830211000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "42831211000001105",
            "description": "Doxycycline 100mg dispersible tablets sugar free (Drugsrus Ltd)",
            "attributes": {
              "dmd_id": "42831211000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "42863911000001105",
            "description": "Nasonex 50micrograms/dose nasal spray (Necessity Supplies Ltd)",
            "attributes": {
              "dmd_id": "42863911000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "4330011000001104",
            "description": "Erythromycin 250mg gastro-resistant tablets (Sandoz Ltd)",
            "attributes": {
              "dmd_id": "4330011000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "433911000001109",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension sugar free (A A H Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "433911000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "44151911000001104",
            "description": "Clarinaze Hayfever Relief 0.05% nasal spray (Bayer Plc)",
            "attributes": {
              "dmd_id": "44151911000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "44154311000001102",
            "description": "Clarithromycin 500mg tablets (Quattro Pharma Ltd)",
            "attributes": {
              "dmd_id": "44154311000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "44365911000001103",
            "description": "Nasonex 50micrograms/dose nasal spray (Pilsco Ltd)",
            "attributes": {
              "dmd_id": "44365911000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "44924811000001109",
            "description": "Clarinaze Allergy Control 0.05% nasal spray (Bayer Plc)",
            "attributes": {
              "dmd_id": "44924811000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "45132711000001103",
            "description": "Flutikaz 27.5micrograms/dose nasal spray (Teva UK Ltd)",
            "attributes": {
              "dmd_id": "45132711000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "45170411000001105",
            "description": "Mometasone 50micrograms/dose nasal spray (Aristo Pharma Ltd)",
            "attributes": {
              "dmd_id": "45170411000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "463111000001102",
            "description": "Klaricid 500 tablets (Abbott Laboratories Ltd)",
            "attributes": {
              "dmd_id": "463111000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "468911000001109",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension (Alliance Healthcare (Distribution) Ltd)",
            "attributes": {
              "dmd_id": "468911000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "469911000001101",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension (Kent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "469911000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "481911000001102",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension sugar free (A A H Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "481911000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "482711000001106",
            "description": "Phenoxymethylpenicillin 250mg tablets (Viatris UK Healthcare Ltd)",
            "attributes": {
              "dmd_id": "482711000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "506011000001101",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension sugar free (Kent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "506011000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "5286611000001101",
            "description": "Clarithromycin 125mg/5ml oral suspension (Dowelhurst Ltd)",
            "attributes": {
              "dmd_id": "5286611000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "5298511000001100",
            "description": "Klaricid Paediatric 125mg/5ml oral suspension (Dowelhurst Ltd)",
            "attributes": {
              "dmd_id": "5298511000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "5300211000001105",
            "description": "Klaricid Paediatric 250mg/5ml oral suspension (Dowelhurst Ltd)",
            "attributes": {
              "dmd_id": "5300211000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "5304211000001102",
            "description": "Nasonex 50micrograms/dose nasal spray (Dowelhurst Ltd)",
            "attributes": {
              "dmd_id": "5304211000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "5377011000001108",
            "description": "Klaricid 250mg tablets (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "5377011000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "5377411000001104",
            "description": "Klaricid 500 tablets (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "5377411000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "5393611000001101",
            "description": "Nasonex 50micrograms/dose nasal spray (Waymade Healthcare Plc)",
            "attributes": {
              "dmd_id": "5393611000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "5459011000001106",
            "description": "Clarithromycin 500mg tablets (Dowelhurst Ltd)",
            "attributes": {
              "dmd_id": "5459011000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "549711000001102",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension sugar free (Viatris UK Healthcare Ltd)",
            "attributes": {
              "dmd_id": "549711000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "5514211000001102",
            "description": "Clarithromycin 250mg tablets (Dowelhurst Ltd)",
            "attributes": {
              "dmd_id": "5514211000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "5541711000001100",
            "description": "Erythrocin 500 tablets (Dowelhurst Ltd)",
            "attributes": {
              "dmd_id": "5541711000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "5543211000001106",
            "description": "Erythroped A 500mg tablets (Dowelhurst Ltd)",
            "attributes": {
              "dmd_id": "5543211000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "5551011000001104",
            "description": "Klaricid 250mg tablets (Dowelhurst Ltd)",
            "attributes": {
              "dmd_id": "5551011000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "5551211000001109",
            "description": "Klaricid 500 tablets (Dowelhurst Ltd)",
            "attributes": {
              "dmd_id": "5551211000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "5622111000001100",
            "description": "Vibramycin-D 100mg dispersible tablets (Dowelhurst Ltd)",
            "attributes": {
              "dmd_id": "5622111000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "563411000001101",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension (A A H Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "563411000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "580111000001102",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension sugar free (Alliance Healthcare (Distribution) Ltd)",
            "attributes": {
              "dmd_id": "580111000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "580811000001109",
            "description": "Erythroped A 500mg tablets (Advanz Pharma)",
            "attributes": {
              "dmd_id": "580811000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "592611000001105",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension sugar free (Teva UK Ltd)",
            "attributes": {
              "dmd_id": "592611000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "604211000001105",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution (IVAX Pharmaceuticals UK Ltd)",
            "attributes": {
              "dmd_id": "604211000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "605811000001107",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension (Sandoz Ltd)",
            "attributes": {
              "dmd_id": "605811000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "610511000001102",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution (Kent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "610511000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "626611000001105",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension sugar free (Alliance Healthcare (Distribution) Ltd)",
            "attributes": {
              "dmd_id": "626611000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "634711000001107",
            "description": "Phenoxymethylpenicillin 250mg tablets (Sandoz Ltd)",
            "attributes": {
              "dmd_id": "634711000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "654811000001103",
            "description": "Erythromycin 250mg gastro-resistant tablets (IVAX Pharmaceuticals UK Ltd)",
            "attributes": {
              "dmd_id": "654811000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "682211000001102",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension (A A H Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "682211000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "683011000001103",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution (Accord-UK Ltd)",
            "attributes": {
              "dmd_id": "683011000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "687011000001109",
            "description": "Erythromycin 250mg gastro-resistant tablets (Kent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "687011000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "689511000001108",
            "description": "Erythromycin 250mg gastro-resistant tablets (Accord-UK Ltd)",
            "attributes": {
              "dmd_id": "689511000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "7211000001107",
            "description": "Erythromycin 250mg gastro-resistant tablets (Sun Pharma UK Ltd)",
            "attributes": {
              "dmd_id": "7211000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "738911000001105",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution (Sandoz Ltd)",
            "attributes": {
              "dmd_id": "738911000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "7432211000001109",
            "description": "Doxycycline 50mg capsules (Viatris UK Healthcare Ltd)",
            "attributes": {
              "dmd_id": "7432211000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "765311000001105",
            "description": "Phenoxymethylpenicillin 250mg tablets (A A H Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "765311000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "766711000001101",
            "description": "Erythromycin 250mg gastro-resistant tablets (A A H Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "766711000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "770211000001102",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution (Viatris UK Healthcare Ltd)",
            "attributes": {
              "dmd_id": "770211000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "78111000001109",
            "description": "Phenoxymethylpenicillin 250mg tablets (Kent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "78111000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "784711000001108",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension sugar free (Viatris UK Healthcare Ltd)",
            "attributes": {
              "dmd_id": "784711000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "78611000001101",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension sugar free (Kent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "78611000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "789411000001103",
            "description": "Erythromycin 250mg gastro-resistant tablets (Alliance Healthcare (Distribution) Ltd)",
            "attributes": {
              "dmd_id": "789411000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "79111000001102",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension (Kent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "79111000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "799511000001103",
            "description": "Phenoxymethylpenicillin 250mg tablets (Teva UK Ltd)",
            "attributes": {
              "dmd_id": "799511000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "808511000001109",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution (Viatris UK Healthcare Ltd)",
            "attributes": {
              "dmd_id": "808511000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "816211000001107",
            "description": "Erythromycin ethyl succinate 250mg/5ml oral suspension (Alliance Healthcare (Distribution) Ltd)",
            "attributes": {
              "dmd_id": "816211000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "821311000001102",
            "description": "Phenoxymethylpenicillin 250mg tablets (Alliance Healthcare (Distribution) Ltd)",
            "attributes": {
              "dmd_id": "821311000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "838411000001100",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension (Actavis UK Ltd)",
            "attributes": {
              "dmd_id": "838411000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "839711000001102",
            "description": "Phenoxymethylpenicillin 250mg tablets (Sun Pharma UK Ltd)",
            "attributes": {
              "dmd_id": "839711000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "840611000001104",
            "description": "Erythromycin ethyl succinate 125mg/5ml oral suspension sugar free (Kent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "840611000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "845911000001101",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension (Alliance Healthcare (Distribution) Ltd)",
            "attributes": {
              "dmd_id": "845911000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "848711000001105",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension sugar free (Teva UK Ltd)",
            "attributes": {
              "dmd_id": "848711000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "849911000001104",
            "description": "Tenkicin 250mg tablets (Kent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "849911000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "871611000001108",
            "description": "Phenoxymethylpenicillin 250mg tablets (The Boots Company Plc)",
            "attributes": {
              "dmd_id": "871611000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "8818911000001106",
            "description": "Clarithromycin 250mg tablets (Teva UK Ltd)",
            "attributes": {
              "dmd_id": "8818911000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "8819111000001101",
            "description": "Clarithromycin 500mg tablets (Teva UK Ltd)",
            "attributes": {
              "dmd_id": "8819111000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "8825911000001106",
            "description": "Clarithromycin 250mg tablets (Kent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "8825911000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "8826111000001102",
            "description": "Clarithromycin 500mg tablets (Kent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "8826111000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "887811000001107",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution (Kent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "887811000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "889511000001102",
            "description": "Erythromycin ethyl succinate 500mg/5ml oral suspension (Actavis UK Ltd)",
            "attributes": {
              "dmd_id": "889511000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "8914911000001107",
            "description": "Clarithromycin 250mg tablets (Viatris UK Healthcare Ltd)",
            "attributes": {
              "dmd_id": "8914911000001107",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "8915511000001104",
            "description": "Clarithromycin 500mg tablets (Viatris UK Healthcare Ltd)",
            "attributes": {
              "dmd_id": "8915511000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "8927511000001103",
            "description": "Clarithromycin 250mg tablets (A A H Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "8927511000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "8928611000001100",
            "description": "Clarithromycin 500mg tablets (A A H Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "8928611000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "89511000001103",
            "description": "Erythromycin 250mg gastro-resistant tablets (Abbott Laboratories Ltd)",
            "attributes": {
              "dmd_id": "89511000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "8993611000001100",
            "description": "Clarithromycin 250mg tablets (Sandoz Ltd)",
            "attributes": {
              "dmd_id": "8993611000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "8993811000001101",
            "description": "Clarithromycin 500mg tablets (Sandoz Ltd)",
            "attributes": {
              "dmd_id": "8993811000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9033411000001103",
            "description": "Clarithromycin 250mg tablets (Alliance Healthcare (Distribution) Ltd)",
            "attributes": {
              "dmd_id": "9033411000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9033811000001101",
            "description": "Clarithromycin 500mg tablets (Alliance Healthcare (Distribution) Ltd)",
            "attributes": {
              "dmd_id": "9033811000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9038211000001105",
            "description": "Clarithromycin 250mg tablets (Sun Pharma UK Ltd)",
            "attributes": {
              "dmd_id": "9038211000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9038811000001106",
            "description": "Clarithromycin 500mg tablets (Sun Pharma UK Ltd)",
            "attributes": {
              "dmd_id": "9038811000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9042011000001104",
            "description": "Clarithromycin 125mg/5ml oral suspension (Sun Pharma UK Ltd)",
            "attributes": {
              "dmd_id": "9042011000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9042311000001101",
            "description": "Clarithromycin 250mg/5ml oral suspension (Sun Pharma UK Ltd)",
            "attributes": {
              "dmd_id": "9042311000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9155811000001105",
            "description": "Clarithromycin 125mg/5ml oral suspension (Kent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "9155811000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9156111000001109",
            "description": "Clarithromycin 250mg/5ml oral suspension (Kent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "9156111000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9157411000001102",
            "description": "Clarithromycin 125mg/5ml oral suspension (Alliance Healthcare (Distribution) Ltd)",
            "attributes": {
              "dmd_id": "9157411000001102",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9157711000001108",
            "description": "Clarithromycin 250mg/5ml oral suspension (Alliance Healthcare (Distribution) Ltd)",
            "attributes": {
              "dmd_id": "9157711000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "917411000001101",
            "description": "Klaricid Paediatric 125mg/5ml oral suspension (Viatris UK Healthcare Ltd)",
            "attributes": {
              "dmd_id": "917411000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "919211000001106",
            "description": "Erythromycin 250mg gastro-resistant tablets (Teva UK Ltd)",
            "attributes": {
              "dmd_id": "919211000001106",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9209211000001101",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution sugar free (Kent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "9209211000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9209511000001103",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution sugar free (Kent Pharma (UK) Ltd)",
            "attributes": {
              "dmd_id": "9209511000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9215111000001107",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution sugar free",
            "attributes": {
              "dmd_id": "9215111000001107",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "9215211000001101",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution sugar free",
            "attributes": {
              "dmd_id": "9215211000001101",
              "dmd_type": "VMP"
            }
          },
          {
            "code": "9252611000001100",
            "description": "Clarithromycin 125mg/5ml oral suspension (A A H Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "9252611000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9253011000001103",
            "description": "Clarithromycin 250mg/5ml oral suspension (A A H Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "9253011000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9253911000001104",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution sugar free (A A H Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "9253911000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9254111000001100",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution sugar free (A A H Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "9254111000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9308011000001109",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution sugar free (Teva UK Ltd)",
            "attributes": {
              "dmd_id": "9308011000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9308211000001104",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution sugar free (Teva UK Ltd)",
            "attributes": {
              "dmd_id": "9308211000001104",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "94811000001103",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution (A A H Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "94811000001103",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9547411000001109",
            "description": "Clarithromycin 125mg/5ml oral suspension (Sandoz Ltd)",
            "attributes": {
              "dmd_id": "9547411000001109",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9547911000001101",
            "description": "Clarithromycin 250mg/5ml oral suspension (Sandoz Ltd)",
            "attributes": {
              "dmd_id": "9547911000001101",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9795911000001100",
            "description": "Erythromycin 250mg gastro-resistant tablets (Almus Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "9795911000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9803511000001108",
            "description": "Phenoxymethylpenicillin 250mg tablets (Almus Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "9803511000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9804611000001105",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution (Almus Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "9804611000001105",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9805411000001108",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution (Almus Pharmaceuticals Ltd)",
            "attributes": {
              "dmd_id": "9805411000001108",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9842311000001100",
            "description": "Phenoxymethylpenicillin 125mg/5ml oral solution sugar free (Viatris UK Healthcare Ltd)",
            "attributes": {
              "dmd_id": "9842311000001100",
              "dmd_type": "AMP"
            }
          },
          {
            "code": "9842511000001106",
            "description": "Phenoxymethylpenicillin 250mg/5ml oral solution sugar free (Viatris UK Healthcare Ltd)",
            "attributes": {
              "dmd_id": "9842511000001106",
              "dmd_type": "AMP"
            }
          }
        ]
      }
    ],
    "coding_system_release": "",
    "open_codelist_version_id": "78b12caf",
    "open_codelist_version_tag": "",
    "status": 1,
    "doi": "https://doi.org/10.48533/s64r-3545",
    "is_deleted": false,
    "publish_status": 2,
    "owner": "ieuan.scanlon",
    "template": {
      "id": 3,
      "name": "OpenCodelists Phenotype",
      "description": "OpenSafely's OpenCodelist Phenotype, visit https://www.opencodelists.org/ to learn more",
      "version_id": 1
    },
    "versions": [
      {
        "version_id": 8761,
        "version_name": "Pharmacy First - Sinusitis treatment full dmd codelist",
        "version_date": "2026-01-26T23:28:31.203024Z",
        "is_published": true,
        "is_latest": true
      },
      {
        "version_id": 8760,
        "version_name": "Pharmacy First - Sinusitis treatment full dmd codelist",
        "version_date": "2026-01-26T23:28:27.026204Z",
        "is_published": true,
        "is_latest": false
      }
    ]
  }
]