{
  "swagger": "2.0",
  "info": {
    "version": "1.0",
    "title": "Pharmaceutical Press (PhP) - Optimised Content API",
    "contact": {
      "name": "Optimised Content API - Support",
      "email": "licensing@rpharms.com"
    },
    "termsOfService": "https://www.pharmaceuticalpress.com/terms-and-conditions/",
    "x-logo": {
      "url": "api-logo.png",
      "backgroundColor": "white",
      "href": "https://www.pharmaceuticalpress.com/services/content-licensing-and-integration/"
    },
    "description": "# Introduction\nThis is the Pharmaceutical Press (PhP) Optimised Content API\n"
  },
  "host": "content.medicinescomplete.com",
  "basePath": "/v1.0",
  "schemes": [
    "https"
  ],
  "x-servers": [
    {
      "url": "/v1.0",
      "description": "Host Server"
    }
  ],
  "produces": [
    "application/json; charset=utf-8"
  ],
  "consumes": [
    "application/json"
  ],
  "tags": [
    {
      "name": "Multiple drugs",
      "description": null
    },
    {
      "name": "Single Drug",
      "description": null
    },
    {
      "name": "Cautionary and advisory labels",
      "description": "List of recommended cautionary and advisory labels available in English and Welsh\n"
    },
    {
      "name": "Interactions",
      "description": "Search for interactions including therapeutic drugs, proprietary medicines, herbal medicines, foodstuffs, drinks, pesticides, and drugs of abuse\n\nRegister your interest for this product by contacting licensing@rpharms.com\n"
    },
    {
      "name": "Historic drug pricing",
      "description": "Search for historic drug pricing information\n\nRegister your interest for this product by contacting licensing@rpharms.com\n"
    },
    {
      "name": "Adverse Drug Reactions Search for drug interactions with food, drink and smoking interactions\nRegister your interest for this product by contacting licensing@rpharms.com"
    }
  ],
  "x-tagGroups": [
    {
      "name": "BNF and BNF for Children",
      "tags": [
        "Single drug",
        "Multiple drugs",
        "Cautionary and advisory labels",
        "Historic drug pricing"
      ]
    },
    {
      "name": "Stockley's Interactions Checker",
      "tags": [
        "Interactions"
      ]
    },
    {
      "name": "Martindale's ADR Checker",
      "tags": [
        "Adverse Drug Reactions"
      ]
    }
  ],
  "securityDefinitions": {
    "SecretApiKey": {
      "description": "An API key is a token that a client provides as a request header value when making API calls\n",
      "name": "X-Api-Key",
      "type": "apiKey",
      "in": "header"
    }
  },
  "security": [
    {
      "SecretApiKey": []
    }
  ],
  "responses": {
    "AccessUnauthorized": {
      "description": "X-Api-Key is missing or X-Api-Key is invalid",
      "schema": {
        "$ref": "#/definitions/Error"
      }
    },
    "AccessForbidden": {
      "description": "X-Api-Key has insufficient permissions",
      "schema": {
        "$ref": "#/definitions/Error"
      }
    },
    "NotFound": {
      "description": "Resource was not found",
      "schema": {
        "$ref": "#/definitions/Error"
      }
    },
    "InvalidData": {
      "description": "Invalid data was sent in the request",
      "schema": {
        "$ref": "#/definitions/Error"
      }
    },
    "Gone": {
      "description": "The resource requested has gone, for example if version name is no longer valid",
      "schema": {
        "$ref": "#/definitions/Error"
      }
    }
  },
  "parameters": {
    "publication": {
      "name": "publication",
      "in": "path",
      "description": "The publication, either 'bnf' or 'bnfc'",
      "type": "string",
      "required": true,
      "x-scala-type": "PublicationEnum"
    },
    "resourceId": {
      "name": "id",
      "in": "path",
      "description": "The resource identifier string",
      "type": "string",
      "required": true
    },
    "versionName": {
      "name": "version",
      "in": "query",
      "description": "If supplied only return results from a specific API data version name. It is recommended to specify this only when fetching another page of data from a paginated endpoint or performing a related query to avoid a mixture of data versions. Older data versions may be removed so normally clients should not provide a version name and instead receive the latest API data version.",
      "type": "string"
    },
    "drugNames": {
      "name": "drugNames",
      "in": "query",
      "description": "Drug names to search",
      "type": "array",
      "items": {
        "type": "string"
      },
      "required": true,
      "collectionFormat": "multi"
    },
    "interactants": {
      "name": "interactants",
      "in": "query",
      "description": "Interactants to search",
      "type": "array",
      "items": {
        "type": "string"
      },
      "required": true,
      "collectionFormat": "multi"
    },
    "foodDrinkTobacco": {
      "name": "foodDrinkTobacco",
      "in": "query",
      "description": "Optional flag for interactions between alcohol, tobacco or foods and any of the interactants supplied",
      "type": "boolean"
    },
    "autoCompleteReactant": {
      "name": "interactant",
      "in": "query",
      "description": "Autocomplete interactant search term",
      "type": "string",
      "required": true
    },
    "searchTermType": {
      "name": "termType",
      "in": "query",
      "description": "search term results type",
      "type": "string",
      "enum": [
        "drugs",
        "reactions",
        "drugGroups",
        "bodySystems"
      ],
      "required": true
    },
    "searchTerm": {
      "name": "term",
      "in": "query",
      "description": "convert term to valid search terms",
      "type": "string",
      "required": true
    },
    "collectionLimit": {
      "name": "limit",
      "in": "query",
      "description": "The collection items limit - a parameter outside of the range will use the closest min or max value",
      "type": "integer",
      "minimum": 10,
      "maximum": 100,
      "default": 50
    },
    "collectionOffset": {
      "name": "offset",
      "in": "query",
      "description": "The collection items offset",
      "type": "integer",
      "minimum": 0,
      "default": 0
    },
    "actualMedicinalProductPackId": {
      "name": "amppId",
      "in": "query",
      "description": "An Actual Medicinal Product Pack ID to filter the results by.",
      "type": "string"
    },
    "virtualMedicinalProductPackId": {
      "name": "vmppId",
      "in": "query",
      "description": "A Virtual Medicinal Product Pack ID to filter the results by.",
      "type": "string"
    },
    "historicalDate": {
      "name": "date",
      "in": "query",
      "description": "The relevant date in the history to return results for.",
      "type": "string",
      "format": "date",
      "required": true
    },
    "mediaType": {
      "name": "Accept",
      "in": "header",
      "type": "string",
      "enum": [
        "application/json",
        "text/csv",
        "application/pdf"
      ],
      "default": "application/json",
      "description": "The response media type"
    }
  },
  "paths": {
    "/{publication}/drugs": {
      "get": {
        "tags": [
          "Multiple drugs"
        ],
        "summary": "BNF and BNF for Children drug names",
        "operationId": "getDrugs",
        "produces": [
          "application/json"
        ],
        "x-scala-package": "api",
        "description": "Retrieve a list of drug names",
        "parameters": [
          {
            "$ref": "#/parameters/publication"
          },
          {
            "$ref": "#/parameters/collectionLimit"
          },
          {
            "$ref": "#/parameters/collectionOffset"
          },
          {
            "$ref": "#/parameters/versionName"
          }
        ],
        "responses": {
          "200": {
            "description": "A list of Drugs was retrieved successfully",
            "schema": {
              "$ref": "#/definitions/DrugsWithRoot"
            }
          },
          "400": {
            "$ref": "#/responses/InvalidData"
          },
          "401": {
            "$ref": "#/responses/AccessUnauthorized"
          },
          "403": {
            "$ref": "#/responses/AccessForbidden"
          },
          "404": {
            "$ref": "#/responses/NotFound"
          },
          "410": {
            "$ref": "#/responses/Gone"
          }
        }
      }
    },
    "/{publication}/drugs/{id}/labels": {
      "get": {
        "tags": [
          "Single drug"
        ],
        "summary": "BNF and BNF for Children drug cautionary and advisory labels",
        "operationId": "getDrugByIdWithLabels",
        "produces": [
          "application/json"
        ],
        "x-scala-package": "api",
        "description": "Retrieve a list of drugs including recommended cautionary and advisory labels available in English and Welsh\n",
        "parameters": [
          {
            "$ref": "#/parameters/publication"
          },
          {
            "$ref": "#/parameters/resourceId"
          },
          {
            "$ref": "#/parameters/versionName"
          }
        ],
        "responses": {
          "200": {
            "description": "A drug including cautionary and advisory labels was retrieved successfully",
            "schema": {
              "type": "object",
              "$ref": "#/definitions/DrugWithLabelsRoot"
            }
          },
          "400": {
            "$ref": "#/responses/InvalidData"
          },
          "401": {
            "$ref": "#/responses/AccessUnauthorized"
          },
          "403": {
            "$ref": "#/responses/AccessForbidden"
          },
          "404": {
            "$ref": "#/responses/NotFound"
          },
          "410": {
            "$ref": "#/responses/Gone"
          }
        }
      }
    },
    "/{publication}/drugs/{id}/names": {
      "parameters": [
        {
          "$ref": "#/parameters/publication"
        },
        {
          "$ref": "#/parameters/resourceId"
        }
      ],
      "get": {
        "tags": [
          "Single drug"
        ],
        "summary": "BNF and BNF for Children drug names",
        "operationId": "getDrugById",
        "produces": [
          "application/json"
        ],
        "x-scala-package": "api",
        "description": "Retrieve a list of drug names\n",
        "parameters": [
          {
            "$ref": "#/parameters/versionName"
          }
        ],
        "responses": {
          "200": {
            "description": "A drug was retrieved successfully",
            "schema": {
              "$ref": "#/definitions/DrugWithRoot"
            }
          },
          "400": {
            "$ref": "#/responses/InvalidData"
          },
          "401": {
            "$ref": "#/responses/AccessUnauthorized"
          },
          "403": {
            "$ref": "#/responses/AccessForbidden"
          },
          "404": {
            "$ref": "#/responses/NotFound"
          },
          "410": {
            "$ref": "#/responses/Gone"
          }
        }
      }
    },
    "/{publication}/drugs/{id}/prices": {
      "get": {
        "tags": [
          "Single drug"
        ],
        "summary": "BNF and BNF for Children drug pricing",
        "operationId": "getDrugByIdWithPrices",
        "produces": [
          "application/json"
        ],
        "x-scala-package": "api",
        "description": "Retrieve drug including pricing\n",
        "parameters": [
          {
            "$ref": "#/parameters/publication"
          },
          {
            "$ref": "#/parameters/resourceId"
          },
          {
            "$ref": "#/parameters/versionName"
          }
        ],
        "responses": {
          "200": {
            "description": "A drug including pricing was retrieved successfully",
            "schema": {
              "type": "object",
              "$ref": "#/definitions/DrugWithPricesRoot"
            }
          },
          "400": {
            "$ref": "#/responses/InvalidData"
          },
          "401": {
            "$ref": "#/responses/AccessUnauthorized"
          },
          "403": {
            "$ref": "#/responses/AccessForbidden"
          },
          "404": {
            "$ref": "#/responses/NotFound"
          },
          "410": {
            "$ref": "#/responses/Gone"
          }
        }
      }
    },
    "/{publication}/drugs/labels": {
      "get": {
        "tags": [
          "Multiple drugs"
        ],
        "summary": "BNF and BNF for Children drug cautionary and advisory labels",
        "operationId": "getDrugsWithLabels",
        "produces": [
          "application/json"
        ],
        "x-scala-package": "api",
        "description": "Retrieve a list of drugs including recommended cautionary and advisory labels available in English and Welsh\n",
        "parameters": [
          {
            "$ref": "#/parameters/publication"
          },
          {
            "$ref": "#/parameters/collectionLimit"
          },
          {
            "$ref": "#/parameters/collectionOffset"
          },
          {
            "$ref": "#/parameters/versionName"
          }
        ],
        "responses": {
          "200": {
            "description": "A list of drugs including cautionary and advisory labels was retrieved successfully",
            "schema": {
              "type": "object",
              "$ref": "#/definitions/DrugsWithLabelsRoot"
            }
          },
          "400": {
            "$ref": "#/responses/InvalidData"
          },
          "401": {
            "$ref": "#/responses/AccessUnauthorized"
          },
          "403": {
            "$ref": "#/responses/AccessForbidden"
          },
          "404": {
            "$ref": "#/responses/NotFound"
          },
          "410": {
            "$ref": "#/responses/Gone"
          }
        }
      }
    },
    "/{publication}/drugs/prices": {
      "get": {
        "tags": [
          "Multiple drugs"
        ],
        "summary": "BNF and BNF for Children drugs pricing",
        "operationId": "getDrugsWithPricing",
        "produces": [
          "application/json"
        ],
        "x-scala-package": "api",
        "description": "Retrieve a list of drugs including pricing",
        "parameters": [
          {
            "$ref": "#/parameters/publication"
          },
          {
            "$ref": "#/parameters/collectionLimit"
          },
          {
            "$ref": "#/parameters/collectionOffset"
          },
          {
            "$ref": "#/parameters/versionName"
          }
        ],
        "responses": {
          "200": {
            "description": "A list of drugs including pricing was retrieved successfully",
            "schema": {
              "type": "object",
              "$ref": "#/definitions/DrugsWithPricesRoot"
            }
          },
          "400": {
            "$ref": "#/responses/InvalidData"
          },
          "401": {
            "$ref": "#/responses/AccessUnauthorized"
          },
          "403": {
            "$ref": "#/responses/AccessForbidden"
          },
          "404": {
            "$ref": "#/responses/NotFound"
          },
          "410": {
            "$ref": "#/responses/Gone"
          }
        }
      }
    },
    "/{publication}/history/drugs/prices": {
      "get": {
        "tags": [
          "Historic drug pricing"
        ],
        "summary": "BNF and BNF for Children historic drug pricing",
        "operationId": "getDrugsWithHistoricalPricing",
        "produces": [
          "application/json"
        ],
        "x-scala-package": "api",
        "description": "Register your interest for this product by contacting licensing@rpharms.com\n",
        "parameters": [
          {
            "$ref": "#/parameters/publication"
          },
          {
            "$ref": "#/parameters/historicalDate"
          },
          {
            "$ref": "#/parameters/actualMedicinalProductPackId"
          },
          {
            "$ref": "#/parameters/virtualMedicinalProductPackId"
          }
        ],
        "responses": {
          "200": {
            "description": "A list of drugs with historical pricing was retrieved successfully",
            "schema": {
              "type": "object",
              "$ref": "#/definitions/DrugsWithPricesUnpaginatedRoot"
            }
          },
          "400": {
            "$ref": "#/responses/InvalidData"
          },
          "401": {
            "$ref": "#/responses/AccessUnauthorized"
          },
          "403": {
            "$ref": "#/responses/AccessForbidden"
          },
          "404": {
            "$ref": "#/responses/NotFound"
          },
          "410": {
            "$ref": "#/responses/Gone"
          }
        }
      }
    },
    "/{publication}/labels": {
      "get": {
        "tags": [
          "Cautionary and advisory labels"
        ],
        "summary": "BNF and BNF for Children cautionary and advisory labels",
        "operationId": "getLabels",
        "produces": [
          "application/json"
        ],
        "x-scala-package": "api",
        "description": "Retrieve a list of recommended cautionary and advisory labels available in English and Welsh\n",
        "parameters": [
          {
            "$ref": "#/parameters/publication"
          },
          {
            "$ref": "#/parameters/versionName"
          }
        ],
        "responses": {
          "200": {
            "description": "A list of recommended cautionary and advisory labels available in English and Welsh was retrieved successfully",
            "schema": {
              "$ref": "#/definitions/LabelsWithRoot"
            }
          },
          "401": {
            "$ref": "#/responses/AccessUnauthorized"
          },
          "403": {
            "$ref": "#/responses/AccessForbidden"
          },
          "404": {
            "$ref": "#/responses/NotFound"
          },
          "410": {
            "$ref": "#/responses/Gone"
          }
        }
      }
    },
    "/martindale/adr": {
      "get": {
        "tags": [
          "Adverse Drug Reactions"
        ],
        "summary": "Search adverse drug reactions",
        "operationId": "getSideEffects",
        "produces": [
          "application/json"
        ],
        "x-scala-package": "api",
        "description": "Search adverse drug reactions\n\nRegister your interest for this product by contacting licensing@rpharms.com\n",
        "parameters": [
          {
            "$ref": "#/parameters/drugNames"
          }
        ],
        "responses": {
          "200": {
            "description": "A list of adverse drug reactions was retrieved successfully",
            "schema": {
              "$ref": "#/definitions/SideEffectsWithRoot"
            }
          },
          "401": {
            "$ref": "#/responses/AccessUnauthorized"
          },
          "403": {
            "$ref": "#/responses/AccessForbidden"
          },
          "404": {
            "$ref": "#/responses/NotFound"
          },
          "410": {
            "$ref": "#/responses/Gone"
          }
        }
      }
    },
    "/martindale/adr/autocomplete": {
      "get": {
        "tags": [
          "Adverse Drug Reactions"
        ],
        "summary": "Autocomplete a search term",
        "operationId": "getSideEffectsAutoComplete",
        "produces": [
          "application/json"
        ],
        "x-scala-package": "api",
        "description": "Autocomplete a search term for drugs, reactions, drug groups or body systems\n\nRegister your interest for this product by contacting licensing@rpharms.com\n",
        "parameters": [
          {
            "$ref": "#/parameters/searchTermType"
          },
          {
            "$ref": "#/parameters/searchTerm"
          }
        ],
        "responses": {
          "200": {
            "description": "A list of search terms was retrieved successfully",
            "schema": {
              "$ref": "#/definitions/AdrSearchTermsWithRoot"
            }
          },
          "401": {
            "$ref": "#/responses/AccessUnauthorized"
          },
          "403": {
            "$ref": "#/responses/AccessForbidden"
          },
          "404": {
            "$ref": "#/responses/NotFound"
          },
          "410": {
            "$ref": "#/responses/Gone"
          }
        }
      }
    },
    "/stockley/interactions": {
      "get": {
        "tags": [
          "Interactions"
        ],
        "summary": "Search for drug interactions",
        "operationId": "getInteractions",
        "produces": [
          "application/json"
        ],
        "x-scala-package": "api",
        "description": "Search for interactions including therapeutic drugs, proprietary medicines, herbal medicines, foodstuffs, drinks, pesticides, and drugs of abuse\n\nRegister your interest for this product by contacting licensing@rpharms.com\n",
        "parameters": [
          {
            "$ref": "#/parameters/interactants"
          },
          {
            "$ref": "#/parameters/foodDrinkTobacco"
          }
        ],
        "responses": {
          "200": {
            "description": "Retrieve list of therapeutic drugs interactions with proprietary medicines, herbal medicines, foodstuffs, drinks, pesticides, and drugs of abuse",
            "schema": {
              "$ref": "#/definitions/InteractionsWithRoot"
            }
          },
          "401": {
            "$ref": "#/responses/AccessUnauthorized"
          },
          "403": {
            "$ref": "#/responses/AccessForbidden"
          },
          "404": {
            "$ref": "#/responses/NotFound"
          },
          "410": {
            "$ref": "#/responses/Gone"
          }
        }
      }
    },
    "/stockley/interactions/autocomplete": {
      "get": {
        "tags": [
          "Interactions"
        ],
        "summary": "Autocomplete a search term",
        "operationId": "getInteractionsAutoComplete",
        "produces": [
          "application/json"
        ],
        "x-scala-package": "api",
        "description": "Retrieve an autocomplete list of interactants and type\n\nRegister your interest for this product by contacting licensing@rpharms.com\n",
        "parameters": [
          {
            "$ref": "#/parameters/autoCompleteReactant"
          }
        ],
        "responses": {
          "200": {
            "description": "Retrieve a list of suggested interactants identifying preparations",
            "schema": {
              "$ref": "#/definitions/InteractantAndTypesWithRoot"
            }
          },
          "401": {
            "$ref": "#/responses/AccessUnauthorized"
          },
          "403": {
            "$ref": "#/responses/AccessForbidden"
          },
          "404": {
            "$ref": "#/responses/NotFound"
          },
          "410": {
            "$ref": "#/responses/Gone"
          }
        }
      }
    }
  },
  "definitions": {
    "ActualPack": {
      "properties": {
        "amppId": {
          "description": "Actual Medicinal Product Pack Id",
          "type": "string"
        },
        "title": {
          "description": "Actual Medicinal Product Pack name",
          "type": "string"
        },
        "supplier": {
          "description": "Actual Medicinal Product Pack",
          "type": "string"
        },
        "nhsIndicativePrice": {
          "description": "Indicative Cost to NHS in pence",
          "type": "string"
        }
      },
      "required": [
        "title",
        "supplier"
      ]
    },
    "ActualPackTitle": {
      "properties": {
        "amppId": {
          "description": "Actual Medicinal Product Pack Id",
          "type": "string"
        },
        "title": {
          "description": "Actual Medicinal Product Pack name",
          "type": "string"
        }
      },
      "required": [
        "title"
      ]
    },
    "AdrSearchTerm": {
      "properties": {
        "name": {
          "description": "search term",
          "type": "string"
        }
      },
      "required": [
        "name"
      ]
    },
    "AdrSearchTerms": {
      "properties": {
        "_links": {
          "$ref": "#/definitions/SelfLink"
        },
        "items": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/AdrSearchTerm"
          }
        }
      },
      "required": [
        "_links",
        "items"
      ]
    },
    "AdrSearchTermsWithRoot": {
      "example": {
        "_links": {
          "self": {
            "href": "/v1.0/martindale/adr/autocomplete?type=drugs&phrase=para"
          }
        },
        "items": [
          {
            "name": "paraldehyde"
          },
          {
            "name": "paracetamol"
          },
          {
            "name": "liquid paraffin"
          },
          {
            "name": "parathyroid hormone"
          },
          {
            "name": "dihydrocodeine with paracetamol"
          },
          {
            "name": "paracetamol with isometheptene"
          },
          {
            "name": "paraffin, yellow, soft"
          },
          {
            "name": "liquid paraffin with white soft paraffin and wool alcohols"
          },
          {
            "name": "emollient bath and shower products, paraffin-containing"
          },
          {
            "name": "paracetamol with buclizine hydrochloride and codeine phosphate"
          }
        ]
      },
      "properties": {
        "_links": {
          "$ref": "#/definitions/SelfLink"
        },
        "items": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/AdrSearchTerm"
          }
        }
      },
      "required": [
        "_links",
        "items"
      ]
    },
    "Drug": {
      "properties": {
        "id": {
          "description": "The Drug Identifier",
          "$ref": "#/definitions/ResourceId"
        },
        "vtmId": {
          "description": "The Virtual Therapeutic Moiety identifier",
          "type": "string"
        },
        "title": {
          "description": "The Virtual Therapeutic Moiety name",
          "type": "string"
        },
        "forms": {
          "description": "Collection of Medicinal Forms",
          "type": "array",
          "items": {
            "$ref": "#/definitions/MedicinalFormWithTitles"
          }
        },
        "_links": {
          "description": "Self link",
          "$ref": "#/definitions/DrugLinks"
        }
      },
      "required": [
        "id",
        "title",
        "forms",
        "_links"
      ]
    },
    "DrugLinks": {
      "properties": {
        "self": {
          "$ref": "#/definitions/Link"
        },
        "prices": {
          "$ref": "#/definitions/Link"
        },
        "labels": {
          "$ref": "#/definitions/Link"
        }
      },
      "required": [
        "self",
        "prices",
        "labels"
      ]
    },
    "Drugs": {
      "properties": {
        "_links": {
          "$ref": "#/definitions/Paginate"
        },
        "items": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/Drug"
          }
        }
      },
      "required": [
        "_links",
        "items"
      ]
    },
    "DrugsWithLabelsRoot": {
      "properties": {
        "version": {
          "$ref": "#/definitions/Version"
        },
        "_links": {
          "$ref": "#/definitions/Paginate"
        },
        "items": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/DrugWithLabels"
          }
        }
      },
      "required": [
        "version",
        "_links",
        "items"
      ],
      "example": {
        "version": {
          "name": "2023_02_01_2237_bnf",
          "dmdVersionUsed": "2022.12.3",
          "bnfContentCut": "2023-02-01T22:37:44.255"
        },
        "_links": {
          "next": {
            "href": "/v1.0/bnf/drugs/labels?version=2023_02_01_2237_bnf&offset=10&limit=10"
          },
          "prev": null
        },
        "items": [
          {
            "id": "_801117993",
            "title": "abemaciclib",
            "forms": [
              {
                "dmdId": "385055001",
                "title": "Tablet",
                "labels": [
                  {
                    "id": 3,
                    "recommendations": [
                      {
                        "text": "Warning: This medicine may make you sleepy. If this happens, do not drive or use tools or machines",
                        "lang": "en"
                      },
                      {
                        "text": "Rhybudd: Gall y feddyginiaeth hon eich gwneud yn gysglyd. Peidiwch â gyrru, defnyddio offer llaw neu beiriannau os yw hyn yn digwydd",
                        "lang": "cy"
                      },
                      {
                        "text": "تحذير: قد يسبب هذا الدواء النعاس. لذا، تجنب قيادة المركبات أو استخدام الأدوات أو الآلات.",
                        "lang": "ar"
                      },
                      {
                        "text": "সতর্কতা: এই ওষুধ সেবনে আপনি তন্দ্রাচ্ছন্ন বোধ করতে পারেন। এমনটি হলে গাড়ি চালাবেন না অথবা কোনো যন্ত্রপাতি বা মেশিন ব্যবহার করবেন না",
                        "lang": "bn"
                      },
                      {
                        "text": "Varování: Po tomto léku se vám může chtít spát. V takovém případě neřiďte ani nepoužívejte nářadí nebo stroje",
                        "lang": "cs"
                      },
                      {
                        "text": "Advertencia: este medicamento puede provocar somnolencia. Si esto ocurre, no conduzca ni utilice herramientas ni maquinaria",
                        "lang": "es"
                      },
                      {
                        "text": "Avertissement : Ce médicament peut vous rendre somnolent. Si cela se produit, ne pas conduire et ne pas utiliser pas d'outils ou de machines",
                        "lang": "fr"
                      },
                      {
                        "text": "ચેતવણી: આ દવાથી તમને ઊંઘ આવી શકે છે. જો આવું થાય, તો વાહન ચલાવશો નહીં અથવા ઓજાર કે મશીનોનો ઉપયોગ કરશો નહીં",
                        "lang": "gu"
                      },
                      {
                        "text": "चेतावनी: इस दवा से आपको सुस्ती आ सकती है। अगर ऐसा होता है, तो ड्राइव ना करें या औजार या मशीनों का उपयोग ना करें।  ",
                        "lang": "hi"
                      },
                      {
                        "text": "Avvertenza: Questo medicinale potrebbe causare sonnolenza; in questo caso, non guidare né utilizzare attrezzi o macchine",
                        "lang": "it"
                      },
                      {
                        "text": "चेतावनी: यो औषधिले गर्दा तपाईंलाई निद्रा लाग्न सक्छ। यदि यस्तो भएमा, गाडी नचलाउनुहोस् वा औजार वा मेसिनहरु प्रयोग नगर्नुहोस्",
                        "lang": "ne"
                      },
                      {
                        "text": "ਚੇਤਾਵਨੀ: ਇਹ ਦਵਾਈ ਤੁਹਾਨੂੰ ਨੀਂਦ ਲਿਆ ਸਕਦੀ ਹੈ। ਜੇਕਰ ਅਜਿਹਾ ਹੁੰਦਾ ਹੈ, ਤਾਂ ਗੱਡੀ ਨਾ ਚਲਾਓ ਜਾਂ ਟੂਲ ਜਾਂ ਮਸ਼ੀਨਾਂ ਦੀ ਵਰਤੋਂ ਨਾ ਕਰੋ",
                        "lang": "pa"
                      },
                      {
                        "text": "Ostrzeżenie: Ten lek może powodować senność. W przypadku wystąpienia senności nie wolno prowadzić pojazdów, używać narzędzi oraz maszyn.",
                        "lang": "pl"
                      },
                      {
                        "text": "Aviso: Este medicamento pode provocar sonolência. Se tal acontecer, não conduza, não utilize ferramentas nem máquinas",
                        "lang": "pt"
                      },
                      {
                        "text": "Avertisment: Acest medicament vă poate provoca somnolență. Dacă se întâmplă acest lucru, nu conduceți vehicule și nu folosiți unelte sau utilaje",
                        "lang": "ro"
                      },
                      {
                        "text": "Upozornenie: Tento liek môže spôsobiť ospalosť. Ak sa to stane, nešoférujte a nepracujte s náradím alebo strojmi",
                        "lang": "sk"
                      },
                      {
                        "text": "Digniinta: Daawadan waxay kaa dhigi kartaa qof hurdeysan. Hadday tani dhacdo, ha wadin gaari ama ha isticmaalin qalabka ama mashiinada",
                        "lang": "so"
                      },
                      {
                        "text": "எச்சரிக்கை: இந்த மருந்து உங்களுக்கு தூக்கத்தை ஏற்படுத்தக்கூடும். அவ்வாறு நடந்தால், வாகனம் ஓட்டவோ அல்லது கருவிகளை அல்லது இயந்திரங்களைப் பயன்படுத்தவோ வேண்டாம்.",
                        "lang": "ta"
                      },
                      {
                        "text": "انتباہ: یہ دوا آپ کو نیند میں مبتلا کر سکتی ہے۔ اگر ایسا ہوتا ہے، تو گاڑی نہ چلائیں اور نہ ہی اوزار یا مشینیں استعمال کریں۔",
                        "lang": "ur"
                      }
                    ],
                    "qualifier": ""
                  },
                  {
                    "id": 25,
                    "recommendations": [
                      {
                        "text": "Swallow this medicine whole. Do not chew or crush",
                        "lang": "en"
                      },
                      {
                        "text": "Llyncwch yn gyfan. Peidiwch â chnoi neu falu’n fân",
                        "lang": "cy"
                      },
                      {
                        "text": "ابتلع هذا الدواء كاملًا. لا تمضغه أو تسحقه",
                        "lang": "ar"
                      },
                      {
                        "text": "ওষুধটি পুরো গিলে ফেলুন। চিবিয়ে বা ভেঙে খাবেন না",
                        "lang": "bn"
                      },
                      {
                        "text": "Tento lék spolkněte celý. Nežvýkejte ani nedrťte",
                        "lang": "cs"
                      },
                      {
                        "text": "Tragar este medicamento entero. No masticar ni machacar",
                        "lang": "es"
                      },
                      {
                        "text": "Avaler ce médicament entier. Ne pas le mâcher ni l’écraser",
                        "lang": "fr"
                      },
                      {
                        "text": "આ દવાને આખી ગળી લો. તેને ચાવો કે ભાંગો નહીં",
                        "lang": "gu"
                      },
                      {
                        "text": "इस दवा को पूरी निगलें। चबाएं या कुचलें नहीं।  ",
                        "lang": "hi"
                      },
                      {
                        "text": "Ingoiare questo medicinale tutto intero; non masticare o schiacciare",
                        "lang": "it"
                      },
                      {
                        "text": "यो औषधि पूरै निल्नुहोस्। चपाउने वा थिच्ने नगर्नुहोस्",
                        "lang": "ne"
                      },
                      {
                        "text": "ਇਸ ਦਵਾਈ ਨੂੰ ਪੂਰੀ ਤਰ੍ਹਾਂ ਨਿਗਲ ਲਓ। ਇਸ ਨੂੰ ਚਬਾਓ ਜਾਂ ਕੁਚਲੋ ਨਾ",
                        "lang": "pa"
                      },
                      {
                        "text": "Lek połykać w całości. Nie wolno żuć ani rozgryzać.",
                        "lang": "pl"
                      },
                      {
                        "text": "Engula este medicamento inteiro. Não mastigue nem esmague",
                        "lang": "pt"
                      },
                      {
                        "text": "Înghițiți acest medicament întreg. Nu mestecați și nu zdrobiți",
                        "lang": "ro"
                      },
                      {
                        "text": "Prehltnite liek v celku. Neprežúvať alebo nerozdrviť",
                        "lang": "sk"
                      },
                      {
                        "text": "Liq daawadan oo dhamayso idilkeed. Ha ruugin hana burburin daawada",
                        "lang": "so"
                      },
                      {
                        "text": "இந்த மருந்தை முழுமையாக விழுங்குங்கள். சப்பவோ நசுக்கவோ வேண்டாம்.",
                        "lang": "ta"
                      },
                      {
                        "text": "اس دوا کو پورا نگل لیں۔ نہ چبائیں اور نہ کچلیں",
                        "lang": "ur"
                      }
                    ],
                    "qualifier": ""
                  }
                ]
              }
            ],
            "_links": {
              "self": {
                "href": "/v1.0/bnf/drugs/_801117993/labels?version=2023_02_01_2237_bnf"
              }
            }
          }
        ]
      }
    },
    "DrugsWithPricesRoot": {
      "properties": {
        "version": {
          "$ref": "#/definitions/Version"
        },
        "_links": {
          "$ref": "#/definitions/Paginate"
        },
        "items": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/DrugWithPrices"
          }
        }
      },
      "required": [
        "version",
        "_links",
        "items"
      ],
      "example": {
        "version": {
          "name": "2023_02_01_2237_bnf",
          "dmdVersionUsed": "2022.12.3",
          "bnfContentCut": "2023-02-01T22:37:44.255"
        },
        "_links": {
          "next": {
            "href": "/v1.0/bnf/drugs/prices?version=2023_02_01_2237_bnf&offset=20&limit=10"
          },
          "prev": {
            "href": "/v1.0/bnf/drugs/prices?version=2023_02_01_2237_bnf&offset=0&limit=10"
          }
        },
        "items": [
          {
            "id": "_226731979",
            "vtmId": "27653011000001108",
            "title": "abacavir with dolutegravir and lamivudine",
            "forms": [
              {
                "dmdId": "385055001",
                "title": "Tablet",
                "virtualProducts": [
                  {
                    "vmpId": "27623511000001104",
                    "title": "Generic Triumeq 50mg/600mg/300mg tablets",
                    "productActiveIngredients": [
                      {
                        "ingredientSubstanceName": "Abacavir sulfate",
                        "basisSubstanceName": "Abacavir",
                        "strengthBasis": "Based on Base Substance",
                        "strengthNumerator": {
                          "value": 600,
                          "unit": "mg"
                        },
                        "strengthDenominator": null,
                        "displayText": "Abacavir (as Abacavir sulfate) 600 mg"
                      },
                      {
                        "ingredientSubstanceName": "Dolutegravir sodium",
                        "basisSubstanceName": "Dolutegravir",
                        "strengthBasis": "Based on Base Substance",
                        "strengthNumerator": {
                          "value": 50,
                          "unit": "mg"
                        },
                        "strengthDenominator": null,
                        "displayText": "Dolutegravir (as Dolutegravir sodium) 50 mg"
                      },
                      {
                        "ingredientSubstanceName": "Lamivudine",
                        "basisSubstanceName": null,
                        "strengthBasis": "Based on Ingredient Substance",
                        "strengthNumerator": {
                          "value": 300,
                          "unit": "mg"
                        },
                        "strengthDenominator": null,
                        "displayText": "Lamivudine 300 mg"
                      }
                    ],
                    "packs": [
                      {
                        "vmppId": "27394011000001107",
                        "title": "Generic Triumeq 50mg/600mg/300mg tablets 30 tablet",
                        "packSize": {
                          "value": 30,
                          "unit": "tablet"
                        },
                        "bnfNonProprietaryPrice": null,
                        "drugTariffPrice": null,
                        "proprietaryPacks": [
                          {
                            "amppId": "27394411000001103",
                            "title": "Triumeq 50mg/600mg/300mg tablets 30 tablet",
                            "supplier": "ViiV Healthcare UK Ltd",
                            "nhsIndicativePrice": "79816"
                          }
                        ],
                        "nonProprietaryPacks": []
                      }
                    ]
                  }
                ]
              }
            ],
            "_links": {
              "self": {
                "href": "/v1.0/bnf/drugs/_226731979/prices?version=version=2023_02_01_2237_bnf"
              }
            }
          }
        ]
      }
    },
    "DrugsWithPricesUnpaginatedRoot": {
      "properties": {
        "version": {
          "$ref": "#/definitions/Version"
        },
        "items": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/DrugWithPrices"
          }
        }
      },
      "required": [
        "version",
        "items"
      ],
      "example": {
        "version": {
          "name": "2023_02_01_2237_bnf",
          "dmdVersionUsed": "2022.12.3",
          "bnfContentCut": "2023-02-01T22:37:44.255"
        },
        "items": [
          {
            "id": "_226731979",
            "vtmId": "27653011000001108",
            "title": "abacavir with dolutegravir and lamivudine",
            "forms": [
              {
                "dmdId": "385055001",
                "title": "Tablet",
                "virtualProducts": [
                  {
                    "vmpId": "27623511000001104",
                    "title": "Generic Triumeq 50mg/600mg/300mg tablets",
                    "productActiveIngredients": [
                      {
                        "ingredientSubstanceName": "Abacavir sulfate",
                        "basisSubstanceName": "Abacavir",
                        "strengthBasis": "Based on Base Substance",
                        "strengthNumerator": {
                          "value": 600,
                          "unit": "mg"
                        },
                        "strengthDenominator": null,
                        "displayText": "Abacavir (as Abacavir sulfate) 600 mg"
                      },
                      {
                        "ingredientSubstanceName": "Dolutegravir sodium",
                        "basisSubstanceName": "Dolutegravir",
                        "strengthBasis": "Based on Base Substance",
                        "strengthNumerator": {
                          "value": 50,
                          "unit": "mg"
                        },
                        "strengthDenominator": null,
                        "displayText": "Dolutegravir (as Dolutegravir sodium) 50 mg"
                      },
                      {
                        "ingredientSubstanceName": "Lamivudine",
                        "basisSubstanceName": null,
                        "strengthBasis": "Based on Ingredient Substance",
                        "strengthNumerator": {
                          "value": 300,
                          "unit": "mg"
                        },
                        "strengthDenominator": null,
                        "displayText": "Lamivudine 300 mg"
                      }
                    ],
                    "packs": [
                      {
                        "vmppId": "27394011000001107",
                        "title": "Generic Triumeq 50mg/600mg/300mg tablets 30 tablet",
                        "packSize": {
                          "value": 30,
                          "unit": "tablet"
                        },
                        "bnfNonProprietaryPrice": null,
                        "drugTariffPrice": null,
                        "proprietaryPacks": [
                          {
                            "amppId": "27394411000001103",
                            "title": "Triumeq 50mg/600mg/300mg tablets 30 tablet",
                            "supplier": "ViiV Healthcare UK Ltd",
                            "nhsIndicativePrice": "79816"
                          }
                        ],
                        "nonProprietaryPacks": []
                      }
                    ]
                  }
                ]
              }
            ],
            "_links": {
              "self": {
                "href": "/v1.0/bnf/drugs/_226731979/prices?version=2023_02_01_2237_bnf"
              }
            }
          }
        ]
      }
    },
    "DrugsWithRoot": {
      "example": {
        "_links": {
          "next": {
            "href": "/v1.0/bnf/drugs?version=2023_02_01_2237_bnf&offset=10&limit=10"
          },
          "prev": null
        },
        "items": [
          {
            "id": "_406847720",
            "vtmId": "116084008",
            "title": "abacavir",
            "forms": [
              {
                "dmdId": "385055001",
                "title": "Tablet",
                "virtualProducts": [
                  {
                    "vmpId": "324880001",
                    "title": "Abacavir 300mg tablets",
                    "productActiveIngredients": [
                      {
                        "ingredientSubstanceName": "Abacavir sulfate",
                        "basisSubstanceName": "Abacavir",
                        "strengthBasis": "Based on Base Substance",
                        "strengthNumerator": {
                          "value": 300,
                          "unit": "mg"
                        },
                        "strengthDenominator": null,
                        "displayText": "Abacavir (as Abacavir sulfate) 300 mg"
                      }
                    ],
                    "packs": [
                      {
                        "vmppId": "4442511000001104",
                        "title": "Abacavir 300mg tablets 60 tablet",
                        "packSize": {
                          "value": 60,
                          "unit": "tablet"
                        },
                        "proprietaryPacks": [
                          {
                            "amppId": "4442711000001109",
                            "title": "Ziagen 300mg tablets 60 tablet"
                          }
                        ]
                      }
                    ]
                  }
                ]
              },
              {
                "dmdId": "385023001",
                "title": "Oral solution",
                "virtualProducts": [
                  {
                    "vmpId": "324881002",
                    "title": "Abacavir 20mg/ml oral solution sugar free",
                    "productActiveIngredients": [
                      {
                        "ingredientSubstanceName": "Abacavir sulfate",
                        "basisSubstanceName": "Abacavir",
                        "strengthBasis": "Based on Base Substance",
                        "strengthNumerator": {
                          "value": 20,
                          "unit": "mg"
                        },
                        "strengthDenominator": {
                          "value": 1,
                          "unit": "ml"
                        },
                        "displayText": "Abacavir (as Abacavir sulfate) 20 mg per 1 ml"
                      }
                    ],
                    "packs": [
                      {
                        "vmppId": "4442811000001101",
                        "title": "Abacavir 20mg/ml oral solution sugar free 240 ml",
                        "packSize": {
                          "value": 240,
                          "unit": "ml"
                        },
                        "proprietaryPacks": [
                          {
                            "amppId": "4443011000001103",
                            "title": "Ziagen 20mg/ml oral solution 240 ml"
                          }
                        ]
                      }
                    ]
                  }
                ]
              }
            ],
            "_links": {
              "self": {
                "href": "/v1.0/bnf/drugs/_406847720?version=2023_02_01_2237_bnf"
              },
              "prices": {
                "href": "/v1.0/bnf/drugs/_406847720/prices?version=2023_02_01_2237_bnf"
              },
              "labels": {
                "href": "/v1.0/bnf/drugs/_406847720/labels?version=2023_02_01_2237_bnf"
              }
            }
          }
        ],
        "version": {
          "name": "2023_02_01_2237_bnf",
          "dmdVersionUsed": "2022.12.3",
          "bnfContentCut": "2023-02-01T22:37:44.255"
        }
      },
      "properties": {
        "_links": {
          "$ref": "#/definitions/Paginate"
        },
        "items": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/Drug"
          }
        },
        "version": {
          "$ref": "#/definitions/Version"
        }
      },
      "required": [
        "_links",
        "items",
        "version"
      ]
    },
    "DrugWithLabels": {
      "properties": {
        "id": {
          "description": "The identifier string",
          "$ref": "#/definitions/ResourceId"
        },
        "title": {
          "description": "The drug name",
          "type": "string"
        },
        "forms": {
          "description": "Collection of Medicinal Forms",
          "type": "array",
          "items": {
            "$ref": "#/definitions/MedicinalFormWithLabels"
          }
        },
        "_links": {
          "$ref": "#/definitions/SelfLink"
        }
      },
      "required": [
        "id",
        "title",
        "forms",
        "_links"
      ]
    },
    "DrugWithLabelsRoot": {
      "example": {
        "version": {
          "name": "2023_02_01_2237_bnf",
          "dmdVersionUsed": "2022.12.3",
          "bnfContentCut": "2023-02-01T22:37:44.255"
        },
        "id": "_970446495",
        "title": "Paracetamol",
        "forms": [
          {
            "formType": "Tablet",
            "labels": [
              {
                "id": 29,
                "qualifier": "",
                "recommendation": [
                  {
                    "text": "Do not take more than 2 at any one time. Do not take more than 8 in 24 hours",
                    "lang": "en"
                  },
                  {
                    "text": "Peidiwch â chymryd mwy na 2 ar unrhyw un adeg. Peidiwch â chymryd mwy nag 8 mewn 24 awr",
                    "lang": "cy"
                  },
                  {
                    "text": "لا تتناول أكثر من حبتين في المرة الواحدة، ولا تتناول أكثر من 8 حبات في 24 ساعة",
                    "lang": "ar"
                  },
                  {
                    "text": "একসাথে 2টির বেশি খাবেন না। 24 ঘণ্টায় এক সাথে 8টির বেশি খাবেন না",
                    "lang": "bn"
                  },
                  {
                    "text": "Neužívejte více než 2 najednou. Neužívejte více než 8 během 24 hodin",
                    "lang": "cs"
                  },
                  {
                    "text": "No tomar más de 2 a la vez. No tomar más de 8 en 24 horas",
                    "lang": "es"
                  },
                  {
                    "text": "Ne pas en prendre plus de 2 à la fois. Ne pas en prendre plus de 8 en 24 heures",
                    "lang": "fr"
                  },
                  {
                    "text": "કોઈપણ એક સમયે 2 કરતાં વધુ ન લો. 24 કલાકમાં 8 કરતાં વધુ ન લો",
                    "lang": "gu"
                  },
                  {
                    "text": "एक बार में 2 से अधिक ना लें। 24 घंटे में 8 से अधिक ना लें।  ",
                    "lang": "hi"
                  },
                  {
                    "text": "Non assumere più di 2 alla volta. Non assumere più di 8 in 24 ore",
                    "lang": "it"
                  },
                  {
                    "text": "कुनै पनि समयमा २ भन्दा बढी नलिनुहोस्। २४ घण्टामा ८ भन्दा बढी नलिनुहोस्",
                    "lang": "ne"
                  },
                  {
                    "text": "ਕਿਸੇ ਵੀ ਸਮੇਂ 2 ਤੋਂ ਵੱਧ ਨਾ ਲਓ। 24 ਘੰਟਿਆਂ ਵਿੱਚ 8 ਤੋਂ ਵੱਧ ਨਾ ਲਓ",
                    "lang": "pa"
                  },
                  {
                    "text": "Nigdy nie przyjmować więcej niż 2 sztuki na raz. Nigdy nie przyjmować więcej niż 8 sztuk na dobę.",
                    "lang": "pl"
                  },
                  {
                    "text": "Não tome mais de 2 de uma só vez. Não tome mais de 8 em 24 horas",
                    "lang": "pt"
                  },
                  {
                    "text": "Nu luați mai mult de două o dată. Nu luați mai mult de opt în 24 de ore",
                    "lang": "ro"
                  },
                  {
                    "text": "Nepoužiť viac ako 2 tabletky naraz. Nepoužiť viac ako 8 počas 24 hodín",
                    "lang": "sk"
                  },
                  {
                    "text": "Ha qaadan wax ka badan 2 halki wakhti ee kasta. Ha qaadan wax ka badan 8 24 saacadood gudohood",
                    "lang": "so"
                  },
                  {
                    "text": "ஒரே நேரத்தில் 2க்கு மேல் உட்கொள்ள வேண்டாம். 24 மணி நேரத்தில் 8க்கு மேல் உட்கொள்ள வேண்டாம்.",
                    "lang": "ta"
                  },
                  {
                    "text": "کسی ایک وقت میں 2 سے زیادہ نہ لیں۔ 24 گھنٹوں میں 8 سے زیادہ نہ لیں۔",
                    "lang": "ur"
                  }
                ],
                "_links": {
                  "self": {
                    "href": "/labels/29"
                  }
                }
              },
              {
                "id": 30,
                "qualifier": "",
                "recommendation": [
                  {
                    "text": "Contains paracetamol. Do not take anything else containing paracetamol\n while taking this medicine. Talk to a doctor at once if you take too\n much of this medicine, even if you feel well",
                    "lang": "en"
                  },
                  {
                    "text": "Yn cynnwys paracetamol. Peidiwch â chymryd unrhyw beth arall sy'n cynnwys paracetamol\ntra'n cymryd y feddyginiaeth hon. Siaradwch gyda'ch meddyg ar unwaith os ydych yn\n cymryd gormod, hyd yn oed os ydych yn teimlo'n iawn",
                    "lang": "cy"
                  },
                  {
                    "text": "يحتوي هذا الدواء على الباراسيتامول. لذا، لا تتناول أي شيء آخر يحتوي على الباراسيتامول أثناء تناول هذا الدواء. استشر الطبيب على الفور إذا تناولت جرعة زائدة من هذا الدواء، حتى إذا كنت تشعر بأنك على ما يرام.",
                    "lang": "ar"
                  },
                  {
                    "text": "এতে প্যারাসিটামল আছে। এই ওষুধ চলাকালে প্যারাসিটামল যুক্ত অন্য কোনো কিছু খাবেন না। ওষুধটি অতিরিক্ত খেয়ে ফেললে দেরি না করে আপনার ডাক্তারকে অবহিত করুন, এমনকি আপনি সুস্থ বোধ করলেও",
                    "lang": "bn"
                  },
                  {
                    "text": "Obsahuje paracetamol. Při používání tohoto léku neužívejte žádné další léky obsahující paracetamol. Pokud užijete příliš mnoho tohoto léku, ihned kontaktujte vašeho lékaře, i když se cítíte dobře",
                    "lang": "cs"
                  },
                  {
                    "text": "Contiene paracetamol. No tomar nada más que contenga paracetamol mientras esté tomando este medicamento. Consultar inmediatamente a su médico si toma demasiada cantidad de este medicamento, incluso si se siente bien",
                    "lang": "es"
                  },
                  {
                    "text": "Contient du paracétamol. Ne rien prendre d'autre contenant du paracétamol pendant que vous prenez ce médicament. Consultez immédiatement à un médecin si vous prenez trop de ce médicament, même si vous vous sentez bien",
                    "lang": "fr"
                  },
                  {
                    "text": "આમાં પેરાસિટામોલ છે. આ દવા લેતી વખતે પેરાસિટામોલ ધરાવતી બીજી કોઈપણ વસ્તુ ન લો. જો તમે આ દવાને વધારે માત્રામાં લઈ લીધી હોય, તો તમને તબિયત ઠીક લાગે તેમ છતાં તરત જ તમારા ડૉક્ટર સાથે વાત કરો",
                    "lang": "gu"
                  },
                  {
                    "text": "इसमें पैरासिटामोल है। इस दवा को लेते समय पैरासिटामोल युक्त कोई और चीज़ ना लें। अगर आप इस दवा की अधिक मात्रा ले लेते हैं, तो तुरंत डॉक्टर से बात करें, भले ही आप ठीक महसूस कर रहे हों।  ",
                    "lang": "hi"
                  },
                  {
                    "text": "Contiene paracetamolo; non assumere nient'altro contenente paracetamolo durante l'assunzione di questo medicinale. Rivolgersi immediatamente a un medico se si assumono dosi eccessive di questo medicinale, anche se ci si sente bene",
                    "lang": "it"
                  },
                  {
                    "text": "प्यारासिटामोल समावेश छ। यो औषधि लिँदा प्यारासिटामोल भएको अरू केही नलिनुहोस्। यदि तपाईंले यो औषधि धेरै लिनुभयो भने, तपाईंलाई राम्रो महसुस भए पनि, तुरुन्तै डाक्टरसँग कुरा गर्नुहोस्",
                    "lang": "ne"
                  },
                  {
                    "text": "ਪੈਰਾਸੀਟਾਮੋਲ ਸ਼ਾਮਲ ਹੈ। ਇਸ ਦਵਾਈ ਨੂੰ ਲੈਂਦੇ ਸਮੇਂ ਪੈਰਾਸੀਟਾਮੋਲ ਵਾਲੀ ਕੋਈ ਹੋਰ ਚੀਜ਼ ਨਾ ਲਓ। ਜੇਕਰ ਤੁਸੀਂ ਇਸ ਦਵਾਈ ਦੀ ਬਹੁਤ ਜ਼ਿਆਦਾ ਮਾਤਰਾ ਲੈਂਦੇ ਹੋ, ਭਾਵੇਂ ਤੁਸੀਂ ਠੀਕ ਮਹਿਸੂਸ ਕਰਦੇ ਹੋ, ਤੁਰੰਤ ਕਿਸੇ ਡਾਕਟਰ ਨਾਲ ਗੱਲ ਕਰੋ",
                    "lang": "pa"
                  },
                  {
                    "text": "Zawiera paracetamol. Podczas przyjmowania tego leku nie wolno przyjmować jakichkolwiek innych preparatów zawierających paracetamol. W przypadku przyjęcia za dużej dawki tego leku, należy niezwłocznie skontaktować się z lekarzem, nawet jeśli pacjent czuje się dobrze.",
                    "lang": "pl"
                  },
                  {
                    "text": "Contém paracetamol. Não tome mais nada que contenha paracetamol enquanto estiver a tomar este medicamento. Consulte imediatamente um médico se tomar uma dose excessiva deste medicamento, mesmo que se sinta bem",
                    "lang": "pt"
                  },
                  {
                    "text": "Conține paracetamol. Nu luați nimic altceva care conține paracetamol în timp ce luați acest medicament. Discutați imediat cu un medic dacă luați prea mult din acest medicament, chiar dacă vă simțiți bine",
                    "lang": "ro"
                  },
                  {
                    "text": "Obsahuje paracetamol. Nepoužite nič iné obsahujúci paracetamol, kým beriete tento liek. Kontaktujte okamžite lekára, ak ste použili väčšie množstvo, ak keď sa cítite dobre",
                    "lang": "sk"
                  },
                  {
                    "text": "Daawada waxaa ku jira barasitamool. Ha qaadan wax daawo kale oo uu ku jiro barasitamool inta aad daawadan cunayso. La hadal dhakhtar isla markiiba haddii aad ka qaadato daawadan wax badan, xitaa haddii aad dareemeyso caafimaad",
                    "lang": "so"
                  },
                  {
                    "text": "பரசிட்டமோல் அடங்கியுள்ளது. இந்த மருந்தை உட்கொள்ளும்போது பரசிட்டமோல் அடங்கியுள்ள எதையும் உட்கொள்ள வேண்டாம். இந்த மருந்தை அதிகமாக உட்கொண்டால், நீங்கள் நன்றாக உணர்ந்தாலும் கூட, உடனடியாக ஒரு மருத்துவரை அணுகவும்..",
                    "lang": "ta"
                  },
                  {
                    "text": "پیراسیٹامول پر مشتمل ہے۔ یہ دوا لیتے وقت پیراسیٹامول پر مشتمل کوئی اور چیز نہ لیں۔ اگر آپ اس دوا کا بہت زیادہ استعمال کرتے ہیں، یہاں تک کہ اگر آپ ٹھیک محسوس کرتے ہیں تو ایک ہی وقت میں ڈاکٹر سے بات کریں۔",
                    "lang": "ur"
                  }
                ],
                "_links": {
                  "self": {
                    "href": "/labels/30"
                  }
                }
              }
            ]
          }
        ],
        "_links": {
          "self": {
            "href": "#/drug/_970446495/"
          },
          "prices": {
            "href": "#/drug/_970446495/prices"
          },
          "labels": {
            "href": "#/drug/_970446495/labels"
          }
        }
      },
      "properties": {
        "id": {
          "description": "The identifier string",
          "$ref": "#/definitions/ResourceId"
        },
        "title": {
          "description": "The drug name",
          "type": "string"
        },
        "forms": {
          "description": "Collection of Medicinal Forms",
          "type": "array",
          "items": {
            "$ref": "#/definitions/MedicinalFormWithLabels"
          }
        },
        "_links": {
          "$ref": "#/definitions/SelfLink"
        },
        "version": {
          "$ref": "#/definitions/Version"
        }
      },
      "required": [
        "id",
        "title",
        "forms",
        "_links",
        "version"
      ]
    },
    "DrugWithPrices": {
      "properties": {
        "id": {
          "description": "The identifier string",
          "$ref": "#/definitions/ResourceId"
        },
        "vtmId": {
          "description": "The Virtual Therapeutic Moiety Identifier",
          "type": "string"
        },
        "title": {
          "description": "The Virtual Therapeutic Moiety name",
          "type": "string"
        },
        "forms": {
          "description": "Collection of Medicinal Forms",
          "type": "array",
          "items": {
            "$ref": "#/definitions/MedicinalFormWithPrices"
          }
        },
        "_links": {
          "$ref": "#/definitions/SelfLink"
        }
      },
      "required": [
        "id",
        "title",
        "forms",
        "_links"
      ]
    },
    "DrugWithPricesRoot": {
      "example": {
        "id": "_970446495",
        "vtmId": "90332006",
        "title": "paracetamol",
        "forms": [
          {
            "dmdId": "447079001",
            "title": "Orodispersible tablet",
            "virtualProducts": [
              {
                "vmpId": "3437211000001102",
                "title": "Paracetamol 250mg orodispersible tablets sugar free",
                "productActiveIngredients": [
                  {
                    "ingredientSubstanceName": "Paracetamol",
                    "basisSubstanceName": null,
                    "strengthBasis": "Based on Ingredient Substance",
                    "strengthNumerator": {
                      "value": 250,
                      "unit": "mg"
                    },
                    "strengthDenominator": null,
                    "displayText": "Paracetamol 250 mg"
                  }
                ],
                "packs": [
                  {
                    "vmppId": "1319911000001105",
                    "title": "Paracetamol 250mg orodispersible tablets sugar free 12 tablet",
                    "packSize": {
                      "value": 12,
                      "unit": "tablet"
                    },
                    "bnfNonProprietaryPrice": null,
                    "drugTariffPrice": null,
                    "proprietaryPacks": [
                      {
                        "amppId": "2790211000001109",
                        "title": "Calpol Six Plus Fastmelts 250mg tablets 12 tablet",
                        "supplier": "McNeil Products Ltd",
                        "nhsIndicativePrice": "262"
                      }
                    ],
                    "nonProprietaryPacks": []
                  },
                  {
                    "vmppId": "948911000001102",
                    "title": "Paracetamol 250mg orodispersible tablets sugar free 24 tablet",
                    "packSize": {
                      "value": 24,
                      "unit": "tablet"
                    },
                    "bnfNonProprietaryPrice": null,
                    "drugTariffPrice": null,
                    "proprietaryPacks": [
                      {
                        "amppId": "2790311000001101",
                        "title": "Calpol Six Plus Fastmelts 250mg tablets 24 tablet",
                        "supplier": "McNeil Products Ltd",
                        "nhsIndicativePrice": "412"
                      }
                    ],
                    "nonProprietaryPacks": []
                  }
                ]
              }
            ]
          },
          {
            "dmdId": "385049006",
            "title": "Capsule",
            "virtualProducts": [
              {
                "vmpId": "322280009",
                "title": "Paracetamol 500mg capsules",
                "productActiveIngredients": [
                  {
                    "ingredientSubstanceName": "Paracetamol",
                    "basisSubstanceName": null,
                    "strengthBasis": "Based on Ingredient Substance",
                    "strengthNumerator": {
                      "value": 500,
                      "unit": "mg"
                    },
                    "strengthDenominator": null,
                    "displayText": "Paracetamol 500 mg"
                  }
                ],
                "packs": [
                  {
                    "vmppId": "9709511000001108",
                    "title": "Paracetamol 500mg capsules 100 capsule",
                    "packSize": {
                      "value": 100,
                      "unit": "capsule"
                    },
                    "bnfNonProprietaryPrice": "292",
                    "drugTariffPrice": "234",
                    "proprietaryPacks": [],
                    "nonProprietaryPacks": []
                  },
                  {
                    "vmppId": "1305811000001101",
                    "title": "Paracetamol 500mg capsules 32 capsule",
                    "packSize": {
                      "value": 32,
                      "unit": "capsule"
                    },
                    "bnfNonProprietaryPrice": "83",
                    "drugTariffPrice": "75",
                    "proprietaryPacks": [],
                    "nonProprietaryPacks": []
                  },
                  {
                    "vmppId": "973911000001108",
                    "title": "Paracetamol 500mg capsules 16 capsule",
                    "packSize": {
                      "value": 16,
                      "unit": "capsule"
                    },
                    "bnfNonProprietaryPrice": "41",
                    "drugTariffPrice": null,
                    "proprietaryPacks": [],
                    "nonProprietaryPacks": []
                  }
                ]
              }
            ]
          }
        ],
        "_links": {
          "self": {
            "href": "/v1.0/bnf/drugs/_970446495/prices?version=2023_02_01_2237_bnf"
          }
        },
        "version": {
          "name": "2023_02_01_2237_bnf",
          "dmdVersionUsed": "2022.12.3",
          "bnfContentCut": "2023-02-01T22:37:44.255"
        }
      },
      "properties": {
        "id": {
          "description": "The identifier string",
          "$ref": "#/definitions/ResourceId"
        },
        "vtmId": {
          "description": "The Virtual Therapeutic Moiety Identifier",
          "type": "string"
        },
        "title": {
          "description": "The Virtual Therapeutic Moiety name",
          "type": "string"
        },
        "forms": {
          "description": "Collection of Medicinal Forms",
          "type": "array",
          "items": {
            "$ref": "#/definitions/MedicinalFormWithPrices"
          }
        },
        "_links": {
          "$ref": "#/definitions/SelfLink"
        },
        "version": {
          "$ref": "#/definitions/Version"
        }
      },
      "required": [
        "id",
        "title",
        "forms",
        "_links",
        "version"
      ]
    },
    "DrugWithRoot": {
      "example": {
        "id": "_406847720",
        "vtmId": "116084008",
        "title": "abacavir",
        "forms": [
          {
            "dmdId": "385055001",
            "title": "Tablet",
            "virtualProducts": [
              {
                "vmpId": "324880001",
                "title": "Abacavir 300mg tablets",
                "productActiveIngredients": [
                  {
                    "ingredientSubstanceName": "Abacavir sulfate",
                    "basisSubstanceName": "Abacavir",
                    "strengthBasis": "Based on Base Substance",
                    "strengthNumerator": {
                      "value": 300,
                      "unit": "mg"
                    },
                    "strengthDenominator": null,
                    "displayText": "Abacavir (as Abacavir sulfate) 300 mg"
                  }
                ],
                "packs": [
                  {
                    "vmppId": "4442511000001104",
                    "title": "Abacavir 300mg tablets 60 tablet",
                    "packSize": {
                      "value": 60,
                      "unit": "tablet"
                    },
                    "proprietaryPacks": [
                      {
                        "amppId": "4442711000001109",
                        "title": "Ziagen 300mg tablets 60 tablet"
                      }
                    ]
                  }
                ]
              }
            ]
          },
          {
            "dmdId": "385023001",
            "title": "Oral solution",
            "virtualProducts": [
              {
                "vmpId": "324881002",
                "title": "Abacavir 20mg/ml oral solution sugar free",
                "productActiveIngredients": [
                  {
                    "ingredientSubstanceName": "Abacavir sulfate",
                    "basisSubstanceName": "Abacavir",
                    "strengthBasis": "Based on Base Substance",
                    "strengthNumerator": {
                      "value": 20,
                      "unit": "mg"
                    },
                    "strengthDenominator": {
                      "value": 1,
                      "unit": "ml"
                    },
                    "displayText": "Abacavir (as Abacavir sulfate) 20 mg per 1 ml"
                  }
                ],
                "packs": [
                  {
                    "vmppId": "4442811000001101",
                    "title": "Abacavir 20mg/ml oral solution sugar free 240 ml",
                    "packSize": {
                      "value": 240,
                      "unit": "ml"
                    },
                    "proprietaryPacks": [
                      {
                        "amppId": "4443011000001103",
                        "title": "Ziagen 20mg/ml oral solution 240 ml"
                      }
                    ]
                  }
                ]
              }
            ]
          }
        ],
        "_links": {
          "self": {
            "href": "/v1.0/bnf/drugs/_406847720?version=2023_02_01_2237_bnf"
          },
          "prices": {
            "href": "/v1.0/bnf/drugs/_406847720/prices?version=2023_02_01_2237_bnf"
          },
          "labels": {
            "href": "/v1.0/bnf/drugs/_406847720/labels?version=2023_02_01_2237_bnf"
          }
        },
        "version": {
          "name": "2023_02_01_2237_bnf",
          "dmdVersionUsed": "2022.12.3",
          "bnfContentCut": "2023-02-01T22:37:44.255"
        }
      },
      "properties": {
        "id": {
          "description": "The Drug Identifier",
          "$ref": "#/definitions/ResourceId"
        },
        "vtmId": {
          "description": "The Virtual Therapeutic Moiety identifier",
          "type": "string"
        },
        "title": {
          "description": "The Virtual Therapeutic Moiety name",
          "type": "string"
        },
        "forms": {
          "description": "Collection of Medicinal Forms",
          "type": "array",
          "items": {
            "$ref": "#/definitions/MedicinalFormWithTitles"
          }
        },
        "_links": {
          "description": "Self link",
          "$ref": "#/definitions/DrugLinks"
        },
        "version": {
          "$ref": "#/definitions/Version"
        }
      },
      "required": [
        "id",
        "title",
        "forms",
        "_links",
        "version"
      ]
    },
    "Error": {
      "properties": {
        "status": {
          "type": "integer",
          "format": "int32",
          "minimum": 100,
          "maximum": 600
        },
        "error": {
          "type": "string"
        }
      },
      "required": [
        "status",
        "error"
      ],
      "example": {
        "status": 418,
        "error": "An example error response structure. This text will provide more detail on the failure."
      }
    },
    "InteractantAndType": {
      "properties": {
        "reactant": {
          "description": "Suggested reactant",
          "type": "string"
        },
        "isPrep": {
          "description": "This identifies a preparation where active ingredients may vary",
          "type": "boolean"
        }
      },
      "required": [
        "reactant",
        "isPrep"
      ]
    },
    "InteractantAndTypes": {
      "properties": {
        "_links": {
          "$ref": "#/definitions/SelfLink"
        },
        "items": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/InteractantAndType"
          }
        }
      },
      "required": [
        "_links",
        "items"
      ]
    },
    "InteractantAndTypesWithRoot": {
      "example": {
        "_links": {
          "self": {
            "href": "/v1.0/stockley/interactions/autocomplete?interactant=para"
          }
        },
        "items": [
          {
            "isPrep": false,
            "reactant": "para"
          },
          {
            "isPrep": false,
            "reactant": "parabolan"
          },
          {
            "isPrep": false,
            "reactant": "para-aminobenzoic acid esters"
          },
          {
            "isPrep": false,
            "reactant": "para-aminophenols"
          },
          {
            "isPrep": false,
            "reactant": "para-fluorofentanyl"
          },
          {
            "isPrep": false,
            "reactant": "paracetamol"
          }
        ]
      },
      "properties": {
        "_links": {
          "$ref": "#/definitions/SelfLink"
        },
        "items": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/InteractantAndType"
          }
        }
      },
      "required": [
        "_links",
        "items"
      ]
    },
    "Interaction": {
      "properties": {
        "action": {
          "description": "Clinical action text for interaction",
          "type": "string"
        },
        "actionRating": {
          "description": "Rating symbol to offer guidance to the user on the action required",
          "$ref": "#/definitions/InteractionRating"
        },
        "evidenceRating": {
          "description": "Rating symbol to offer guidance to the user on the evidence for the interaction",
          "$ref": "#/definitions/InteractionRating"
        },
        "explanation": {
          "description": "Clinical explanation text for interaction",
          "type": "string"
        },
        "firstReactant": {
          "type": "string"
        },
        "firstReactantRoute": {
          "type": "string",
          "enum": [
            "systemic",
            "oral"
          ]
        },
        "secondReactant": {
          "type": "string"
        },
        "secondReactantRoute": {
          "type": "string",
          "enum": [
            "systemic",
            "oral"
          ]
        },
        "severityRating": {
          "description": "Rating symbol to offer guidance to the user on the severity of the interaction",
          "$ref": "#/definitions/InteractionRating"
        },
        "warningCode": {
          "description": "Rating symbol to offer guidance to the user on the clinical significance of the interaction",
          "type": "string",
          "enum": [
            "lifeThreatening",
            "dosageAdjustment",
            "guidanceNeeded",
            "noInteraction"
          ]
        }
      },
      "required": [
        "action",
        "actionRating",
        "evidenceRating",
        "explanation",
        "firstReactant",
        "firstReactantRoute",
        "secondReactant",
        "secondReactantRoute",
        "severityRating",
        "warningCode"
      ]
    },
    "InteractionRating": {
      "properties": {
        "rating": {
          "type": "string"
        },
        "description": {
          "type": "string"
        }
      },
      "required": [
        "rating",
        "description"
      ]
    },
    "Interactions": {
      "properties": {
        "_links": {
          "$ref": "#/definitions/SelfLink"
        },
        "items": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/Interaction"
          }
        }
      },
      "required": [
        "_links",
        "items"
      ]
    },
    "InteractionsWithRoot": {
      "example": {
        "_links": {
          "self": {
            "href": "/v1.0/stockley/interactions?interactants=warfarin&foodDrinkTobacco=false"
          }
        },
        "items": [
          {
            "action": "Monitor the INR on concurrent use and adjust the coumarin dose if necessary. Note that the CSM in the UK advise stopping St John's wort.",
            "actionRating": {
              "rating": "Avoid",
              "description": "For interactions where a drug combination is best avoided. This will mainly be used to highlight contraindicated drug pairs."
            },
            "evidenceRating": {
              "rating": "Theoretical",
              "description": "For interactions where the information given is based on a theoretical interaction or lack of interaction. This information may have been derived either from in vitro studies involving the drug in question or based on the way other members of the same group act."
            },
            "explanation": "St John's wort (Hypericum perforatum) can reduce the anticoagulant effects of warfarin.",
            "firstReactant": "warfarin",
            "firstReactantRoute": "systemic",
            "secondReactant": "st john's wort",
            "secondReactantRoute": "systemic",
            "severityRating": {
              "rating": "Severe",
              "description": "For interactions that could totally incapacitate a patient or result in either a permanent detrimental effect or a life-threatening event."
            },
            "warningCode": "lifeThreatening"
          }
        ]
      },
      "properties": {
        "_links": {
          "$ref": "#/definitions/SelfLink"
        },
        "items": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/Interaction"
          }
        }
      },
      "required": [
        "_links",
        "items"
      ]
    },
    "Label": {
      "properties": {
        "id": {
          "description": "reference id to bnf",
          "type": "integer",
          "format": "int64"
        },
        "recommendations": {
          "description": "any label text in one or more languages",
          "type": "array",
          "items": {
            "$ref": "#/definitions/Recommendation"
          }
        }
      },
      "required": [
        "id",
        "recommendations"
      ]
    },
    "Labels": {
      "properties": {
        "items": {
          "description": "all the labels and recommendations",
          "type": "array",
          "items": {
            "$ref": "#/definitions/Label"
          }
        },
        "_links": {
          "$ref": "#/definitions/SelfLink"
        }
      },
      "required": [
        "items",
        "_links"
      ],
      "example": {
        "items": [
          {
            "id": 29,
            "recommendation": [
              {
                "text": "Do not take more than 2 at any one time. Do not take more than 8 in 24 hours",
                "lang": "en"
              },
              {
                "text": "Peidiwch â chymryd mwy na 2 ar unrhyw un adeg. Peidiwch â chymryd mwy nag 8 mewn 24 awr",
                "lang": "cy"
              },
              {
                "text": "لا تتناول أكثر من حبتين في المرة الواحدة، ولا تتناول أكثر من 8 حبات في 24 ساعة",
                "lang": "ar"
              },
              {
                "text": "একসাথে 2টির বেশি খাবেন না। 24 ঘণ্টায় এক সাথে 8টির বেশি খাবেন না",
                "lang": "bn"
              },
              {
                "text": "Neužívejte více než 2 najednou. Neužívejte více než 8 během 24 hodin",
                "lang": "cs"
              },
              {
                "text": "No tomar más de 2 a la vez. No tomar más de 8 en 24 horas",
                "lang": "es"
              },
              {
                "text": "Ne pas en prendre plus de 2 à la fois. Ne pas en prendre plus de 8 en 24 heures",
                "lang": "fr"
              },
              {
                "text": "કોઈપણ એક સમયે 2 કરતાં વધુ ન લો. 24 કલાકમાં 8 કરતાં વધુ ન લો",
                "lang": "gu"
              },
              {
                "text": "एक बार में 2 से अधिक ना लें। 24 घंटे में 8 से अधिक ना लें।  ",
                "lang": "hi"
              },
              {
                "text": "Non assumere più di 2 alla volta. Non assumere più di 8 in 24 ore",
                "lang": "it"
              },
              {
                "text": "कुनै पनि समयमा २ भन्दा बढी नलिनुहोस्। २४ घण्टामा ८ भन्दा बढी नलिनुहोस्",
                "lang": "ne"
              },
              {
                "text": "ਕਿਸੇ ਵੀ ਸਮੇਂ 2 ਤੋਂ ਵੱਧ ਨਾ ਲਓ। 24 ਘੰਟਿਆਂ ਵਿੱਚ 8 ਤੋਂ ਵੱਧ ਨਾ ਲਓ",
                "lang": "pa"
              },
              {
                "text": "Nigdy nie przyjmować więcej niż 2 sztuki na raz. Nigdy nie przyjmować więcej niż 8 sztuk na dobę.",
                "lang": "pl"
              },
              {
                "text": "Não tome mais de 2 de uma só vez. Não tome mais de 8 em 24 horas",
                "lang": "pt"
              },
              {
                "text": "Nu luați mai mult de două o dată. Nu luați mai mult de opt în 24 de ore",
                "lang": "ro"
              },
              {
                "text": "Nepoužiť viac ako 2 tabletky naraz. Nepoužiť viac ako 8 počas 24 hodín",
                "lang": "sk"
              },
              {
                "text": "Ha qaadan wax ka badan 2 halki wakhti ee kasta. Ha qaadan wax ka badan 8 24 saacadood gudohood",
                "lang": "so"
              },
              {
                "text": "ஒரே நேரத்தில் 2க்கு மேல் உட்கொள்ள வேண்டாம். 24 மணி நேரத்தில் 8க்கு மேல் உட்கொள்ள வேண்டாம்.",
                "lang": "ta"
              },
              {
                "text": "کسی ایک وقت میں 2 سے زیادہ نہ لیں۔ 24 گھنٹوں میں 8 سے زیادہ نہ لیں۔",
                "lang": "ur"
              }
            ],
            "_links": {
              "self": {
                "href": "/labels/29"
              }
            }
          },
          {
            "id": 30,
            "recommendation": [
              {
                "text": "Contains paracetamol. Do not take anything else containing paracetamol while taking this medicine. Talk to a doctor at once if you take too much of this medicine, even if you feel well",
                "lang": "en"
              },
              {
                "text": "Yn cynnwys paracetamol. Peidiwch â chymryd unrhyw beth arall sy'n cynnwys paracetamol tra'n cymryd y feddyginiaeth hon. Siaradwch gyda'ch meddyg ar unwaith os ydych yn cymryd gormod, hyd yn oed os ydych yn teimlo'n iawn",
                "lang": "cy"
              },
              {
                "text": "يحتوي هذا الدواء على الباراسيتامول. لذا، لا تتناول أي شيء آخر يحتوي على الباراسيتامول أثناء تناول هذا الدواء. استشر الطبيب على الفور إذا تناولت جرعة زائدة من هذا الدواء، حتى إذا كنت تشعر بأنك على ما يرام.",
                "lang": "ar"
              },
              {
                "text": "এতে প্যারাসিটামল আছে। এই ওষুধ চলাকালে প্যারাসিটামল যুক্ত অন্য কোনো কিছু খাবেন না। ওষুধটি অতিরিক্ত খেয়ে ফেললে দেরি না করে আপনার ডাক্তারকে অবহিত করুন, এমনকি আপনি সুস্থ বোধ করলেও",
                "lang": "bn"
              },
              {
                "text": "Obsahuje paracetamol. Při používání tohoto léku neužívejte žádné další léky obsahující paracetamol. Pokud užijete příliš mnoho tohoto léku, ihned kontaktujte vašeho lékaře, i když se cítíte dobře",
                "lang": "cs"
              },
              {
                "text": "Contiene paracetamol. No tomar nada más que contenga paracetamol mientras esté tomando este medicamento. Consultar inmediatamente a su médico si toma demasiada cantidad de este medicamento, incluso si se siente bien",
                "lang": "es"
              },
              {
                "text": "Contient du paracétamol. Ne rien prendre d'autre contenant du paracétamol pendant que vous prenez ce médicament. Consultez immédiatement à un médecin si vous prenez trop de ce médicament, même si vous vous sentez bien",
                "lang": "fr"
              },
              {
                "text": "આમાં પેરાસિટામોલ છે. આ દવા લેતી વખતે પેરાસિટામોલ ધરાવતી બીજી કોઈપણ વસ્તુ ન લો. જો તમે આ દવાને વધારે માત્રામાં લઈ લીધી હોય, તો તમને તબિયત ઠીક લાગે તેમ છતાં તરત જ તમારા ડૉક્ટર સાથે વાત કરો",
                "lang": "gu"
              },
              {
                "text": "इसमें पैरासिटामोल है। इस दवा को लेते समय पैरासिटामोल युक्त कोई और चीज़ ना लें। अगर आप इस दवा की अधिक मात्रा ले लेते हैं, तो तुरंत डॉक्टर से बात करें, भले ही आप ठीक महसूस कर रहे हों।  ",
                "lang": "hi"
              },
              {
                "text": "Contiene paracetamolo; non assumere nient'altro contenente paracetamolo durante l'assunzione di questo medicinale. Rivolgersi immediatamente a un medico se si assumono dosi eccessive di questo medicinale, anche se ci si sente bene",
                "lang": "it"
              },
              {
                "text": "प्यारासिटामोल समावेश छ। यो औषधि लिँदा प्यारासिटामोल भएको अरू केही नलिनुहोस्। यदि तपाईंले यो औषधि धेरै लिनुभयो भने, तपाईंलाई राम्रो महसुस भए पनि, तुरुन्तै डाक्टरसँग कुरा गर्नुहोस्",
                "lang": "ne"
              },
              {
                "text": "ਪੈਰਾਸੀਟਾਮੋਲ ਸ਼ਾਮਲ ਹੈ। ਇਸ ਦਵਾਈ ਨੂੰ ਲੈਂਦੇ ਸਮੇਂ ਪੈਰਾਸੀਟਾਮੋਲ ਵਾਲੀ ਕੋਈ ਹੋਰ ਚੀਜ਼ ਨਾ ਲਓ। ਜੇਕਰ ਤੁਸੀਂ ਇਸ ਦਵਾਈ ਦੀ ਬਹੁਤ ਜ਼ਿਆਦਾ ਮਾਤਰਾ ਲੈਂਦੇ ਹੋ, ਭਾਵੇਂ ਤੁਸੀਂ ਠੀਕ ਮਹਿਸੂਸ ਕਰਦੇ ਹੋ, ਤੁਰੰਤ ਕਿਸੇ ਡਾਕਟਰ ਨਾਲ ਗੱਲ ਕਰੋ",
                "lang": "pa"
              },
              {
                "text": "Zawiera paracetamol. Podczas przyjmowania tego leku nie wolno przyjmować jakichkolwiek innych preparatów zawierających paracetamol. W przypadku przyjęcia za dużej dawki tego leku, należy niezwłocznie skontaktować się z lekarzem, nawet jeśli pacjent czuje się dobrze.",
                "lang": "pl"
              },
              {
                "text": "Contém paracetamol. Não tome mais nada que contenha paracetamol enquanto estiver a tomar este medicamento. Consulte imediatamente um médico se tomar uma dose excessiva deste medicamento, mesmo que se sinta bem",
                "lang": "pt"
              },
              {
                "text": "Conține paracetamol. Nu luați nimic altceva care conține paracetamol în timp ce luați acest medicament. Discutați imediat cu un medic dacă luați prea mult din acest medicament, chiar dacă vă simțiți bine",
                "lang": "ro"
              },
              {
                "text": "Obsahuje paracetamol. Nepoužite nič iné obsahujúci paracetamol, kým beriete tento liek. Kontaktujte okamžite lekára, ak ste použili väčšie množstvo, ak keď sa cítite dobre",
                "lang": "sk"
              },
              {
                "text": "Daawada waxaa ku jira barasitamool. Ha qaadan wax daawo kale oo uu ku jiro barasitamool inta aad daawadan cunayso. La hadal dhakhtar isla markiiba haddii aad ka qaadato daawadan wax badan, xitaa haddii aad dareemeyso caafimaad",
                "lang": "so"
              },
              {
                "text": "பரசிட்டமோல் அடங்கியுள்ளது. இந்த மருந்தை உட்கொள்ளும்போது பரசிட்டமோல் அடங்கியுள்ள எதையும் உட்கொள்ள வேண்டாம். இந்த மருந்தை அதிகமாக உட்கொண்டால், நீங்கள் நன்றாக உணர்ந்தாலும் கூட, உடனடியாக ஒரு மருத்துவரை அணுகவும்..",
                "lang": "ta"
              },
              {
                "text": "پیراسیٹامول پر مشتمل ہے۔ یہ دوا لیتے وقت پیراسیٹامول پر مشتمل کوئی اور چیز نہ لیں۔ اگر آپ اس دوا کا بہت زیادہ استعمال کرتے ہیں، یہاں تک کہ اگر آپ ٹھیک محسوس کرتے ہیں تو ایک ہی وقت میں ڈاکٹر سے بات کریں۔",
                "lang": "ur"
              }
            ],
            "_links": {
              "self": {
                "href": "/labels/30"
              }
            }
          }
        ],
        "_links": {
          "self": {
            "href": "/labels"
          }
        }
      }
    },
    "LabelsWithRoot": {
      "example": {
        "items": [
          {
            "id": 29,
            "recommendation": [
              {
                "text": "Do not take more than 2 at any one time. Do not take more than 8 in 24 hours",
                "lang": "en"
              },
              {
                "text": "Peidiwch â chymryd mwy na 2 ar unrhyw un adeg. Peidiwch â chymryd mwy nag 8 mewn 24 awr",
                "lang": "cy"
              },
              {
                "text": "لا تتناول أكثر من حبتين في المرة الواحدة، ولا تتناول أكثر من 8 حبات في 24 ساعة",
                "lang": "ar"
              },
              {
                "text": "একসাথে 2টির বেশি খাবেন না। 24 ঘণ্টায় এক সাথে 8টির বেশি খাবেন না",
                "lang": "bn"
              },
              {
                "text": "Neužívejte více než 2 najednou. Neužívejte více než 8 během 24 hodin",
                "lang": "cs"
              },
              {
                "text": "No tomar más de 2 a la vez. No tomar más de 8 en 24 horas",
                "lang": "es"
              },
              {
                "text": "Ne pas en prendre plus de 2 à la fois. Ne pas en prendre plus de 8 en 24 heures",
                "lang": "fr"
              },
              {
                "text": "કોઈપણ એક સમયે 2 કરતાં વધુ ન લો. 24 કલાકમાં 8 કરતાં વધુ ન લો",
                "lang": "gu"
              },
              {
                "text": "एक बार में 2 से अधिक ना लें। 24 घंटे में 8 से अधिक ना लें।  ",
                "lang": "hi"
              },
              {
                "text": "Non assumere più di 2 alla volta. Non assumere più di 8 in 24 ore",
                "lang": "it"
              },
              {
                "text": "कुनै पनि समयमा २ भन्दा बढी नलिनुहोस्। २४ घण्टामा ८ भन्दा बढी नलिनुहोस्",
                "lang": "ne"
              },
              {
                "text": "ਕਿਸੇ ਵੀ ਸਮੇਂ 2 ਤੋਂ ਵੱਧ ਨਾ ਲਓ। 24 ਘੰਟਿਆਂ ਵਿੱਚ 8 ਤੋਂ ਵੱਧ ਨਾ ਲਓ",
                "lang": "pa"
              },
              {
                "text": "Nigdy nie przyjmować więcej niż 2 sztuki na raz. Nigdy nie przyjmować więcej niż 8 sztuk na dobę.",
                "lang": "pl"
              },
              {
                "text": "Não tome mais de 2 de uma só vez. Não tome mais de 8 em 24 horas",
                "lang": "pt"
              },
              {
                "text": "Nu luați mai mult de două o dată. Nu luați mai mult de opt în 24 de ore",
                "lang": "ro"
              },
              {
                "text": "Nepoužiť viac ako 2 tabletky naraz. Nepoužiť viac ako 8 počas 24 hodín",
                "lang": "sk"
              },
              {
                "text": "Ha qaadan wax ka badan 2 halki wakhti ee kasta. Ha qaadan wax ka badan 8 24 saacadood gudohood",
                "lang": "so"
              },
              {
                "text": "ஒரே நேரத்தில் 2க்கு மேல் உட்கொள்ள வேண்டாம். 24 மணி நேரத்தில் 8க்கு மேல் உட்கொள்ள வேண்டாம்.",
                "lang": "ta"
              },
              {
                "text": "کسی ایک وقت میں 2 سے زیادہ نہ لیں۔ 24 گھنٹوں میں 8 سے زیادہ نہ لیں۔",
                "lang": "ur"
              }
            ],
            "_links": {
              "self": {
                "href": "/labels/29"
              }
            }
          },
          {
            "id": 30,
            "recommendation": [
              {
                "text": "Contains paracetamol. Do not take anything else containing paracetamol while taking this medicine. Talk to a doctor at once if you take too much of this medicine, even if you feel well",
                "lang": "en"
              },
              {
                "text": "Yn cynnwys paracetamol. Peidiwch â chymryd unrhyw beth arall sy'n cynnwys paracetamol tra'n cymryd y feddyginiaeth hon. Siaradwch gyda'ch meddyg ar unwaith os ydych yn cymryd gormod, hyd yn oed os ydych yn teimlo'n iawn",
                "lang": "cy"
              },
              {
                "text": "يحتوي هذا الدواء على الباراسيتامول. لذا، لا تتناول أي شيء آخر يحتوي على الباراسيتامول أثناء تناول هذا الدواء. استشر الطبيب على الفور إذا تناولت جرعة زائدة من هذا الدواء، حتى إذا كنت تشعر بأنك على ما يرام.",
                "lang": "ar"
              },
              {
                "text": "এতে প্যারাসিটামল আছে। এই ওষুধ চলাকালে প্যারাসিটামল যুক্ত অন্য কোনো কিছু খাবেন না। ওষুধটি অতিরিক্ত খেয়ে ফেললে দেরি না করে আপনার ডাক্তারকে অবহিত করুন, এমনকি আপনি সুস্থ বোধ করলেও",
                "lang": "bn"
              },
              {
                "text": "Obsahuje paracetamol. Při používání tohoto léku neužívejte žádné další léky obsahující paracetamol. Pokud užijete příliš mnoho tohoto léku, ihned kontaktujte vašeho lékaře, i když se cítíte dobře",
                "lang": "cs"
              },
              {
                "text": "Contiene paracetamol. No tomar nada más que contenga paracetamol mientras esté tomando este medicamento. Consultar inmediatamente a su médico si toma demasiada cantidad de este medicamento, incluso si se siente bien",
                "lang": "es"
              },
              {
                "text": "Contient du paracétamol. Ne rien prendre d'autre contenant du paracétamol pendant que vous prenez ce médicament. Consultez immédiatement à un médecin si vous prenez trop de ce médicament, même si vous vous sentez bien",
                "lang": "fr"
              },
              {
                "text": "આમાં પેરાસિટામોલ છે. આ દવા લેતી વખતે પેરાસિટામોલ ધરાવતી બીજી કોઈપણ વસ્તુ ન લો. જો તમે આ દવાને વધારે માત્રામાં લઈ લીધી હોય, તો તમને તબિયત ઠીક લાગે તેમ છતાં તરત જ તમારા ડૉક્ટર સાથે વાત કરો",
                "lang": "gu"
              },
              {
                "text": "इसमें पैरासिटामोल है। इस दवा को लेते समय पैरासिटामोल युक्त कोई और चीज़ ना लें। अगर आप इस दवा की अधिक मात्रा ले लेते हैं, तो तुरंत डॉक्टर से बात करें, भले ही आप ठीक महसूस कर रहे हों।  ",
                "lang": "hi"
              },
              {
                "text": "Contiene paracetamolo; non assumere nient'altro contenente paracetamolo durante l'assunzione di questo medicinale. Rivolgersi immediatamente a un medico se si assumono dosi eccessive di questo medicinale, anche se ci si sente bene",
                "lang": "it"
              },
              {
                "text": "प्यारासिटामोल समावेश छ। यो औषधि लिँदा प्यारासिटामोल भएको अरू केही नलिनुहोस्। यदि तपाईंले यो औषधि धेरै लिनुभयो भने, तपाईंलाई राम्रो महसुस भए पनि, तुरुन्तै डाक्टरसँग कुरा गर्नुहोस्",
                "lang": "ne"
              },
              {
                "text": "ਪੈਰਾਸੀਟਾਮੋਲ ਸ਼ਾਮਲ ਹੈ। ਇਸ ਦਵਾਈ ਨੂੰ ਲੈਂਦੇ ਸਮੇਂ ਪੈਰਾਸੀਟਾਮੋਲ ਵਾਲੀ ਕੋਈ ਹੋਰ ਚੀਜ਼ ਨਾ ਲਓ। ਜੇਕਰ ਤੁਸੀਂ ਇਸ ਦਵਾਈ ਦੀ ਬਹੁਤ ਜ਼ਿਆਦਾ ਮਾਤਰਾ ਲੈਂਦੇ ਹੋ, ਭਾਵੇਂ ਤੁਸੀਂ ਠੀਕ ਮਹਿਸੂਸ ਕਰਦੇ ਹੋ, ਤੁਰੰਤ ਕਿਸੇ ਡਾਕਟਰ ਨਾਲ ਗੱਲ ਕਰੋ",
                "lang": "pa"
              },
              {
                "text": "Zawiera paracetamol. Podczas przyjmowania tego leku nie wolno przyjmować jakichkolwiek innych preparatów zawierających paracetamol. W przypadku przyjęcia za dużej dawki tego leku, należy niezwłocznie skontaktować się z lekarzem, nawet jeśli pacjent czuje się dobrze.",
                "lang": "pl"
              },
              {
                "text": "Contém paracetamol. Não tome mais nada que contenha paracetamol enquanto estiver a tomar este medicamento. Consulte imediatamente um médico se tomar uma dose excessiva deste medicamento, mesmo que se sinta bem",
                "lang": "pt"
              },
              {
                "text": "Conține paracetamol. Nu luați nimic altceva care conține paracetamol în timp ce luați acest medicament. Discutați imediat cu un medic dacă luați prea mult din acest medicament, chiar dacă vă simțiți bine",
                "lang": "ro"
              },
              {
                "text": "Obsahuje paracetamol. Nepoužite nič iné obsahujúci paracetamol, kým beriete tento liek. Kontaktujte okamžite lekára, ak ste použili väčšie množstvo, ak keď sa cítite dobre",
                "lang": "sk"
              },
              {
                "text": "Daawada waxaa ku jira barasitamool. Ha qaadan wax daawo kale oo uu ku jiro barasitamool inta aad daawadan cunayso. La hadal dhakhtar isla markiiba haddii aad ka qaadato daawadan wax badan, xitaa haddii aad dareemeyso caafimaad",
                "lang": "so"
              },
              {
                "text": "பரசிட்டமோல் அடங்கியுள்ளது. இந்த மருந்தை உட்கொள்ளும்போது பரசிட்டமோல் அடங்கியுள்ள எதையும் உட்கொள்ள வேண்டாம். இந்த மருந்தை அதிகமாக உட்கொண்டால், நீங்கள் நன்றாக உணர்ந்தாலும் கூட, உடனடியாக ஒரு மருத்துவரை அணுகவும்..",
                "lang": "ta"
              },
              {
                "text": "پیراسیٹامول پر مشتمل ہے۔ یہ دوا لیتے وقت پیراسیٹامول پر مشتمل کوئی اور چیز نہ لیں۔ اگر آپ اس دوا کا بہت زیادہ استعمال کرتے ہیں، یہاں تک کہ اگر آپ ٹھیک محسوس کرتے ہیں تو ایک ہی وقت میں ڈاکٹر سے بات کریں۔",
                "lang": "ur"
              }
            ],
            "_links": {
              "self": {
                "href": "/labels/30"
              }
            }
          }
        ],
        "_links": {
          "self": {
            "href": "/labels"
          }
        }
      },
      "properties": {
        "items": {
          "description": "all the labels and recommendations",
          "type": "array",
          "items": {
            "$ref": "#/definitions/Label"
          }
        },
        "_links": {
          "$ref": "#/definitions/SelfLink"
        },
        "version": {
          "$ref": "#/definitions/Version"
        }
      },
      "required": [
        "items",
        "_links",
        "version"
      ]
    },
    "LabelWithQualifier": {
      "properties": {
        "id": {
          "description": "reference id to bnf",
          "type": "integer",
          "format": "int64"
        },
        "recommendations": {
          "description": "any label text in one or more languages",
          "type": "array",
          "items": {
            "$ref": "#/definitions/Recommendation"
          }
        },
        "qualifier": {
          "description": "text qualifier on the recommendation",
          "type": "string"
        }
      },
      "required": [
        "id",
        "recommendations",
        "qualifier"
      ]
    },
    "Language": {
      "type": "string",
      "enum": [
        "en",
        "cy",
        "ar",
        "bn",
        "cs",
        "es",
        "fr",
        "gu",
        "hi",
        "it",
        "ne",
        "pa",
        "pl",
        "pt",
        "ro",
        "sk",
        "so",
        "ta",
        "ur"
      ]
    },
    "Link": {
      "properties": {
        "href": {
          "description": "The link URL",
          "type": "string"
        }
      },
      "required": [
        "href"
      ]
    },
    "MedicinalFormBase": {
      "properties": {
        "dmdId": {
          "description": "Medicinal form SNOMED CT Identifier",
          "type": "string"
        },
        "title": {
          "type": "string",
          "description": "Medicinal form type"
        }
      },
      "required": [
        "dmdId",
        "title"
      ]
    },
    "MedicinalFormWithLabels": {
      "properties": {
        "dmdId": {
          "description": "Medicinal form SNOMED CT Identifier",
          "type": "string"
        },
        "title": {
          "type": "string",
          "description": "Medicinal form type"
        },
        "labels": {
          "description": "Cautionary and qualifier labels",
          "type": "array",
          "items": {
            "$ref": "#/definitions/LabelWithQualifier"
          }
        }
      },
      "required": [
        "dmdId",
        "title",
        "labels"
      ]
    },
    "MedicinalFormWithPrices": {
      "properties": {
        "dmdId": {
          "description": "Medicinal form SNOMED CT Identifier",
          "type": "string"
        },
        "title": {
          "type": "string",
          "description": "Medicinal form type"
        },
        "virtualProducts": {
          "description": "Virtual products with this medicinal form",
          "type": "array",
          "items": {
            "$ref": "#/definitions/VirtualMedicinalProductWithPrices"
          }
        }
      },
      "required": [
        "dmdId",
        "title",
        "virtualProducts"
      ]
    },
    "MedicinalFormWithTitles": {
      "properties": {
        "dmdId": {
          "description": "Medicinal form SNOMED CT Identifier",
          "type": "string"
        },
        "title": {
          "type": "string",
          "description": "Medicinal form type"
        },
        "virtualProducts": {
          "description": "Virtual products with this medicinal form",
          "type": "array",
          "items": {
            "$ref": "#/definitions/VirtualMedicinalProductWithTitles"
          }
        }
      },
      "required": [
        "dmdId",
        "title",
        "virtualProducts"
      ]
    },
    "Paginate": {
      "properties": {
        "next": {
          "$ref": "#/definitions/Link"
        },
        "prev": {
          "$ref": "#/definitions/Link"
        }
      }
    },
    "ProductActiveIngredient": {
      "properties": {
        "ingredientSubstanceName": {
          "description": "Name of the active ingredient",
          "type": "string"
        },
        "basisSubstanceName": {
          "description": "Name of the basis substance",
          "type": "string"
        },
        "strengthBasis": {
          "description": "Basis of the strength",
          "type": "string"
        },
        "strengthNumerator": {
          "description": "The strength or the strength numerator where a denominator is present",
          "$ref": "#/definitions/ValueAndUnit"
        },
        "strengthDenominator": {
          "description": "The strength denominator if applicable",
          "$ref": "#/definitions/ValueAndUnit"
        },
        "displayText": {
          "description": "A human readable text representation of the ingredient and any associated strength information",
          "type": "string"
        }
      },
      "required": [
        "ingredientSubstanceName"
      ]
    },
    "PublicationEnum": {
      "type": "string",
      "enum": [
        "bnf",
        "bnfc"
      ]
    },
    "Recommendation": {
      "properties": {
        "text": {
          "description": "language locale text",
          "type": "string"
        },
        "lang": {
          "description": "language",
          "type": "string",
          "x-scala-type": "Language"
        }
      },
      "required": [
        "text",
        "lang"
      ]
    },
    "ResourceId": {
      "type": "string",
      "description": "The resource SID",
      "maxLength": 10,
      "example": "_970446495"
    },
    "SelfLink": {
      "properties": {
        "self": {
          "$ref": "#/definitions/Link"
        }
      },
      "required": [
        "self"
      ]
    },
    "SideEffect": {
      "properties": {
        "drugName": {
          "description": "Drug name",
          "type": "string"
        },
        "adrName": {
          "description": "Adverse Drug Reaction",
          "type": "string"
        },
        "frequency": {
          "description": "Frequency if applicable",
          "type": "string"
        },
        "route": {
          "description": "Clinical route",
          "type": "string"
        },
        "age": {
          "description": "Age if applicable",
          "type": "string"
        },
        "management": {
          "description": "Management text",
          "$ref": "#/definitions/SideEffectsManagement"
        },
        "severity": {
          "description": "Side-effect is severe",
          "type": "boolean"
        },
        "bodySystem": {
          "description": "Body Systems",
          "type": "string"
        },
        "drugGroups": {
          "description": "List of Drug Groups",
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "sid": {
          "description": "BNF id",
          "type": "string"
        },
        "synonyms": {
          "description": "List of Drug Synonyms",
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "required": [
        "drugName",
        "adrName",
        "frequency",
        "route",
        "age",
        "management",
        "severity",
        "drugGroups",
        "sid"
      ]
    },
    "SideEffects": {
      "properties": {
        "_links": {
          "$ref": "#/definitions/SelfLink"
        },
        "items": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/SideEffect"
          }
        }
      },
      "required": [
        "_links",
        "items"
      ]
    },
    "SideEffectsManagement": {
      "properties": {
        "title": {
          "description": "Advice title",
          "type": "string"
        },
        "text": {
          "description": "Advice text",
          "type": "string"
        },
        "relatedAdr": {
          "description": "Adverse Drug Reaction related",
          "type": "string"
        }
      }
    },
    "SideEffectsWithRoot": {
      "example": {
        "_links": {
          "self": {
            "href": "/v1.0/martindale/adr?drugNames=paracetamol"
          }
        },
        "items": [
          {
            "drugName": "paracetamol",
            "adrName": "Stevens-Johnson syndrome",
            "frequency": "unknown",
            "route": "oral",
            "age": "unspecified",
            "management": {
              "title": "Seek specialist advice",
              "text": "Discontinue immediately and seek specialist advice; potentially fatal.",
              "relatedAdr": "Severe Cutaneous Adverse Reactions (SCARs)"
            },
            "severity": true,
            "bodySystem": "Skin and subcutaneous tissue disorders",
            "drugGroups": [
              "Analgesics",
              "Analgesics, non-opioid"
            ],
            "sid": "_970446495",
            "synonyms": [
              "stevens johnson syndrome",
              "sjs",
              "stevens johnson syndrome (sjs)",
              "stevens-johnson syndrome (sjs)",
              "steven-johnson syndrome",
              "steven-johnson's syndrome",
              "steven-johnsons syndrome",
              "stevens-johnson-syndrome",
              "stevens–johnson syndrome"
            ]
          },
          {
            "drugName": "paracetamol",
            "adrName": "toxic epidermal necrolysis",
            "frequency": "unknown",
            "route": "oral",
            "age": "unspecified",
            "management": {
              "title": "Seek specialist advice",
              "text": "Discontinue immediately and seek specialist advice; potentially fatal.",
              "relatedAdr": "Severe Cutaneous Adverse Reactions (SCARs)"
            },
            "severity": true,
            "bodySystem": "Skin and subcutaneous tissue disorders",
            "drugGroups": [
              "Analgesics",
              "Analgesics, non-opioid"
            ],
            "sid": "_970446495",
            "synonyms": [
              "epidermal necrolysis",
              "Lyell's syndrome",
              "TEN",
              "Lyell syndrome",
              "lyell’s syndrome",
              "lyells syndrome",
              "lyell-syndrome",
              "lyell's syndrome (toxic epidermal necrolysis)",
              "lyell´s syndrome",
              "epidermal necrolysis (lyell's syndrome)",
              "necrolysis epidermal toxic (lyell type)",
              "toxic epidermal necrolysis (TEN)",
              "toxic epidermal necrolysis (lyell syndrome)",
              "toxic epidermal necrolysis (lyell's syndrome)",
              "toxic epidermal necrolysis (exanthematic necrolysis)",
              "acute toxic epidermal necrolysis",
              "toxic epidermyl necrolysis",
              "toxic epidermal necrolysis (ten) "
            ]
          }
        ]
      },
      "properties": {
        "_links": {
          "$ref": "#/definitions/SelfLink"
        },
        "items": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/SideEffect"
          }
        }
      },
      "required": [
        "_links",
        "items"
      ]
    },
    "ValueAndUnit": {
      "properties": {
        "value": {
          "type": "number",
          "format": "double"
        },
        "unit": {
          "type": "string"
        }
      },
      "required": [
        "value",
        "unit"
      ]
    },
    "Version": {
      "properties": {
        "name": {
          "description": "Name of the API data version that can be supplied to subsequent API calls",
          "type": "string"
        },
        "dmdVersionUsed": {
          "description": "Version of DM+D this API data version references",
          "type": "string"
        },
        "bnfContentCut": {
          "description": "The BNF content cut date used by this version",
          "type": "string",
          "format": "dateTime",
          "x-scala-type": "java.time.LocalDateTime"
        }
      },
      "required": [
        "name",
        "dmdVersionUsed",
        "bnfContentCut"
      ]
    },
    "VirtualMedicinalProductBase": {
      "properties": {
        "vmpId": {
          "description": "Virtual Medicinal Product Id",
          "type": "string"
        },
        "title": {
          "description": "Virtual Medicinal Product Name",
          "type": "string"
        },
        "productActiveIngredients": {
          "description": "List of active ingredients including strengths",
          "type": "array",
          "items": {
            "$ref": "#/definitions/ProductActiveIngredient"
          }
        }
      },
      "required": [
        "vmpId",
        "title",
        "productActiveIngredients"
      ]
    },
    "VirtualMedicinalProductWithPrices": {
      "properties": {
        "vmpId": {
          "description": "Virtual Medicinal Product Id",
          "type": "string"
        },
        "title": {
          "description": "Virtual Medicinal Product Name",
          "type": "string"
        },
        "productActiveIngredients": {
          "description": "List of active ingredients including strengths",
          "type": "array",
          "items": {
            "$ref": "#/definitions/ProductActiveIngredient"
          }
        },
        "packs": {
          "description": "Strength packs",
          "type": "array",
          "items": {
            "$ref": "#/definitions/VirtualPack"
          }
        }
      },
      "required": [
        "vmpId",
        "title",
        "productActiveIngredients",
        "packs"
      ]
    },
    "VirtualMedicinalProductWithTitles": {
      "properties": {
        "vmpId": {
          "description": "Virtual Medicinal Product Id",
          "type": "string"
        },
        "title": {
          "description": "Virtual Medicinal Product Name",
          "type": "string"
        },
        "productActiveIngredients": {
          "description": "List of active ingredients including strengths",
          "type": "array",
          "items": {
            "$ref": "#/definitions/ProductActiveIngredient"
          }
        },
        "packs": {
          "description": "Strength packs",
          "type": "array",
          "items": {
            "$ref": "#/definitions/VirtualPackTitle"
          }
        }
      },
      "required": [
        "vmpId",
        "title",
        "productActiveIngredients",
        "packs"
      ]
    },
    "VirtualPack": {
      "properties": {
        "vmppId": {
          "description": "Virtual Medicinal Product Pack Id",
          "type": "string"
        },
        "title": {
          "description": "Virtual Medicinal Product Pack Name",
          "type": "string"
        },
        "packSize": {
          "description": "Virtual Medicinal Product Pack Size",
          "$ref": "#/definitions/ValueAndUnit"
        },
        "bnfNonProprietaryPrice": {
          "description": "When available show the BNF non proprietary price for this Virtual Medicinal Product Pack in pence",
          "type": "string"
        },
        "drugTariffPrice": {
          "description": "NHS Tariff in pence",
          "type": "string"
        },
        "proprietaryPacks": {
          "description": "Proprietary actual packs for this Virtual Medicinal Product Pack",
          "type": "array",
          "items": {
            "$ref": "#/definitions/ActualPack"
          }
        },
        "nonProprietaryPacks": {
          "description": "Non proprietary actual packs for this Virtual Medicinal Product Pack",
          "type": "array",
          "items": {
            "$ref": "#/definitions/ActualPack"
          }
        }
      },
      "required": [
        "title",
        "packSize",
        "proprietaryPacks",
        "nonProprietaryPacks"
      ]
    },
    "VirtualPackTitle": {
      "properties": {
        "vmppId": {
          "description": "Virtual Medicinal Product Pack Id",
          "type": "string"
        },
        "title": {
          "description": "Virtual Medicinal Product Pack Name",
          "type": "string"
        },
        "packSize": {
          "description": "Virtual Medicinal Product Pack Size",
          "$ref": "#/definitions/ValueAndUnit"
        },
        "proprietaryPacks": {
          "description": "Proprietary actual packs for this Virtual Medicinal Product Pack",
          "type": "array",
          "items": {
            "$ref": "#/definitions/ActualPackTitle"
          }
        }
      },
      "required": [
        "title",
        "packSize",
        "proprietaryPacks"
      ]
    }
  }
}
