openapi: "3.0.3" info: title: Digital Waste Tracking Receipt API version: "1.0" description: |

This API is for waste receivers, software developers and third party software users. It enables operators of permitted or licensed waste receiving sites to report details of each waste movement arriving at their site. This will be mandatory from October 2026. More information about Digital Waste Tracking is available here:

Methods

The API is based on REST principles and uses seven endpoints: POST, PUT and five GET methods that return data in JSON format. It uses standard HTTP error response codes.

Note- This API specification is currently in Public Beta stage. termsOfService: https://defra.github.io/waste-tracking-service/production/api-terms-of-service/ contact: name: Reciept of Waste API Support email: WasteTracking_Developers@defra.gov.uk servers: - url: https://waste-tracking.api.defra.gov.uk description: Production environment - url: https://waste-tracking.integration.api.defra.gov.uk description: External test environment paths: /movements/receive: post: description: | Endpoint used when waste is received and the receiver submits a waste movement. A waste tracking ID is returned in a 201 response when the movement is successfully stored. requestBody: $ref: "#/components/requestBodies/receiveMovementRequest" required: true responses: "201": description: Success- The waste movement has been stored. content: application/json: schema: type: object properties: wasteTrackingId: type: string description: Globally unique identifier of the movement. This ID should be stored and used for any subsequent updates of the movement. It is returned in the response body when a POST request is successful, i.e. return code 201. example: 25HRA0B2 validation: type: object properties: warnings: type: array items: $ref: "#/components/schemas/validationResult" "400": $ref: "#/components/responses/400" /movements/{wasteTrackingId}/receive: put: description: | Endpoint used to update a waste movement record that has already been submitted. It uses the waste tracking ID (wasteTrackingId) returned when the POST endpoint successfully submitted the original waste movement record. The waste tracking ID must be used in the URL path. parameters: - name: wasteTrackingId in: path required: true description: The globally unique id of the movement. example: 25HRA0B2 schema: type: string requestBody: $ref: "#/components/requestBodies/receiveMovementRequest" required: true responses: "200": description: The waste movement receipt has been updated. content: application/json: schema: type: object properties: validation: type: object properties: warnings: type: array items: $ref: "#/components/schemas/validationResult" "400": $ref: "#/components/responses/400" "404": description: Movement not found. The waste tracking ID used is not correct. /reference-data/ewc-codes: get: description: | Endpoint used to get a list of EWC codes. On success 200, it returns a code list including a boolean value for the waste type, i.e. Hazardous equals true/false. It returns a 401 on failure.

Example Request ```json curl --request GET \ --url https://waste-tracking.api.defra.gov.uk/reference-data/ewc-codes \ --header "authorization": Bearer eyJraWQiOiJQYnJiZXZvYUF5d1NQcG5KUWlsQXVCT1Q4aVdyNUFcL3RaQkZHaTk5TU5CTT0iLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiIybHRldX... ``` responses: "200": description: | A truncated list of EWC codes obtained using the GET ewc-codes method

```json [ { "code": "010101", "isHazardous": false, "entryTypeDesc": "Absolute non-hazardous", "chapter": "Wastes resulting from exploration, mining, quarrying, and physical and chemical treatment of minerals", "subChapter": "Wastes from mineral excavation", "description": "Wastes from mineral metalliferous excavation" }, { "code": "010102", "isHazardous": false, "entryTypeDesc": "Absolute non-hazardous", "chapter": "Wastes resulting from exploration, mining, quarrying, and physical and chemical treatment of minerals", "subChapter": "Wastes from mineral excavation", "description": "Wastes from mineral non-metalliferous excavation" }, ... cont ``` The response fields: "isHazardous", "entryTypeDescription", "chapter" and "subChapter" correspond directly to the hierarchical structure of the waste classification system for EWC codes.

isHazardous
This boolean field indicates whether the waste code is classified as hazardous waste (true) or non-hazardous waste (false). This classification is crucial for regulatory compliance and handling procedures.

entryTypeDesc
This describes the type of entry for the waste code. It indicates whether the entry is:
- Absolute hazardous (always hazardous, marked with *)
- Absolute non-hazardous (never hazardous)
- Dual code entry (hazardous or non-hazardous depending on composition).This classification is important for determining if additional assessment is needed.

chapter
Refers to the first two digits of the six-digit List of Waste (LoW) code. It defines the main category of waste, usually based on the industry or process generating the waste.

Example:

