From 14167090b3608a669e0333ae35dff99129b34900 Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Wed, 14 Feb 2024 12:59:08 +0100 Subject: [PATCH] update eOperatorClaim schema --- schemas/e-operator-claim.json | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/schemas/e-operator-claim.json b/schemas/e-operator-claim.json index 59b2434..cc6e0c9 100644 --- a/schemas/e-operator-claim.json +++ b/schemas/e-operator-claim.json @@ -36,6 +36,14 @@ "description": "Legal name of the operator", "type": "string" }, + "role": { + "description": "Role, either operator, witness, auditor", + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, "accreditedBy": { "description": "Legal name of the accrediting entity", "type": "string" @@ -51,16 +59,13 @@ "accreditedFor": { "description": "Operation type: e.g. manufacture, repair, refurbishment, remanufacture, transport, dismantle, recycle, verification, audit", "type": "string" - }, - "role": { - "description": "Role, either operator, witness, auditor", - "type": "string" } }, "required": [ "id", "legalName", - "role" + "role", + "email" ] } }