01 – Wastes from mining and physical/chemical treatment of minerals
10 – Wastes from thermal processes

subChapter
Corresponds to the third and fourth digits of the LoW code. It narrows down the category to a more specific process or material within the chapter.

Example:

10 02 – Wastes from the iron and steel industry

content: application/json: schema: type: array items: type: object properties: code: type: string description: | The EWC code.
example: 010101 isHazardous: type: boolean description: True if the EWC code is for hazardous waste, otherwise False. The full list of valid EWC codes is returned by the GET ewc-codes method. example: true entryTypeDesc: type: string description: The EWC code entry type description. example: Absolute non-hazardous chapter: type: string description: The EWC code chapter. example: Wastes resulting from exploration, mining, quarrying, and physical and chemical treatment of minerals subChapter: type: string description: The EWC code sub-chapter. example: Wastes from mineral excavation description: type: string description: The EWC code description. example: Wastes from mineral metalliferous excavation /reference-data/hazardous-property-codes: get: description: | Endpoint used to get a list of hazardous property codes. It returns a code list on 200 success or a 401 on failure.

Example Request ```json curl --request GET \--url https://waste-tracking.api.defra.gov.uk/reference-data/hazardous-property-codes \ --header "authorization": Bearer eyJraWQiOiJQYnJiZXZvYUF5d1NQcG5KUWlsQXVCT1Q4aVdyNUFcL3RaQkZHaTk5TU5CTT0iLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiIybHRldXNlaHN... ``` responses: "200": description: | A truncated list of hazardous property codes obtained using the GET hazardous-property-codes method

```json [ { "code": "HP_1", "shortDesc": "Explosive", "longDesc": "Waste that can cause dangerous chemical reactions, producing gas that can damage surroundings (e.g., pyrotechnic or self-reactive waste)." }, { "code": "HP_2", "shortDesc": "Oxidizing", "longDesc": "Waste that can provide oxygen, causing or contributing to the combustion of other materials." }, ... cont ``` The response fields: "shortDesc" and "longDesc"

shortDesc (Short Description)

- A concise label or summary of the hazardous property.
- Usually just a few words or a short phrase.
- Intended for quick identification in tables, lists, or UI elements.

Example: "Flammable Liquid" or "Acute Toxicity".

longDesc (Long Description)

- A more detailed explanation of the hazardous property.
- Provides context, definitions, or conditions under which the hazard applies.
- Often includes regulatory references or clarifications.

content: application/json: schema: type: array items: type: object properties: code: type: string description: The hazardous property code. The full list of valid hazardous property codes is returned by the GET hazardous-property-codes method. example: HP_1 shortDesc: type: string description: The hazardous property code short description. example: Explosive longDesc: type: string description: The hazardous property code long description. example: Waste that can cause dangerous chemical reactions, producing gas that can damage surroundings (e.g., pyrotechnic or self-reactive waste) /reference-data/disposal-or-recovery-codes: get: description: | Endpoint used to get a list of disposal or recovery codes.
Note: The field in the specification is case-sensitive, please use the case specified for the code.

Example Request ```json curl --request GET \--url https://waste-tracking.api.defra.gov.uk/reference-data/disposal-or-recovery-codes \ --header "authorization": Bearer eyJraWQiOiJQYnJiZXZvYUF5d1NQcG5KUWlsQXVCT1Q4aVdyNUFcL3RaQkZHaTk5TU5CTT0iLCJhbGciOiJSUzI1NiJ9... ``` responses: "200": description: | A truncated list of disposal or recovery codes obtained using the GET disposal-or-recovery Codes method

Success ```json [ { "code": "R1", "isNotRecoveryToFinalProduct": true, "description": "Use principally as a fuel or other means to generate energy" }, { "code": "R2", "isNotRecoveryToFinalProduct": false, "description": "Solvent reclamation/regeneration" }, ... cont ``` The field isNotRecoveryToFinalProduct is a boolean flag that indicates whether a specific recovery operation does not result in the manufacture of a new final product.

If the value is true, it means that the recovery process is focused on reclaiming materials or energy without producing a new marketable product. If false, it indicates that the recovery operation leads to the creation of a new final product that can be used or sold.

content: application/json: schema: type: array items: type: object properties: code: type: string description: | The disposal or recovery code (D1-D15 for disposal operations, R1-R13 for recovery operations). The full list of valid disposal or recovery codes is returned by the GET disposal-or-recovery-codesmethod. example: R1 isNotRecoveryToFinalProduct: type: boolean description: True if the disposal or recovery code is not considered recovery to a final product, otherwise False. example: true description: type: string description: The disposal or recovery code description. example: Use principally as a fuel or other means to generate energy /reference-data/container-types: get: description: | Endpoint used to get a list of container types. It returns a code list on 200 success, or a 401 on failure.
Note: The field returned by the method is case-sensitive, please use the case specified for the code.

Example Request ```json curl --request GET \--url https://waste-tracking.api.defra.gov.uk/reference-data/container-types \ --header "authorization": Bearer eyJraWQiOiJQYnJiZXZvYUF5d1NQcG5KUWlsQXVCT1Q4aVdyNUFcL3RaQkZHaTk5TU5CTT0iLCJhbGciOiJSUzI1NiJw... ``` responses: "200": description: | A truncated list of container type codes obtained using the GET container-types method

Success ```json [ { "code": "BAG", "description": "Bag / Sack (e.g. rubble bag, refuse sack)" }, { "code": "BAL", "description": "Bale" }, { "code": "BOX", "description": "Box / Carton / Crate" }, ... cont ``` content: application/json: schema: type: array items: type: object properties: code: type: string description: The container type. The full list of valid container type codes is returned by the GET container-types method example: WBI description: type: string description: The container type description. example: Wheelie Bin (any size) /reference-data/pop-names: get: description: | Endpoint used to get a list of POP (Persistent Organic Pollutant) name codes. It returns a code list on 200 success or a 401 on failure.

Example Request ```json curl --request GET \--url https://waste-tracking.api.defra.gov.uk/reference-data/pop-names \ --header "authorization": Bearer eyJraWQiOiJQYnJiZXZvYUF5d1NQcG5KUWlsQXVCT1Q4aVdyNUFcL3RaQkZHaTk5TU5CTT0iLCJhbGciOiJSUzI1NiJ9... ``` responses: "200": description: | A truncated list of POP names obtained using the GET pop-names method

Success

```json [ { "code": "END", "chemicalName": "Endosulfan" }, { "code": "HCBD", "chemicalName": "Hexachlorobutadiene" }, { "code": "PCNS", "chemicalName": "Polychlorinated naphthalenes" }, ... cont ``` content: application/json: schema: type: array items: type: object properties: code: type: string description: The POP name. The full list of valid POP names is returned by the GET pop-names method. example: END chemicalName: type: string description: The POP chemical name. example: Endosulfan components: requestBodies: receiveMovementRequest: description: Details of the waste movement to be created or updated. The mandatory parameters to be included in the API call are the apiCode, dateTimeReceived, carrier, wasteItems, receiver and receipt. required: true content: application/json: schema: type: object required: - apiCode - dateTimeReceived - carrier - wasteItems - receiver - receipt properties: apiCode: type: string format: uuid description: This is the unique sixteen byte identifier of the receiving organisation produced by the registration process found within the Waste Tracking Service. example: ba6eb330-4f7f-11eb-a2fb-67c34e9ac07cg dateTimeReceived: type: string format: date-time description: | This is the date and exact time waste was received at the site. This API uses the UTC ISO 8601 and BST standards for machine-readable dates and times.

Key Differences:

UTC is the global time standard and does not observe daylight saving time. BST is UTC+1, used in the UK during daylight saving time (typically from late March to late October). example: UTC - 2025-09-15T12:12:28Z, BST - 2025-09-15T13:12:28+01:00 hazardousWasteConsignmentCode: type: string description: Hazardous waste consignment code. If the EWC is HAZ, then this field is mandatory.

England & Wales:

Format- XXXXXX/YYYYY

Where XXXXXX can be a mixture of letters and/or numbers, i.e. alphanumeric.

The consignment note code must follow the format- XXXXXX/YYYYY.

The first XXXXXX part is made up of six alphanumeric characters and must be followed by a forward slash /

The YYYYY part is a five alphanumeric character unique identifier of the users' choice (no spaces or symbols).

Scotland

Format- SA, SB or SC followed by a 7-digit number (e.g. SB1234567). Also known as Special Waste Consignment Note

Northern Ireland and Eire:

Format- DA, DB or DC followed by a 7-digit number (e.g. DA5301234)

More information here

Business Rules:

example: CJ32LE/A0001 reasonForNoConsignmentCode: type: string enum: [ "Non-Haz Waste Transfer", "No documentation provided with Waste", "Household Waste Recycling Centre Receipt" ] description: If you have not provided a hazardous waste consignment code, then there are three reason codes you can choose to provide. See the table below.
Reason Reason Code
Non-Haz Waste Transfer NON_HAZ_WASTE_TRANSFER
No documentation provided with Waste NO_DOC_WITH_WASTE
Household Wast Recycling Centre Receipt HWRC_RECEIPT
Note: The field is case-sensitive, please use the case for the code specified in the table.

Business Rules:

example: NO_DOC_WITH_WASTE yourUniqueReference: type: string description: This could be a unique weighbridge ticket number, waste transfer note number etc. example: wTBrdgAA020 otherReferencesForMovement: type: array items: type: object required: - label - reference properties: label: type: string minLength: 1 description: The type/label of the reference (e.g., 'PO Number', 'Waste Ticket', 'Haulier Note') example: PO Number reference: type: string minLength: 1 description: The actual reference value example: PO-12345 description: Optional array of label-reference pairs for additional tracking information example: - label: PO Number reference: PO-12345 - label: Waste Ticket reference: WT-67890 - label: Haulier Note reference: HN-11111 specialHandlingRequirements: type: string maxLength: 5000 description: | Required when abnormal hazardous waste and some non-hazardous waste contains harmful chemical, biological or physical characteristics that require some special handling to prevent harm. example: The waste must be fully inspected by the waste handler according to the Hazardous waste consignment and or EWC codes provided. wasteItems: type: array minItems: 1 items: $ref: "#/components/schemas/wasteItem" carrier: $ref: "#/components/schemas/carrier" brokerOrDealer: $ref: "#/components/schemas/brokerOrDealer" receiver: $ref: "#/components/schemas/receiver" receipt: $ref: "#/components/schemas/receipt" schemas: wasteItem: type: object required: - ewcCodes - wasteDescription - physicalForm - typeOfContainers - numberOfContainers - weight - containsPops - containsHazardous properties: ewcCodes: type: array items: type: string maxItems: 5 description: | An EWC code is a six digit code listed in the European Waste Catalogue (EWC) and the List of Wastes Regulations 2005 for the UK. The EWC catalog is a list of waste types which categorise waste based on a combination of what they are and the process or activity that produces them.

Notes:
- users must already know their correct code before using the API
- the GET ewc-codes method returns a reference for all EWC codes
- there is no maximum number of waste items that can be entered per movement, but there is a maximum of five EWC codes that can be applied to each waste item, thus allowing for multiple EWC codes on some edge cases e.g. Clinical Waste

To find an EWC code for a particular waste item, refer to the official Waste Classification Technical Guidance WM3 document.

POPs can also be present in hazardous and non-hazardous waste. See wasteItem.containsPops and wasteItem.pops for more information.

Business Rules:

- Must be six digits (no spaces) and be in the official wasteItem.ewcCode EWC catalog EUR-Lex.
- From one to a maximum of five codes per movement can be provided.

example: - 200108 - 150109 wasteDescription: type: string description: A detailed description of a specific waste material including its physical characteristics, composition and any potential hazards associated with it. example: Basic mixed construction and demolition waste, this includes recyclable house bricks, gypsum plaster and slates. physicalForm: type: string enum: [Gas, Liquid, Solid, Powder, Sludge, Mixed] description: This is the form of the waste. This could be a Gas, Liquid, Solid, Powder, Sludge or Mixed.

Business Rule:

Must be “Gas”, “Liquid”, “Solid”, Powder”, “Sludge” or “Mixed”. Note: The field is case-sensitive, please use the case specified in the description. example: Sludge numberOfContainers: type: integer minimum: 0 nullable: false description: Number of containers for storing, transporting and disposing of waste materials.

Business Rule:

This must be a non-negative integer (0 or greater). example: 2 typeOfContainers: type: string nullable: false description: | Containers are receptacles used for storing, transporting and disposing of waste materials. They come in various sizes and types, ranging from small desk-side bins to large industrial skips. Enter the container code, e.g. DRU for Drum.

Notes:
- A list of all container types can be obtained using the GET container-types method.
- The field is case-sensitive, please use the case specified for the code returned by the GET method.

Business Rule:

Must be in typeOfContainers list. example: SKI weight: $ref: "#/components/schemas/weight" containsPops: type: boolean description: | Does the waste consignment contain POPs? This should be a boolean value, i.e. true or false. Persistent organic pollutants (POPs) are chemical substances that do not break down in the environment. They are a danger to human health and the environment. POPs can be present in hazardous and non-hazardous waste. example: true pops: type: object required: - sourceOfComponents properties: sourceOfComponents: type: string enum: [NOT_PROVIDED, PROVIDED_WITH_WASTE, GUIDANCE, OWN_TESTING] description: | Indicates the source of POP component details. - NOT_PROVIDED: Carrier did not provide component details - PROVIDED_WITH_WASTE: Components provided with the waste - GUIDANCE: Components determined from guidance - OWN_TESTING: Components determined from own testing

Note: The field is case-sensitive, please use the case specified in the list above.

Business Rules:

example: PROVIDED_WITH_WASTE components: type: array items: type: object required: - code properties: code: type: string description: | The code of the POP (Persistent Organic Pollutant) component. Notes:
- A list of POP names and codes can be obtained using the GET pop-names method.
- The field is case-sensitive, please use the case specified for the code returned by the GET method.

Business Rule:

Optional field. If provided, it must be a valid POP code from the reference list returned by the GET method. The code is validated against reference data to ensure accuracy. example: PFHXS concentration: type: number minimum: 0 exclusiveMinimum: true description: The concentration of the POP in mg per kg, e.g. 50 mg per kg of Chlordane.

Business Rule:

Optional field. If provided, must be a positive decimal number (greater than 0) example: 12.5 description: | The list of POP components.

Business Rules:

containsHazardous: type: boolean description: Does the waste consignment contain Hazardous Properties, true or false?. This is a mandatory indication. This is a boolean value, i.e. true (contains hazardous properties) or false (does not contain hazardous properties). example: true hazardous: type: object required: - sourceOfComponents properties: sourceOfComponents: type: string enum: [NOT_PROVIDED, PROVIDED_WITH_WASTE, GUIDANCE, OWN_TESTING] description: | Indicates the source of hazardous component details. - NOT_PROVIDED: Carrier did not provide component details - PROVIDED_WITH_WASTE: Components provided with the waste - GUIDANCE: Components determined from guidance - OWN_TESTING: Components determined from own testing

Business Rules:

example: PROVIDED_WITH_WASTE hazCodes: type: array description: | Hazardous property codes are a list of codes that identify the hazardous waste and the potential risks associated with waste materials, guiding their safe transportation and handling protocols. Common types could include codes, HP_1 - HP_15. The format of the code to be entered is HP_'number', e.g. HP_1 for Explosive, HP_2 for Oxidizing, etc.

The official hazardous code list is found here in Appendix C: Waste Classification Technical Guidance WM3 document.

Notes:

Business Rule:

If wasteItem.containsHazardous is true then wasteItem.hazardous.hazCodes must be a valid code. example: - HP_5 - HP_10 items: type: string components: type: array items: type: object required: - name properties: name: type: string description: Name of the hazardous component, e.g. Mercury.

Business Rule:

Optional field. If provided, must be a valid chemical or biological component name. example: lead concentration: type: number minimum: 0 exclusiveMinimum: true description: The concentration of the hazardous component in milligrams per kilo, e.g. 30mg per kg.

Business Rule:

Optional field. If provided, must be a positive numeric value (greater than 0). example: 25.5 disposalOrRecoveryCodes: type: array items: $ref: "#/components/schemas/disposalOrRecoveryCode" carrier: type: object required: - registrationNumber - organisationName - meansOfTransport properties: registrationNumber: type: string nullable: true description: |

A waste carrier registration number is a legal requirement for businesses that transport, buy, sell or dispose of waste. This license ensures that waste is handled and transported in a responsible and environmentally friendly manner.

Home Nations Codes:

General Format where 9 is a digit 0-9

Wales NRW:

CBDL9, CBDL99, CBDU999 (1+ digits)

i.e. CBDU999999 (Upper Tier) or CBDL999999 (Lower Tier), where "CBD" stands for "Carrier, Broker, Dealer"

England:

CBDL9, CBDL99, CBDU999 (1+ digits)

i.e. CBDU999999 (Upper Tier) or CBDL999999 (Lower Tier), where "CBD" stands for "Carrier, Broker, Dealer"

Scotland SEPA:

WCR/R/9999999, SCO/999999, SEA/999999, SNO/999999, SWE/999999, WCR/999999, PCT-X-999, PCT-X-9999, PCT-X-99999, PCT-X-999999 and PCT-X-9999999 (where X = a single capital letter and 9 = a single numeral of between 3 and 7 digits in length).

Typically starts with WCR followed by numbers and potentially letters according to the Scottish Environment Protection Agency (SEPA).

Current format – WCR/R/1234567

Previous formats – SCO/123456, SEA/123456, SNO/123456, SWE/123456, WCR/123456, PCT-E-083, PCT-N-0050000

Northern Ireland NI

ROC UT 9,ROC UT 99,ROC UT 999,ROC UT 9999,ROC UT 99999, ROC LT 9, ROC LT 99, ROC LT 999, ROC LT 9999, ROC LT 99999

Include a prefix like ROC followed by UT (Upper Tier) or LT (Lower Tier) and then numbers. Note the spaces are not mandatory.

For example: ROC UT 9999 ROCLT9999

General Format where 9 is a digit 0-9

example: CBDL6 reasonForNoRegistrationNumber: type: string description: | If you have not provided a registration number, then here you must provide an appropriate reason code from the list below:

Business Rules:

example: ON_SITE organisationName: type: string description: The business name of the carrier. example: Waste Carriers Lite Ltd address: $ref: "#/components/schemas/address" emailAddress: type: string format: email description: The email address of the carrier. example: mailbox@example.co.uk phoneNumber: type: string description: The UK or international phone number of the carrier. example: 020 4756 XXXX vehicleRegistration: type: string maxLength: 10 description: This is the carrier's vehicle registration number.

Business Rules:

example: RNT 493 meansOfTransport: type: string enum: [Road, Rail, Air, Sea, Inland Waterway, Piped, Other] description: | This describes how the waste is transported (road, rail, air, sea, piped, inland waterway, other) Note: The field is case-sensitive, please use the case specified in the business rule.

Business Rule:

Must be either Road, Rail, Air, Sea, “Inland Waterway”, Piped or Other. example: Rail brokerOrDealer: type: object required: - organisationName properties: organisationName: type: string description: The broker or dealer organisation name who arranged this transfer. example: Waste Disposal Ltd address: $ref: "#/components/schemas/address" emailAddress: type: string format: email description: The email address of the broker or dealer. example: mailbox@example.co.uk phoneNumber: type: string description: The phone number of the broker or dealer. example: 020 4756 XXXX registrationNumber: type: string description: |

A waste broker or dealer who buys or sells waste or arranges the buying, selling or disposal of waste must be registered. Upon registration, a registration number is given to the organisation.

Home Nations Codes:

General Format where 9 is a digit 0-9

Wales NRW:

CBDL999999, CBDU999999

i.e. CBDU999999 (Upper Tier) or CBDL999999 (Lower Tier), where "CBD" stands for "Carrier, Broker, Dealer"

England:

CBDL999999, CBDU999999

i.e. CBDU999999 (Upper Tier) or CBDL999999 (Lower Tier), where "CBD" stands for "Carrier, Broker, Dealer"

Scotland SEPA:

WCR/R/9999999, SCO/999999, SEA/999999, SNO/999999, SWE/999999, WCR/999999 and PCT-X-999, PCT-X-9999, PCT-X-99999, PCT-X-999999 and PCT-X-9999999 (where X = a single capital letter and 9 = a single numeral of between 3 and 7 digits in length).

Typically starts with WCR followed by numbers and potentially letters according to the Scottish Environment Protection Agency (SEPA).

Current format – WCR/R/1234567

Previous formats – SCO/123456, SEA/123456, SNO/123456, SWE/123456, WCR/123456, PCT-E-083, PCT-N-0050000

Northern Ireland (NI)

ROC UT 9,ROC UT 99,ROC UT 999, ROC UT 9999, ROC UT 99999, ROC LT 9, ROC LT 99, ROC LT 999, ROC LT 9999, ROC LT 99999

Include a prefix like ROC followed by UT (Upper Tier) or LT (Lower Tier) and then numbers. Note that spaces are not mandatory.

ROC UT 9999 ROCLT9999

Note: where 9 is a digit 0-9

example: CBDL6 receiver: type: object required: - siteName - authorisationNumber properties: siteName: type: string description: The name of the site receiving the waste. emailAddress: type: string description: The email address of the organisation receiving the waste. example: mailbox@example.co.uk phoneNumber: type: string description: The UK or Irish phone number of the organisation receiving the waste. example: 020 4756 XXXX authorisationNumber: type: string description: | This is the site's authorisation (permit) number that allows it to accept waste for intended recovery and disposal operation. Only one authorisation number is required per site.

Home Nations Codes:

(where 9 is a digit 0-9, X is a letter A-Z)

England:

Scotland (SEPA):

Wales (NRW):

Northern Ireland (NRI):

Business Rules:

example: EPR/DD2522BF regulatoryPositionStatements: type: array items: type: integer minimum: 1 description: | An array of regulatory position statement (RPS) numbers. A regulatory position statement is issued when the Regulator (EA, SEPA, NIEA, NRW), doesn't require you to have a permit to carry out certain activities that they regulate. The statement will explain which activities you do not require a permit for. Each must be a positive integer.

Business Rule:

Must be positive integers (greater than 0). example: - 343 - 456 - 789 receipt: type: object required: - address properties: address: $ref: "#/components/schemas/receiptAddress" disposalOrRecoveryCode: type: object required: - code - weight properties: code: type: string description: | Disposal and Recovery Codes play a crucial role in categorising the methods by which waste is managed, whether through recovery or disposal processes. These codes (Recovery (R) and Disposal (D)) serve as a standardised system to ensure proper handling and treatment of waste materials. Specifically, they aid in classifying whether waste is to be recovered for further use or disposed of in a safe and environmentally responsible manner.

Notes:

Business Rule:

If disposalOrRecoveryCode.code entered, then it should be in the disposalOrRecoveryCode.code listed in EUR-Lex. example: | "R1" weight: $ref: "#/components/schemas/weight" weight: type: object required: - metric - amount - isEstimate properties: metric: type: string enum: [Grams, Kilograms, Tonnes] description: Unit of measurement in which the waste is being accepted.

Business Rule:

Must be “Grams”, “Kilograms” or “Tonnes” example: Tonnes amount: type: number minimum: 0 exclusiveMinimum: true description: Total weight of the waste in a unit specified - Grams - Kilograms - Tonnes

Business Rule:

Must be a positive number (greater than 0). Note-

Weight in terms of the Waste Item is the total weight of the waste being received.

Weight in terms of the DisposalRecoveryCode is the total weight of the waste being disposed of or recovered for final treatment.

example: 150 isEstimate: type: boolean description: Specifies whether the weight of waste is estimated. This a boolean value, i.e. true for estimated or false for not estimated. example: true validationResult: type: object properties: key: type: string example: wasteItems[0].disposalOrRecoveryCodes errorType: type: string description: | can be one of the following type: - NotProvided: A required field was not provided - NotAllowed: The value provided is not allowed - InvalidType: The value provided is of the wrong type - InvalidFormat: The value provided is not in the correct format - InvalidValue: The value provided is not valid based on the business rules - OutOfRange: The value provided is outside the allowed range - BusinessRuleViolation: The value provided violates a specific business rule. example: NotProvided message: type: string example: Success/Failure description: Waste description is/is not successfully stored. address: type: object required: - postcode properties: fullAddress: type: string description: The business location address of the carrier or broker/dealer. example: 26a Oil Drum Lane, London, UK postcode: type: string description: A valid postcode must be included.

Note-

Carriers, Brokers/Dealers accept UK and Irish post codes. example: W12 7ZL receiptAddress: type: object required: - fullAddress - postcode properties: fullAddress: type: string description: This is the address the waste is received at. example: 26a Oil Drum Lane, London, UK postcode: type: string description: A valid postcode must be included.

Note-

Carriers, Brokers/Dealers accept UK and Irish post codes. Receivers accept only UK post codes.

Business Rule:

Must be in specified receiptAddress.postcode format. example: W12 7ZL responses: "400": description: Input was not in the correct format. content: application/json: schema: type: object example: { "validation": { "errors": [ { "key": "waste.0.ewcCodes", "errorType": "NotProvided", "message": "\"waste[0].ewcCodes\" is required" }, { "key": "waste.0.wasteDescription", "errorType": "NotProvided", "message": "\"waste[0].wasteDescription\" is required" }, { "key": "receiver.authorisationNumber", "errorType": "Required", "message": "Site authorisation number is required" }, { "key": "receiver.authorisationNumber", "errorType": "InvalidFormat", "message": "Site authorisation number must be in a valid UK format" }, ] } } properties: validation: type: object properties: errors: type: array items: $ref: "#/components/schemas/validationResult"