{
 "cells": [
  {
   "cell_type": "markdown",
   "id": "8d65ff6d",
   "metadata": {},
   "source": [
    "Load client_id and client_secret from the environment variables"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "id": "fc1b4ade",
   "metadata": {},
   "outputs": [],
   "source": [
    "from dotenv import load_dotenv\n",
    "import os\n",
    "\n",
    "load_dotenv()\n",
    "\n",
    "client_id = os.getenv(\"CLIENT_ID\")\n",
    "client_secret = os.getenv(\"CLIENT_SECRET\")"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "f0b5bafa",
   "metadata": {},
   "source": [
    "Authentication routine"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "id": "53b5da36",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Access Token: eyJhbGciOiJSUzI1NiIsInR5cCIgOiAiSldUIiwia2lkIiA6ICI4aDNjSGQwZG8wYkdnSDE2MWhLVk1rcUhvTzlJWExoQktKOFRNUVBpcDJNIn0.eyJleHAiOjE3NTA0MDUzMTAsImlhdCI6MTc1MDQwMTcxMCwianRpIjoiMTI1MjE3MmQtNzk1Yi00NTZjLTk0NzgtNWQ4NTA1ZTA4MzIyIiwiaXNzIjoiaHR0cHM6Ly9hdXRoLnNtYXJ0LmllYy5jaC9yZWFsbXMvaWVjIiwiYXVkIjoiYWNjb3VudCIsInN1YiI6ImMxODA2N2EyLTU5NTUtNDVjMC04YzVhLWVjMjk1NDdhNzY1YyIsInR5cCI6IkJlYXJlciIsImF6cCI6InNtYXJ0LWVuYWJsZWQtYXBpIiwiYWNyIjoiMSIsImFsbG93ZWQtb3JpZ2lucyI6WyIvKiJdLCJyZWFsbV9hY2Nlc3MiOnsicm9sZXMiOlsiZGVmYXVsdC1yb2xlcy1pZWMiLCJvZmZsaW5lX2FjY2VzcyIsImFsbG93X2FsbF9zdGFuZGFyZHMiLCJ1bWFfYXV0aG9yaXphdGlvbiIsImFsbG93X2xvZ2luIl19LCJyZXNvdXJjZV9hY2Nlc3MiOnsiYWNjb3VudCI6eyJyb2xlcyI6WyJtYW5hZ2UtYWNjb3VudCIsIm1hbmFnZS1hY2NvdW50LWxpbmtzIiwidmlldy1wcm9maWxlIl19fSwic2NvcGUiOiJvcGVuaWQgZW1haWwgcHJvZmlsZSIsInNhbGVzX29yZ19pZCI6Ijk3Y2UxN2E2LWZkYmEtNGYwYi1iOTA4LTMwNTQ5NTIwNTUxZiIsImVtYWlsX3ZlcmlmaWVkIjpmYWxzZSwiY2xpZW50SG9zdCI6IjUxLjE1NC40Mi4yMzAiLCJyb2xlcyI6WyJkZWZhdWx0LXJvbGVzLWllYyIsIm9mZmxpbmVfYWNjZXNzIiwiYWxsb3dfYWxsX3N0YW5kYXJkcyIsInVtYV9hdXRob3JpemF0aW9uIiwiYWxsb3dfbG9naW4iXSwibmFtZSI6ImFrYXphcnlhbkBhbnNpLm9yZyIsInBhY2thZ2VfaWQiOiI5NmZjNjY1OC01N2ViLTQxNmUtOTA1Zi0wZjkzZWMxNjJjMmUiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiJzZXJ2aWNlLWFjY291bnQtc21hcnQtZW5hYmxlZC1hcGkiLCJmYW1pbHlfbmFtZSI6ImFrYXphcnlhbkBhbnNpLm9yZyIsImNsaWVudEFkZHJlc3MiOiI1MS4xNTQuNDIuMjMwIiwiY2xpZW50X2lkIjoic21hcnQtZW5hYmxlZC1hcGkiLCJjbGllbnRfb3JnX2lkIjoiZDllMWEzMDYtMTc2My00OWUyLWJhNTgtOWU5NjIzNTUwMmM5In0.XVbkFbPzK8581p44O9aTU03aSSXLVIx3BybuqCkLNbLj47JwJsn06k3q8XvBlBeWFv_Os05vpFXGJ-5ACdi6Cay0gWlMHgPEC6Acg-4RexwxD_GlAYTp7iRuS57NBle1UG1IVeXj4yWmSTUN-cWOBdz3_clwNyLHmUPKCuSKwfaLDLX7TkCHJGfiKWYd62HFqElc2GY_EV0wf1qkV11Om4kMTaVQEGsplaNOQ-n2r777aRwsusTSkx9GgpE7xnJEJSpYZ-LBRnAjNgwAZ11BLbfTo1XU4pEftOdWCuNcJksYHOgzTafgmCBhWLsPSEVKPtAQzx79-dVXy3WXecVBuA\n"
     ]
    }
   ],
   "source": [
    "import requests\n",
    "\n",
    "url = \"https://auth.smart.iec.ch/realms/iec/protocol/openid-connect/token\"\n",
    "data = {\n",
    "    \"client_id\": client_id,\n",
    "    \"client_secret\": client_secret,\n",
    "    \"grant_type\": \"client_credentials\",\n",
    "    \"scope\": \"openid\"\n",
    "}\n",
    "\n",
    "response = requests.post(url, data=data)\n",
    "response.raise_for_status()\n",
    "access_token = response.json().get(\"access_token\")\n",
    "\n",
    "print(\"Access Token:\", access_token)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "6fbd46bd",
   "metadata": {},
   "source": [
    "Get the list of clauses for the standard"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "id": "315ea28c",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "{'@context': {'comprisesClause': {'@type': '@id', '@id': 'corext:comprisesClause'}, 'dcterms': 'http://purl.org/dc/terms/', 'withinClause': {'@type': '@id', '@id': 'core:withinClause'}, 'hasTest': {'@type': '@id', '@id': 'ca:hasTest'}, 'ca': 'http://purl.org/smart-standards/ca#', 'core': 'http://purl.org/smart-standards/core#', 'rdfs': 'http://www.w3.org/2000/01/rdf-schema#', 'trans': 'http://iec.ch/smart/transformation#', 'hydra': 'http://www.w3.org/ns/hydra/core#', 'corext': 'http://purl.org/smart-standards/core/extension#', 'belongsToStandard': {'@type': '@id', '@id': 'core:belongsToStandard'}, 'hasMeasurement': {'@type': '@id', '@id': 'ca:hasMeasurement'}}, 'hydra:totalItems': 1002, '@graph': [{'@id': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', '@type': 'corext:Foreword', 'trans:sortKey': 'IEC60601120050000000003', 'rdfs:label': '', 'dcterms:title': 'FOREWORD', 'trans:checksum': 'ec80ecb8f195c272229ab4845518e601071b3cc22999fe396acd8dfb00664322', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/935f2803-6574-4a73-8152-7b296280a887', '@type': 'corext:Introduction', 'trans:sortKey': 'IEC60601120050000000124', 'rdfs:label': '', 'dcterms:title': 'INTRODUCTION', 'trans:checksum': '5face08b64615ea511317ff9859a7f8eefbc15409a77743bf28878466bcf297e', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d2a230f4-e21a-486b-9607-954b442b1f89', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000182', 'rdfs:label': '1', 'dcterms:title': 'Scope, object and related standards', 'comprisesClause': ['http://smart.iec.ch/clause/fbedc826-6d4a-4ad9-9112-fd8c4a403ea8', 'http://smart.iec.ch/clause/f238cbf5-eadb-410d-aca5-0698f362a23b', 'http://smart.iec.ch/clause/26596fd4-1b5c-4a4a-b7aa-42a7e1a2098e', 'http://smart.iec.ch/clause/69b23fa2-f09f-4828-bce9-37d1cdc28370'], 'trans:checksum': '6b02c02dc61ddf2f468a841351757a966ae506a07213196de4399362dab3e01d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/69b23fa2-f09f-4828-bce9-37d1cdc28370', '@type': 'corext:Scope', 'trans:sortKey': 'IEC60601120050000000183', 'rdfs:label': '1.1', 'dcterms:title': 'Scope', 'trans:checksum': '3a8c6abba1ef9a5e432b092f4c74f76bceff2dea858cf4f3c42915d2ac0289b8', 'withinClause': 'http://smart.iec.ch/clause/d2a230f4-e21a-486b-9607-954b442b1f89', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/f238cbf5-eadb-410d-aca5-0698f362a23b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000197', 'rdfs:label': '1.2', 'dcterms:title': 'Object', 'trans:checksum': 'dc53a134094048278eb80d448f3bc823f6d77f65490536d819ff6bd2897f2449', 'withinClause': 'http://smart.iec.ch/clause/d2a230f4-e21a-486b-9607-954b442b1f89', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/fbedc826-6d4a-4ad9-9112-fd8c4a403ea8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000200', 'rdfs:label': '1.3', 'dcterms:title': 'Collateral standards', 'trans:checksum': '9ec7c8be80e989942ef2a761de1ce68a9787d7bd4de5beea20d1dd5275b919d0', 'withinClause': 'http://smart.iec.ch/clause/d2a230f4-e21a-486b-9607-954b442b1f89', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/26596fd4-1b5c-4a4a-b7aa-42a7e1a2098e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000220', 'rdfs:label': '1.4', 'dcterms:title': 'Particular standards', 'trans:checksum': '2d343cd64e568a91cc5cb019a98cb3bbec29004fb9642479551488c63164527f', 'withinClause': 'http://smart.iec.ch/clause/d2a230f4-e21a-486b-9607-954b442b1f89', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/26833310-a814-4ba1-af8b-a020b07e0a9b', '@type': 'corext:NormativeReferences', 'trans:sortKey': 'IEC60601120050000000227', 'rdfs:label': '2', 'dcterms:title': 'Normative references', 'trans:checksum': '8b008f4363af87adad2e5730b765799b7eb8445a65b3a4120e887cca073de7ec', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000317', 'rdfs:label': '3', 'dcterms:title': 'Terminology and definitions', 'comprisesClause': ['http://smart.iec.ch/clause/812e2d1b-64e3-4cfb-829f-e124de1841eb', 'http://smart.iec.ch/clause/acbc51ad-2dae-41e2-8f59-bc1a6672d89b', 'http://smart.iec.ch/clause/9f5ec045-aacf-443a-92be-a1eba4e34583', 'http://smart.iec.ch/clause/d7f57d97-5914-4c1d-a447-0f3643d12338', 'http://smart.iec.ch/clause/cea19074-632c-4d05-8023-c3f2231d0a4b', 'http://smart.iec.ch/clause/ade4bdf4-13a8-438c-95e5-cf6408977763', 'http://smart.iec.ch/clause/9e808753-7917-4097-9da2-95a306b00c3e', 'http://smart.iec.ch/clause/9d5d33c8-878d-4262-b66d-fa74c3be05c1', 'http://smart.iec.ch/clause/e857c05d-f9d4-483a-8379-5613a0cee963', 'http://smart.iec.ch/clause/2e466a7d-9a4f-4a94-99cc-7d59dd191c88', 'http://smart.iec.ch/clause/b091813b-efa3-499b-b559-876e1a8ed41e', 'http://smart.iec.ch/clause/7ffdcae1-3003-43f5-be90-2b93fbf2067a', 'http://smart.iec.ch/clause/948f630e-9f05-4a45-a597-41ce335f1abe', 'http://smart.iec.ch/clause/dd667e15-8d5b-4199-93c1-ff24afb250c5', 'http://smart.iec.ch/clause/b9b13604-0c00-4422-b53f-a55a6523dac5', 'http://smart.iec.ch/clause/11e14b0b-c875-4f8d-944a-29329a280a67', 'http://smart.iec.ch/clause/ca3bb184-56e9-418a-a0cd-4442d17cd186', 'http://smart.iec.ch/clause/f6eefa95-abb5-44f8-a8bf-d6ccac496263', 'http://smart.iec.ch/clause/88f8f311-9819-45cc-8ef9-6ad373a4ba9b', 'http://smart.iec.ch/clause/13eab8eb-91f2-4e2b-a850-d4de9013f32c', 'http://smart.iec.ch/clause/01c2751a-22d5-4a64-8107-f84b16c9c1d4', 'http://smart.iec.ch/clause/d29106ec-183d-43af-94b1-3cde0c9de725', 'http://smart.iec.ch/clause/20877946-8e86-4467-903d-4f37dd6973a4', 'http://smart.iec.ch/clause/463b7c9f-4b2f-4c29-8a23-0bf3db7e3645', 'http://smart.iec.ch/clause/9f185d49-2578-496c-a97d-4fb3373b03d4', 'http://smart.iec.ch/clause/2038cf77-7b70-48d6-a167-7459e2872c5a', 'http://smart.iec.ch/clause/d67b8753-4ce9-4697-91f2-68652716c17b', 'http://smart.iec.ch/clause/099428a8-7164-45a1-832a-94dae418c749', 'http://smart.iec.ch/clause/0f86099f-a0eb-4398-8983-9a1c584e5db4', 'http://smart.iec.ch/clause/44370fc5-d323-4b79-b8cf-5b9a585f441c', 'http://smart.iec.ch/clause/3fafa4c8-1f04-4497-8491-5cb449a9060d', 'http://smart.iec.ch/clause/2f4b0082-b697-49fb-8687-8097ade385a3', 'http://smart.iec.ch/clause/83f64821-1782-448f-a9b6-de0f482268ac', 'http://smart.iec.ch/clause/d26ccc0d-ca60-401d-a410-b1658cc4947d', 'http://smart.iec.ch/clause/54405234-3232-4fbf-aef3-c1bf542acd95', 'http://smart.iec.ch/clause/c53cf88a-e9df-4d6a-9ce4-07870f7a2faa', 'http://smart.iec.ch/clause/26f5460d-8fde-4b63-9d2d-0242f59eedfb', 'http://smart.iec.ch/clause/ee34bdf3-0204-4005-8195-2b96dcc26014', 'http://smart.iec.ch/clause/67f31ffc-01b2-409e-88f5-2b422ea53256', 'http://smart.iec.ch/clause/38e928d4-9190-4299-aa73-b0f5b1afaa25', 'http://smart.iec.ch/clause/cd54dc5a-f421-454e-9c1b-1f818d5f2839', 'http://smart.iec.ch/clause/3301a109-9a23-4495-834a-84fecb622789', 'http://smart.iec.ch/clause/d305c8b8-169f-4769-8312-343081d9e7a2', 'http://smart.iec.ch/clause/9181af79-7c55-482f-8ff3-127ecdec439d', 'http://smart.iec.ch/clause/cc6e37e9-e66e-444b-a9ab-36e64a69f83f', 'http://smart.iec.ch/clause/21dccf89-dc94-4643-8312-8707f60fa19d', 'http://smart.iec.ch/clause/0930c9be-10e4-4b36-90f3-0aa3bb6675f6', 'http://smart.iec.ch/clause/deed576b-7649-4254-affe-87fd52546065', 'http://smart.iec.ch/clause/e09e2522-590d-421e-83d9-d83719d9dad6', 'http://smart.iec.ch/clause/93c0e927-009c-4800-9daf-41eb2e250f54', 'http://smart.iec.ch/clause/34b55084-cf21-4153-b2fa-3f1dbfc5c083', 'http://smart.iec.ch/clause/c08ae96b-fa0a-4232-85b9-48f7055d96eb', 'http://smart.iec.ch/clause/802f583e-89bf-49be-a8da-87bb21c8e14b', 'http://smart.iec.ch/clause/e75e46d6-789f-4394-95cd-b76244c2e81b', 'http://smart.iec.ch/clause/06364515-2368-46da-8c26-c811de22062f', 'http://smart.iec.ch/clause/511daa28-fefe-4270-93fd-e96f92f33ef4', 'http://smart.iec.ch/clause/c2508873-eb9e-4a40-a0c9-568bdd7b6d25', 'http://smart.iec.ch/clause/edb44f42-cf55-45e4-99cd-d52c3fde9c83', 'http://smart.iec.ch/clause/1d9a3e59-8c89-4f50-8871-0e21244a792b', 'http://smart.iec.ch/clause/2ca93e7b-5233-4874-b784-641bf7e8462a', 'http://smart.iec.ch/clause/29918ea3-e9c6-47a7-8f1e-30f0ca39ba48', 'http://smart.iec.ch/clause/addcdc32-b838-4fdc-a2eb-03c1dd6bbe4d', 'http://smart.iec.ch/clause/037e54cd-85a9-44cd-9618-28fa87bc9979', 'http://smart.iec.ch/clause/2d1e8bfe-3609-4148-b7f7-c07f3f2ff254', 'http://smart.iec.ch/clause/4ac8617a-1ac6-454a-9356-b6128e657cd3', 'http://smart.iec.ch/clause/b8984219-a5a5-45f8-a15f-94941e31c46e', 'http://smart.iec.ch/clause/9dcbb0e8-a616-41fa-8ee5-11f59cfd6ef5', 'http://smart.iec.ch/clause/e5166aa1-3b63-4fd3-b999-0b8f553d8320', 'http://smart.iec.ch/clause/89908f3a-f2e0-494a-b134-f84d03387a4d', 'http://smart.iec.ch/clause/8b27299f-06cb-41c4-a910-24f29ce7ee7a', 'http://smart.iec.ch/clause/075aba20-0f73-4d64-99ed-e24aac3070d1', 'http://smart.iec.ch/clause/ac05bba9-916b-47ec-aaca-d49a71a36b0c', 'http://smart.iec.ch/clause/8934326c-046e-451f-bde7-3362bf5d3fb3', 'http://smart.iec.ch/clause/9625f066-fed8-423e-867d-36e0addc3c1f', 'http://smart.iec.ch/clause/6d7815e3-60ec-4527-9e00-9f902b188ff1', 'http://smart.iec.ch/clause/e12a7c7b-39b4-42ae-aa02-0657c2b33ab9', 'http://smart.iec.ch/clause/dd852f55-27e9-4e32-a4dd-afdf419b043d', 'http://smart.iec.ch/clause/c9a1fe55-bd05-480d-ade5-d1ac6ae530c7', 'http://smart.iec.ch/clause/c96d6728-ec04-451d-8898-133fb0d50fa1', 'http://smart.iec.ch/clause/e90c710e-7620-47af-b31a-784e1697a7e7', 'http://smart.iec.ch/clause/acaad5da-ba75-4025-849e-5bbe469b28b6', 'http://smart.iec.ch/clause/9fbaa6d4-0542-4bed-8bef-cb26093c0fb8', 'http://smart.iec.ch/clause/85832080-ab71-4012-94d3-7847a70f8d8b', 'http://smart.iec.ch/clause/6960fc98-3c1d-4113-87ac-505eda0f130f', 'http://smart.iec.ch/clause/08fefa29-353c-405d-9eb1-17ea7cb680b8', 'http://smart.iec.ch/clause/b7784fd5-f092-4a9b-94d0-9ccbfc888dc6', 'http://smart.iec.ch/clause/dd8682f2-a370-460d-b58e-32cb1bf6ff8e', 'http://smart.iec.ch/clause/e7688c20-c16f-4e34-a419-8fe1d014c7c4', 'http://smart.iec.ch/clause/1e6a5a69-9609-4e33-9d9e-8603756eadd3', 'http://smart.iec.ch/clause/dec01363-cb70-4f2e-b6d4-a515897def55', 'http://smart.iec.ch/clause/812a8813-d195-4868-b921-2885993c381b', 'http://smart.iec.ch/clause/e438ecd2-2d41-4859-aabe-ca3cfbcea9c9', 'http://smart.iec.ch/clause/8b739031-79ff-49b9-84e4-a04824294416', 'http://smart.iec.ch/clause/b779a86a-ae78-4b61-9189-28f6de8e6e8e', 'http://smart.iec.ch/clause/43049635-9358-4fb1-8fee-141cfca05596', 'http://smart.iec.ch/clause/92112ff9-1326-4c9c-bb21-f4bfbd16d760', 'http://smart.iec.ch/clause/a3641304-5402-4294-9757-981349094aea', 'http://smart.iec.ch/clause/a49b82de-1d75-4348-a5b3-73ca0ba13502', 'http://smart.iec.ch/clause/bea4fbcc-0dae-4014-830b-3ffb134423d3', 'http://smart.iec.ch/clause/abb90a2c-606f-4ef0-af48-8844a9438f59', 'http://smart.iec.ch/clause/3e1120f3-c903-48bb-ba4e-fc1bfd7aa44f', 'http://smart.iec.ch/clause/312c55ed-e75c-4b5b-918f-d58ae36c57d2', 'http://smart.iec.ch/clause/1e4274e5-3ed3-494a-a565-96fbfae1d104', 'http://smart.iec.ch/clause/2dd1745e-884e-445c-9987-d99d98bd873f', 'http://smart.iec.ch/clause/1fc31a29-df35-49ab-af12-05cc02584284', 'http://smart.iec.ch/clause/4af72b83-599b-4572-a375-4ce5c4f9c31d', 'http://smart.iec.ch/clause/f244959c-714f-4970-8994-eabc9676c919', 'http://smart.iec.ch/clause/75267ae0-3aaf-48a6-9ce7-9252c9357df5', 'http://smart.iec.ch/clause/6362ad0f-eab4-4195-855a-3a947d29edea', 'http://smart.iec.ch/clause/07a94956-17fd-40e4-ab61-211d78aa5dc9', 'http://smart.iec.ch/clause/8a676759-0a0b-413e-a874-7f4609593253', 'http://smart.iec.ch/clause/091ad8e2-691a-444a-a256-fa6977f6e8db', 'http://smart.iec.ch/clause/2e3f93a6-ef48-4228-8656-94f2f15de5bd', 'http://smart.iec.ch/clause/e2201b6d-3dcb-404c-9f80-d6dd880e2d05', 'http://smart.iec.ch/clause/ceb8e565-a36f-4d82-9e81-b257c8782209', 'http://smart.iec.ch/clause/b1e202dd-3b8f-44e9-9ea9-0d5b850aef36', 'http://smart.iec.ch/clause/eaa302f1-3231-43ac-8ad9-4c9d20aa7e08', 'http://smart.iec.ch/clause/9751b6a6-d38b-4084-8d48-0caa05e5fbc9', 'http://smart.iec.ch/clause/85b2aba0-4f7a-47a2-a655-60832a8ed039', 'http://smart.iec.ch/clause/475f2235-6d2c-48b3-851d-5f5aca9c4276', 'http://smart.iec.ch/clause/83dc3038-9664-4b8d-a5dc-fd3eed0ff0b0', 'http://smart.iec.ch/clause/c968bee8-f31e-4414-a623-bbf481d2af0d', 'http://smart.iec.ch/clause/1d8ce713-5c91-4c00-934b-af84cdea8df0', 'http://smart.iec.ch/clause/031bd23e-d072-4a93-be11-4e6b2f554936', 'http://smart.iec.ch/clause/6411661f-e7dc-4eb6-8b17-951944d26a0c', 'http://smart.iec.ch/clause/db8b6da2-1a20-4fb8-a466-959f0c78b86f', 'http://smart.iec.ch/clause/19628451-9150-49a2-a459-9e56815fe9bf', 'http://smart.iec.ch/clause/c972bf9a-f7fa-4340-b827-40c4826e7b6e', 'http://smart.iec.ch/clause/72550d46-a800-4c75-a3e8-547297c28499', 'http://smart.iec.ch/clause/78d5c5c9-e782-42fc-afdc-cd83007e5484', 'http://smart.iec.ch/clause/c3abf69a-800c-4694-a182-b359a17a908d', 'http://smart.iec.ch/clause/83001404-0df9-43a4-b3c4-2a11ec652025', 'http://smart.iec.ch/clause/12e8b4de-47e5-41bb-bfbb-6c84c69dd581', 'http://smart.iec.ch/clause/5e1eacf6-12de-459a-94e7-98c51c2de5bc', 'http://smart.iec.ch/clause/d34198dc-3ac7-48fa-b969-36110bdf955f', 'http://smart.iec.ch/clause/2af53a13-e3b3-43da-8c9a-34ebcb2e1970', 'http://smart.iec.ch/clause/ea79cc55-7b35-4f1b-99b1-9591a466c569', 'http://smart.iec.ch/clause/0c5ce013-49df-4634-94d2-b94029239d20', 'http://smart.iec.ch/clause/90729820-b536-42bb-8487-90edd86700b2'], 'trans:checksum': '5e37cb5cdff976c439b06f43b778097122bfaceb2a916d83f3530ae2c4a8558b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9f185d49-2578-496c-a97d-4fb3373b03d4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000329', 'rdfs:label': '3.1', 'trans:checksum': '6091524049c82180c45665dc3929bb966e4e8fd2211a5685928c6b545ffe45d1', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/812a8813-d195-4868-b921-2885993c381b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000332', 'rdfs:label': '3.2', 'trans:checksum': 'd68af42d2a59c1cbb504c198e8b3b36ed3c6f99c1d48b6fa68a1b96dfaf76652', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0c5ce013-49df-4634-94d2-b94029239d20', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000336', 'rdfs:label': '3.3', 'trans:checksum': '1004c0ffa8f0475c52532b4ff227f4563357c1908b6ca2ea459371ccd8f7d960', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e857c05d-f9d4-483a-8379-5613a0cee963', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000350', 'rdfs:label': '3.4', 'trans:checksum': '675fea8850a81381cd93ea3c8379a3027cead3923ea4ae99cc197c90a76380a2', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4af72b83-599b-4572-a375-4ce5c4f9c31d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000353', 'rdfs:label': '3.5', 'trans:checksum': 'b1cb24578a4fcfc92d3a9a06c819a65ee5d9dec1d8746427fe87d32245c040cb', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/eaa302f1-3231-43ac-8ad9-4c9d20aa7e08', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000357', 'rdfs:label': '3.6', 'trans:checksum': '3a1926cb62ce31f07e8f94679d77305f646993184e821171c9cfd97d7b1562b5', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3301a109-9a23-4495-834a-84fecb622789', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000377', 'rdfs:label': '3.7', 'trans:checksum': '90f12466246baba801d40d8ac4404903d199b98a82b6cc966532a63322a444ad', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e90c710e-7620-47af-b31a-784e1697a7e7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000381', 'rdfs:label': '3.8', 'trans:checksum': '69cb494c192f962ac305b383e558e54664758b06b23ce6582e2d4611d184e231', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e438ecd2-2d41-4859-aabe-ca3cfbcea9c9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000387', 'rdfs:label': '3.9', 'trans:checksum': 'adf4b6a38c5ed6528a94b9e46e8fea7ff10011fb19eed8fdf48874a0f29f989b', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e12a7c7b-39b4-42ae-aa02-0657c2b33ab9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000481', 'rdfs:label': '3.10', 'trans:checksum': 'd76d708480e8b59f382249f5b42f771d521bf10cd36329b4b45aad20a05a75b7', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3e1120f3-c903-48bb-ba4e-fc1bfd7aa44f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000484', 'rdfs:label': '3.11', 'trans:checksum': '100a4e5872cf4bd57476c52ab529ec71a4f71fd3103036dac5df586e9287786f', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9e808753-7917-4097-9da2-95a306b00c3e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000487', 'rdfs:label': '3.12', 'trans:checksum': '47d8189e051c1aa5603133d44be96b2c8e4bd2077784e0c270b621d127591c13', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d29106ec-183d-43af-94b1-3cde0c9de725', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000490', 'rdfs:label': '3.13', 'trans:checksum': 'dcb09a40c0fd1736c6a8f4240a3ab644ced0fa554cc199445e11faff6e6f5dc0', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/07a94956-17fd-40e4-ab61-211d78aa5dc9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000494', 'rdfs:label': '3.14', 'trans:checksum': 'd0b85d4a784ea861567aa6a506e24d26aabde9bbb210f8d9bb66ba8af281029e', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e7688c20-c16f-4e34-a419-8fe1d014c7c4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000499', 'rdfs:label': '3.15', 'trans:checksum': '69f43326661f91651037fca8d29a206b60f3aff623044117089018287f827039', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/deed576b-7649-4254-affe-87fd52546065', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000503', 'rdfs:label': '3.16', 'trans:checksum': '66319f968a4acc50e0169ba181b40259f6f75ee0a3fbe9f2bc5981db3977f9fc', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2ca93e7b-5233-4874-b784-641bf7e8462a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000506', 'rdfs:label': '3.17', 'trans:checksum': '8e3eea1b0a8c40a65e22fd490937a8cb4cdd5c55d0ff29ad3ac13a23cd775f38', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c08ae96b-fa0a-4232-85b9-48f7055d96eb', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000509', 'rdfs:label': '3.18', 'trans:checksum': '208e9ec9b5e2fa7478fd9fa43ce151d44fc5257d206439f72557371e2728e68a', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2e3f93a6-ef48-4228-8656-94f2f15de5bd', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000512', 'rdfs:label': '3.19', 'trans:checksum': '631ca796891609e713659bd16ee7c8e24118eaacc96dfa3e05fc80137ef3816c', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a3641304-5402-4294-9757-981349094aea', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000515', 'rdfs:label': '3.20', 'trans:checksum': '9e4f85eb66e08b0a1e4f737e810415ccdc90d6694087bea1afb95da7c6e78b64', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/54405234-3232-4fbf-aef3-c1bf542acd95', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000518', 'rdfs:label': '3.21', 'trans:checksum': '411b771bc5e2eaea35286c46c95e04fb389c4abb78235c2cd1e58ae78408eee5', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e5166aa1-3b63-4fd3-b999-0b8f553d8320', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000522', 'rdfs:label': '3.22', 'trans:checksum': 'e47ff033bd9ac9f57d93f7bfef633c781a69ec8c4d5cb6fc432358de5083f073', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/01c2751a-22d5-4a64-8107-f84b16c9c1d4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000525', 'rdfs:label': '3.23', 'trans:checksum': '5962df8f91921ecad5f8cfdd1c14343b2f79ca528cc1a92862a27988d326ce85', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e2201b6d-3dcb-404c-9f80-d6dd880e2d05', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000529', 'rdfs:label': '3.24', 'trans:checksum': '0edc31587811003d88c01101be798223c91ace9d4a201c47e1bdec3008ebd7ff', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7ffdcae1-3003-43f5-be90-2b93fbf2067a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000532', 'rdfs:label': '3.25', 'trans:checksum': 'ecbab836184ae5882c03e73c86b143548cba55d4a9fb01aaf9ae5be231c77291', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6411661f-e7dc-4eb6-8b17-951944d26a0c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000535', 'rdfs:label': '3.26', 'trans:checksum': 'f36bbdf271889028b6b2babf7c6a952f399ae5939548915535a9183766dc008b', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/75267ae0-3aaf-48a6-9ce7-9252c9357df5', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000539', 'rdfs:label': '3.27', 'trans:checksum': '808905469941c1e4132bc6546f06371501830e2fedae24ef9a351377eda1b706', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1fc31a29-df35-49ab-af12-05cc02584284', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000543', 'rdfs:label': '3.28', 'trans:checksum': '3351aae72b73a7adcb3f87b4345b04223b4bd48fb6605f28e60bd2dd06337e51', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2dd1745e-884e-445c-9987-d99d98bd873f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000546', 'rdfs:label': '3.29', 'trans:checksum': '646146d9e393b7a2f9a2021ad7218eda0a44ac439ae492b8c0ee990f27a3dfd9', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/511daa28-fefe-4270-93fd-e96f92f33ef4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000550', 'rdfs:label': '3.30', 'trans:checksum': '47dae15fc115165e0871bcee9f8a9d0a7f12c144b52e1cca3ed6e517539c7fe1', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ea79cc55-7b35-4f1b-99b1-9591a466c569', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000555', 'rdfs:label': '3.31', 'trans:checksum': 'ba1c2ef551ef190422e5e89b87029d6adc732dca17210a7fa4471affedabe23d', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ceb8e565-a36f-4d82-9e81-b257c8782209', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000558', 'rdfs:label': '3.32', 'trans:checksum': '77e4302ba8c1784d6f2d87996d9d4e0813bd71f012cc31dfc656d64ebc081691', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/f6eefa95-abb5-44f8-a8bf-d6ccac496263', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000561', 'rdfs:label': '3.33', 'trans:checksum': 'faa4e6e03245f32a426249e1b03b7caa83358f2fabd532b887c7f3ed02e7016b', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/475f2235-6d2c-48b3-851d-5f5aca9c4276', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000565', 'rdfs:label': '3.34', 'trans:checksum': '75232ec60cbdd189cb495331a8ac5f7f4e72ca7a9cd3fae5a50a26a0707b5c1a', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a49b82de-1d75-4348-a5b3-73ca0ba13502', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000569', 'rdfs:label': '3.35', 'trans:checksum': '63a1f1a4ae5eaebe1f13ba17aad0cfab315ab22d0a01d076a3dbacc859d834ef', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9181af79-7c55-482f-8ff3-127ecdec439d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000573', 'rdfs:label': '3.36', 'trans:checksum': 'b0b35431c890c36911381be0429a259b8c319fef2cb617445479d6c55e87f268', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c53cf88a-e9df-4d6a-9ce4-07870f7a2faa', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000582', 'rdfs:label': '3.37', 'trans:checksum': '90e809908651ca500a0cf6afa0333eece195087db799eefc3401fd8ddfb98feb', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0f86099f-a0eb-4398-8983-9a1c584e5db4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000585', 'rdfs:label': '3.38', 'trans:checksum': 'd588fc556d065d5b9755e9fd1f3ca606d1958591e7ba134610aabc783a669b9f', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6d7815e3-60ec-4527-9e00-9f902b188ff1', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000588', 'rdfs:label': '3.39', 'trans:checksum': 'd78b85cc62720c68c53cd40e618cff9e499fce38d9fa5e836b6d8e12578400e3', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/802f583e-89bf-49be-a8da-87bb21c8e14b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000591', 'rdfs:label': '3.40', 'trans:checksum': '3a25580c1ac7950f5e23f051ee261bb772331c9ead3dda8b3b87be2a8158cf08', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/89908f3a-f2e0-494a-b134-f84d03387a4d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000594', 'rdfs:label': '3.41', 'trans:checksum': 'f6d33b6d6806fb64af76a9dccc5bcf151626e0bebf508c9911a2db43f0296efa', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/dd8682f2-a370-460d-b58e-32cb1bf6ff8e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000597', 'rdfs:label': '3.42', 'trans:checksum': 'b076de5347c92544b3796e1129f3f2685ceca65374c4d25af30c73a0eb563c71', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5e1eacf6-12de-459a-94e7-98c51c2de5bc', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000601', 'rdfs:label': '3.43', 'trans:checksum': 'd57e721d9af1aa0287779c4bc93b76a561e4fd492722a217b9a835c108f27492', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8b27299f-06cb-41c4-a910-24f29ce7ee7a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000604', 'rdfs:label': '3.44', 'trans:checksum': 'f20f873c5713d4bf6e6f9fc8e78a919448991ce9fb3d0af68d8317464d85910d', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/812e2d1b-64e3-4cfb-829f-e124de1841eb', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000609', 'rdfs:label': '3.45', 'trans:checksum': '8e84d3d20e41c303a66ef4d17ad44b01cc6097a0f7c12b05f80e6d36af167482', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/11e14b0b-c875-4f8d-944a-29329a280a67', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000614', 'rdfs:label': '3.46', 'trans:checksum': 'f40a3a58119237322e3a84b1714930ce94ba310fb91f9d222d4e624c5e1af185', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d34198dc-3ac7-48fa-b969-36110bdf955f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000617', 'rdfs:label': '3.47', 'trans:checksum': '7ec2a9626e6380b79e76cd975f5a98c0e85165a2e976e8db40577abbb4bf4b89', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/44370fc5-d323-4b79-b8cf-5b9a585f441c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000621', 'rdfs:label': '3.48', 'trans:checksum': '48d2e4bd6bc69bb76f40769b772dfcde4075b26b14414d47d746d285e443e673', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/08fefa29-353c-405d-9eb1-17ea7cb680b8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000625', 'rdfs:label': '3.49', 'trans:checksum': 'd7f4b08f022e7918c6a06e03a2fd5a4687d8b7d469c344a7a9902c5cdeb4946b', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1e4274e5-3ed3-494a-a565-96fbfae1d104', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000630', 'rdfs:label': '3.50', 'trans:checksum': '293e141ec4dc34c2ead905e9316d6214516781425f2c5fb0665f5f4c502f22f7', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/12e8b4de-47e5-41bb-bfbb-6c84c69dd581', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000635', 'rdfs:label': '3.51', 'trans:checksum': '2f1d8ea1de0a5c59539c0234e6d4ebacdbbb292d9ab80dd203d75e1954fc73a1', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c2508873-eb9e-4a40-a0c9-568bdd7b6d25', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000638', 'rdfs:label': '3.52', 'trans:checksum': '24ecddbf095ff0db3273ecc4257b6098ff693edfbdb0fd75bf9753294a218435', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1e6a5a69-9609-4e33-9d9e-8603756eadd3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000642', 'rdfs:label': '3.53', 'trans:checksum': 'd0593c6dbd22b29b667d47172fa4289b051433943b8d8ee962820d79ed5bebc6', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/92112ff9-1326-4c9c-bb21-f4bfbd16d760', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000645', 'rdfs:label': '3.54', 'trans:checksum': '58a81870399f0a2c7c858f0197eb3878dc943c3f39b93f5f2616b0626447df2d', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0930c9be-10e4-4b36-90f3-0aa3bb6675f6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000648', 'rdfs:label': '3.55', 'trans:checksum': 'e37760d3c1572ed0db80651f19b36313e7b161128065174a1ad7bb18ce30a559', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/38e928d4-9190-4299-aa73-b0f5b1afaa25', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000660', 'rdfs:label': '3.56', 'trans:checksum': '99fa089576fc4cba5a7fdc04ed0466b50bd726954e39e158994269de2ce676ba', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1d9a3e59-8c89-4f50-8871-0e21244a792b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000664', 'rdfs:label': '3.57', 'trans:checksum': '418a16758741273d4a17c8d0869d61af8e6e3c9cf2e2de726d98753aee7d3525', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2e466a7d-9a4f-4a94-99cc-7d59dd191c88', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000667', 'rdfs:label': '3.58', 'trans:checksum': '97611a08d9261280850ba2881a77d665964b85b01a024f8698a69bc53bd4e3d8', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ee34bdf3-0204-4005-8195-2b96dcc26014', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000671', 'rdfs:label': '3.59', 'trans:checksum': 'd432931cd5f7224058bc797257e9ae8aef3d803cf139fbe0e35086d69b85a439', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/13eab8eb-91f2-4e2b-a850-d4de9013f32c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000675', 'rdfs:label': '3.60', 'trans:checksum': 'd6b619fdeee6811229ca37c4daa87916ae3231715d93c5062dc25bd8040063c5', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ade4bdf4-13a8-438c-95e5-cf6408977763', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000680', 'rdfs:label': '3.61', 'trans:checksum': '7b66a777a2a498585c9cffa3469f799a54b6b19490c50a34e0a15ebb87417b9b', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9dcbb0e8-a616-41fa-8ee5-11f59cfd6ef5', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000683', 'rdfs:label': '3.62', 'trans:checksum': 'b73ad65b8fa8c0437ee761cce9d6181579d5bec2241c1b4b41354d5ec267e3a2', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/091ad8e2-691a-444a-a256-fa6977f6e8db', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000686', 'rdfs:label': '3.63', 'trans:checksum': '0f3ad3055cf3e0dc3ebfeed35543650233ba6dcee4c0e6b02e6f217a5ef65e9d', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/88f8f311-9819-45cc-8ef9-6ad373a4ba9b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000705', 'rdfs:label': '3.64', 'trans:checksum': 'fd731467ce6a0334a4811bee65653e929efaa2f81cb087e47deda8f10a793c35', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9d5d33c8-878d-4262-b66d-fa74c3be05c1', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000710', 'rdfs:label': '3.65', 'trans:checksum': 'f797c05bb900caa42af0458d259a9f0b1e1c9992dff3a4611e132e17ca93b8bb', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9751b6a6-d38b-4084-8d48-0caa05e5fbc9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000713', 'rdfs:label': '3.66', 'trans:checksum': '488a94471a2eba5f161713bb69bd5cce43e450ef61e47642acbb80130fda4ba9', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/312c55ed-e75c-4b5b-918f-d58ae36c57d2', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000716', 'rdfs:label': '3.67', 'trans:checksum': '217547eaa05a1183091d88be466571a7eab29663cdd8f651b298cb5223091f19', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/edb44f42-cf55-45e4-99cd-d52c3fde9c83', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000721', 'rdfs:label': '3.68', 'trans:checksum': '4a9f4af9e94d9cd4a46677ff01ba2b8e75d552574e063fb47523c73aee9728b8', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b779a86a-ae78-4b61-9189-28f6de8e6e8e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000724', 'rdfs:label': '3.69', 'trans:checksum': 'bfd629e692143b8a7860894ea1b6bc40ca31872e66acdda62883cf5278077d03', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/acbc51ad-2dae-41e2-8f59-bc1a6672d89b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000728', 'rdfs:label': '3.70', 'trans:checksum': '87677266dc2f270d80582355468c37ca7df09338ccf0043b26ece385fff31181', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d305c8b8-169f-4769-8312-343081d9e7a2', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000731', 'rdfs:label': '3.71', 'trans:checksum': '454457200eb99334151ce41c5d42db1b6e6a63f39e29746f25fbe1306a595fe1', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d67b8753-4ce9-4697-91f2-68652716c17b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000735', 'rdfs:label': '3.72', 'trans:checksum': '9b58037a2cc067bc27e16ea11ded1dbfd95e9b9c084619346de3c1e3d9ec0683', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/20877946-8e86-4467-903d-4f37dd6973a4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000738', 'rdfs:label': '3.73', 'trans:checksum': 'eab2c1574c46534368d70aeb1518971c1683c19c42cd3d88a4c72791c22825da', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2f4b0082-b697-49fb-8687-8097ade385a3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000742', 'rdfs:label': '3.74', 'trans:checksum': '0d994b1210921a06a397babdc2cd455c92e082b74cbdac0974784e0c136082b5', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8b739031-79ff-49b9-84e4-a04824294416', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000745', 'rdfs:label': '3.75', 'trans:checksum': '448acd21b359683b0765d5a0269599401ba740bed0f32aa18d72afa8fc45441e', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/06364515-2368-46da-8c26-c811de22062f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000753', 'rdfs:label': '3.76', 'trans:checksum': '1251055169b6353fe25df2a1724b3463e7be64404a99657f2692a4a36601de3b', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/dec01363-cb70-4f2e-b6d4-a515897def55', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000756', 'rdfs:label': '3.77', 'trans:checksum': '648688dca570253dca95c3529df3f2f1393ea478962a08db5766f939c942f7cc', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b7784fd5-f092-4a9b-94d0-9ccbfc888dc6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000759', 'rdfs:label': '3.78', 'trans:checksum': 'e6f2e8e108745659943b28de182ecc517d298733322e987258311c08dd966a5a', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2af53a13-e3b3-43da-8c9a-34ebcb2e1970', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000762', 'rdfs:label': '3.79', 'trans:checksum': '8c0dd34ef4ad1c43919ae8d7cee6fffa0caca7035cd284d919eb1c5eb8caeac8', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/83f64821-1782-448f-a9b6-de0f482268ac', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000765', 'rdfs:label': '3.80', 'trans:checksum': '807be7bd2d9eca5a8045aaea635bedd9ece9c6ae0f4822e2ae22ebdaf7815685', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/34b55084-cf21-4153-b2fa-3f1dbfc5c083', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000773', 'rdfs:label': '3.81', 'trans:checksum': 'e5d5f0724d057f3fc891b8601aac13b683c881956f7a2d050f057b6f9097ce98', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/099428a8-7164-45a1-832a-94dae418c749', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000776', 'rdfs:label': '3.82', 'trans:checksum': 'cd84b89c446bf7eb21a9d41c2ab5af1dadb2c4c892f0ea8048c5913bf9e27ca4', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/85832080-ab71-4012-94d3-7847a70f8d8b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000780', 'rdfs:label': '3.83', 'trans:checksum': '60ead38e4b84d6d7dc30948068ddfcda17832724e42b4f125798ee52bf51e966', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/031bd23e-d072-4a93-be11-4e6b2f554936', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000784', 'rdfs:label': '3.84', 'trans:checksum': 'aeb10b82e0cd72ed94e5b7b73a0e92ecd18cbaffa7974aa323bfd55ef8b047c4', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/72550d46-a800-4c75-a3e8-547297c28499', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000787', 'rdfs:label': '3.85', 'trans:checksum': 'a10e151cf9c084282ee9035c4f37785b4c9dec51ccf1d0dbd91da110e32a9a91', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ac05bba9-916b-47ec-aaca-d49a71a36b0c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000790', 'rdfs:label': '3.86', 'trans:checksum': 'cd4b71e33284ad632ae3dc2ec6a1768fdad18c1d65845d2546c66ae208fe7aa0', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/075aba20-0f73-4d64-99ed-e24aac3070d1', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000794', 'rdfs:label': '3.87', 'trans:checksum': '5f57248ac0621ba9c18823298a11e42d4c756fbdac698e5b0a278b3310ea96d7', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/463b7c9f-4b2f-4c29-8a23-0bf3db7e3645', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000798', 'rdfs:label': '3.88', 'trans:checksum': '25baacd84bac6541a07f9b4551a429e21f44608f628493057d6e148999f8484a', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/037e54cd-85a9-44cd-9618-28fa87bc9979', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000801', 'rdfs:label': '3.89', 'trans:checksum': '05a7e01a8bf89fe4d8b9d27b5135e6a14201ff2d658e942a2c14a25cd3107297', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c968bee8-f31e-4414-a623-bbf481d2af0d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000804', 'rdfs:label': '3.90', 'trans:checksum': 'ac8470483a9ce01b05baf087d22ec5d64dc1b888203b53e17de29ff355e6ef4d', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9625f066-fed8-423e-867d-36e0addc3c1f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000808', 'rdfs:label': '3.91', 'trans:checksum': 'd2915b0c2dccf3d4274d7868dd62127c2a705b578d2d1f44db083568ca6b800f', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/cc6e37e9-e66e-444b-a9ab-36e64a69f83f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000812', 'rdfs:label': '3.92', 'trans:checksum': 'a4392e2f5284d52261f251ba6833db00a83f152eb0ef779f796c9f90774817b7', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e75e46d6-789f-4394-95cd-b76244c2e81b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000815', 'rdfs:label': '3.93', 'trans:checksum': '1a8151b0038ab37432f4c9903e4873fca48480944655f237a2f9badb1b956161', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d26ccc0d-ca60-401d-a410-b1658cc4947d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000819', 'rdfs:label': '3.94', 'trans:checksum': '0e4b0cba11e485c4e15357ee48fcc8f245f9c0371f6e2d863bedda72e9d40c11', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2038cf77-7b70-48d6-a167-7459e2872c5a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000822', 'rdfs:label': '3.95', 'trans:checksum': 'ed0e2e2e6223f5d217d6a16d1a89f21b105c69195a700c878ad5c0bed8e77e2a', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8934326c-046e-451f-bde7-3362bf5d3fb3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000826', 'rdfs:label': '3.96', 'trans:checksum': '84bcc44000e0a70a3d4771b39cb3a90bed36c3f464d45b9443d5f038fae24029', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/83dc3038-9664-4b8d-a5dc-fd3eed0ff0b0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000829', 'rdfs:label': '3.97', 'trans:checksum': 'cc392e042033010a215b50dd0635c85522480180b1973782d072a6f8d5dbc364', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/83001404-0df9-43a4-b3c4-2a11ec652025', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000832', 'rdfs:label': '3.98', 'trans:checksum': '978e1a7affe16d2de5e3dda5dc87e4ec6d9ad386df96cfd8b26e2b350dde7bb2', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/dd852f55-27e9-4e32-a4dd-afdf419b043d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000835', 'rdfs:label': '3.99', 'trans:checksum': '7656dd84377355657bcdf4d734ffb8d634c228c45b4899f9ba3c588fd1a7a8bc', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/948f630e-9f05-4a45-a597-41ce335f1abe', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000838', 'rdfs:label': '3.100', 'trans:checksum': '716cb90052b561fa13a3e2e0a329e27d1c6ec4c56d1e985fce6bf4c06b9311e3', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c972bf9a-f7fa-4340-b827-40c4826e7b6e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000841', 'rdfs:label': '3.101', 'trans:checksum': '0ddb18c169eb1c593b002edba715370156438aafc7a3496d7af55c6cc5d632dc', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e09e2522-590d-421e-83d9-d83719d9dad6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000846', 'rdfs:label': '3.102', 'trans:checksum': 'a584a00ee1ffcf139888585b4392ed47f83b4c0ddbdf0f884ba01d79105145eb', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/90729820-b536-42bb-8487-90edd86700b2', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000849', 'rdfs:label': '3.103', 'trans:checksum': 'f031ff57f562ffcbc9a7b228ae138497e924dc77fa7db7fc4a1e8829ed784422', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c9a1fe55-bd05-480d-ade5-d1ac6ae530c7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000852', 'rdfs:label': '3.104', 'trans:checksum': '5577c04bb72625e1cf60a07cc65e8f7d23a4752506eb56ac517511fbd08a8ff5', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/67f31ffc-01b2-409e-88f5-2b422ea53256', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000855', 'rdfs:label': '3.105', 'trans:checksum': '0fa359c437916f29f0aadcd01a84c1f2bedbf440a87e71301bb44c4be12b825c', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/43049635-9358-4fb1-8fee-141cfca05596', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000858', 'rdfs:label': '3.106', 'trans:checksum': 'e372f556af686ca75cdbc686c32369bfa9e411d8cb6100d6f0f9626e34feedd3', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/26f5460d-8fde-4b63-9d2d-0242f59eedfb', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000861', 'rdfs:label': '3.107', 'trans:checksum': 'ff1ccad20082e4b6bd7f9e2ce8799c05c660e00e482b682dd6b39c5d32b8cee3', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/21dccf89-dc94-4643-8312-8707f60fa19d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000864', 'rdfs:label': '3.108', 'trans:checksum': 'f02a1d62b53c53e6dda4256a3e100c75f76846ed2ec27f1c5f0bac6f08612e95', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/93c0e927-009c-4800-9daf-41eb2e250f54', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000868', 'rdfs:label': '3.109', 'trans:checksum': 'b5d42bdd8014fb20897a8412aa19082366f508900bdb30e1cd25ee482519a5c3', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/abb90a2c-606f-4ef0-af48-8844a9438f59', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000871', 'rdfs:label': '3.110', 'trans:checksum': 'c1a017294f689427f723832eda5150fd41f56ac03be6cbc4e693b8f99e398911', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ca3bb184-56e9-418a-a0cd-4442d17cd186', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000875', 'rdfs:label': '3.111', 'trans:checksum': 'f5d7315067c4a4cd07142b0ad543f95f6da6614b001ef14abd0191286bda81e2', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9fbaa6d4-0542-4bed-8bef-cb26093c0fb8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000878', 'rdfs:label': '3.112', 'trans:checksum': 'b86201ec2b1ae1795d25555231b7b371ff76e3267636995baafb790afce2f57a', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/addcdc32-b838-4fdc-a2eb-03c1dd6bbe4d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000881', 'rdfs:label': '3.113', 'trans:checksum': '136c75108720add97f6d6f550689c5d9f87691029897a94f75f4127a8a7f4bc7', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6362ad0f-eab4-4195-855a-3a947d29edea', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000884', 'rdfs:label': '3.114', 'trans:checksum': 'd5349be25b913b694e81a017cd69660a7d308b83e2cd4d1462d7677cc8adb91a', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8a676759-0a0b-413e-a874-7f4609593253', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000887', 'rdfs:label': '3.115', 'trans:checksum': '4e246240a2833d748664ba010cc880359f3228f5de3163e5091c873b54c36175', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d7f57d97-5914-4c1d-a447-0f3643d12338', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000892', 'rdfs:label': '3.116', 'trans:checksum': '42c11ca6fac26a9f610518b7c3cc9e9adfe84a57091f8ab7d7c0b01f03fc7c09', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3fafa4c8-1f04-4497-8491-5cb449a9060d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000896', 'rdfs:label': '3.117', 'trans:checksum': 'f2fd2e5e4b94305d1ba9b3012eddfc34597d5f7f18ec58f706245a84d49337dc', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b1e202dd-3b8f-44e9-9ea9-0d5b850aef36', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000900', 'rdfs:label': '3.118', 'trans:checksum': '59231a5b32882d3e7eab5f716c8278d09381c5577b7d098223a4c8e98569aa38', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b8984219-a5a5-45f8-a15f-94941e31c46e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000903', 'rdfs:label': '3.119', 'trans:checksum': 'fd720353048983730df3c7ac1e9f3bc53f5132ea1a1f6fec62f83e84d0acdaff', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c3abf69a-800c-4694-a182-b359a17a908d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000907', 'rdfs:label': '3.120', 'trans:checksum': 'e0e3327330706fcd2f6087af513e937931cc8e213290106675a04137f2755a9a', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/bea4fbcc-0dae-4014-830b-3ffb134423d3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000911', 'rdfs:label': '3.121', 'trans:checksum': 'ec37f4632a1a170b4a705749ce64f2c811903c7a43b88489b2745c262080ab98', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/cea19074-632c-4d05-8023-c3f2231d0a4b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000914', 'rdfs:label': '3.122', 'trans:checksum': 'bc93f2d2fc4c50d9b9c6f3ab47b1c86af1b8570910efee1e826d61d704d1cf7b', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2d1e8bfe-3609-4148-b7f7-c07f3f2ff254', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000917', 'rdfs:label': '3.123', 'trans:checksum': '4196c0efa9158958643a920fb45f4d9ae1d816f6cfe4bf0135d776a8bb388b17', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/29918ea3-e9c6-47a7-8f1e-30f0ca39ba48', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000921', 'rdfs:label': '3.124', 'trans:checksum': 'a59453d24feb33c09738487b2f40149cf8bf98536d08de3e304a95b9f70d9b49', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/dd667e15-8d5b-4199-93c1-ff24afb250c5', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000924', 'rdfs:label': '3.125', 'trans:checksum': '91110a0a9885eba13caf7ca3a435f30be3b1f3b338826f0726172a2250461731', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/78d5c5c9-e782-42fc-afdc-cd83007e5484', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000927', 'rdfs:label': '3.126', 'trans:checksum': '5169d89fff939a31d45db1bce4b72b6d0a00fcaae45fa7d1cf3c6d6d4a0ca32c', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/f244959c-714f-4970-8994-eabc9676c919', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000930', 'rdfs:label': '3.127', 'trans:checksum': '1d4dfbf97e32ee99c57eb87d32346dd59f0719771aa8a99beee259de635182fe', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b9b13604-0c00-4422-b53f-a55a6523dac5', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000934', 'rdfs:label': '3.128', 'trans:checksum': '27a71bb6f10455ed756cc33c2f3dbf8dfbd593e3c2eeab04ab7ef9a64a5b4911', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4ac8617a-1ac6-454a-9356-b6128e657cd3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000939', 'rdfs:label': '3.129', 'trans:checksum': '799ca6222de859850174b875f9f550463ebd3792ae2bf5924a6eb90356c1c531', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b091813b-efa3-499b-b559-876e1a8ed41e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000943', 'rdfs:label': '3.130', 'trans:checksum': 'c7f4e8fe046113af381acddc810921cd7947594165a9ee63b73160959a4f8cfa', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9f5ec045-aacf-443a-92be-a1eba4e34583', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000947', 'rdfs:label': '3.131', 'trans:checksum': '525fdd3dce2d50478f91cdbe6b48928d47ef65a65712f27d508b2af8298228cb', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c96d6728-ec04-451d-8898-133fb0d50fa1', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000950', 'rdfs:label': '3.132', 'trans:checksum': 'f50baf1e9451bbc01370122d8886964a12361868a5791a06b627ed2bd073507b', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/85b2aba0-4f7a-47a2-a655-60832a8ed039', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000956', 'rdfs:label': '3.133', 'trans:checksum': '753981eb28a08d1b0864c53ee96377172f30b05bc94444b3c6fd5d5fe9135a44', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/cd54dc5a-f421-454e-9c1b-1f818d5f2839', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000962', 'rdfs:label': '3.134', 'trans:checksum': 'bf571f4f6fa6ec25dda9e648cb4cee144fa4dfb2b91ef53fc2d2411c76994390', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6960fc98-3c1d-4113-87ac-505eda0f130f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000967', 'rdfs:label': '3.135', 'trans:checksum': '9a87d085404e7e1edebb9d9dcb54512ff11a894f4794b904a65a7c476afeb33a', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1d8ce713-5c91-4c00-934b-af84cdea8df0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000970', 'rdfs:label': '3.136', 'trans:checksum': 'c088b069c8191cd3f0cc8982c2f14592a009f161d76d949b3831e73a86ca83ed', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/db8b6da2-1a20-4fb8-a466-959f0c78b86f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000973', 'rdfs:label': '3.137', 'trans:checksum': '84f496e187dee6c62d810f2a25eb499810f03d9ab9236106ccc8bae0c5522902', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/19628451-9150-49a2-a459-9e56815fe9bf', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000976', 'rdfs:label': '3.138', 'trans:checksum': '041a34890b8d22165cd389bab2a8d312e36221f00fafe377deab1a9df0423a8f', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/acaad5da-ba75-4025-849e-5bbe469b28b6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000980', 'rdfs:label': '3.139', 'trans:checksum': '45a3902d36398303a4ff8e17a3e5b7486fa05432f4a33c92f6256495361f4134', 'withinClause': 'http://smart.iec.ch/clause/8f4c6e0b-f0ab-41fc-9d94-da6b7252f609', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/141e17c5-49a6-43da-a122-c627d6734175', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000983', 'rdfs:label': '4', 'dcterms:title': 'General requirements', 'comprisesClause': ['http://smart.iec.ch/clause/1d65bf40-b987-40e9-a3d3-1fd56211af0f', 'http://smart.iec.ch/clause/74193f38-d86e-4f66-8841-03c728efb5d2', 'http://smart.iec.ch/clause/7c27a211-bafa-4923-87c3-0d3c744c0435', 'http://smart.iec.ch/clause/5ce9f1db-2c88-4cf3-a003-1ea53481ca5d', 'http://smart.iec.ch/clause/ff78e224-220d-49fe-9687-94d35305a1e5', 'http://smart.iec.ch/clause/933dae52-d3a5-4913-9842-7c3f8ba08db9', 'http://smart.iec.ch/clause/e0bd9a56-cadf-4c41-a7b6-33d9b063f98e', 'http://smart.iec.ch/clause/9e0857eb-41cf-47b3-9240-07c5a2d6466d', 'http://smart.iec.ch/clause/a6d1a2e1-b651-4845-8797-147db280d6c9', 'http://smart.iec.ch/clause/ff4c5fa8-b5f5-4f1f-b208-3a7df39b11b7', 'http://smart.iec.ch/clause/cde88823-6a4f-408d-9de5-e288193dd8a4'], 'trans:checksum': '512b306e733e53997110d26a8ce8f558313242add639ab6d0dc4f021bea86b5e', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ff4c5fa8-b5f5-4f1f-b208-3a7df39b11b7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000984', 'rdfs:label': '4.1', 'dcterms:title': 'Conditions for application to ME EQUIPMENT or ME SYSTEMS', 'hasTest': ['http://smart.iec.ch/test/a7e6d9aa-3f5c-484b-850f-2fdfa91da648'], 'trans:checksum': '057e73d9948879ac74a7cd0edd2bd89f0bb65b210cf23961f410a5dc7741a439', 'withinClause': 'http://smart.iec.ch/clause/141e17c5-49a6-43da-a122-c627d6734175', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/cde88823-6a4f-408d-9de5-e288193dd8a4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000000989', 'rdfs:label': '4.2', 'dcterms:title': 'RISK MANAGEMENT PROCESS for ME EQUIPMENT or ME SYSTEMS', 'hasTest': ['http://smart.iec.ch/test/0c1ab390-4f3b-4ccb-8622-8e932202e26f', 'http://smart.iec.ch/test/54d1265f-0ffc-4d60-b43d-443724b5eea7', 'http://smart.iec.ch/test/651c1c55-e7bb-4449-923a-9025a9816f85', 'http://smart.iec.ch/test/66a80291-a7c8-4b1d-b596-f106cfb14d1e', 'http://smart.iec.ch/test/7705c27d-0b3d-4727-83c2-d8c02cd1e041', 'http://smart.iec.ch/test/7fbeaf8e-d916-4b82-94ef-5b5e880fc0aa', 'http://smart.iec.ch/test/eb9e316c-007b-41ee-9ec5-2e553733a7c2'], 'trans:checksum': 'a9daed60db6b47593ebcd23a58f86afdc0e07afbce2bcbdb0d02e67d9b887696', 'withinClause': 'http://smart.iec.ch/clause/141e17c5-49a6-43da-a122-c627d6734175', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5ce9f1db-2c88-4cf3-a003-1ea53481ca5d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001031', 'rdfs:label': '4.3', 'dcterms:title': 'ESSENTIAL PERFORMANCE', 'hasTest': ['http://smart.iec.ch/test/40298ae5-ab15-4c1d-b0c1-c461181c2dc7', 'http://smart.iec.ch/test/53d8743e-0d22-443e-8757-37d361733e7d', 'http://smart.iec.ch/test/5f5e8a8a-9d9c-4c08-9266-bc028434c5d7', 'http://smart.iec.ch/test/745d94bd-7a48-49cb-a94d-895f6ee42099', 'http://smart.iec.ch/test/ab76f6e5-3c54-4428-9960-ed64b58a77b0', 'http://smart.iec.ch/test/f6ea322f-21b4-4962-bd53-f2a6f42d04ce'], 'trans:checksum': 'dbeaab0d2752ff6d6b2d4fab5f8fe50a4181d65cd7c2f358a7d086b4475a8929', 'withinClause': 'http://smart.iec.ch/clause/141e17c5-49a6-43da-a122-c627d6734175', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7c27a211-bafa-4923-87c3-0d3c744c0435', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001039', 'rdfs:label': '4.4', 'dcterms:title': 'EXPECTED SERVICE LIFE', 'hasTest': ['http://smart.iec.ch/test/26d162ef-05eb-49ee-9133-d30a8558ea75'], 'trans:checksum': 'af2541670d4b35762e337d725baf787326c60cf94cf15198c84c14f19faa366d', 'withinClause': 'http://smart.iec.ch/clause/141e17c5-49a6-43da-a122-c627d6734175', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1d65bf40-b987-40e9-a3d3-1fd56211af0f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001044', 'rdfs:label': '4.5', 'dcterms:title': 'Equivalent safety for ME EQUIPMENT or ME SYSTEMS', 'hasTest': ['http://smart.iec.ch/test/298c31e1-4a93-4150-b84c-d785a7e50258', 'http://smart.iec.ch/test/e29435b5-6231-4e98-bf41-97ed3cbf7c0c', 'http://smart.iec.ch/test/e8574423-4359-429e-a2e5-bd2f30824552'], 'trans:checksum': '6f00bd7eaf122df107d2763be7110afb042a044c83afe7cf3068230d52265691', 'withinClause': 'http://smart.iec.ch/clause/141e17c5-49a6-43da-a122-c627d6734175', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9e0857eb-41cf-47b3-9240-07c5a2d6466d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001049', 'rdfs:label': '4.6', 'dcterms:title': 'ME EQUIPMENT or ME SYSTEM parts that contact the PATIENT', 'hasTest': ['http://smart.iec.ch/test/0b504889-660e-4629-a983-8cce9834b6ad', 'http://smart.iec.ch/test/0e8759df-4f03-4589-b701-62e177303c93', 'http://smart.iec.ch/test/1222448a-fc7d-4d79-a5d0-92adea35addf'], 'trans:checksum': '4374890de25dcbe6302777aeab303099d1422f673630c1952e584a721df5354c', 'withinClause': 'http://smart.iec.ch/clause/141e17c5-49a6-43da-a122-c627d6734175', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ff78e224-220d-49fe-9687-94d35305a1e5', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001055', 'rdfs:label': '4.7', 'dcterms:title': 'SINGLE FAULT CONDITION for ME EQUIPMENT', 'hasTest': ['http://smart.iec.ch/test/11bcb62f-93e3-4dbc-8710-84590a8fc5bf', 'http://smart.iec.ch/test/8f5c0ca3-b269-4d7d-8aef-75b0d1b59ede', 'http://smart.iec.ch/test/dcff7bf5-a167-4f83-9a66-080bec6215af'], 'trans:checksum': 'ec6b462d25878284486f587b0df185953961a2860c82068e80eb952547c36f37', 'withinClause': 'http://smart.iec.ch/clause/141e17c5-49a6-43da-a122-c627d6734175', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a6d1a2e1-b651-4845-8797-147db280d6c9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001103', 'rdfs:label': '4.8', 'dcterms:title': 'Components of ME EQUIPMENT', 'hasTest': ['http://smart.iec.ch/test/0c69ec59-e48e-4816-90c4-071465544639', 'http://smart.iec.ch/test/1739c0ab-2948-4362-8443-37046f06b68b', 'http://smart.iec.ch/test/c61b695e-8dba-43bc-8236-5d40c7d6e311', 'http://smart.iec.ch/test/cd19ace9-016b-4a9c-a876-53e15b7de0a4', 'http://smart.iec.ch/test/e1ff02b6-3da5-4f88-9b82-00a1e2082288', 'http://smart.iec.ch/test/edbe7dbb-50e0-473e-9187-c3a9f655fa6e', 'http://smart.iec.ch/test/f123edd6-a672-4b9a-a1fc-1d6a71da33d0', 'http://smart.iec.ch/test/f3c42e72-8af3-4c4c-9925-12041ca53deb'], 'trans:checksum': '47df20113d7dc1e616e2f62cb14daf90d05c16543509553f52154f88ecde80a6', 'withinClause': 'http://smart.iec.ch/clause/141e17c5-49a6-43da-a122-c627d6734175', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/74193f38-d86e-4f66-8841-03c728efb5d2', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001123', 'rdfs:label': '4.9', 'dcterms:title': 'Use of COMPONENTS WITH HIGH-INTEGRITY CHARACTERISTICS in ME EQUIPMENT', 'hasTest': ['http://smart.iec.ch/test/286f769a-913c-4f39-ad66-fae7f6055a46', 'http://smart.iec.ch/test/4ef1f271-7123-4539-8da9-e7f68ad198c0', 'http://smart.iec.ch/test/d15dab84-c316-4c0b-a677-a045aadc6d00'], 'trans:checksum': 'fa2bc4e6e4ba82a7c625a9b5cef6e1fb4332872d53dc2c582997463e01596654', 'withinClause': 'http://smart.iec.ch/clause/141e17c5-49a6-43da-a122-c627d6734175', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e0bd9a56-cadf-4c41-a7b6-33d9b063f98e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001131', 'rdfs:label': '4.10', 'dcterms:title': 'Power supply', 'comprisesClause': ['http://smart.iec.ch/clause/44a94cdc-a651-459d-84da-ac7a7a35e727', 'http://smart.iec.ch/clause/ba8a3340-5593-4253-bb09-563d0f783411'], 'trans:checksum': 'ac1fd3a827d1ed367074cb8cedb6056364bef93ceb46318ca215435db99e8ca6', 'withinClause': 'http://smart.iec.ch/clause/141e17c5-49a6-43da-a122-c627d6734175', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/44a94cdc-a651-459d-84da-ac7a7a35e727', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001132', 'rdfs:label': '4.10.1', 'dcterms:title': 'Source of power for ME EQUIPMENT', 'hasTest': ['http://smart.iec.ch/test/9afcb71e-acc8-4ebc-8ef6-d754967231f5'], 'trans:checksum': 'c6d221a3bce2d9502c197035e617351d7c49b7ee7f1b8d0b177d1adb2ae1c9f2', 'withinClause': 'http://smart.iec.ch/clause/e0bd9a56-cadf-4c41-a7b6-33d9b063f98e', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ba8a3340-5593-4253-bb09-563d0f783411', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001138', 'rdfs:label': '4.10.2', 'dcterms:title': 'SUPPLY MAINS for ME EQUIPMENT and ME SYSTEMS', 'hasTest': ['http://smart.iec.ch/test/aa918c97-b1d8-477d-88be-a9a13d3e0940', 'http://smart.iec.ch/test/cd50ca4c-9017-4b85-89e0-d11b4026a1eb', 'http://smart.iec.ch/test/f0970e0e-7dfe-4755-8cfc-d0ba3afcfbbb', 'http://smart.iec.ch/test/f7dc1035-fe2b-45f8-9c83-361c19ffcc5c'], 'trans:checksum': '9fde46aa885b756e392b86e9a11e25b7f41386e24a04d5a53a650032ac5bfe65', 'withinClause': 'http://smart.iec.ch/clause/e0bd9a56-cadf-4c41-a7b6-33d9b063f98e', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/933dae52-d3a5-4913-9842-7c3f8ba08db9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001181', 'rdfs:label': '4.11', 'dcterms:title': 'Power input', 'hasTest': ['http://smart.iec.ch/test/d93411e4-92ac-4a2d-a914-62c3966b921e'], 'hasMeasurement': ['http://smart.iec.ch/measurement/4bd74458-bb0e-4001-887b-55839e28d83b'], 'trans:checksum': '3b15bea87b4385a844d585b6503906bad0c76bf6cf41d824dc21bc6ba3d8ca14', 'withinClause': 'http://smart.iec.ch/clause/141e17c5-49a6-43da-a122-c627d6734175', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c7eeff09-80b3-4ee5-a8d9-cf89c4eb8781', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001200', 'rdfs:label': '5', 'dcterms:title': 'General requirements for testing ME EQUIPMENT', 'comprisesClause': ['http://smart.iec.ch/clause/65a3c40d-f564-42ea-a180-180e9ba786e2', 'http://smart.iec.ch/clause/4876f492-7d52-48ec-af0a-66f22669a2e5', 'http://smart.iec.ch/clause/68ba1195-8673-4e92-8184-4efed6543f06', 'http://smart.iec.ch/clause/a6388b05-7ad3-4dc7-852f-36b227326710', 'http://smart.iec.ch/clause/b0046eed-40f2-41f7-b1c5-3e0feddb4f0a', 'http://smart.iec.ch/clause/0240e7fa-09c1-4b4f-9122-f73cb9acf102', 'http://smart.iec.ch/clause/88e5e64b-9a1a-4af2-9fce-a4ca264e9122', 'http://smart.iec.ch/clause/d42708e9-f9d5-44c4-9998-5514c6a754e3', 'http://smart.iec.ch/clause/235f0e36-6de3-4955-baea-7698efd87b76'], 'trans:checksum': 'ec036da413270244ea1d2b36438ea1d878632c4df6abf06e8d36a36b5153d964', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4876f492-7d52-48ec-af0a-66f22669a2e5', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001201', 'rdfs:label': '5.1', 'dcterms:title': 'TYPE TESTS', 'hasTest': ['http://smart.iec.ch/test/6a9d417a-bf82-411b-83ec-5f632b38d7e1', 'http://smart.iec.ch/test/f5df3590-3bc0-4417-acf7-bb7d7297a365'], 'trans:checksum': '9c6f81d0dad320a1b4769336fcbc6fd038409207092cd4b858039f64ddfb4159', 'withinClause': 'http://smart.iec.ch/clause/c7eeff09-80b3-4ee5-a8d9-cf89c4eb8781', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d42708e9-f9d5-44c4-9998-5514c6a754e3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001211', 'rdfs:label': '5.2', 'dcterms:title': 'Number of samples', 'trans:checksum': 'e7052ed2db225505b0551ffb64e83efc056200caa676d8c1259a154775abc7ef', 'withinClause': 'http://smart.iec.ch/clause/c7eeff09-80b3-4ee5-a8d9-cf89c4eb8781', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b0046eed-40f2-41f7-b1c5-3e0feddb4f0a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001216', 'rdfs:label': '5.3', 'dcterms:title': 'Ambient temperature, humidity, atmospheric pressure', 'hasTest': ['http://smart.iec.ch/test/2760cef9-38e8-44e0-8f9c-6515d3202616', 'http://smart.iec.ch/test/66a2554b-95f5-49e1-9078-de00d6ca8740', 'http://smart.iec.ch/test/a7376efa-87db-4f30-a304-d9d1d9a70595'], 'hasMeasurement': ['http://smart.iec.ch/measurement/bd8a3e6a-b613-47e0-b557-3e35fb1e9f86'], 'trans:checksum': '63d3e25377e1c8d8f442dbae4d096ec4997e327a454e2f5bd46f6970bfcc52fd', 'withinClause': 'http://smart.iec.ch/clause/c7eeff09-80b3-4ee5-a8d9-cf89c4eb8781', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0240e7fa-09c1-4b4f-9122-f73cb9acf102', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001227', 'rdfs:label': '5.4', 'dcterms:title': 'Other conditions', 'trans:checksum': '5cd122a777c05d2f93fbbb2787da54e29c5dd13b1ebaca9f084a233cf86632dd', 'withinClause': 'http://smart.iec.ch/clause/c7eeff09-80b3-4ee5-a8d9-cf89c4eb8781', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/68ba1195-8673-4e92-8184-4efed6543f06', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001241', 'rdfs:label': '5.5', 'dcterms:title': 'Supply voltages, type of current, nature of supply, frequency', 'hasTest': ['http://smart.iec.ch/test/0af2fe5d-b45e-4f88-a289-82f1587744eb', 'http://smart.iec.ch/test/41ab7dbb-9983-4e9e-a314-dd4c1501281f', 'http://smart.iec.ch/test/4be7848e-32ae-40a1-bca8-df45d3c21e95', 'http://smart.iec.ch/test/65c8a7af-9bb6-4159-aa2e-2ec3e7880bc0', 'http://smart.iec.ch/test/bf18c914-b265-43c1-bd55-7c32eedf3e59', 'http://smart.iec.ch/test/f066290f-6f63-46b7-91a4-99f5e16d6733'], 'trans:checksum': 'e1d0afe3e077106bfed6dacce8cbd9ba7752f72e4a206aa4c298eaeae9ff36c7', 'withinClause': 'http://smart.iec.ch/clause/c7eeff09-80b3-4ee5-a8d9-cf89c4eb8781', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/88e5e64b-9a1a-4af2-9fce-a4ca264e9122', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001270', 'rdfs:label': '5.6', 'dcterms:title': 'Repairs and modifications', 'trans:checksum': '1fdecdfc500d4eabae8dbbd5abb81276279cddeedd6b41709a9f23e7d78e13aa', 'withinClause': 'http://smart.iec.ch/clause/c7eeff09-80b3-4ee5-a8d9-cf89c4eb8781', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/65a3c40d-f564-42ea-a180-180e9ba786e2', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001273', 'rdfs:label': '5.7', 'dcterms:title': 'Humidity preconditioning treatment', 'hasTest': ['http://smart.iec.ch/test/7a3238b7-0cc3-49fb-9f18-d5c4b72ed342', 'http://smart.iec.ch/test/ac654995-3233-45a2-94c8-00eedb08d10b'], 'hasMeasurement': ['http://smart.iec.ch/measurement/83303eea-5f0a-4e2e-88d5-73a5ce47b3cd'], 'trans:checksum': '2f05d314e97171c6c85fa48756356464727d2230feebd0a139cd25368b4646fe', 'withinClause': 'http://smart.iec.ch/clause/c7eeff09-80b3-4ee5-a8d9-cf89c4eb8781', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a6388b05-7ad3-4dc7-852f-36b227326710', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001294', 'rdfs:label': '5.8', 'dcterms:title': 'Sequence of tests', 'trans:checksum': '6e9107188691d81fe51097fc1d78b69823539874a33189f37fd7b19706fd386f', 'withinClause': 'http://smart.iec.ch/clause/c7eeff09-80b3-4ee5-a8d9-cf89c4eb8781', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/235f0e36-6de3-4955-baea-7698efd87b76', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001299', 'rdfs:label': '5.9', 'dcterms:title': 'Determination of APPLIED PARTS and ACCESSIBLE PARTS', 'comprisesClause': ['http://smart.iec.ch/clause/d504c904-7af1-46fb-ba2d-d90b7ee05f06', 'http://smart.iec.ch/clause/3f540a93-b7ba-4840-b7c2-652fa1c8cf02'], 'trans:checksum': '14c283c0982502128fd52f1f7bd386ffdd92c3b132bbf6dca572281ac0e63191', 'withinClause': 'http://smart.iec.ch/clause/c7eeff09-80b3-4ee5-a8d9-cf89c4eb8781', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3f540a93-b7ba-4840-b7c2-652fa1c8cf02', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001300', 'rdfs:label': '5.9.1', 'dcterms:title': 'APPLIED PARTS', 'hasTest': ['http://smart.iec.ch/test/664ca932-c7c2-4401-b9f1-101cff803231'], 'trans:checksum': '10cc6f9324e73d9d9a28cf3124da50a233b0b355d94b888b538cd296eb17aeb4', 'withinClause': 'http://smart.iec.ch/clause/235f0e36-6de3-4955-baea-7698efd87b76', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d504c904-7af1-46fb-ba2d-d90b7ee05f06', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001304', 'rdfs:label': '5.9.2', 'dcterms:title': 'ACCESSIBLE PARTS', 'hasMeasurement': ['http://smart.iec.ch/measurement/8abc1ff5-c3c8-43a9-831b-d351cb799b8a'], 'comprisesClause': ['http://smart.iec.ch/clause/b836393a-ddf4-4a3f-bf0d-5877a2d2b459', 'http://smart.iec.ch/clause/2b3d1ffb-f046-47ee-a1b6-406161d9b585', 'http://smart.iec.ch/clause/2d5657c2-787f-47ce-aaad-919fcda03666'], 'trans:checksum': 'a00aac5729337acf2d4d1207c0333d65f906cd635e33cff785c6a3e87d098604', 'withinClause': 'http://smart.iec.ch/clause/235f0e36-6de3-4955-baea-7698efd87b76', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2d5657c2-787f-47ce-aaad-919fcda03666', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001305', 'rdfs:label': '5.9.2.1', 'dcterms:title': 'Test finger', 'hasTest': ['http://smart.iec.ch/test/103a360f-13af-4e5f-b060-9096fa02302e'], 'trans:checksum': 'd8639abc77fff413c1819a498d10968e6a4c7f49450ebc55bc70f881bd5b1671', 'withinClause': 'http://smart.iec.ch/clause/d504c904-7af1-46fb-ba2d-d90b7ee05f06', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2b3d1ffb-f046-47ee-a1b6-406161d9b585', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001336', 'rdfs:label': '5.9.2.2', 'dcterms:title': 'Test hook', 'hasTest': ['http://smart.iec.ch/test/51ca1bb1-c194-483b-9194-5541c3d6b533'], 'trans:checksum': 'e5cadcfb9981efc555acd55beb6d492bc46250835cfca24e9e5ae746482110a1', 'withinClause': 'http://smart.iec.ch/clause/d504c904-7af1-46fb-ba2d-d90b7ee05f06', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b836393a-ddf4-4a3f-bf0d-5877a2d2b459', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001347', 'rdfs:label': '5.9.2.3', 'dcterms:title': 'Actuating mechanisms', 'hasTest': ['http://smart.iec.ch/test/30f78b21-2a09-4e86-b7b3-a86918e1b660', 'http://smart.iec.ch/test/a9b1a586-3681-4ae8-9106-39cbbf123f28'], 'trans:checksum': 'b3bc0221fb74487de3e81936dd96771f787b5dc4d372c92c7cc96f6bd8567f90', 'withinClause': 'http://smart.iec.ch/clause/d504c904-7af1-46fb-ba2d-d90b7ee05f06', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/27ead2b8-d2b7-4667-afdb-72d3e7466708', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001352', 'rdfs:label': '6', 'dcterms:title': 'Classification of ME EQUIPMENT and ME SYSTEMS', 'comprisesClause': ['http://smart.iec.ch/clause/5d536010-1b70-44c0-a446-18d411fa57a2', 'http://smart.iec.ch/clause/d3ef3a59-26d5-408b-bb95-8747e6e2f645', 'http://smart.iec.ch/clause/1eff4ab8-f4a9-4862-9ac4-b06d71e1a1b6', 'http://smart.iec.ch/clause/59f70fb0-cb96-49e1-b96d-85c7bdc7755c', 'http://smart.iec.ch/clause/d5cda257-e22a-4f36-8f54-4c83d34aeecd', 'http://smart.iec.ch/clause/39663a9d-8f51-4c33-ba21-d5c4c199f652'], 'trans:checksum': '651ccfb2d1fe0c4b2d9befd62ad5d5919ea60752a71bd9f16ad48bc5429a13b5', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/59f70fb0-cb96-49e1-b96d-85c7bdc7755c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001353', 'rdfs:label': '6.1', 'dcterms:title': 'General', 'trans:checksum': '46c238d66be7b2646cfc365c3ea49ad89a0724420e34e6351adb68c2e938efe1', 'withinClause': 'http://smart.iec.ch/clause/27ead2b8-d2b7-4667-afdb-72d3e7466708', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/39663a9d-8f51-4c33-ba21-d5c4c199f652', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001356', 'rdfs:label': '6.2', 'dcterms:title': 'Protection against electric shock', 'hasTest': ['http://smart.iec.ch/test/0b289d47-ce1f-4fde-a501-8de7d26c9a4e', 'http://smart.iec.ch/test/0eb8a58c-a652-43f9-a0cd-4cbfd834277b', 'http://smart.iec.ch/test/483a22cf-9590-4d46-91ff-9065470dcf85', 'http://smart.iec.ch/test/75186f22-629e-4cbd-be85-8e3fe66483d9', 'http://smart.iec.ch/test/b13f0ffc-995e-4a2e-a185-d8990e9fabed', 'http://smart.iec.ch/test/b258ef16-7973-4361-97c6-c9bfced3cba8', 'http://smart.iec.ch/test/c864fb17-5222-42e1-b4d3-64ed54b2eb6a'], 'trans:checksum': '14a658d19ef924ac30a93b763e1eb8ecf50cd59ef53c1264fd38f3fdc689e507', 'withinClause': 'http://smart.iec.ch/clause/27ead2b8-d2b7-4667-afdb-72d3e7466708', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d5cda257-e22a-4f36-8f54-4c83d34aeecd', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001365', 'rdfs:label': '6.3', 'dcterms:title': 'Protection against harmful ingress of water or particulate matter', 'hasTest': ['http://smart.iec.ch/test/df3128d0-7deb-42bb-ac53-42faf4c14989'], 'trans:checksum': 'b0682dd27033d4011c1f5965f001e628dc9347b7a72dfdd18bc61bec02fccb0c', 'withinClause': 'http://smart.iec.ch/clause/27ead2b8-d2b7-4667-afdb-72d3e7466708', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5d536010-1b70-44c0-a446-18d411fa57a2', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001377', 'rdfs:label': '6.4', 'dcterms:title': 'Method(s) of sterilization', 'hasTest': ['http://smart.iec.ch/test/88032975-6f29-4875-8194-81102968bc15'], 'trans:checksum': '70e45e7345a375a62ae4256b9f6989aa5eeb695c3d92e8a5150ad4d9f39af42e', 'withinClause': 'http://smart.iec.ch/clause/27ead2b8-d2b7-4667-afdb-72d3e7466708', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1eff4ab8-f4a9-4862-9ac4-b06d71e1a1b6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001388', 'rdfs:label': '6.5', 'dcterms:title': 'Suitability for use in an OXYGEN RICH ENVIRONMENT', 'hasTest': ['http://smart.iec.ch/test/b039fc61-99fe-44e4-ac07-cd6cc80b930e'], 'trans:checksum': 'd3ec4cd0f6cf04519b69028051c5ee4640af2ddc4603607c693fb3b4d3bb6670', 'withinClause': 'http://smart.iec.ch/clause/27ead2b8-d2b7-4667-afdb-72d3e7466708', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d3ef3a59-26d5-408b-bb95-8747e6e2f645', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001391', 'rdfs:label': '6.6', 'dcterms:title': 'Mode of operation', 'hasTest': ['http://smart.iec.ch/test/2c7586dc-bf4d-4d69-9bb7-f909b078fa4b'], 'trans:checksum': 'ee163e54c5b10b8bbd014efcbd49e40ac0381a62ca8e9522f2f821f501f7a577', 'withinClause': 'http://smart.iec.ch/clause/27ead2b8-d2b7-4667-afdb-72d3e7466708', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b5c22e5e-e94e-4649-a761-2e06aa287135', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001394', 'rdfs:label': '7', 'dcterms:title': 'ME EQUIPMENT identification, marking and documents', 'comprisesClause': ['http://smart.iec.ch/clause/65a960d1-0bd1-4e4f-a802-371e39d5c5fb', 'http://smart.iec.ch/clause/e1b16284-4c4d-482a-a937-10081d7722e3', 'http://smart.iec.ch/clause/bc2e819c-bd4a-4d99-ab2b-c7a892699529', 'http://smart.iec.ch/clause/3d8ade37-e838-4b3f-b727-96bd4fae26d3', 'http://smart.iec.ch/clause/e8e62d73-afed-463c-abca-5d4f37f4e4ea', 'http://smart.iec.ch/clause/d07ccbf4-bdcf-4c15-9877-66d34ea2d4ff', 'http://smart.iec.ch/clause/4fb3d15f-507c-4fc7-8e03-a766b7c8f334', 'http://smart.iec.ch/clause/1e89171b-ab65-4795-8c4e-90df0068a338', 'http://smart.iec.ch/clause/12c6d772-afd4-4203-a9a4-650c850190f5'], 'trans:checksum': '5656084ec6bb66f8e1b368416707180573716ad71b562c9fe4f07127292f74ec', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d07ccbf4-bdcf-4c15-9877-66d34ea2d4ff', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001399', 'rdfs:label': '7.1', 'dcterms:title': 'General', 'comprisesClause': ['http://smart.iec.ch/clause/bc722f88-5c66-4c36-8824-339e846eb14a', 'http://smart.iec.ch/clause/1e7475a2-a51b-4cf6-b762-461a7dacd90a', 'http://smart.iec.ch/clause/0d95542b-5ee3-49fe-bc43-8dda690b3de9'], 'trans:checksum': 'cc27464a5fe36e1e067fbcc77aa13b4ca02b9271c67c3ad62cd614bbc3ed451f', 'withinClause': 'http://smart.iec.ch/clause/b5c22e5e-e94e-4649-a761-2e06aa287135', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/bc722f88-5c66-4c36-8824-339e846eb14a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001400', 'rdfs:label': '7.1.1', 'dcterms:title': 'USABILITY of the identification, marking and documents', 'trans:checksum': 'c3e0308754bc3b2587feeccd8b39e1bf64380e09e9a5e85d36960c174b7ecad0', 'withinClause': 'http://smart.iec.ch/clause/d07ccbf4-bdcf-4c15-9877-66d34ea2d4ff', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1e7475a2-a51b-4cf6-b762-461a7dacd90a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001406', 'rdfs:label': '7.1.2', 'dcterms:title': 'Legibility of markings', 'hasTest': ['http://smart.iec.ch/test/b489f3af-9dc5-4f34-a3e4-aaa18f6d5d66'], 'hasMeasurement': ['http://smart.iec.ch/measurement/c3e7ccd0-84ba-49d4-8571-5870b066c77c'], 'trans:checksum': 'e38dabb9e86db9d9712db2fbbb85a938f94b1edc1d029d7f532573df0d5bcf49', 'withinClause': 'http://smart.iec.ch/clause/d07ccbf4-bdcf-4c15-9877-66d34ea2d4ff', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0d95542b-5ee3-49fe-bc43-8dda690b3de9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001428', 'rdfs:label': '7.1.3', 'dcterms:title': 'Durability of markings', 'hasTest': ['http://smart.iec.ch/test/13c3f3f9-7043-4d1a-b438-52a021cb65e2'], 'hasMeasurement': ['http://smart.iec.ch/measurement/28aa8f1f-f7a4-429d-9eeb-4ade728b2040'], 'trans:checksum': '0d56dd7c95a10ee5515b85aadf7fc268e6808a7ef8495f790a10ea9a074bc495', 'withinClause': 'http://smart.iec.ch/clause/d07ccbf4-bdcf-4c15-9877-66d34ea2d4ff', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e8e62d73-afed-463c-abca-5d4f37f4e4ea', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001447', 'rdfs:label': '7.2', 'dcterms:title': 'Marking on the outside of ME EQUIPMENT or ME EQUIPMENT parts (see also Table C.1)', 'hasTest': ['http://smart.iec.ch/test/3516f8ae-faed-4144-86ea-7fe730cb0ac2'], 'comprisesClause': ['http://smart.iec.ch/clause/8ed5fabd-fbe1-4ebb-9ab3-4c01e54360a7', 'http://smart.iec.ch/clause/459e479b-7c06-4a90-af9a-76039c360cec', 'http://smart.iec.ch/clause/40542192-61b9-4a72-a219-51e6c633124b', 'http://smart.iec.ch/clause/70c12f67-83e8-4b0e-911a-80def951f024', 'http://smart.iec.ch/clause/daf4a015-f4e6-46a3-9dea-88e5c855fa50', 'http://smart.iec.ch/clause/a80f1129-86da-41a5-b0f5-506bf7c45b30', 'http://smart.iec.ch/clause/b8f19cb3-0c43-46eb-9b43-ac42883dceda', 'http://smart.iec.ch/clause/323c4a0e-0466-4763-a183-21a4c14c1ecb', 'http://smart.iec.ch/clause/0fdc0b30-8fdf-46d4-a12d-8e1f9d832873', 'http://smart.iec.ch/clause/d0afe8eb-57ef-4ff6-9931-c91235d3ead4', 'http://smart.iec.ch/clause/38f6f6f4-ea70-466a-b277-4e9cefc7c671', 'http://smart.iec.ch/clause/f80ac993-84c9-41d4-b283-f6fb0fdc20f5', 'http://smart.iec.ch/clause/b3456b1f-105f-491c-8094-f3f956a1e6da', 'http://smart.iec.ch/clause/930b80f0-60fc-46d9-af37-4b2c29b03b1c', 'http://smart.iec.ch/clause/1daf5927-044a-43af-b80a-b022fb904c2e', 'http://smart.iec.ch/clause/420ce58d-ece4-4eb9-a9cd-3285ed4ca8c4', 'http://smart.iec.ch/clause/bda84709-5915-417e-955c-7456fd61c090', 'http://smart.iec.ch/clause/b9718b77-f84c-4eb7-b616-b2e5ac6fee35', 'http://smart.iec.ch/clause/5f715d42-1084-4f82-9536-16beb22495d0', 'http://smart.iec.ch/clause/08813a5a-1e7a-42df-8cd7-ec7e9cabaf09'], 'trans:checksum': 'eb46a7ff06a98ae1953a1559e23ba02271c0183371748d29c8ee61827ed542ec', 'withinClause': 'http://smart.iec.ch/clause/b5c22e5e-e94e-4649-a761-2e06aa287135', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b3456b1f-105f-491c-8094-f3f956a1e6da', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001448', 'rdfs:label': '7.2.1', 'dcterms:title': 'Minimum requirements for marking on ME EQUIPMENT and on interchangeable parts', 'hasTest': ['http://smart.iec.ch/test/21d1e309-20f4-4f46-af78-3ca87b7f2efa', 'http://smart.iec.ch/test/4de77ef2-ce1a-4eea-a0da-84639484fdf2', 'http://smart.iec.ch/test/a1c7dce5-17db-41cc-b6bd-b00e2616a570', 'http://smart.iec.ch/test/df3b9140-fde4-4c92-aee9-9daa81c2f2f8'], 'trans:checksum': 'b2f4c3b637d3b1748cdbd0069cc564890e9b4303c5f08cf91533cad9da6bd0fc', 'withinClause': 'http://smart.iec.ch/clause/e8e62d73-afed-463c-abca-5d4f37f4e4ea', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/70c12f67-83e8-4b0e-911a-80def951f024', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001454', 'rdfs:label': '7.2.2', 'dcterms:title': 'Identification', 'hasTest': ['http://smart.iec.ch/test/0d7f6462-a966-45d9-a514-2f755463e539', 'http://smart.iec.ch/test/24e6fa9a-5756-4d98-9023-c8f0cc247bea', 'http://smart.iec.ch/test/38dcc75e-2c03-42a1-8811-a48d70e6765b', 'http://smart.iec.ch/test/457f67b9-2508-495e-b869-fe0fa41f33e6', 'http://smart.iec.ch/test/46a73ba6-886a-498d-9c5a-8d06b78780c4', 'http://smart.iec.ch/test/4a1995f1-1b74-4717-81a9-4661262f0cdd', 'http://smart.iec.ch/test/4a465955-7b47-455e-b264-b0b340ed9624', 'http://smart.iec.ch/test/76666af1-8f92-4ce5-a5ac-67307d94a30c', 'http://smart.iec.ch/test/ba67b7aa-d5bd-4b7f-9a32-b49d2c1917a1', 'http://smart.iec.ch/test/e84bd5c9-c012-4855-bbe6-41dada05203a'], 'trans:checksum': '1bcec3aaf77faf9630bb0662757281470d15d74d2bbd4a7ba1bb9601872fdc9a', 'withinClause': 'http://smart.iec.ch/clause/e8e62d73-afed-463c-abca-5d4f37f4e4ea', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/40542192-61b9-4a72-a219-51e6c633124b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001461', 'rdfs:label': '7.2.3', 'dcterms:title': 'Consult ACCOMPANYING DOCUMENTS', 'hasTest': ['http://smart.iec.ch/test/286891ff-af93-4fda-83d8-640d9cd6d0bc', 'http://smart.iec.ch/test/47b6f72c-6ce6-4721-9f09-5092247ffaad'], 'trans:checksum': '7dea900b9d7f1cdf2ab8fa56a6ae67152e80bf06c1bef39d1c76d48646c11fdd', 'withinClause': 'http://smart.iec.ch/clause/e8e62d73-afed-463c-abca-5d4f37f4e4ea', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/459e479b-7c06-4a90-af9a-76039c360cec', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001466', 'rdfs:label': '7.2.4', 'dcterms:title': 'ACCESSORIES', 'hasTest': ['http://smart.iec.ch/test/3b40b14f-bfe8-4037-9bbc-1293194dcbb5', 'http://smart.iec.ch/test/8a5aa0f7-88ee-4b20-a1d7-d327472b3085', 'http://smart.iec.ch/test/b1a58feb-4ee0-4772-a6ca-34f0152f1fc1', 'http://smart.iec.ch/test/d5830699-a3b5-4906-93d6-7370c2fb6f8a', 'http://smart.iec.ch/test/d9768dae-9956-487e-8db7-c42ba8fa43d9'], 'trans:checksum': '03a54d41f1399d5af5af29ff990461327f526c2cc2f2b573ba08aa33367b4950', 'withinClause': 'http://smart.iec.ch/clause/e8e62d73-afed-463c-abca-5d4f37f4e4ea', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8ed5fabd-fbe1-4ebb-9ab3-4c01e54360a7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001470', 'rdfs:label': '7.2.5', 'dcterms:title': 'ME EQUIPMENT intended to receive power from other equipment', 'hasTest': ['http://smart.iec.ch/test/3f2e725f-9a76-4276-a3ee-6ba89f90cc31', 'http://smart.iec.ch/test/8330ada4-78a1-449d-a04c-65a34a85074b', 'http://smart.iec.ch/test/9df941b5-c2b9-4c4b-a555-e52bbaf6aee5', 'http://smart.iec.ch/test/b05f7aed-c6b3-4c6d-abe4-d7149250b96e'], 'trans:checksum': '86a7ad1bb08e9f17db109985d6abe0e0a00be70747cc57cbcd4beb1a50c503cf', 'withinClause': 'http://smart.iec.ch/clause/e8e62d73-afed-463c-abca-5d4f37f4e4ea', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/bda84709-5915-417e-955c-7456fd61c090', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001473', 'rdfs:label': '7.2.6', 'dcterms:title': 'Connection to the SUPPLY MAINS', 'hasTest': ['http://smart.iec.ch/test/05d47c05-e653-4457-86a1-b47f3c55edd2', 'http://smart.iec.ch/test/20cbf52a-974c-4d7f-a40c-9e9f636abc62', 'http://smart.iec.ch/test/501468e0-b7fa-46a8-8000-f8972dad758d', 'http://smart.iec.ch/test/acd2d0cd-5fd0-4f08-9a31-ac3b63644e4e', 'http://smart.iec.ch/test/d4744ac9-0eb0-48bb-8c69-4e85292e67cb', 'http://smart.iec.ch/test/e0e4c6d3-33b9-4de1-83f8-db4b3f9c5ac5', 'http://smart.iec.ch/test/eaa4dcd0-cb78-4bef-a037-ce0d88ac24a5', 'http://smart.iec.ch/test/ef76c4f2-2bde-43c1-966e-a19ad01c60dc'], 'trans:checksum': '6564f09c806e4e1cb5385a05f3bc1010899dbfebe1db30c4a09e4734bc1d0ff4', 'withinClause': 'http://smart.iec.ch/clause/e8e62d73-afed-463c-abca-5d4f37f4e4ea', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/323c4a0e-0466-4763-a183-21a4c14c1ecb', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001505', 'rdfs:label': '7.2.7', 'dcterms:title': 'Electrical input power from the SUPPLY MAINS', 'hasTest': ['http://smart.iec.ch/test/51d1f709-1a23-48a2-a7de-2f2d51b41b8a', 'http://smart.iec.ch/test/7b3fe086-25bc-49ce-9ed5-babe31254ffe', 'http://smart.iec.ch/test/7cbd6903-a04d-440b-9239-520f5a24884e', 'http://smart.iec.ch/test/83769dd2-2b4f-4151-a25a-08bbec98d1ad', 'http://smart.iec.ch/test/c2ee412d-7253-4e84-8fb2-9db415c9a8f3', 'http://smart.iec.ch/test/e7d4a8d7-fcdc-4d1a-9bf8-9749aab953f7'], 'trans:checksum': '24dd9fb1088a952dc6018faef29f6a7bad2243163fe9d3d90c37855d3748f3fe', 'withinClause': 'http://smart.iec.ch/clause/e8e62d73-afed-463c-abca-5d4f37f4e4ea', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5f715d42-1084-4f82-9536-16beb22495d0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001516', 'rdfs:label': '7.2.8', 'dcterms:title': 'Output connectors', 'comprisesClause': ['http://smart.iec.ch/clause/2e5551ea-f4d4-468c-8d86-1af9f8642a20', 'http://smart.iec.ch/clause/33ada667-3fa4-4540-a58b-c4cf0338d5cf'], 'trans:checksum': 'e639c830a9d05c63bf94572e33a808f0535681287e68d4627fcfd28b8be6509a', 'withinClause': 'http://smart.iec.ch/clause/e8e62d73-afed-463c-abca-5d4f37f4e4ea', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/33ada667-3fa4-4540-a58b-c4cf0338d5cf', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001517', 'rdfs:label': '7.2.8.1', 'dcterms:title': 'Mains power output', 'trans:checksum': '06d5e915f12214bcdbf127a0b1c0b7329776820cc9e6de721ac0238d4624e8d3', 'withinClause': 'http://smart.iec.ch/clause/5f715d42-1084-4f82-9536-16beb22495d0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2e5551ea-f4d4-468c-8d86-1af9f8642a20', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001520', 'rdfs:label': '7.2.8.2', 'dcterms:title': 'Other power sources', 'hasTest': ['http://smart.iec.ch/test/37fd98b7-797b-4ac2-92ed-76812d4d16ef', 'http://smart.iec.ch/test/d957f2e2-306a-45d0-9a99-df2bf74beee2', 'http://smart.iec.ch/test/dbd7ba6b-e01e-4a6a-8483-1140d75e2f2e'], 'trans:checksum': '39296624089062a618e83754df84e59fa5920c3bf33e7c9fd09e3c32b50af2e6', 'withinClause': 'http://smart.iec.ch/clause/5f715d42-1084-4f82-9536-16beb22495d0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a80f1129-86da-41a5-b0f5-506bf7c45b30', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001533', 'rdfs:label': '7.2.9', 'dcterms:title': 'IP classification', 'hasTest': ['http://smart.iec.ch/test/f6cbc041-a82b-4256-8d36-bdbc2a700c37'], 'trans:checksum': 'fd366700d28dfcbe981d91dc424803fee688e130b6ef7fe634e0dc56f4d9a08a', 'withinClause': 'http://smart.iec.ch/clause/e8e62d73-afed-463c-abca-5d4f37f4e4ea', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/08813a5a-1e7a-42df-8cd7-ec7e9cabaf09', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001538', 'rdfs:label': '7.2.10', 'dcterms:title': 'APPLIED PARTS', 'hasTest': ['http://smart.iec.ch/test/513ae402-6f8f-4204-9749-7e3a5ee715af', 'http://smart.iec.ch/test/91fd1431-2c86-4d61-acf4-b4b3ca3c8900', 'http://smart.iec.ch/test/9b5ad594-7e0b-42ab-8924-f1e85cfda0f3', 'http://smart.iec.ch/test/a3e4e3cf-10f6-47a2-8ece-de7ee0e94904', 'http://smart.iec.ch/test/b528b911-e013-4f86-804d-9e4fa7f58809', 'http://smart.iec.ch/test/c9d3006a-8d5c-4ff2-b7ca-28d160475c47', 'http://smart.iec.ch/test/dddfe094-1084-456d-8510-b9ed95814855', 'http://smart.iec.ch/test/f3446133-3268-4f8d-9a4d-b2940a5d2fe8'], 'trans:checksum': 'cc50ea2164517558486de5e6a672e6e69f05c94156c70c454f5185f5c2703519', 'withinClause': 'http://smart.iec.ch/clause/e8e62d73-afed-463c-abca-5d4f37f4e4ea', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/930b80f0-60fc-46d9-af37-4b2c29b03b1c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001559', 'rdfs:label': '7.2.11', 'dcterms:title': 'Mode of operation', 'hasTest': ['http://smart.iec.ch/test/3ce0c10e-3966-4ffe-874d-5b3b89b0bf7a', 'http://smart.iec.ch/test/be6854f0-8573-4124-8351-cd35bbe55086'], 'trans:checksum': 'c6690d2e06bb0fe297a0f88de155abc71d724d6184bc47671127f22c536fe00f', 'withinClause': 'http://smart.iec.ch/clause/e8e62d73-afed-463c-abca-5d4f37f4e4ea', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b9718b77-f84c-4eb7-b616-b2e5ac6fee35', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001563', 'rdfs:label': '7.2.12', 'dcterms:title': 'Fuses', 'hasTest': ['http://smart.iec.ch/test/1afa7ac7-6180-48eb-aefe-93396c97f744', 'http://smart.iec.ch/test/21309d3f-5383-4558-a9d9-5f4994b5a1a8', 'http://smart.iec.ch/test/3ef32d71-26d4-45a6-9c31-69a0bd774476', 'http://smart.iec.ch/test/e154b22c-6f68-4cfb-aafa-d6b701dbc2a8'], 'trans:checksum': 'fbdc66b67b7f45a5382f3ebe6bc4b23344655644784ee231476436da9c47f244', 'withinClause': 'http://smart.iec.ch/clause/e8e62d73-afed-463c-abca-5d4f37f4e4ea', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0fdc0b30-8fdf-46d4-a12d-8e1f9d832873', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001566', 'rdfs:label': '7.2.13', 'dcterms:title': 'Physiological effects (safety signs and warning statements)', 'hasTest': ['http://smart.iec.ch/test/4c0fb8b8-ef59-4f6c-9094-ea44877d0f76', 'http://smart.iec.ch/test/ef1d04a0-6e0f-4094-b977-bc24524824f3'], 'trans:checksum': '7d25f12e75abf0f5924d171ad865817029aa46ee43096decd608af30b7b0c29a', 'withinClause': 'http://smart.iec.ch/clause/e8e62d73-afed-463c-abca-5d4f37f4e4ea', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/38f6f6f4-ea70-466a-b277-4e9cefc7c671', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001572', 'rdfs:label': '7.2.14', 'dcterms:title': 'HIGH VOLTAGE TERMINAL DEVICES', 'hasTest': ['http://smart.iec.ch/test/1ab0c6db-2e15-4dbd-b14b-9f279317f876'], 'trans:checksum': 'dbb29a416a40b4a26868c71cebf6d089c2ff3d04fdeafaa3e3180662fb9e4e81', 'withinClause': 'http://smart.iec.ch/clause/e8e62d73-afed-463c-abca-5d4f37f4e4ea', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/f80ac993-84c9-41d4-b283-f6fb0fdc20f5', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001575', 'rdfs:label': '7.2.15', 'dcterms:title': 'Cooling conditions', 'hasTest': ['http://smart.iec.ch/test/fc268ae2-feab-4558-a049-d3a17814b749'], 'trans:checksum': '0eb7e0b3cb0ff53b8dd9a0746f73855bf91d86e641adf5055cec5617af6b94c3', 'withinClause': 'http://smart.iec.ch/clause/e8e62d73-afed-463c-abca-5d4f37f4e4ea', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b8f19cb3-0c43-46eb-9b43-ac42883dceda', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001578', 'rdfs:label': '7.2.16', 'dcterms:title': 'Mechanical stability', 'trans:checksum': 'fd546ddf37b031667e3df631b44021e739622c15bca0d7d0610aec6422af4752', 'withinClause': 'http://smart.iec.ch/clause/e8e62d73-afed-463c-abca-5d4f37f4e4ea', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/daf4a015-f4e6-46a3-9dea-88e5c855fa50', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001581', 'rdfs:label': '7.2.17', 'dcterms:title': 'Protective packaging', 'hasTest': ['http://smart.iec.ch/test/3e396316-571a-4fa2-b19e-6827c24588d1', 'http://smart.iec.ch/test/74892490-deee-4f38-b759-f864cad66496', 'http://smart.iec.ch/test/ce5e4ba2-77d6-4d94-97c0-90d09208ac17', 'http://smart.iec.ch/test/e5fc800e-368f-498d-8fcd-b00111c2de70', 'http://smart.iec.ch/test/f6f70b62-8451-4b74-989b-1e3053563e52'], 'trans:checksum': '807e027302584bbfee018a4ad05d6d023a7b7185af48a9d632937609b3f5427f', 'withinClause': 'http://smart.iec.ch/clause/e8e62d73-afed-463c-abca-5d4f37f4e4ea', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1daf5927-044a-43af-b80a-b022fb904c2e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001594', 'rdfs:label': '7.2.18', 'dcterms:title': 'External pressure source', 'hasTest': ['http://smart.iec.ch/test/13673c4f-e16e-4401-91ae-ed470e82327f', 'http://smart.iec.ch/test/5058ceda-679a-4ade-9079-bca8e3f483f9'], 'trans:checksum': 'a1c363b1b91956e8822478ea29f808811f3b3f5cdec607c4eab62965453946ed', 'withinClause': 'http://smart.iec.ch/clause/e8e62d73-afed-463c-abca-5d4f37f4e4ea', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/420ce58d-ece4-4eb9-a9cd-3285ed4ca8c4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001597', 'rdfs:label': '7.2.19', 'dcterms:title': 'FUNCTIONAL EARTH TERMINALS', 'hasTest': ['http://smart.iec.ch/test/17678c27-e415-4f75-88a1-79d34ef11e25'], 'trans:checksum': 'ebe07fd937b45018b9c46f9082e6a3b4742a50b004777ec2713f5422b72ada67', 'withinClause': 'http://smart.iec.ch/clause/e8e62d73-afed-463c-abca-5d4f37f4e4ea', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d0afe8eb-57ef-4ff6-9931-c91235d3ead4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001600', 'rdfs:label': '7.2.20', 'dcterms:title': 'Removable protective means', 'hasTest': ['http://smart.iec.ch/test/055c5b0d-1602-46e2-bc4d-cbfd7e5b0ebb', 'http://smart.iec.ch/test/3469ef3b-13bd-4eb2-900c-f7f0c1220ccb'], 'trans:checksum': 'f05d54df1678cbf5065bc4315e902c2118a143755b4a49dd9b4c3826f7d02d1e', 'withinClause': 'http://smart.iec.ch/clause/e8e62d73-afed-463c-abca-5d4f37f4e4ea', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e1b16284-4c4d-482a-a937-10081d7722e3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001605', 'rdfs:label': '7.3', 'dcterms:title': 'Marking on the inside of ME EQUIPMENT or ME EQUIPMENT parts (see also Table C.2)', 'hasTest': ['http://smart.iec.ch/test/ba87f8e3-5f6c-4df9-815c-508b77500b58'], 'comprisesClause': ['http://smart.iec.ch/clause/ef52c24f-de4e-4deb-a2d3-af7c5e95408d', 'http://smart.iec.ch/clause/5e61334f-4f11-471b-8cf0-a4d87a4882ab', 'http://smart.iec.ch/clause/7d963cf9-b0b0-4461-aacc-26662a05a0b1', 'http://smart.iec.ch/clause/64757a9c-4dbd-4273-a271-69fac3d6b44f', 'http://smart.iec.ch/clause/6ea779db-0071-4374-8e96-b9239d1a33f3', 'http://smart.iec.ch/clause/4d230b62-408c-43fd-a7d4-d9631a210fd7', 'http://smart.iec.ch/clause/a30646e1-ec7c-45d7-878e-e4469a70bb1e', 'http://smart.iec.ch/clause/57725309-632c-4166-a113-0b015e72aea3'], 'trans:checksum': 'e749ca66052e81d9c26d8fa94003f12aeb5c16efe1544ef73b251b49f76b16d3', 'withinClause': 'http://smart.iec.ch/clause/b5c22e5e-e94e-4649-a761-2e06aa287135', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4d230b62-408c-43fd-a7d4-d9631a210fd7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001606', 'rdfs:label': '7.3.1', 'dcterms:title': 'Heating elements or lampholders', 'hasTest': ['http://smart.iec.ch/test/66ac1856-85fd-4882-aadc-6aa63721c6ec', 'http://smart.iec.ch/test/d6f3fde7-9721-43ba-9003-b2c288d1daaa'], 'trans:checksum': '8b199d4e9fd1c1a99fa57fdef0a57bdfe949b3d5371bae6e7e37dc10f97ed5cf', 'withinClause': 'http://smart.iec.ch/clause/e1b16284-4c4d-482a-a937-10081d7722e3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ef52c24f-de4e-4deb-a2d3-af7c5e95408d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001611', 'rdfs:label': '7.3.2', 'dcterms:title': 'HIGH VOLTAGE parts', 'hasTest': ['http://smart.iec.ch/test/c11ce1a3-e60c-4f2b-9b81-565f6783cfba'], 'trans:checksum': '4d33e38f051e8b62c2181953930667da5bda779ed062a8d9a13ea6506fc7d3e9', 'withinClause': 'http://smart.iec.ch/clause/e1b16284-4c4d-482a-a937-10081d7722e3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7d963cf9-b0b0-4461-aacc-26662a05a0b1', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001615', 'rdfs:label': '7.3.3', 'dcterms:title': 'Batteries', 'hasTest': ['http://smart.iec.ch/test/100e9795-cc21-4638-af6d-0f19dda1662d', 'http://smart.iec.ch/test/9e06dd86-152d-45b8-a61c-6f75d86160bc', 'http://smart.iec.ch/test/bb28e8b0-ec71-47dd-a096-24d3f276c05f', 'http://smart.iec.ch/test/c3782393-8263-4ff2-b516-3445d6f506f8', 'http://smart.iec.ch/test/f993e879-75c5-42d9-8c81-397b675e1f21'], 'trans:checksum': 'c39a3426ee6a0cc084647544ae595d2467e68621be6780a4c05ecfce2cee10d2', 'withinClause': 'http://smart.iec.ch/clause/e1b16284-4c4d-482a-a937-10081d7722e3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/57725309-632c-4166-a113-0b015e72aea3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001622', 'rdfs:label': '7.3.4', 'dcterms:title': 'Fuses, THERMAL CUT-OUTS and OVER-CURRENT RELEASES', 'hasTest': ['http://smart.iec.ch/test/0f7a2677-1d9a-413c-9bf8-44ed09edb80a', 'http://smart.iec.ch/test/bd069ef2-1cbe-42bd-9e8a-020627158cd7', 'http://smart.iec.ch/test/db46327d-e824-4b32-a73e-52319817229c'], 'trans:checksum': 'a3c422882666ddd8a466634245dafeeb63694bad5e2c30591d24928e5b0feb5d', 'withinClause': 'http://smart.iec.ch/clause/e1b16284-4c4d-482a-a937-10081d7722e3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a30646e1-ec7c-45d7-878e-e4469a70bb1e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001625', 'rdfs:label': '7.3.5', 'dcterms:title': 'PROTECTIVE EARTH TERMINALS', 'hasTest': ['http://smart.iec.ch/test/724da114-cd60-4909-b5fc-dbd263c44a38', 'http://smart.iec.ch/test/fe13b445-2825-4cbf-9bc3-6ef70b95a581'], 'trans:checksum': 'f29bf9e52eff7c98a5acc3d0fac739bba2a44eef6d6f69477f2b7a8f6bc5bd43', 'withinClause': 'http://smart.iec.ch/clause/e1b16284-4c4d-482a-a937-10081d7722e3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6ea779db-0071-4374-8e96-b9239d1a33f3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001631', 'rdfs:label': '7.3.6', 'dcterms:title': 'FUNCTIONAL EARTH TERMINALS', 'hasTest': ['http://smart.iec.ch/test/46753be0-6da5-4828-b9f4-ca2891251704'], 'trans:checksum': 'cb9f105d17604f91824614bde4cf90f6644118123bdb0e7aa08cd01d0c7eca34', 'withinClause': 'http://smart.iec.ch/clause/e1b16284-4c4d-482a-a937-10081d7722e3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/64757a9c-4dbd-4273-a271-69fac3d6b44f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001634', 'rdfs:label': '7.3.7', 'dcterms:title': 'Supply terminals', 'hasTest': ['http://smart.iec.ch/test/41c4ba8d-60ac-4f7f-88cb-22b29aff18ef', 'http://smart.iec.ch/test/4c0105b7-79c3-4b3e-9a61-50943d63ab20', 'http://smart.iec.ch/test/5165e2f1-57c9-44bc-b730-e9aff8b29969', 'http://smart.iec.ch/test/8e8c4826-4a75-425c-be3b-9cf340fbddf6', 'http://smart.iec.ch/test/f4a21201-7a3e-4278-bdf4-d7dbddd4fdda'], 'trans:checksum': '0190364abb5094a091e3bf6652bedf1907588598db83aae5142002a400d24797', 'withinClause': 'http://smart.iec.ch/clause/e1b16284-4c4d-482a-a937-10081d7722e3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5e61334f-4f11-471b-8cf0-a4d87a4882ab', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001646', 'rdfs:label': '7.3.8', 'dcterms:title': 'Temperature of supply terminals', 'hasTest': ['http://smart.iec.ch/test/7222a713-b004-4d77-b234-96670392a196', 'http://smart.iec.ch/test/e617f336-06fd-49c6-81db-1a19e2c02aad'], 'trans:checksum': '6a9e7625a0f87c227cdbf0b93ca148e8c5d3b712117465502ed014329023fb3c', 'withinClause': 'http://smart.iec.ch/clause/e1b16284-4c4d-482a-a937-10081d7722e3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4fb3d15f-507c-4fc7-8e03-a766b7c8f334', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001659', 'rdfs:label': '7.4', 'dcterms:title': 'Marking of controls and instruments (see also Table C.3)', 'comprisesClause': ['http://smart.iec.ch/clause/93ff994d-dc6e-4cc9-b180-2d70e423b89b', 'http://smart.iec.ch/clause/33fdc72f-bc60-43a4-ac55-a50ea58782eb', 'http://smart.iec.ch/clause/a149d416-0325-4f7d-8be2-aeebb92db1a3'], 'trans:checksum': '0a48b2985388597a1fc977f871b4776ae9ca0d3de5024598b12c3f1d03632d4f', 'withinClause': 'http://smart.iec.ch/clause/b5c22e5e-e94e-4649-a761-2e06aa287135', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/93ff994d-dc6e-4cc9-b180-2d70e423b89b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001660', 'rdfs:label': '7.4.1', 'dcterms:title': 'Power switches', 'hasTest': ['http://smart.iec.ch/test/0d427e7b-49e6-4bbf-8a62-00f4d034cb13', 'http://smart.iec.ch/test/0e60b48a-944f-4bfa-ba68-23609eb13787', 'http://smart.iec.ch/test/18d0a364-dd57-4883-934b-1e3704c6a398', 'http://smart.iec.ch/test/33fec28e-5ed7-4ca4-8615-966db31c9212', 'http://smart.iec.ch/test/3f36cbb0-a3f4-4382-b48a-e1d1830bdcb6', 'http://smart.iec.ch/test/49f76a4e-76c8-4bc9-bbcd-9ebd9699a51f', 'http://smart.iec.ch/test/531e779a-088b-4448-90b4-f299b9db9a58', 'http://smart.iec.ch/test/bc36c38c-1607-4425-a872-3c2b1f602277', 'http://smart.iec.ch/test/d03db1ae-feca-451d-a85c-79fcc6bd9c46', 'http://smart.iec.ch/test/e0891137-1108-4163-96a5-73233e8370bf', 'http://smart.iec.ch/test/e28b78e2-341e-4bd2-b7b4-9e158a0cb10c', 'http://smart.iec.ch/test/ecab3939-620c-4345-8b57-76eabb068c0d', 'http://smart.iec.ch/test/ee48d3f2-6a6d-40e3-83d4-58af24fbd9c5', 'http://smart.iec.ch/test/fa0e2384-6053-4774-81b7-11cbaf0652b7'], 'trans:checksum': 'd6714771a10b6493531267f191aea444f2fa928fca875aa64706f0b6dc5fefc9', 'withinClause': 'http://smart.iec.ch/clause/4fb3d15f-507c-4fc7-8e03-a766b7c8f334', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/33fdc72f-bc60-43a4-ac55-a50ea58782eb', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001697', 'rdfs:label': '7.4.2', 'dcterms:title': 'Control devices', 'hasTest': ['http://smart.iec.ch/test/0b1a2442-c79c-4454-9b1b-3902c91ddb64', 'http://smart.iec.ch/test/5fbe86d9-d5b8-407a-a0fe-d9c62385bf50', 'http://smart.iec.ch/test/8bf91092-1c77-4d3a-be9e-d12381c42cac', 'http://smart.iec.ch/test/e154380a-1a4c-41d1-b3ae-5b4d4dfd7b5d'], 'trans:checksum': '7df77fbb78720d9c95a2863c714bb461dce9ddf133bca8a361c1230ebde71f50', 'withinClause': 'http://smart.iec.ch/clause/4fb3d15f-507c-4fc7-8e03-a766b7c8f334', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a149d416-0325-4f7d-8be2-aeebb92db1a3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001710', 'rdfs:label': '7.4.3', 'dcterms:title': 'Units of measure', 'hasTest': ['http://smart.iec.ch/test/1dfd2f17-b0a3-464f-a8d9-a613a86dfde0', 'http://smart.iec.ch/test/4e1fd08a-3001-4f5f-b532-179d91996e10', 'http://smart.iec.ch/test/4f32f8cb-b1ae-4cb7-8766-ad8e5dfae9d0'], 'trans:checksum': 'f78501987ac3a4ab387c30e8980164e5dbcfdc23485668dddce2643cc3427538', 'withinClause': 'http://smart.iec.ch/clause/4fb3d15f-507c-4fc7-8e03-a766b7c8f334', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3d8ade37-e838-4b3f-b727-96bd4fae26d3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001720', 'rdfs:label': '7.5', 'dcterms:title': 'Safety signs', 'hasTest': ['http://smart.iec.ch/test/003c1ad2-0df7-4b87-8588-79ed0f11e213', 'http://smart.iec.ch/test/042fe037-c24f-4725-b037-a6e9a21a3dcc', 'http://smart.iec.ch/test/3a0420b3-4947-4e2e-ab64-01f282cf29ff', 'http://smart.iec.ch/test/59ffb367-eaf7-4808-9127-6f6770b797ae', 'http://smart.iec.ch/test/5eed5fda-4895-4038-a069-c9af7370c4d9', 'http://smart.iec.ch/test/ad8a2251-28f8-4b91-aac7-86ec65ca30d4', 'http://smart.iec.ch/test/c40efdd3-2560-4220-8e7b-f96902395c50'], 'trans:checksum': 'aad429388a30f3505a1bf2e0e270a7cda716471e5563198c43a42abc69649346', 'withinClause': 'http://smart.iec.ch/clause/b5c22e5e-e94e-4649-a761-2e06aa287135', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/bc2e819c-bd4a-4d99-ab2b-c7a892699529', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001753', 'rdfs:label': '7.6', 'dcterms:title': 'Symbols', 'comprisesClause': ['http://smart.iec.ch/clause/cd2c4112-aef8-4235-9f11-b3833180d8b5', 'http://smart.iec.ch/clause/9db5fe17-322a-46f9-a5dd-ac4cbea97f28', 'http://smart.iec.ch/clause/0605e8ef-b67b-48c4-ae64-fc02656f4e35'], 'trans:checksum': '79f542f955c0bb16278e7f13bb7f4460e1b8cada42e249584817f1cc2b10a7f3', 'withinClause': 'http://smart.iec.ch/clause/b5c22e5e-e94e-4649-a761-2e06aa287135', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9db5fe17-322a-46f9-a5dd-ac4cbea97f28', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001754', 'rdfs:label': '7.6.1', 'dcterms:title': 'Explanation of symbols', 'hasTest': ['http://smart.iec.ch/test/720afd9f-dacf-4be2-8dc9-bc1c4671ace8'], 'trans:checksum': '6ff114650df2ddb7c49d37d01200ef0e44c85a6e97b0b557897022dda588bf27', 'withinClause': 'http://smart.iec.ch/clause/bc2e819c-bd4a-4d99-ab2b-c7a892699529', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/cd2c4112-aef8-4235-9f11-b3833180d8b5', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001757', 'rdfs:label': '7.6.2', 'dcterms:title': 'Symbols from Annex D', 'trans:checksum': '34d3aa05b2da1205f7e5336fc5eca10fd427624a6d3228b0a8379efe71e51cff', 'withinClause': 'http://smart.iec.ch/clause/bc2e819c-bd4a-4d99-ab2b-c7a892699529', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0605e8ef-b67b-48c4-ae64-fc02656f4e35', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001761', 'rdfs:label': '7.6.3', 'dcterms:title': 'Symbols for controls and performance', 'hasTest': ['http://smart.iec.ch/test/73aeeb64-d3e4-4433-92f6-9aedcc72c1d4'], 'trans:checksum': '8be4ca31013ffb920eb0504d2cb930acdfdf9f1f3a3724ebe119451f24b12765', 'withinClause': 'http://smart.iec.ch/clause/bc2e819c-bd4a-4d99-ab2b-c7a892699529', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/12c6d772-afd4-4203-a9a4-650c850190f5', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001769', 'rdfs:label': '7.7', 'dcterms:title': 'Colours of the insulation of conductors', 'comprisesClause': ['http://smart.iec.ch/clause/dff4a60a-2c6e-4bab-a346-d39bd62907cc', 'http://smart.iec.ch/clause/e7dfc373-a264-4e56-af95-5240c15e9a17', 'http://smart.iec.ch/clause/e2fadea4-6fcd-429a-8696-5b5f51c8b01a', 'http://smart.iec.ch/clause/5e605195-9863-4b02-9715-e3f84510523d', 'http://smart.iec.ch/clause/b9e90a85-badc-45d3-86fd-bd57af96d4e8'], 'trans:checksum': '489594fab01edffea209ce075e3c65f5eb572410cb2ae2ada243b90247ed1f2f', 'withinClause': 'http://smart.iec.ch/clause/b5c22e5e-e94e-4649-a761-2e06aa287135', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e7dfc373-a264-4e56-af95-5240c15e9a17', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001770', 'rdfs:label': '7.7.1', 'dcterms:title': 'PROTECTIVE EARTH CONDUCTORS', 'hasTest': ['http://smart.iec.ch/test/5470588d-6ed0-42b8-bc57-fa366070c232'], 'trans:checksum': 'b3022fe80a66d8312f35ac8d424633a27540069c03d80410fedb73481546d78c', 'withinClause': 'http://smart.iec.ch/clause/12c6d772-afd4-4203-a9a4-650c850190f5', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/dff4a60a-2c6e-4bab-a346-d39bd62907cc', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001773', 'rdfs:label': '7.7.2', 'dcterms:title': 'PROTECTIVE EARTH CONNECTIONS', 'hasTest': ['http://smart.iec.ch/test/2f40a177-39e6-4abf-8142-dc7016b7e48a'], 'trans:checksum': '3e354c92719385cc360730a89265724b5f25275a0e8d61e48fbbaf8400edbcb9', 'withinClause': 'http://smart.iec.ch/clause/12c6d772-afd4-4203-a9a4-650c850190f5', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5e605195-9863-4b02-9715-e3f84510523d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001778', 'rdfs:label': '7.7.3', 'dcterms:title': 'Green and yellow insulation', 'hasTest': ['http://smart.iec.ch/test/16edee90-028d-4aa5-b599-cfe6fb62f245', 'http://smart.iec.ch/test/39471465-7623-4adf-80be-58145b6d4b4a', 'http://smart.iec.ch/test/646f0e16-98fd-4935-b8e6-fda1eb97fc90'], 'trans:checksum': 'e2151919c6e371666f8b4ea25553fdf42b05afa94677967a25c69033dff6b6c7', 'withinClause': 'http://smart.iec.ch/clause/12c6d772-afd4-4203-a9a4-650c850190f5', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e2fadea4-6fcd-429a-8696-5b5f51c8b01a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001794', 'rdfs:label': '7.7.4', 'dcterms:title': 'Neutral conductor', 'hasTest': ['http://smart.iec.ch/test/69055944-86f9-4041-87eb-5668bd52acbc'], 'trans:checksum': '85f95bca1130fbc464b80ac9a496e9134a8b25a9ab47f7ec09f373e19b0420f0', 'withinClause': 'http://smart.iec.ch/clause/12c6d772-afd4-4203-a9a4-650c850190f5', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b9e90a85-badc-45d3-86fd-bd57af96d4e8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001797', 'rdfs:label': '7.7.5', 'dcterms:title': 'POWER SUPPLY CORD conductors', 'hasTest': ['http://smart.iec.ch/test/78b719ed-6efe-4c7f-b054-dea2f127c338'], 'trans:checksum': 'c189c64fb6166f8e00c2769a87555176b94491a6ae8f3d69c2b28601435aa7e5', 'withinClause': 'http://smart.iec.ch/clause/12c6d772-afd4-4203-a9a4-650c850190f5', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1e89171b-ab65-4795-8c4e-90df0068a338', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001802', 'rdfs:label': '7.8', 'dcterms:title': 'Indicator lights and controls', 'comprisesClause': ['http://smart.iec.ch/clause/05855f26-5e93-4e41-862e-b33378779ac0', 'http://smart.iec.ch/clause/7b060f62-59a0-4888-91cc-21fd69a90470'], 'trans:checksum': '57fe66c0c58a3c5028a6e8db0d4235f933c550b037fad2464638f227332f247b', 'withinClause': 'http://smart.iec.ch/clause/b5c22e5e-e94e-4649-a761-2e06aa287135', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7b060f62-59a0-4888-91cc-21fd69a90470', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001803', 'rdfs:label': '7.8.1', 'dcterms:title': 'Colours of indicator lights', 'hasTest': ['http://smart.iec.ch/test/00b7a52f-7505-4744-8149-c0ffebe15231', 'http://smart.iec.ch/test/2410bf04-f1e5-47b1-9526-70e5de98692f', 'http://smart.iec.ch/test/6fd8c1fc-4ccd-41c2-aef1-56e95986aac8', 'http://smart.iec.ch/test/9dc5f1ad-0e3a-412d-b7fa-1eecbdb73c79', 'http://smart.iec.ch/test/9e47a42f-b859-4888-bde6-2d3933274e05', 'http://smart.iec.ch/test/b88635e9-b1bb-439d-8c01-ee68dba3de89', 'http://smart.iec.ch/test/bfaf3fbf-fdf3-4d9a-8a8f-daec00b521bb'], 'trans:checksum': '6c045a73020ddbba6589c68c2cb4f1f00f7e414ddb9d0ce413cf74df414fe345', 'withinClause': 'http://smart.iec.ch/clause/1e89171b-ab65-4795-8c4e-90df0068a338', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/05855f26-5e93-4e41-862e-b33378779ac0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001815', 'rdfs:label': '7.8.2', 'dcterms:title': 'Colours of controls', 'hasTest': ['http://smart.iec.ch/test/b8dc8d70-aae9-45f7-8423-18659a13e4a2'], 'trans:checksum': '1e702ed9893abf2a233d9a16b4c3ec2312c6314d246ec1c4037774aadb65d4cf', 'withinClause': 'http://smart.iec.ch/clause/1e89171b-ab65-4795-8c4e-90df0068a338', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/65a960d1-0bd1-4e4f-a802-371e39d5c5fb', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001820', 'rdfs:label': '7.9', 'dcterms:title': 'ACCOMPANYING DOCUMENTS', 'comprisesClause': ['http://smart.iec.ch/clause/9f1073b8-bea4-4140-a925-a4ac20caef33', 'http://smart.iec.ch/clause/b01b3484-ea00-43b3-b351-d2bc2a851544', 'http://smart.iec.ch/clause/01ec4e75-7947-4efb-994a-d2e5660bb9fc'], 'trans:checksum': 'dae2012b03ec1dd4569b7ee256d866f041236376d967cd7131aa8b60b2da932e', 'withinClause': 'http://smart.iec.ch/clause/b5c22e5e-e94e-4649-a761-2e06aa287135', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b01b3484-ea00-43b3-b351-d2bc2a851544', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001821', 'rdfs:label': '7.9.1', 'dcterms:title': 'General (see also Table C.4)', 'hasTest': ['http://smart.iec.ch/test/1abf8c56-8296-4fa3-8104-bd92aec20684', 'http://smart.iec.ch/test/1e51e5b4-458b-4816-a651-647fe6c833fc', 'http://smart.iec.ch/test/811c1f59-8500-46db-a53e-43e91215b678', 'http://smart.iec.ch/test/90d14fc1-ef33-4242-9930-70399e33a754', 'http://smart.iec.ch/test/adefa843-27f2-4e1d-bd66-f2e0e125c475', 'http://smart.iec.ch/test/cbe4c31f-2ac4-4c86-84e2-c83510a318c4', 'http://smart.iec.ch/test/e96b686a-201a-4896-90e4-c2de8ef9bf66'], 'trans:checksum': '2c6d98decd39d45c1416647866c510593c999ae9c7ac14f9a3f775f1ef007be8', 'withinClause': 'http://smart.iec.ch/clause/65a960d1-0bd1-4e4f-a802-371e39d5c5fb', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9f1073b8-bea4-4140-a925-a4ac20caef33', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001845', 'rdfs:label': '7.9.2', 'dcterms:title': 'Instructions for use (see also Table C.5)', 'hasTest': ['http://smart.iec.ch/test/915b60fd-1053-410f-9361-62534a9bbb5c'], 'comprisesClause': ['http://smart.iec.ch/clause/8d0b72c1-ce43-4130-aa2f-ce0be7b5c65a', 'http://smart.iec.ch/clause/0cd43816-8e26-4f34-9ef9-35ad6afd4259', 'http://smart.iec.ch/clause/1cf84b5c-b837-4930-b3d4-ce19cc1bb529', 'http://smart.iec.ch/clause/b9b41e04-6e51-45f4-9a21-48e82fa6e77e', 'http://smart.iec.ch/clause/94b285db-55a7-469e-8bf5-3ddc5b441686', 'http://smart.iec.ch/clause/bd0b2001-a588-43a7-a9a7-8ee9f87e3659', 'http://smart.iec.ch/clause/3f43f2b5-e93d-431e-9845-e74d90ce149e', 'http://smart.iec.ch/clause/97e4a7e6-172a-49a8-8208-3bee03991ce0', 'http://smart.iec.ch/clause/d1b59faf-5dff-43fc-9458-3fa241ba6c43', 'http://smart.iec.ch/clause/45be0565-93c4-4a25-a035-ad25362f75f3', 'http://smart.iec.ch/clause/86601c9b-73b1-4987-a964-a653c7502725', 'http://smart.iec.ch/clause/bfd620f4-2b29-49ad-878d-cf6e18b4162c', 'http://smart.iec.ch/clause/be3f8cc3-e864-4396-85b3-3877e3f7553c', 'http://smart.iec.ch/clause/b0522142-cf2d-4b4a-b7d5-b116ee4b41f8', 'http://smart.iec.ch/clause/aba201b1-cef7-49cd-928a-7b22eef7a117', 'http://smart.iec.ch/clause/5e760f96-7d2b-4e3d-a6cd-b23f3cc16aac'], 'trans:checksum': '7f70bfe9a19ec0e12609c27c4662fe91a82e8fce651a8f9f525ec3eac2d1f5e6', 'withinClause': 'http://smart.iec.ch/clause/65a960d1-0bd1-4e4f-a802-371e39d5c5fb', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/be3f8cc3-e864-4396-85b3-3877e3f7553c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001846', 'rdfs:label': '7.9.2.1', 'dcterms:title': 'General', 'hasTest': ['http://smart.iec.ch/test/0158ca5c-25be-4cba-84ca-5a16814dfd21', 'http://smart.iec.ch/test/1ede1b58-1ac1-4ec6-be3f-7f83ff1fdeac', 'http://smart.iec.ch/test/1f60a49a-954f-4dbe-a790-da7d788174f2', 'http://smart.iec.ch/test/4de80314-aa2a-4445-8602-f535fd25af8c', 'http://smart.iec.ch/test/5fbd401d-5b22-4e61-a941-fe697c370684', 'http://smart.iec.ch/test/645036ae-84e9-4b0f-91ca-695b9a09acb2', 'http://smart.iec.ch/test/7370f758-1967-4ef9-af6a-b421724c6766', 'http://smart.iec.ch/test/836e713c-bda8-4779-ad75-71810bbabf04', 'http://smart.iec.ch/test/ae702a16-9361-4d50-8e19-82ae20f5f47a', 'http://smart.iec.ch/test/c9dd90e7-5c20-47fe-aabf-95bed22107da', 'http://smart.iec.ch/test/d8ef5f71-cf3a-43a5-ab8c-177ac7c0e541', 'http://smart.iec.ch/test/e7dd09d9-4616-432c-a0c5-e3b4ed902014'], 'trans:checksum': 'c60737c81bd5ca811d3d1db284f6586c0546578039a2fdd6f9d0874553b5adcb', 'withinClause': 'http://smart.iec.ch/clause/9f1073b8-bea4-4140-a925-a4ac20caef33', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/97e4a7e6-172a-49a8-8208-3bee03991ce0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001867', 'rdfs:label': '7.9.2.2', 'dcterms:title': 'Warning and safety notices', 'hasTest': ['http://smart.iec.ch/test/51e0c826-9a0e-451e-822d-23b9d914fd99', 'http://smart.iec.ch/test/a003cc69-3489-441d-a716-7cacb64fd382', 'http://smart.iec.ch/test/b0d5ab3c-6d87-411a-b221-075cb2bd57c9', 'http://smart.iec.ch/test/d8489069-ae05-4bda-8732-64a8aee7c260', 'http://smart.iec.ch/test/df86bdbd-c427-4b92-a9e7-fcc1990c3749', 'http://smart.iec.ch/test/f31cca38-fb72-4ccc-b1e4-beafaca90372'], 'trans:checksum': 'b303283bcd88aa50187d40933cf95de48122ef1228bd394817bf71bcf939bf4c', 'withinClause': 'http://smart.iec.ch/clause/9f1073b8-bea4-4140-a925-a4ac20caef33', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3f43f2b5-e93d-431e-9845-e74d90ce149e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001881', 'rdfs:label': '7.9.2.3', 'dcterms:title': 'ME EQUIPMENT specified for connection to a separate power supply', 'hasTest': ['http://smart.iec.ch/test/67635001-f718-48b4-8f1c-6deb39c6e63b'], 'trans:checksum': '068380c3e588e2e77a153d3876553f63da34b8364b93c6618cfce27680d55c3e', 'withinClause': 'http://smart.iec.ch/clause/9f1073b8-bea4-4140-a925-a4ac20caef33', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0cd43816-8e26-4f34-9ef9-35ad6afd4259', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001885', 'rdfs:label': '7.9.2.4', 'dcterms:title': 'Electrical power source', 'hasTest': ['http://smart.iec.ch/test/2d9f79d8-4b2b-4726-9e89-386219475fad', 'http://smart.iec.ch/test/3b56f9c9-c9f0-4fc5-8bcb-8cd99e876f4b', 'http://smart.iec.ch/test/694f24d6-7508-41f8-89ff-52c49b471654', 'http://smart.iec.ch/test/7896f654-ee5f-4bee-8f4d-5f888e784f27', 'http://smart.iec.ch/test/949fc0aa-496c-452b-9d3f-04f72a8b08d2'], 'trans:checksum': 'eb2c7f645f6932994beda4c7753559f10a22e3d2964ad7b1ea6bebef0c7366f3', 'withinClause': 'http://smart.iec.ch/clause/9f1073b8-bea4-4140-a925-a4ac20caef33', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b9b41e04-6e51-45f4-9a21-48e82fa6e77e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001896', 'rdfs:label': '7.9.2.5', 'dcterms:title': 'ME EQUIPMENT description', 'hasTest': ['http://smart.iec.ch/test/3f42b51f-2df3-4ee5-8833-3be39af0ad29', 'http://smart.iec.ch/test/50170f17-f474-4c88-9d3b-bddf0c0007d1', 'http://smart.iec.ch/test/54901c51-2ef3-4e03-bc8b-6cae2c0c23bd', 'http://smart.iec.ch/test/dc115759-b5e2-4412-96b9-dfc0d80ce183'], 'trans:checksum': '3241e97006568e1999b122bfe5422144a6d934cba56989dcfcbe3ed28bb26b8f', 'withinClause': 'http://smart.iec.ch/clause/9f1073b8-bea4-4140-a925-a4ac20caef33', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d1b59faf-5dff-43fc-9458-3fa241ba6c43', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001917', 'rdfs:label': '7.9.2.6', 'dcterms:title': 'Installation', 'hasTest': ['http://smart.iec.ch/test/60812f95-1be5-4a29-82d1-f2de2c6b7ebf'], 'trans:checksum': 'a110153d43992252bd0b9944041b61b29d2edda113b8998b7d63db83961c4e00', 'withinClause': 'http://smart.iec.ch/clause/9f1073b8-bea4-4140-a925-a4ac20caef33', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/bd0b2001-a588-43a7-a9a7-8ee9f87e3659', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001927', 'rdfs:label': '7.9.2.7', 'dcterms:title': 'Isolation from the SUPPLY MAINS', 'hasTest': ['http://smart.iec.ch/test/8a0b3540-fab6-46e5-8deb-a7c6616f9ee2'], 'trans:checksum': 'dad7f6a3de8ab1c288a06b783059536079d338736a7fe13c17ddb4f657b7c127', 'withinClause': 'http://smart.iec.ch/clause/9f1073b8-bea4-4140-a925-a4ac20caef33', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1cf84b5c-b837-4930-b3d4-ce19cc1bb529', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001930', 'rdfs:label': '7.9.2.8', 'dcterms:title': 'Start-up PROCEDURE', 'hasTest': ['http://smart.iec.ch/test/d123e9ba-622b-4090-9ef5-406d85a05d0b'], 'trans:checksum': 'e4aad9e1eb927296b2dfea34461b661bc6f1507c4bd47f4eb433a52aedf30ec7', 'withinClause': 'http://smart.iec.ch/clause/9f1073b8-bea4-4140-a925-a4ac20caef33', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/86601c9b-73b1-4987-a964-a653c7502725', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001937', 'rdfs:label': '7.9.2.9', 'dcterms:title': 'Operating instructions', 'hasTest': ['http://smart.iec.ch/test/6bcc8ff4-9e5a-480f-9ceb-2897bc299eae', 'http://smart.iec.ch/test/a010b4d1-7453-4437-98ef-feff90771b1d'], 'trans:checksum': '605baa6f033dbf2e563f83f21e68753abf3963d0879de510d6a14635abc60699', 'withinClause': 'http://smart.iec.ch/clause/9f1073b8-bea4-4140-a925-a4ac20caef33', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8d0b72c1-ce43-4130-aa2f-ce0be7b5c65a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001943', 'rdfs:label': '7.9.2.10', 'dcterms:title': 'Messages', 'hasTest': ['http://smart.iec.ch/test/9ad3a5fd-0ad4-423b-8dbe-2a893a948954'], 'trans:checksum': '80af167384ca9d4707d2e17452dbd427a556b1ee4b4427a38a0ac2be08d609f2', 'withinClause': 'http://smart.iec.ch/clause/9f1073b8-bea4-4140-a925-a4ac20caef33', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5e760f96-7d2b-4e3d-a6cd-b23f3cc16aac', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001952', 'rdfs:label': '7.9.2.11', 'dcterms:title': 'Shutdown PROCEDURE', 'hasTest': ['http://smart.iec.ch/test/94a27c7f-81a1-47d0-8ecc-d5905926e89d'], 'trans:checksum': 'c8790c61861c5918aa6415c0a852899af4037304e55e168556ea4d6652605ad2', 'withinClause': 'http://smart.iec.ch/clause/9f1073b8-bea4-4140-a925-a4ac20caef33', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b0522142-cf2d-4b4a-b7d5-b116ee4b41f8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001955', 'rdfs:label': '7.9.2.12', 'dcterms:title': 'Cleaning, disinfection and sterilization', 'hasTest': ['http://smart.iec.ch/test/5cd564e7-c5d9-41de-afd8-1907ee16e6cb', 'http://smart.iec.ch/test/ba1abfd8-3b9c-4774-a2a2-caf373e644a6'], 'trans:checksum': '5ff06c0229eb367c0ee1766b48cee6ef0ef2348cc8eb31adbe4185a2735a5bda', 'withinClause': 'http://smart.iec.ch/clause/9f1073b8-bea4-4140-a925-a4ac20caef33', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/94b285db-55a7-469e-8bf5-3ddc5b441686', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001969', 'rdfs:label': '7.9.2.13', 'dcterms:title': 'Maintenance', 'hasTest': ['http://smart.iec.ch/test/14fdabcc-e86f-4622-9667-f00e7df723a4', 'http://smart.iec.ch/test/1b8f01ff-c674-42bd-af57-65cc5d3374a7', 'http://smart.iec.ch/test/50d2c511-c433-4cfb-b51f-ecba829d0de5', 'http://smart.iec.ch/test/ba77fa30-eac5-402b-9dda-c425d2c496d8'], 'trans:checksum': '3cbb93c1c98c2925df7555ba93a24eb0ae4bed16646ba80807759a16a6795350', 'withinClause': 'http://smart.iec.ch/clause/9f1073b8-bea4-4140-a925-a4ac20caef33', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/bfd620f4-2b29-49ad-878d-cf6e18b4162c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001978', 'rdfs:label': '7.9.2.14', 'dcterms:title': 'ACCESSORIES, supplementary equipment, used material', 'hasTest': ['http://smart.iec.ch/test/40de3007-5d01-4202-a762-7630293f3496', 'http://smart.iec.ch/test/966e6690-5bb5-481d-9bbe-aac00beffb70'], 'trans:checksum': '4e5276670defa0ce73b343d43a3eb5faedbd6c50b62b460622f963bf5939a478', 'withinClause': 'http://smart.iec.ch/clause/9f1073b8-bea4-4140-a925-a4ac20caef33', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/aba201b1-cef7-49cd-928a-7b22eef7a117', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001985', 'rdfs:label': '7.9.2.15', 'dcterms:title': 'Environmental protection', 'hasTest': ['http://smart.iec.ch/test/fd3beffe-1931-40fd-bea9-0317413b3068'], 'trans:checksum': '691c7e224aa42583a4c4e4edf6a8e8397f2d9fdd02e23ce68b2de0025dda48f7', 'withinClause': 'http://smart.iec.ch/clause/9f1073b8-bea4-4140-a925-a4ac20caef33', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/45be0565-93c4-4a25-a035-ad25362f75f3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000001995', 'rdfs:label': '7.9.2.16', 'dcterms:title': 'Reference to the technical description', 'hasTest': ['http://smart.iec.ch/test/1b3f8e65-0fe8-4a33-ba30-7c148f0f3aa0', 'http://smart.iec.ch/test/1f840870-cf14-482c-a59e-6c1dcfb921a4', 'http://smart.iec.ch/test/48262ec0-d571-4bfb-8ea2-9034b815a9b0', 'http://smart.iec.ch/test/7a912bdc-3b39-4b46-bb55-6c9e1f08e83e', 'http://smart.iec.ch/test/8eb6b0b0-0396-4826-9897-70fbbc1b6751'], 'trans:checksum': '2bb9b578dffd5b93b7e591ffce3f0ce7b2918f84b1b896eaa38c93f61ddc420c', 'withinClause': 'http://smart.iec.ch/clause/9f1073b8-bea4-4140-a925-a4ac20caef33', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/01ec4e75-7947-4efb-994a-d2e5660bb9fc', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002000', 'rdfs:label': '7.9.3', 'dcterms:title': 'Technical description (see also Table C.6)', 'hasTest': ['http://smart.iec.ch/test/14e1eafd-353f-4867-8c49-eb095ee368d0'], 'comprisesClause': ['http://smart.iec.ch/clause/51ded84c-185f-454e-8222-7b3d8b286038', 'http://smart.iec.ch/clause/061e7b50-d236-4ea9-91fa-fcc877f1349d', 'http://smart.iec.ch/clause/3a0b1669-28f2-46f7-a8b3-0a385e4a39e6', 'http://smart.iec.ch/clause/8fedfc14-9758-4c2f-a480-bda7c698d529'], 'trans:checksum': '760c3c6ce47b6b34fc1a625b13ad6956d620cd136b51ac0debde570d257d7cf5', 'withinClause': 'http://smart.iec.ch/clause/65a960d1-0bd1-4e4f-a802-371e39d5c5fb', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/061e7b50-d236-4ea9-91fa-fcc877f1349d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002001', 'rdfs:label': '7.9.3.1', 'dcterms:title': 'General', 'hasTest': ['http://smart.iec.ch/test/016c2b40-7911-4c81-a6c0-ec93c56c99b9', 'http://smart.iec.ch/test/0497c1ed-1e05-49be-a159-63d56742349c', 'http://smart.iec.ch/test/2aa51504-4fa0-40ac-8328-ecb427bc5719', 'http://smart.iec.ch/test/3269beca-d29d-403e-8520-8bb14991c89a', 'http://smart.iec.ch/test/450cb288-2100-4e55-b9ba-858444d1ce85', 'http://smart.iec.ch/test/4781f7f8-1923-4d51-9e19-a80fe0503736', 'http://smart.iec.ch/test/56497617-32ee-419d-88be-9d58aa50e791', 'http://smart.iec.ch/test/615387bd-c1b4-487c-9649-c06aaee933b5', 'http://smart.iec.ch/test/67513cca-d685-4c39-99b5-4f7bcb243605', 'http://smart.iec.ch/test/8af4f7dd-c791-43b0-9e80-12be426a25e6', 'http://smart.iec.ch/test/99fd8a6f-7e32-4e1d-80b1-42cf0f6d56a5', 'http://smart.iec.ch/test/b2b10bbb-ad30-4f66-8196-f7adfb188a72', 'http://smart.iec.ch/test/dada5308-1923-4910-ac25-e4a2b1ff17d6', 'http://smart.iec.ch/test/e64c1528-7c56-4898-849c-30f6f26db4b4', 'http://smart.iec.ch/test/fe2b9251-e783-4256-a42d-b90ef952a2e3'], 'trans:checksum': '0f08e5f3386e00d5c28a89781de25b11a9303868db60783ad0f2dfbca5875847', 'withinClause': 'http://smart.iec.ch/clause/01ec4e75-7947-4efb-994a-d2e5660bb9fc', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/51ded84c-185f-454e-8222-7b3d8b286038', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002057', 'rdfs:label': '7.9.3.2', 'dcterms:title': 'Replacement of fuses, POWER SUPPLY CORDS and other parts', 'hasTest': ['http://smart.iec.ch/test/33d1e0f6-af24-4f24-aaa0-0895fabef187', 'http://smart.iec.ch/test/3b416723-70d8-4d61-a1cf-7a5629e2a20d', 'http://smart.iec.ch/test/53c1b998-0255-4f31-8188-acedafa78b9f', 'http://smart.iec.ch/test/de6d3240-713c-4f03-8506-f9d7ae282b43', 'http://smart.iec.ch/test/fecc9a54-4eb0-421f-896f-12850e98970f', 'http://smart.iec.ch/test/ff10f1f6-5f60-4c06-9056-dee9fc5346d1'], 'trans:checksum': '8edcd748eef0af1b7bd667fbd18ecd34942c1eb4e537384d03695d3f4662fd61', 'withinClause': 'http://smart.iec.ch/clause/01ec4e75-7947-4efb-994a-d2e5660bb9fc', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8fedfc14-9758-4c2f-a480-bda7c698d529', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002073', 'rdfs:label': '7.9.3.3', 'dcterms:title': 'Circuit diagrams, component part lists, etc.', 'hasTest': ['http://smart.iec.ch/test/f619d979-b011-46f0-8c8c-fd44a803b341'], 'trans:checksum': '591168181b8bde8439e99ef524affa00075999e333a241fdbac792ead162f964', 'withinClause': 'http://smart.iec.ch/clause/01ec4e75-7947-4efb-994a-d2e5660bb9fc', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3a0b1669-28f2-46f7-a8b3-0a385e4a39e6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002076', 'rdfs:label': '7.9.3.4', 'dcterms:title': 'Mains isolation', 'hasTest': ['http://smart.iec.ch/test/2605d9a3-18d7-49f8-95a2-ff05973bda2e'], 'trans:checksum': 'ff315460881fa0d061ca6df1a8ffec57bb9f7501be9ffb1a17eeb400c71e0ac0', 'withinClause': 'http://smart.iec.ch/clause/01ec4e75-7947-4efb-994a-d2e5660bb9fc', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a64a90b2-648f-4b8d-b7bc-1f01290f204a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002081', 'rdfs:label': '8', 'dcterms:title': 'Protection against electrical HAZARDS from ME EQUIPMENT', 'comprisesClause': ['http://smart.iec.ch/clause/79bbae87-b7de-4828-bed9-10d49bc63f3e', 'http://smart.iec.ch/clause/3f9350d5-65f1-42a8-8f86-506c13de0a92', 'http://smart.iec.ch/clause/8e02f17f-ed58-4ea0-93a3-06e7e0f567d5', 'http://smart.iec.ch/clause/35342d78-a68b-4c8c-84e7-b1b1986bb775', 'http://smart.iec.ch/clause/7c436275-cc2a-495c-aae0-86bb44970a9d', 'http://smart.iec.ch/clause/72851989-8c37-4812-858a-77bf26983c99', 'http://smart.iec.ch/clause/33c88e28-e12e-4544-be58-6f047c3ca4d3', 'http://smart.iec.ch/clause/f732c822-1c30-45bb-994d-0b19c59e0eea', 'http://smart.iec.ch/clause/1858f172-c72a-4ff2-a289-84d9687faace', 'http://smart.iec.ch/clause/0f9f9ca5-c6ca-41ab-a33a-33797b86f9b9', 'http://smart.iec.ch/clause/d2fabde3-7a21-4979-8b1b-be0db60ba525', 'http://smart.iec.ch/clause/236df6c0-013f-449a-99ef-271b499e52b9'], 'trans:checksum': '36bd10ccc7b69faefa7f2973713aa5584aacbdcd1ccf540de3b988d73f7ef9c2', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d2fabde3-7a21-4979-8b1b-be0db60ba525', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002082', 'rdfs:label': '8.1', 'dcterms:title': 'Fundamental rule of protection against electric shock', 'hasTest': ['http://smart.iec.ch/test/205b62b5-d3be-40aa-9e4b-f8d58c19bafd', 'http://smart.iec.ch/test/564cf72d-8929-437e-83eb-73c5fc071a90'], 'trans:checksum': '0e5a19eb82b092303040a81f873dc3c7b91fff0820115ea2b047d14e8a3be9cc', 'withinClause': 'http://smart.iec.ch/clause/a64a90b2-648f-4b8d-b7bc-1f01290f204a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7c436275-cc2a-495c-aae0-86bb44970a9d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002141', 'rdfs:label': '8.2', 'dcterms:title': 'Requirements related to power sources', 'comprisesClause': ['http://smart.iec.ch/clause/9f50ad17-a75f-4549-8aff-14be5bb41706', 'http://smart.iec.ch/clause/f000e1b9-8fbc-45a5-8d49-1b212ba003f9'], 'trans:checksum': '75637f1bc5abc1c2c7e338c43ecadca31acadd4bb74e6ea86dc54ef9c54dc337', 'withinClause': 'http://smart.iec.ch/clause/a64a90b2-648f-4b8d-b7bc-1f01290f204a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/f000e1b9-8fbc-45a5-8d49-1b212ba003f9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002142', 'rdfs:label': '8.2.1', 'dcterms:title': 'Connection to a separate power source', 'hasTest': ['http://smart.iec.ch/test/515dcace-e544-4e69-8e0f-a1c0c04f5606', 'http://smart.iec.ch/test/709f600e-a531-40b5-8726-1f0fef2f3454', 'http://smart.iec.ch/test/9d2ba4c3-f3aa-4538-8dc4-b760c3d34a8c'], 'trans:checksum': 'ce90f9ce48eff0e7d25e9539dbf79ce5b06109f2af7c96e304020c44d262ce9e', 'withinClause': 'http://smart.iec.ch/clause/7c436275-cc2a-495c-aae0-86bb44970a9d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9f50ad17-a75f-4549-8aff-14be5bb41706', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002149', 'rdfs:label': '8.2.2', 'dcterms:title': 'Connection to an external d.c. power source', 'hasTest': ['http://smart.iec.ch/test/08c3bab3-04a4-4bcd-912f-d4e94ba7000e', 'http://smart.iec.ch/test/9d39ffd3-cb71-4ea6-8067-e290f5f5b762', 'http://smart.iec.ch/test/fc6ec37d-3b9d-4527-8086-00dfa1a960f8'], 'trans:checksum': '1fbf3aac85c081816f6da24d3c205335ccd194cbf29d8afac65640c7fe0c102b', 'withinClause': 'http://smart.iec.ch/clause/7c436275-cc2a-495c-aae0-86bb44970a9d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/f732c822-1c30-45bb-994d-0b19c59e0eea', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002158', 'rdfs:label': '8.3', 'dcterms:title': 'Classification of APPLIED PARTS', 'hasTest': ['http://smart.iec.ch/test/61ae45cd-4a4d-4faf-bcd5-b5a1a5f81b18', 'http://smart.iec.ch/test/a82769c4-0c27-4fed-ae27-6bc400be1ea6', 'http://smart.iec.ch/test/cf83b08a-30cb-4774-a316-f0138f87f26a'], 'trans:checksum': '7980e900592027a5b61a680ef1b466c68b39ab9361eb583f560992f0cb8ad128', 'withinClause': 'http://smart.iec.ch/clause/a64a90b2-648f-4b8d-b7bc-1f01290f204a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0f9f9ca5-c6ca-41ab-a33a-33797b86f9b9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002181', 'rdfs:label': '8.4', 'dcterms:title': 'Limitation of voltage, current or energy', 'comprisesClause': ['http://smart.iec.ch/clause/504d5507-e35a-4ca6-baea-388e81221c8e', 'http://smart.iec.ch/clause/ec94d811-8e62-4970-ab03-a3aa7106fac9', 'http://smart.iec.ch/clause/3b9d56ec-6597-429a-b2ff-4937534c8446', 'http://smart.iec.ch/clause/8893eedd-3109-4e26-9eae-c0718b69ad6d'], 'trans:checksum': 'c02bac3e370ccbb185cf69cf9b5a100066a04a713a9c061aa03a423280b9a6d1', 'withinClause': 'http://smart.iec.ch/clause/a64a90b2-648f-4b8d-b7bc-1f01290f204a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/504d5507-e35a-4ca6-baea-388e81221c8e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002182', 'rdfs:label': '8.4.1', 'dcterms:title': 'PATIENT CONNECTIONS intended to deliver current', 'trans:checksum': '9c02f698e44fb6d951709d36b51828db018b2139d77a4ed5ce9bf6e9f7199455', 'withinClause': 'http://smart.iec.ch/clause/0f9f9ca5-c6ca-41ab-a33a-33797b86f9b9', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3b9d56ec-6597-429a-b2ff-4937534c8446', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002185', 'rdfs:label': '8.4.2', 'dcterms:title': 'ACCESSIBLE PARTS including APPLIED PARTS', 'hasTest': ['http://smart.iec.ch/test/1171f08c-b830-419b-bc49-d3be960f9832', 'http://smart.iec.ch/test/2a9437cf-2336-4711-b3be-c48f198967db', 'http://smart.iec.ch/test/39d4fd2e-c966-43b3-95bf-cb2ce3f48791', 'http://smart.iec.ch/test/3c3b34e0-bc33-4d7f-a36a-9f5f7c4cb0f1', 'http://smart.iec.ch/test/3c4fd5ee-ac7a-463d-99c0-ba5d46c8e87e', 'http://smart.iec.ch/test/66dfb068-ca21-4e59-8bb1-d577be67185c', 'http://smart.iec.ch/test/68450d62-ee9c-4a32-a783-9e3ccc935d54', 'http://smart.iec.ch/test/6cdc2a80-60fb-4551-9df3-c8e1222919d9', 'http://smart.iec.ch/test/6ce3eda3-090c-4f4c-b5f5-86cbd0e2885e', 'http://smart.iec.ch/test/70ff885d-284b-4969-aa0b-21a8b52255c8', 'http://smart.iec.ch/test/8fe498f3-eb6b-4ab2-bd8e-888179214cb6', 'http://smart.iec.ch/test/c3f2047a-c8a8-4cc0-8bbd-c886b7a4d0e1', 'http://smart.iec.ch/test/cbd9d703-d2be-4069-aa85-6ba4462a60e8', 'http://smart.iec.ch/test/cc90968e-785c-4478-8fd8-e55f93bf5afe', 'http://smart.iec.ch/test/cfeb3a8b-ca10-40c3-a39e-7e3f32832a95', 'http://smart.iec.ch/test/f2e51886-1f22-425d-b8c7-eab65a34fa54'], 'hasMeasurement': ['http://smart.iec.ch/measurement/4e16bb1d-0c4b-4543-92d9-db73b251dfc5'], 'trans:checksum': 'e7b8ded824620fa32bd5ca9074edf155fc170c0e9b22ea826c559cc04fc638c8', 'withinClause': 'http://smart.iec.ch/clause/0f9f9ca5-c6ca-41ab-a33a-33797b86f9b9', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8893eedd-3109-4e26-9eae-c0718b69ad6d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002266', 'rdfs:label': '8.4.3', 'dcterms:title': 'ME EQUIPMENT intended to be connected to a power source by a plug', 'hasTest': ['http://smart.iec.ch/test/6d7f1561-b8cb-4998-ae73-1143b3617ae4', 'http://smart.iec.ch/test/ed17b908-ca9c-4235-85d4-ff23d4f7ab51'], 'hasMeasurement': ['http://smart.iec.ch/measurement/238e7634-baef-4ff0-a26a-135d4b7c73aa'], 'trans:checksum': '2abeea207484e298dd22508dc56044590c02173423998d53a737c35bd61ee764', 'withinClause': 'http://smart.iec.ch/clause/0f9f9ca5-c6ca-41ab-a33a-33797b86f9b9', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ec94d811-8e62-4970-ab03-a3aa7106fac9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002281', 'rdfs:label': '8.4.4', 'dcterms:title': 'Internal capacitive circuits', 'hasTest': ['http://smart.iec.ch/test/cbef73f8-5e31-494a-93d9-692a2a2f775b', 'http://smart.iec.ch/test/fa1f92ca-bb90-4559-b145-f4e5bc566b12', 'http://smart.iec.ch/test/fb7bc558-f8a5-4733-8be7-255351af9a00'], 'hasMeasurement': ['http://smart.iec.ch/measurement/d06c1a11-4b32-4cc7-a583-c6a3ab1fdca7'], 'trans:checksum': '5873dc7000097dcca5908e402a990ce05909df39de59ccd38ee4bf0f984ed5e3', 'withinClause': 'http://smart.iec.ch/clause/0f9f9ca5-c6ca-41ab-a33a-33797b86f9b9', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/79bbae87-b7de-4828-bed9-10d49bc63f3e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002293', 'rdfs:label': '8.5', 'dcterms:title': 'Separation of parts', 'comprisesClause': ['http://smart.iec.ch/clause/4628c54d-9fb7-4e16-beaa-0f2f3ce8c066', 'http://smart.iec.ch/clause/258cf01a-ba47-4b25-96f1-ed8efd48a6db', 'http://smart.iec.ch/clause/db57c645-131a-4bc6-8405-dd922cfcab3e', 'http://smart.iec.ch/clause/506f15f0-6655-461b-94a5-bc514b217ed1', 'http://smart.iec.ch/clause/e369d73a-12ab-452a-934d-9ffe84111095'], 'trans:checksum': '02896296524b67efa36902a9e115b561093489eb8d3d4701f1be59b7df258974', 'withinClause': 'http://smart.iec.ch/clause/a64a90b2-648f-4b8d-b7bc-1f01290f204a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4628c54d-9fb7-4e16-beaa-0f2f3ce8c066', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002294', 'rdfs:label': '8.5.1', 'dcterms:title': 'MEANS OF PROTECTION (MOP)', 'comprisesClause': ['http://smart.iec.ch/clause/329d8a33-d459-4277-8614-22e0d46c013b', 'http://smart.iec.ch/clause/af3a36dc-335c-44b8-8df2-aa7a3343c1c2', 'http://smart.iec.ch/clause/83457202-1496-45cf-b03e-762e51839b52'], 'trans:checksum': '8fe1e7fe69a336c76025ecb4511c7d80475a45c9471c5020bb6affc4e9269538', 'withinClause': 'http://smart.iec.ch/clause/79bbae87-b7de-4828-bed9-10d49bc63f3e', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/83457202-1496-45cf-b03e-762e51839b52', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002295', 'rdfs:label': '8.5.1.1', 'dcterms:title': 'General', 'hasTest': ['http://smart.iec.ch/test/1918a8d3-2ae5-412d-90a6-ce5fe682a362', 'http://smart.iec.ch/test/1c7e87aa-9646-4f83-9eef-4a23bd1fd012', 'http://smart.iec.ch/test/1c9ff46c-e62c-46fb-abd5-dce7285c00b7', 'http://smart.iec.ch/test/4419f588-74dd-4e2c-a9c2-2a3e87869612'], 'trans:checksum': '2a22b2fa8803f54ed498ed165d69896e3ee7cc6b9a857db624719800432121c0', 'withinClause': 'http://smart.iec.ch/clause/4628c54d-9fb7-4e16-beaa-0f2f3ce8c066', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/af3a36dc-335c-44b8-8df2-aa7a3343c1c2', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002310', 'rdfs:label': '8.5.1.2', 'dcterms:title': 'MEANS OF PATIENT PROTECTION (MOPP)', 'hasTest': ['http://smart.iec.ch/test/087f1f3b-0f43-4922-9fde-8bc319c34a0a', 'http://smart.iec.ch/test/1ce4c74c-4028-490a-aa92-e42a2bd4370c', 'http://smart.iec.ch/test/3e04e1c9-16ce-493b-9f5e-6e819a992693', 'http://smart.iec.ch/test/464fef86-f3be-45cf-bcbb-d7d008961eae', 'http://smart.iec.ch/test/7658af36-bd56-49fa-bac6-e8154d22e3cb', 'http://smart.iec.ch/test/807e6c0a-91a3-41c0-9ceb-402e6f022c09', 'http://smart.iec.ch/test/a490b3ff-3952-4ff2-bf44-810bb57fb313', 'http://smart.iec.ch/test/b7c67447-93d6-47e3-8372-724001ac2a3c', 'http://smart.iec.ch/test/d65c419b-4b2f-41b6-82a7-6c514c0e563e', 'http://smart.iec.ch/test/f1b4922f-38c8-4e9f-8f33-e1b0dd658fe6'], 'trans:checksum': '286ba2c7bbab3da3c4abccf912fe6065527b91af1899c79c66f77bfc79f75ae3', 'withinClause': 'http://smart.iec.ch/clause/4628c54d-9fb7-4e16-beaa-0f2f3ce8c066', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/329d8a33-d459-4277-8614-22e0d46c013b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002320', 'rdfs:label': '8.5.1.3', 'dcterms:title': 'MEANS OF PATIENT PROTECTION (MOPP)', 'hasTest': ['http://smart.iec.ch/test/04a2bd6d-b54c-4af3-a9c8-0faeb90d8f37', 'http://smart.iec.ch/test/057115b7-7852-4824-8ff0-213986b5f3b4', 'http://smart.iec.ch/test/0e0a619a-202f-403f-9c96-321d8a6842eb', 'http://smart.iec.ch/test/3a8a5eca-ebe1-4eb9-8cf0-d7c6a670e3f4', 'http://smart.iec.ch/test/402a4062-f330-4617-a365-a480fe6f059d', 'http://smart.iec.ch/test/6617941b-f4ae-4ea2-838f-c9b7c3415775', 'http://smart.iec.ch/test/7157a845-e18b-469a-94ae-c8c19a937786', 'http://smart.iec.ch/test/7175d73f-682c-4811-9ad8-b3c1d47ee574', 'http://smart.iec.ch/test/7679ea13-ccd0-4305-a29f-6ff2f1195c0d', 'http://smart.iec.ch/test/7a74e92d-f6df-44c3-a034-c7867f2d877c', 'http://smart.iec.ch/test/a07cf544-b01e-45bc-8c64-864f49946f28', 'http://smart.iec.ch/test/a5926793-6c4b-4b3e-aa06-8a7544743049', 'http://smart.iec.ch/test/b1bd6935-1f8e-4838-8d38-f05e64eeafbc', 'http://smart.iec.ch/test/c5fad01e-edf2-4ea6-b95a-fc1137832fd0', 'http://smart.iec.ch/test/d59b98d1-49be-4f0a-b88d-3cd484fe69c7', 'http://smart.iec.ch/test/db41071b-9d5d-4e16-81b6-27cd30c1d7f8', 'http://smart.iec.ch/test/faf30df2-cb0d-4332-822e-01bdca85688e'], 'trans:checksum': '074c7ed4188d0e350dc5c9c79e53c123de85e6cf0020093214ff7cfb60a4939c', 'withinClause': 'http://smart.iec.ch/clause/4628c54d-9fb7-4e16-beaa-0f2f3ce8c066', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/258cf01a-ba47-4b25-96f1-ed8efd48a6db', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002379', 'rdfs:label': '8.5.2', 'dcterms:title': 'Separation of PATIENT CONNECTIONS', 'comprisesClause': ['http://smart.iec.ch/clause/6144a787-04a1-42ee-a234-899abd659902', 'http://smart.iec.ch/clause/0ae4c2ad-e01c-4c6c-958f-0ada98e63dc7', 'http://smart.iec.ch/clause/40d35406-1f5f-4f58-bc5f-a9b9c5724639'], 'trans:checksum': '842ba6d21a8522e04c610e2bd13b5b519039bd54c2ffd2c7c1e7413f81c51e60', 'withinClause': 'http://smart.iec.ch/clause/79bbae87-b7de-4828-bed9-10d49bc63f3e', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/40d35406-1f5f-4f58-bc5f-a9b9c5724639', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002380', 'rdfs:label': '8.5.2.1', 'dcterms:title': 'F-TYPE APPLIED PARTS', 'hasTest': ['http://smart.iec.ch/test/4bb3b519-0dc9-4eb6-b84c-256f9c7d6c6c', 'http://smart.iec.ch/test/821e07bf-44cf-4a31-a50a-df96159687b4', 'http://smart.iec.ch/test/9796511a-0368-441f-8499-1f2389d99024', 'http://smart.iec.ch/test/995bcfdd-a256-418d-9ec6-17ab12042949', 'http://smart.iec.ch/test/a5e12847-5c0e-4f74-b378-33ac8edc3bea', 'http://smart.iec.ch/test/e7e67da8-73d7-413e-9aea-155636fb6278', 'http://smart.iec.ch/test/e9ec9dff-d278-4915-bd5d-f13569bdcdae', 'http://smart.iec.ch/test/f46abb39-da3c-4b6f-8ee1-e20c80372cbb', 'http://smart.iec.ch/test/f91f89eb-2a2c-482a-91fc-677acc8a6f31'], 'trans:checksum': '890a8a57281762e31b28c41e4ba55fba048d69cb4322f54faf32816afd92b7a6', 'withinClause': 'http://smart.iec.ch/clause/258cf01a-ba47-4b25-96f1-ed8efd48a6db', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6144a787-04a1-42ee-a234-899abd659902', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002399', 'rdfs:label': '8.5.2.2', 'dcterms:title': 'TYPE B APPLIED PARTS', 'hasTest': ['http://smart.iec.ch/test/1070d73c-f885-4d0f-8fec-e246c3f2b85e', 'http://smart.iec.ch/test/3d30de73-fad3-46cd-9a65-8dacd306f296', 'http://smart.iec.ch/test/530e40f3-638e-4f9b-8350-13850470a6da', 'http://smart.iec.ch/test/a92e09e1-52ce-42e5-a74a-63bf0f9a776f', 'http://smart.iec.ch/test/e63446a3-90e3-426a-9213-0b5eadbdc3e7', 'http://smart.iec.ch/test/f1c759f3-dab4-433b-b60f-e2a37eef9d67', 'http://smart.iec.ch/test/f22d3e07-44ae-4ff5-bf49-2489621d17a3'], 'trans:checksum': 'b22f3ac902d1cac73cc75c9f764d6bf6b9da090b8fcc2aeb829ba35cabfed4e5', 'withinClause': 'http://smart.iec.ch/clause/258cf01a-ba47-4b25-96f1-ed8efd48a6db', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0ae4c2ad-e01c-4c6c-958f-0ada98e63dc7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002411', 'rdfs:label': '8.5.2.3', 'dcterms:title': 'PATIENT leads', 'hasTest': ['http://smart.iec.ch/test/047b2f42-b297-473a-841e-bf0e6f4dcba8', 'http://smart.iec.ch/test/0b026d07-4f3c-474d-ab0b-f627a77d4e4c', 'http://smart.iec.ch/test/0e4f6e50-5586-4069-bd04-6dbc97f40f94', 'http://smart.iec.ch/test/2ad5a9d9-daf2-49d1-8aa3-11d1bc8b5aa3', 'http://smart.iec.ch/test/ac1ed8ca-5701-4bd2-bcaa-d7b6dd38d9dc', 'http://smart.iec.ch/test/d794f3a7-1341-4476-b654-0db58555ba39', 'http://smart.iec.ch/test/ea04ef1a-e8a1-4dc5-838b-b1bf8f7fcb9b', 'http://smart.iec.ch/test/f4298ad8-7fd8-4d11-825e-231b25a5c3dc'], 'trans:checksum': '601bda9add6701f3cfca4f82a807bac799bfb3e3f6e3186efefa1741a3d43ec2', 'withinClause': 'http://smart.iec.ch/clause/258cf01a-ba47-4b25-96f1-ed8efd48a6db', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/db57c645-131a-4bc6-8405-dd922cfcab3e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002442', 'rdfs:label': '8.5.3', 'dcterms:title': 'MAXIMUM MAINS VOLTAGE', 'trans:checksum': 'de648facb71dd941daac96de9702339f0baeaf21051f5da1557ba2ea1a5e5dde', 'withinClause': 'http://smart.iec.ch/clause/79bbae87-b7de-4828-bed9-10d49bc63f3e', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/506f15f0-6655-461b-94a5-bc514b217ed1', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002455', 'rdfs:label': '8.5.4', 'dcterms:title': 'WORKING VOLTAGE', 'hasTest': ['http://smart.iec.ch/test/081c1dac-4e47-49c0-93a1-596cdaaf874e', 'http://smart.iec.ch/test/08fddd29-0de3-4b83-8913-5b160026b777', 'http://smart.iec.ch/test/5b16ac1a-1402-4e40-83c2-dd8556866ed3', 'http://smart.iec.ch/test/7aae9c2c-c513-4626-9b5c-ef13ac1d61ca', 'http://smart.iec.ch/test/92f92710-5ffc-4881-8bd1-3eb6dc10daaa', 'http://smart.iec.ch/test/ca8f5364-475e-43a0-a6bb-37ef37246388', 'http://smart.iec.ch/test/e1cb94ee-f8de-4766-a23e-ee41eadb0e04'], 'trans:checksum': '1c4fa5187545bfdfd9bb9731c056e609e51d25a16b7639ef23587df5f5d8f3f7', 'withinClause': 'http://smart.iec.ch/clause/79bbae87-b7de-4828-bed9-10d49bc63f3e', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e369d73a-12ab-452a-934d-9ffe84111095', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002482', 'rdfs:label': '8.5.5', 'dcterms:title': 'DEFIBRILLATION-PROOF APPLIED PARTS', 'comprisesClause': ['http://smart.iec.ch/clause/82d624b8-d2ac-44de-af9e-a247b208dbef', 'http://smart.iec.ch/clause/a8cde828-13fd-494a-ae9f-77c21295bbdd'], 'trans:checksum': '6a2ecdc88895b9e784213c20641b23de042ad2049f6e3c9ab7938ee54412096f', 'withinClause': 'http://smart.iec.ch/clause/79bbae87-b7de-4828-bed9-10d49bc63f3e', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a8cde828-13fd-494a-ae9f-77c21295bbdd', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002483', 'rdfs:label': '8.5.5.1', 'dcterms:title': 'Defibrillation protection', 'hasTest': ['http://smart.iec.ch/test/7524973c-5b7d-48f2-afc5-e55976761232', 'http://smart.iec.ch/test/922aa0c2-898e-4d0b-a2fe-b4a37bb430ec', 'http://smart.iec.ch/test/a934ff42-b5c0-47bf-8268-3019304596b3', 'http://smart.iec.ch/test/c1fdecb0-ba37-4fc0-af6c-8dcc4fbbc1ef'], 'hasMeasurement': ['http://smart.iec.ch/measurement/90476122-4439-445a-8b52-6986c854b33e'], 'trans:checksum': '90c3223c60de7ca4bfc52aee38d9f083a2f99d2a9fc3522e214d4c725ffb11c1', 'withinClause': 'http://smart.iec.ch/clause/e369d73a-12ab-452a-934d-9ffe84111095', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/82d624b8-d2ac-44de-af9e-a247b208dbef', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002567', 'rdfs:label': '8.5.5.2', 'dcterms:title': 'Energy reduction test', 'hasTest': ['http://smart.iec.ch/test/ba401b92-4b58-4a2d-9c5e-b6dae1800090'], 'hasMeasurement': ['http://smart.iec.ch/measurement/a330b3f4-2b69-4fe3-aa96-d66c1090361b'], 'trans:checksum': '308b7b09bcb6440c7e43a0ca793ea840c99a36106d02ed71b8448d2124c84ee0', 'withinClause': 'http://smart.iec.ch/clause/e369d73a-12ab-452a-934d-9ffe84111095', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3f9350d5-65f1-42a8-8f86-506c13de0a92', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002622', 'rdfs:label': '8.6', 'dcterms:title': 'Protective earthing, functional earthing and potential equalization of ME EQUIPMENT', 'comprisesClause': ['http://smart.iec.ch/clause/bab7b4b9-dcd8-44d4-9aa0-878e89d44d99', 'http://smart.iec.ch/clause/76bc7138-10a2-4374-90b8-c9a1297b4d52', 'http://smart.iec.ch/clause/47983e70-b4a3-47ff-9961-37a46ad9ebab', 'http://smart.iec.ch/clause/3444581c-8a8a-450d-b6e5-e06585545a55', 'http://smart.iec.ch/clause/8276b819-ea1f-41a1-b49d-e6765e138978', 'http://smart.iec.ch/clause/dbb7d0c0-34ca-4448-8e62-86b8ed4d42a7', 'http://smart.iec.ch/clause/1f7d7e91-c458-4273-bc7f-2cff69b28daa', 'http://smart.iec.ch/clause/e76e7048-2791-43c9-b345-40459038cb70', 'http://smart.iec.ch/clause/0e0b22da-9a66-45d5-8425-6fa979295aad'], 'trans:checksum': 'a5cce9cbfd78996de799acae8b0f62ed66056c521870009491626bf563e1a3f3', 'withinClause': 'http://smart.iec.ch/clause/a64a90b2-648f-4b8d-b7bc-1f01290f204a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3444581c-8a8a-450d-b6e5-e06585545a55', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002623', 'rdfs:label': '8.6.1', 'dcterms:title': 'Applicability of requirements', 'hasTest': ['http://smart.iec.ch/test/00b30c78-c46e-4ba5-a31d-a5c61c458f57', 'http://smart.iec.ch/test/3344ff4b-659a-4b35-9c67-089a10332695'], 'trans:checksum': 'bc178ca20e236a143a215b8d52b639e7985627ae4ad5f522de1ea0d934e1d452', 'withinClause': 'http://smart.iec.ch/clause/3f9350d5-65f1-42a8-8f86-506c13de0a92', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/47983e70-b4a3-47ff-9961-37a46ad9ebab', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002626', 'rdfs:label': '8.6.2', 'dcterms:title': 'PROTECTIVE EARTH TERMINAL', 'hasTest': ['http://smart.iec.ch/test/3339c169-2aaf-4185-b38e-fe78517c00e4', 'http://smart.iec.ch/test/a24b144d-0f3a-4e1b-bdc1-f489bb04d07e', 'http://smart.iec.ch/test/ac2fb056-d9bd-4bf4-8b19-6a223eee617f', 'http://smart.iec.ch/test/c05dc7a7-b7ac-41e3-852a-e4affbd16e30', 'http://smart.iec.ch/test/e8b7abfc-d235-44eb-8ea4-81ed1efa613a'], 'trans:checksum': '9b4e3dfadf4adda0994e553d7fc171ef1b417ef00d95aa83f0da7d1750321a4f', 'withinClause': 'http://smart.iec.ch/clause/3f9350d5-65f1-42a8-8f86-506c13de0a92', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e76e7048-2791-43c9-b345-40459038cb70', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002640', 'rdfs:label': '8.6.3', 'dcterms:title': 'Protective earthing of moving parts', 'hasTest': ['http://smart.iec.ch/test/978fcdb4-45ee-4c6a-a908-13a554925c0d', 'http://smart.iec.ch/test/df5dc751-fd82-4b62-bf87-1cac88747c86'], 'trans:checksum': '6a4c7e19f5c655847e093236ae2ba112d15af2e13fcfa99954f719a047b35684', 'withinClause': 'http://smart.iec.ch/clause/3f9350d5-65f1-42a8-8f86-506c13de0a92', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/bab7b4b9-dcd8-44d4-9aa0-878e89d44d99', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002645', 'rdfs:label': '8.6.4', 'dcterms:title': 'Impedance and current-carrying capability', 'hasTest': ['http://smart.iec.ch/test/ab645f7f-d9bd-461a-8afc-af1427de7845', 'http://smart.iec.ch/test/bcdd8743-d4d6-4439-a765-ebcb7d61272c', 'http://smart.iec.ch/test/dd8e3da7-1b2e-4a60-920c-5960925b2ae1'], 'hasMeasurement': ['http://smart.iec.ch/measurement/d46669fc-4858-444b-b756-98c78d90216f'], 'trans:checksum': '9eca2b14d4c6c69ae51ca72ccbae5b07a583349a1caf30b3ff95a59cb2472c0e', 'withinClause': 'http://smart.iec.ch/clause/3f9350d5-65f1-42a8-8f86-506c13de0a92', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1f7d7e91-c458-4273-bc7f-2cff69b28daa', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002671', 'rdfs:label': '8.6.5', 'dcterms:title': 'Surface coatings', 'hasTest': ['http://smart.iec.ch/test/20732c9a-6973-4fcc-8893-6fd851114d78', 'http://smart.iec.ch/test/63d5133a-d60a-4603-947e-e494b9affec6'], 'trans:checksum': '397ecc69362ae178d2d7ca1f534f425d65baa8cd00c809d4dcc3719b9ca4ed1f', 'withinClause': 'http://smart.iec.ch/clause/3f9350d5-65f1-42a8-8f86-506c13de0a92', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/76bc7138-10a2-4374-90b8-c9a1297b4d52', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002676', 'rdfs:label': '8.6.6', 'dcterms:title': 'Plugs and sockets', 'hasTest': ['http://smart.iec.ch/test/46afcc40-28c3-4865-92f9-aaace9b8b08d', 'http://smart.iec.ch/test/cbf3504b-399b-450b-be90-0e1945ae40eb'], 'trans:checksum': 'c616899ac9719b08bad11267772b17478cfecc83bdb1fe0a5adaa381c45b0a01', 'withinClause': 'http://smart.iec.ch/clause/3f9350d5-65f1-42a8-8f86-506c13de0a92', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8276b819-ea1f-41a1-b49d-e6765e138978', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002682', 'rdfs:label': '8.6.7', 'dcterms:title': 'POTENTIAL EQUALIZATION CONDUCTOR', 'hasTest': ['http://smart.iec.ch/test/02cc7e44-db8a-4700-bfbd-1416a5455926', 'http://smart.iec.ch/test/3daf8354-1b87-4424-991b-5736d5be509b', 'http://smart.iec.ch/test/4c62cf9c-44c8-4e9d-b3a2-285cef9eba71', 'http://smart.iec.ch/test/68399552-fb8a-4b3b-b1d7-2ca52c9d1651', 'http://smart.iec.ch/test/8c880c82-29d3-4ae9-88d3-6c622aeb37b5', 'http://smart.iec.ch/test/c7d61fd8-cbf8-40f0-bb30-f59fa4f59e37', 'http://smart.iec.ch/test/ca6e989c-a4a3-4943-b5f8-85353834590a', 'http://smart.iec.ch/test/f107fd81-f074-4187-b644-151fe4dd4217'], 'trans:checksum': '3698856444a406602448499fd8713b9de4c6e81516501936e5f5ba6aa68b1dc0', 'withinClause': 'http://smart.iec.ch/clause/3f9350d5-65f1-42a8-8f86-506c13de0a92', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0e0b22da-9a66-45d5-8425-6fa979295aad', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002708', 'rdfs:label': '8.6.8', 'dcterms:title': 'FUNCTIONAL EARTH TERMINAL', 'hasTest': ['http://smart.iec.ch/test/86337cbf-fd6e-4371-a950-6e786915362f'], 'trans:checksum': '0b346a46794c16aa307733417cb0425012673eade757a90fdf67167f3ac8a402', 'withinClause': 'http://smart.iec.ch/clause/3f9350d5-65f1-42a8-8f86-506c13de0a92', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/dbb7d0c0-34ca-4448-8e62-86b8ed4d42a7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002713', 'rdfs:label': '8.6.9', 'dcterms:title': 'CLASS II ME EQUIPMENT', 'hasTest': ['http://smart.iec.ch/test/96676bea-607a-4db5-bdb4-0eda9d0e84fd', 'http://smart.iec.ch/test/97228a9a-237a-487b-a0cf-9088c567f166', 'http://smart.iec.ch/test/acbae863-02ca-4c4e-8bec-155a3b436481'], 'trans:checksum': '1b0f4caf65e795723589fe5381ffcc7002cb732efaa3f7c48f116e4c64091908', 'withinClause': 'http://smart.iec.ch/clause/3f9350d5-65f1-42a8-8f86-506c13de0a92', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/35342d78-a68b-4c8c-84e7-b1b1986bb775', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002721', 'rdfs:label': '8.7', 'dcterms:title': 'LEAKAGE CURRENTS and PATIENT AUXILIARY CURRENTS', 'hasMeasurement': ['http://smart.iec.ch/measurement/d2375089-9dec-4ac4-a9da-4448723afbe8'], 'comprisesClause': ['http://smart.iec.ch/clause/9f150f14-5304-45e6-8fb4-f3bcb90f105a', 'http://smart.iec.ch/clause/d6ff6b6f-f316-4cd6-8c43-648b72481ac1', 'http://smart.iec.ch/clause/65a83122-6e81-42cb-b331-a9390ffedb4b', 'http://smart.iec.ch/clause/b74fad23-35dc-43f1-9dbf-b2f7d4777544'], 'trans:checksum': '187ba7604008d47ed2f7af125b2d8262764b9e5340725fe53aef82b4ce8f9633', 'withinClause': 'http://smart.iec.ch/clause/a64a90b2-648f-4b8d-b7bc-1f01290f204a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d6ff6b6f-f316-4cd6-8c43-648b72481ac1', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002722', 'rdfs:label': '8.7.1', 'dcterms:title': 'General requirements', 'hasTest': ['http://smart.iec.ch/test/6a013d8d-567a-40bd-b3e1-8fa635e5c6a2', 'http://smart.iec.ch/test/fd94eb2e-2411-4c93-9641-437b930734fd'], 'trans:checksum': '887b8cd269f2cb60295eac32bca47405aba8e3c05ecaf99241b0bbceccba2cfd', 'withinClause': 'http://smart.iec.ch/clause/35342d78-a68b-4c8c-84e7-b1b1986bb775', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b74fad23-35dc-43f1-9dbf-b2f7d4777544', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002746', 'rdfs:label': '8.7.2', 'dcterms:title': 'SINGLE FAULT CONDITIONS', 'hasTest': ['http://smart.iec.ch/test/1ec82ece-326d-4267-adee-52c6453517e1', 'http://smart.iec.ch/test/68bc45c4-56ec-4602-9813-1cbf479a4835', 'http://smart.iec.ch/test/86a7d63f-c12e-45be-baab-9f50f08c4b15', 'http://smart.iec.ch/test/9c57cd00-bd90-48ce-a728-046f93bc0981', 'http://smart.iec.ch/test/a1667cf2-6b10-4a8f-a16a-170380c373ec'], 'trans:checksum': 'e4defbf1ea4152cce9d0b4807cdf9f5175174eb5f1dd734360afb3f15c22e5a4', 'withinClause': 'http://smart.iec.ch/clause/35342d78-a68b-4c8c-84e7-b1b1986bb775', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/65a83122-6e81-42cb-b331-a9390ffedb4b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002761', 'rdfs:label': '8.7.3', 'dcterms:title': 'Allowable values', 'hasTest': ['http://smart.iec.ch/test/0d2d94db-6aa3-4ab1-a148-c6f60f8cf314', 'http://smart.iec.ch/test/103835c5-383b-4dec-bccb-da6a6afbf3e8', 'http://smart.iec.ch/test/8f91e060-1afd-4e63-945c-b30b5c02ac33', 'http://smart.iec.ch/test/aca309ca-96a6-4842-ad7f-d31eb7bda637', 'http://smart.iec.ch/test/db75a080-3b99-4ce7-9907-d9d4967b4d90', 'http://smart.iec.ch/test/f0fa6c1f-660d-44cf-990d-87d48569996e', 'http://smart.iec.ch/test/feb66682-d6e5-43b4-beb5-82ad03e18dd7'], 'trans:checksum': '42919e857e8525a1d48d07956b0b0adad799df053264796f8239ae7939b63385', 'withinClause': 'http://smart.iec.ch/clause/35342d78-a68b-4c8c-84e7-b1b1986bb775', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9f150f14-5304-45e6-8fb4-f3bcb90f105a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002828', 'rdfs:label': '8.7.4', 'dcterms:title': 'Measurements', 'hasTest': ['http://smart.iec.ch/test/18924c1a-c678-4e3d-b917-b75f958501f6'], 'comprisesClause': ['http://smart.iec.ch/clause/28c1ffd4-8dcc-432b-a959-8144d68e0a73', 'http://smart.iec.ch/clause/32a91030-0c8f-4180-8ebe-dfd9152de0b4', 'http://smart.iec.ch/clause/6d06b37b-d405-4a02-aeb8-04f8d97b2d42', 'http://smart.iec.ch/clause/7ef1d94a-5d49-42ee-b0f5-bf2f044055f1', 'http://smart.iec.ch/clause/9fd10458-f558-4791-852b-e9d3dfa8e865', 'http://smart.iec.ch/clause/da2a0771-fa15-46c0-94d9-cce2b8c501b9', 'http://smart.iec.ch/clause/79d17860-c469-45dc-aa9a-ca7d99260d16', 'http://smart.iec.ch/clause/25c790fb-d26c-4240-86c5-7add3f60a1af', 'http://smart.iec.ch/clause/06d80cb5-328b-4556-b2a6-863537a7ea74'], 'trans:checksum': '0e9f83f43c3748cbae888c29d30f6be0ff005fed6c8860ff537d0ecae8241521', 'withinClause': 'http://smart.iec.ch/clause/35342d78-a68b-4c8c-84e7-b1b1986bb775', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/79d17860-c469-45dc-aa9a-ca7d99260d16', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002829', 'rdfs:label': '8.7.4.1', 'dcterms:title': 'General', 'trans:checksum': '339f163785df914d6e85e015337a5f683caccc35e9be0825eba29907a4cdd2a2', 'withinClause': 'http://smart.iec.ch/clause/9f150f14-5304-45e6-8fb4-f3bcb90f105a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7ef1d94a-5d49-42ee-b0f5-bf2f044055f1', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002955', 'rdfs:label': '8.7.4.2', 'dcterms:title': 'Measuring supply circuits', 'trans:checksum': 'ce507cf609849be3b5af9d32d6e290b7873edbb4ae64214d6561d87ca893c299', 'withinClause': 'http://smart.iec.ch/clause/9f150f14-5304-45e6-8fb4-f3bcb90f105a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/28c1ffd4-8dcc-432b-a959-8144d68e0a73', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002960', 'rdfs:label': '8.7.4.3', 'dcterms:title': 'Connection to the measuring supply circuit', 'trans:checksum': '6d63ba6e15efe9ca83e3c3091f452efee19c464a57f775ec6b5626acb7b48bee', 'withinClause': 'http://smart.iec.ch/clause/9f150f14-5304-45e6-8fb4-f3bcb90f105a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/25c790fb-d26c-4240-86c5-7add3f60a1af', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000002985', 'rdfs:label': '8.7.4.4', 'dcterms:title': 'Measuring device ( MD)', 'trans:checksum': '656dce85285775c07c02843067b281fdf121a00ade90f3d316ada5a39919d8c1', 'withinClause': 'http://smart.iec.ch/clause/9f150f14-5304-45e6-8fb4-f3bcb90f105a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/32a91030-0c8f-4180-8ebe-dfd9152de0b4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003002', 'rdfs:label': '8.7.4.5', 'dcterms:title': 'Measurement of the EARTH LEAKAGE CURRENT', 'trans:checksum': '6fbee0bd79dcc64749be4c34b7bf0126ecd9d21608e8ccadfe64055f23d40f33', 'withinClause': 'http://smart.iec.ch/clause/9f150f14-5304-45e6-8fb4-f3bcb90f105a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/06d80cb5-328b-4556-b2a6-863537a7ea74', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003013', 'rdfs:label': '8.7.4.6', 'dcterms:title': 'Measurement of the TOUCH CURRENT', 'trans:checksum': '397d246a0c2b2d53294a71fb888aac523d47c3c5bd45d88ae4a37a39064ededf', 'withinClause': 'http://smart.iec.ch/clause/9f150f14-5304-45e6-8fb4-f3bcb90f105a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/da2a0771-fa15-46c0-94d9-cce2b8c501b9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003042', 'rdfs:label': '8.7.4.7', 'dcterms:title': 'Measurement of the PATIENT LEAKAGE CURRENT', 'trans:checksum': 'ab22f3bb03a9b7d3c7a5d91acf05985823313c67722a85a31c7370b97d7d8234', 'withinClause': 'http://smart.iec.ch/clause/9f150f14-5304-45e6-8fb4-f3bcb90f105a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9fd10458-f558-4791-852b-e9d3dfa8e865', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003102', 'rdfs:label': '8.7.4.8', 'dcterms:title': 'Measurement of the PATIENT AUXILIARY CURRENT', 'trans:checksum': 'ddd473d432fc0017c9b5cd2803bfc442bd53b91b821bd60f655bcf7801277e6d', 'withinClause': 'http://smart.iec.ch/clause/9f150f14-5304-45e6-8fb4-f3bcb90f105a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6d06b37b-d405-4a02-aeb8-04f8d97b2d42', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003107', 'rdfs:label': '8.7.4.9', 'dcterms:title': 'ME EQUIPMENT with multiple PATIENT CONNECTIONS', 'trans:checksum': 'b4016b55355cc3a4600ba78582ba2c836ab217ab293a5daf4c80aafbba75a48c', 'withinClause': 'http://smart.iec.ch/clause/9f150f14-5304-45e6-8fb4-f3bcb90f105a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/72851989-8c37-4812-858a-77bf26983c99', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003119', 'rdfs:label': '8.8', 'dcterms:title': 'Insulation', 'comprisesClause': ['http://smart.iec.ch/clause/8c627260-0be5-48e5-9f31-44e6079eb210', 'http://smart.iec.ch/clause/1239c082-2d70-4ed5-ac9a-1fd80ff1388d', 'http://smart.iec.ch/clause/21a08878-e231-4fa8-8b9c-cd79e18b521b', 'http://smart.iec.ch/clause/331ff022-c423-49e6-bf40-9810faaa6076'], 'trans:checksum': 'cc4022120b7178843b1a883143b78d81f15a8b7b533ec3e6872d144e917d5182', 'withinClause': 'http://smart.iec.ch/clause/a64a90b2-648f-4b8d-b7bc-1f01290f204a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1239c082-2d70-4ed5-ac9a-1fd80ff1388d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003120', 'rdfs:label': '8.8.1', 'dcterms:title': 'General', 'hasTest': ['http://smart.iec.ch/test/0c636d06-c726-41b1-bccd-e730561e1f2f', 'http://smart.iec.ch/test/8b63fcda-9a5c-425a-bae3-9b5605a5812a', 'http://smart.iec.ch/test/d979fbad-a628-4120-914c-11f2bf59efdd'], 'trans:checksum': '14cde0dad33051ff59b6733375515ef38f130a1cac8ff75544e50c3ed90efc08', 'withinClause': 'http://smart.iec.ch/clause/72851989-8c37-4812-858a-77bf26983c99', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8c627260-0be5-48e5-9f31-44e6079eb210', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003134', 'rdfs:label': '8.8.2', 'dcterms:title': 'Distance through solid insulation or use of thin sheet material', 'hasTest': ['http://smart.iec.ch/test/00631d9e-be2e-42bc-9791-b70ab4f14dbb', 'http://smart.iec.ch/test/096069f8-7de9-4fa6-8b66-3302dcc87769', 'http://smart.iec.ch/test/0a2d2d73-77cc-473e-a883-ca02cfd64416', 'http://smart.iec.ch/test/10e2af13-b4b5-47ea-acdb-09b158246f59', 'http://smart.iec.ch/test/1e02526a-40cb-4d5a-b78f-17be3295d884', 'http://smart.iec.ch/test/2993c4aa-2a71-4527-8a82-6d394910025e', 'http://smart.iec.ch/test/2d92f602-ba77-4ace-9a33-5dd3a114a851', 'http://smart.iec.ch/test/5e8fe874-d351-40ee-a71a-acf429a01b2c', 'http://smart.iec.ch/test/73b35119-3190-4489-afae-65f7ebdd2530', 'http://smart.iec.ch/test/780e80a3-9500-47c4-8b17-a90126c8f095', 'http://smart.iec.ch/test/85933853-5437-4b6b-8086-db65ff1d5484', 'http://smart.iec.ch/test/92d1363a-ccf5-4e61-b062-81c0102f330e', 'http://smart.iec.ch/test/9308ce23-30ad-46be-b783-fe9dc13744ed', 'http://smart.iec.ch/test/97ef0c12-f30e-4a7c-9dde-d7a2d8aa5d07', 'http://smart.iec.ch/test/b3616247-24bc-4c07-8e81-461af17c5e65', 'http://smart.iec.ch/test/b6b8db74-849b-4a0d-a168-aafa37255324', 'http://smart.iec.ch/test/c2ef0d88-ca85-4658-ad0d-a766ca99fa70', 'http://smart.iec.ch/test/cc70cb21-57e8-4a2d-8a2f-4c2c089e4597'], 'trans:checksum': '2c7ed33f2b22aaa17ac6cf3e087b895fbf59f4606fdae4a46aced7db36254fda', 'withinClause': 'http://smart.iec.ch/clause/72851989-8c37-4812-858a-77bf26983c99', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/21a08878-e231-4fa8-8b9c-cd79e18b521b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003191', 'rdfs:label': '8.8.3', 'dcterms:title': 'Dielectric strength', 'hasTest': ['http://smart.iec.ch/test/8f7e8535-f18d-440a-8bb8-672dacbb6176'], 'hasMeasurement': ['http://smart.iec.ch/measurement/4e54febc-abde-410d-a414-536a33df768c'], 'trans:checksum': 'bf07b2020094a642fe48b119d5bdc74029a572fdc893a2e23ab9800c1687a47f', 'withinClause': 'http://smart.iec.ch/clause/72851989-8c37-4812-858a-77bf26983c99', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/331ff022-c423-49e6-bf40-9810faaa6076', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003242', 'rdfs:label': '8.8.4', 'dcterms:title': 'Insulation other than wire insulation', 'comprisesClause': ['http://smart.iec.ch/clause/a37aafa6-f53c-4d39-8da4-2cbd4ffdb911', 'http://smart.iec.ch/clause/61d20f71-b6f3-4c8d-84e9-cdf9414f1e62'], 'trans:checksum': '5dfaa1f0e5c974f6acbed40f274794307ead903abccda03fe32bed4ce121b446', 'withinClause': 'http://smart.iec.ch/clause/72851989-8c37-4812-858a-77bf26983c99', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/61d20f71-b6f3-4c8d-84e9-cdf9414f1e62', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003243', 'rdfs:label': '8.8.4.1', 'dcterms:title': 'Mechanical strength and resistance to heat', 'hasTest': ['http://smart.iec.ch/test/1d8ccf51-49e1-42e3-b732-0ac000639348', 'http://smart.iec.ch/test/5e44f189-4be0-4eba-af17-2f2b51b48ffa', 'http://smart.iec.ch/test/62abd843-96bb-4c71-9f83-0df4b40f36f4', 'http://smart.iec.ch/test/6ecaaef0-4c83-4303-8752-8fbcbdc272cf', 'http://smart.iec.ch/test/95f0511e-a795-4de6-a821-c22d227ddfec', 'http://smart.iec.ch/test/97bf665c-37a7-419b-8745-d79da1dd0859', 'http://smart.iec.ch/test/9923ae17-5a8f-4781-a8ba-5ae2f6297393', 'http://smart.iec.ch/test/b01afdfd-4b2e-4155-aac6-23762477ae79'], 'hasMeasurement': ['http://smart.iec.ch/measurement/2a3cb7f5-3271-4484-8333-429ffd8db175'], 'trans:checksum': 'ff9320c3aca7299e98ecd6e8e9e25d868ce1dceb80e4228e159c50d49f262584', 'withinClause': 'http://smart.iec.ch/clause/331ff022-c423-49e6-bf40-9810faaa6076', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a37aafa6-f53c-4d39-8da4-2cbd4ffdb911', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003277', 'rdfs:label': '8.8.4.2', 'dcterms:title': 'Resistance to environmental stress', 'hasTest': ['http://smart.iec.ch/test/50733e06-5c70-4c79-b29c-4b7ba38cec86', 'http://smart.iec.ch/test/570856e2-74c6-44e3-bf56-2cffe28b5755', 'http://smart.iec.ch/test/7823438f-989f-4abe-a638-7fb4156838d4', 'http://smart.iec.ch/test/7b4fd38a-e460-4910-9b05-7e5889581c88', 'http://smart.iec.ch/test/fa05a690-3cce-4486-8f46-92e180e84240'], 'hasMeasurement': ['http://smart.iec.ch/measurement/84c12121-f6a2-4ca1-b6f5-8619e755cd42'], 'trans:checksum': '4ee3be1f4137a4f56817aac95626cb5e103001180de8b42594a0c5d394f48106', 'withinClause': 'http://smart.iec.ch/clause/331ff022-c423-49e6-bf40-9810faaa6076', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/236df6c0-013f-449a-99ef-271b499e52b9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003292', 'rdfs:label': '8.9', 'dcterms:title': 'CREEPAGE DISTANCES and AIR CLEARANCES', 'hasMeasurement': ['http://smart.iec.ch/measurement/4b0ec7dd-6a1a-427f-8eee-fffe8f1f7229'], 'comprisesClause': ['http://smart.iec.ch/clause/4e18ad0c-cdfb-466b-bad1-c15cf5cd3d4b'], 'trans:checksum': 'c488f1604f34189f73daeb5b46e9ee8c2c607f68d5d015f854ce9b31e2339d83', 'withinClause': 'http://smart.iec.ch/clause/a64a90b2-648f-4b8d-b7bc-1f01290f204a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4e18ad0c-cdfb-466b-bad1-c15cf5cd3d4b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003293', 'rdfs:label': '8.9.1', 'dcterms:title': 'Values', 'comprisesClause': ['http://smart.iec.ch/clause/7578e7f3-9161-45c3-8010-317455554214', 'http://smart.iec.ch/clause/d3c0da9e-e9cb-40e2-a496-5308d438df8f', 'http://smart.iec.ch/clause/777a4c8f-1554-4900-a744-552c21662f00', 'http://smart.iec.ch/clause/b6c75c0d-4ad5-4afb-a8ca-9c8345c73d62', 'http://smart.iec.ch/clause/27faa8fa-ac79-463a-a733-419bd9876c41', 'http://smart.iec.ch/clause/93321d9b-9e38-4302-8773-855ec6236fac', 'http://smart.iec.ch/clause/a4a173f4-2d88-4bcf-928a-b27dd0ba7598', 'http://smart.iec.ch/clause/060c7c9f-6c28-4a66-acc0-7ca865dba331', 'http://smart.iec.ch/clause/6a737f7f-e46e-4199-b52d-834c22c6ceb9', 'http://smart.iec.ch/clause/9df37b36-8da1-4a8c-95e5-10e31f86ea4b', 'http://smart.iec.ch/clause/4a1f4f86-323e-4a78-a317-0f4b653f9ead', 'http://smart.iec.ch/clause/dee6dfee-8e13-4894-8d31-1dc5a5a92760', 'http://smart.iec.ch/clause/0bc6ed6a-117f-403a-9f45-b70683d4a47c', 'http://smart.iec.ch/clause/7d9246de-34ff-4fcc-89aa-e35d210dffc8', 'http://smart.iec.ch/clause/ec3b71f8-4596-4a43-8036-db4d0f123add'], 'trans:checksum': 'd7829b27a9e201f48440e222520e575f56eb1bd45e5cc412316cb8381bed0d68', 'withinClause': 'http://smart.iec.ch/clause/236df6c0-013f-449a-99ef-271b499e52b9', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d3c0da9e-e9cb-40e2-a496-5308d438df8f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003294', 'rdfs:label': '8.9.1.1', 'dcterms:title': 'General', 'hasTest': ['http://smart.iec.ch/test/6f2dd838-94d3-4af5-a4f7-e7043da872f7'], 'trans:checksum': '9240527aafba65aade1a53078f5cdf2b5fff69747f3c6a506f3af8929ef36277', 'withinClause': 'http://smart.iec.ch/clause/4e18ad0c-cdfb-466b-bad1-c15cf5cd3d4b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9df37b36-8da1-4a8c-95e5-10e31f86ea4b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003298', 'rdfs:label': '8.9.1.2', 'dcterms:title': 'CREEPAGE DISTANCES and AIR CLEARANCES complying with IEC 60950-1', 'trans:checksum': 'b830076bed9f8760bc4c150643d166768760b6b7def5afc5e2a0d25b7acdd72a', 'withinClause': 'http://smart.iec.ch/clause/4e18ad0c-cdfb-466b-bad1-c15cf5cd3d4b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/777a4c8f-1554-4900-a744-552c21662f00', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003301', 'rdfs:label': '8.9.1.3', 'dcterms:title': 'CREEPAGE DISTANCES across glass, mica, ceramic and similar materials', 'trans:checksum': '0e878cdb2d932e426c360a4d9571bf48a1c1f249952ebf7a6a5d5627c1b20688', 'withinClause': 'http://smart.iec.ch/clause/4e18ad0c-cdfb-466b-bad1-c15cf5cd3d4b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a4a173f4-2d88-4bcf-928a-b27dd0ba7598', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003304', 'rdfs:label': '8.9.1.4', 'dcterms:title': 'Minimum CREEPAGE DISTANCE', 'trans:checksum': 'e80bc276a78254e1bcbff869050da3ac5a92009494c99985edc1c1f0fa736f27', 'withinClause': 'http://smart.iec.ch/clause/4e18ad0c-cdfb-466b-bad1-c15cf5cd3d4b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6a737f7f-e46e-4199-b52d-834c22c6ceb9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003307', 'rdfs:label': '8.9.1.5', 'dcterms:title': 'ME EQUIPMENT RATED for high altitudes', 'trans:checksum': 'c5776befc9bb163ee5425182b161da290b5b40f7a065fb429d560a28e6b14509', 'withinClause': 'http://smart.iec.ch/clause/4e18ad0c-cdfb-466b-bad1-c15cf5cd3d4b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0bc6ed6a-117f-403a-9f45-b70683d4a47c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003320', 'rdfs:label': '8.9.1.6', 'dcterms:title': 'Interpolation', 'trans:checksum': 'be31f8b838a7bd05514f57fb5625cd71e81559d1ce39a292143afa49e5556746', 'withinClause': 'http://smart.iec.ch/clause/4e18ad0c-cdfb-466b-bad1-c15cf5cd3d4b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/dee6dfee-8e13-4894-8d31-1dc5a5a92760', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003333', 'rdfs:label': '8.9.1.7', 'dcterms:title': 'Material groups classification', 'hasMeasurement': ['http://smart.iec.ch/measurement/a5e9ea18-fe47-42bb-ab22-5e1568170a51'], 'trans:checksum': 'c603fff6315cd4c28765aeb89df5f6a957bac487c1ede7a8251a062789d3f887', 'withinClause': 'http://smart.iec.ch/clause/4e18ad0c-cdfb-466b-bad1-c15cf5cd3d4b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/93321d9b-9e38-4302-8773-855ec6236fac', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003341', 'rdfs:label': '8.9.1.8', 'dcterms:title': 'Pollution degree classification', 'trans:checksum': '1b466c359ec137b92da9f5b267075110f289a00600ba467a8322c374291c415a', 'withinClause': 'http://smart.iec.ch/clause/4e18ad0c-cdfb-466b-bad1-c15cf5cd3d4b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b6c75c0d-4ad5-4afb-a8ca-9c8345c73d62', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003364', 'rdfs:label': '8.9.1.9', 'dcterms:title': 'Overvoltage category classification', 'trans:checksum': '9184327a000fb94f26196853de23f19526afb878d56dc76b1b8916fd50431cea', 'withinClause': 'http://smart.iec.ch/clause/4e18ad0c-cdfb-466b-bad1-c15cf5cd3d4b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4a1f4f86-323e-4a78-a317-0f4b653f9ead', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003367', 'rdfs:label': '8.9.1.10', 'dcterms:title': 'AIR CLEARANCE for MAINS PARTS', 'trans:checksum': 'ae948b8c735d5c2fba5567d8334a3f3ebc32767d28ecefea33ffdcbb40b94144', 'withinClause': 'http://smart.iec.ch/clause/4e18ad0c-cdfb-466b-bad1-c15cf5cd3d4b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7d9246de-34ff-4fcc-89aa-e35d210dffc8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003370', 'rdfs:label': '8.9.1.11', 'dcterms:title': 'SUPPLY MAINS overvoltage', 'trans:checksum': 'ed6f3fbe55554f29921d99b6cc2432745c2cf049cdd7e4b2563ab1a18e1195c5', 'withinClause': 'http://smart.iec.ch/clause/4e18ad0c-cdfb-466b-bad1-c15cf5cd3d4b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7578e7f3-9161-45c3-8010-317455554214', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003387', 'rdfs:label': '8.9.1.12', 'dcterms:title': 'SECONDARY CIRCUITS', 'trans:checksum': '4b8633f530d1ac45e02d811dad246983c46f2002affed316f1c734dab2557daa', 'withinClause': 'http://smart.iec.ch/clause/4e18ad0c-cdfb-466b-bad1-c15cf5cd3d4b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/060c7c9f-6c28-4a66-acc0-7ca865dba331', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003405', 'rdfs:label': '8.9.1.13', 'dcterms:title': 'PEAK WORKING VOLTAGES above 1 400 V peak or d.c.', 'trans:checksum': 'e34cd53a59ad7599b91a8cfaecd8ce46a110a37eda2a4a1d17a791f95a2d4dff', 'withinClause': 'http://smart.iec.ch/clause/4e18ad0c-cdfb-466b-bad1-c15cf5cd3d4b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/27faa8fa-ac79-463a-a733-419bd9876c41', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003429', 'rdfs:label': '8.9.1.14', 'dcterms:title': 'Minimum CREEPAGE DISTANCES for two MEANS OF OPERATOR PROTECTION', 'trans:checksum': '9cd6dff7cc365ed496b27f1919ae951e4aa4986b1e23075f6f4e742a08f724d8', 'withinClause': 'http://smart.iec.ch/clause/4e18ad0c-cdfb-466b-bad1-c15cf5cd3d4b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ec3b71f8-4596-4a43-8036-db4d0f123add', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003432', 'rdfs:label': '8.9.1.15', 'dcterms:title': 'CREEPAGE DISTANCES and AIR CLEARANCES for DEFIBRILLATION-PROOF APPLIED PARTS', 'hasTest': ['http://smart.iec.ch/test/9c25887b-c069-4dfe-8e5b-e9bcc2e80ae2', 'http://smart.iec.ch/test/eb282e1b-4219-4af1-adb7-f08bc50193c1'], 'trans:checksum': 'dfca1356320ad8e935ca7fd935a03685315a6c51496e2ef180f733a119627097', 'withinClause': 'http://smart.iec.ch/clause/4e18ad0c-cdfb-466b-bad1-c15cf5cd3d4b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8e02f17f-ed58-4ea0-93a3-06e7e0f567d5', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003461', 'rdfs:label': '8.9.2', 'dcterms:title': 'Application', 'hasTest': ['http://smart.iec.ch/test/2b2324bf-60b9-4fc4-a203-4ba8efb9c12b'], 'trans:checksum': 'b7f7e19ad00b9f4b6060a1d2c1f240877881c8af3791e5bc5c886d16d2ad5f6d', 'withinClause': 'http://smart.iec.ch/clause/a64a90b2-648f-4b8d-b7bc-1f01290f204a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1858f172-c72a-4ff2-a289-84d9687faace', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003474', 'rdfs:label': '8.9.3', 'dcterms:title': 'Spaces filled by insulating compound', 'comprisesClause': ['http://smart.iec.ch/clause/02ab8b8c-cf29-4b06-b22e-53961142dae3', 'http://smart.iec.ch/clause/0aa03e38-5f25-415a-b86e-368514093b19', 'http://smart.iec.ch/clause/b38aa176-15f1-415b-a97f-c25a0afbc95e', 'http://smart.iec.ch/clause/658dc0b2-0e18-4397-9ee7-4146091be633'], 'trans:checksum': 'fd7225488351bc0b3f6e34c6b3c60ab6bd3e68fd6ef4dea442eef9a264c792ae', 'withinClause': 'http://smart.iec.ch/clause/a64a90b2-648f-4b8d-b7bc-1f01290f204a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b38aa176-15f1-415b-a97f-c25a0afbc95e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003475', 'rdfs:label': '8.9.3.1', 'dcterms:title': 'General', 'hasTest': ['http://smart.iec.ch/test/cfb4d3b0-04f5-4b3d-8d4c-07d37d495464', 'http://smart.iec.ch/test/e1853a3f-1fa3-4297-9e5b-e92220aeae93'], 'trans:checksum': '5f5037aabd0b2ab0a8dfe5bbfbe201564780a6477a62b14eeb56e62fa77521f7', 'withinClause': 'http://smart.iec.ch/clause/1858f172-c72a-4ff2-a289-84d9687faace', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0aa03e38-5f25-415a-b86e-368514093b19', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003482', 'rdfs:label': '8.9.3.2', 'dcterms:title': 'Insulating compound forming solid insulation between conductive parts', 'hasTest': ['http://smart.iec.ch/test/7d98dc65-e5b7-41dd-a815-202621a59e42', 'http://smart.iec.ch/test/d8d25dfc-e98c-43af-9df5-75c918a0b925'], 'trans:checksum': '59f74501986835b2f8e025c5936722f9bd3a82b291ddc162a90a4ba7e1d0f2f3', 'withinClause': 'http://smart.iec.ch/clause/1858f172-c72a-4ff2-a289-84d9687faace', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/02ab8b8c-cf29-4b06-b22e-53961142dae3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003485', 'rdfs:label': '8.9.3.3', 'dcterms:title': 'Insulating compound forming a cemented joint with other insulating parts', 'hasTest': ['http://smart.iec.ch/test/136da584-c672-4a71-9bca-ff6861328179', 'http://smart.iec.ch/test/32681f25-c23c-4459-b496-81e01be984f1', 'http://smart.iec.ch/test/489bebbf-f643-432b-904d-159e32a8c031', 'http://smart.iec.ch/test/f60710cf-27c4-426f-849e-214226e7fc26'], 'trans:checksum': '757c7568ebfc1c02bdbfce3290edf0c70c072871846a83b4a97d6f5fdd1ab01e', 'withinClause': 'http://smart.iec.ch/clause/1858f172-c72a-4ff2-a289-84d9687faace', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/658dc0b2-0e18-4397-9ee7-4146091be633', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003495', 'rdfs:label': '8.9.3.4', 'dcterms:title': 'Thermal cycling', 'hasMeasurement': ['http://smart.iec.ch/measurement/100bf887-4714-4b10-89aa-7d645dc73460'], 'trans:checksum': 'a13d25cb4299fe9e23984b9099bbbd210e865719d1f015252da5e310aed5bcb0', 'withinClause': 'http://smart.iec.ch/clause/1858f172-c72a-4ff2-a289-84d9687faace', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/33c88e28-e12e-4544-be58-6f047c3ca4d3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003512', 'rdfs:label': '8.9.4', 'dcterms:title': 'Measurement of CREEPAGE DISTANCES AND AIR CLEARANCES', 'hasTest': ['http://smart.iec.ch/test/a074268c-95dc-45ce-ba08-7205e29457c9', 'http://smart.iec.ch/test/df9acede-2f3d-4de1-800a-11d5bad88329'], 'trans:checksum': '8a894bb270aa36bdb47f6b790320c6450709f49cc26454dbf03164d92a8c8879', 'withinClause': 'http://smart.iec.ch/clause/a64a90b2-648f-4b8d-b7bc-1f01290f204a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/492989f6-c8d9-4006-965a-55418bedcf57', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003574', 'rdfs:label': '8.10', 'dcterms:title': 'Components and wiring', 'comprisesClause': ['http://smart.iec.ch/clause/8554a394-0757-42a5-9595-52b5f66719de', 'http://smart.iec.ch/clause/323ed650-94f0-4ca5-b3b6-0997ce7c1acd', 'http://smart.iec.ch/clause/ca1e65ee-5e10-4bf7-b2ff-8a285e566d14', 'http://smart.iec.ch/clause/d0b74521-8d51-4592-829c-1b106ede6dab', 'http://smart.iec.ch/clause/43297a17-feeb-4647-a054-68b9a63443b4', 'http://smart.iec.ch/clause/16c2966b-0587-46ca-b1db-f18762d01a1a', 'http://smart.iec.ch/clause/72663a9c-ea3b-4406-af78-450867468bb0'], 'trans:checksum': 'd0bdef7c27ff3c2f0347341d49ae466a683febae8063c477870f7ab441732802', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d0b74521-8d51-4592-829c-1b106ede6dab', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003575', 'rdfs:label': '8.10.1', 'dcterms:title': 'Fixing of components', 'hasTest': ['http://smart.iec.ch/test/299ac097-7088-42cc-a2b3-f23734799417', 'http://smart.iec.ch/test/c46c7544-d86d-40a9-82f8-dbc744c432d9'], 'trans:checksum': '6ab4eda02b33038610b13c2b82ceb5e866f5307e7302ec8a6d4988936ba99f6d', 'withinClause': 'http://smart.iec.ch/clause/492989f6-c8d9-4006-965a-55418bedcf57', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/43297a17-feeb-4647-a054-68b9a63443b4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003580', 'rdfs:label': '8.10.2', 'dcterms:title': 'Fixing of wiring', 'hasTest': ['http://smart.iec.ch/test/1c6b8ff2-0ade-4367-a93d-484f39fa4636', 'http://smart.iec.ch/test/6765e6e8-c787-4c20-9f59-c72c4e0eae0a'], 'trans:checksum': 'c6dded0337ea46904d96154517e0a2a0292daecc12eb3f7c7aaf74e41584bbb0', 'withinClause': 'http://smart.iec.ch/clause/492989f6-c8d9-4006-965a-55418bedcf57', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/72663a9c-ea3b-4406-af78-450867468bb0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003590', 'rdfs:label': '8.10.3', 'dcterms:title': 'Connections between different parts of ME EQUIPMENT', 'hasTest': ['http://smart.iec.ch/test/849a2766-0b3f-4fab-a460-2899bf3231b1'], 'trans:checksum': 'd66105fe3b3824add1f12b72ccafd61b6e6f7e5fcb3858423303d93539b3ed3c', 'withinClause': 'http://smart.iec.ch/clause/492989f6-c8d9-4006-965a-55418bedcf57', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/16c2966b-0587-46ca-b1db-f18762d01a1a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003595', 'rdfs:label': '8.10.4', 'dcterms:title': 'Cord-connected HAND-HELD parts and cord-connected foot-operated control devices (see also 15.4.7)', 'comprisesClause': ['http://smart.iec.ch/clause/a3b3e681-265c-4cea-9ffd-3648e1fe348e', 'http://smart.iec.ch/clause/0e0853a2-366b-4915-af91-02af7d9f2e25'], 'trans:checksum': 'e3ce101bda8bb7c2533f373b86709f5ad5a7946dd1088f0aa2afdfcc4a7acf4a', 'withinClause': 'http://smart.iec.ch/clause/492989f6-c8d9-4006-965a-55418bedcf57', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0e0853a2-366b-4915-af91-02af7d9f2e25', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003596', 'rdfs:label': '8.10.4.1', 'dcterms:title': 'Limitation of operating voltages', 'hasTest': ['http://smart.iec.ch/test/bd9862d6-d4c0-40ab-b548-da1ac2f5a5a6'], 'trans:checksum': '49e57956a0e9d7d274a1783c11a4d3fa30e70741e3e55f767bb6fc50561113d5', 'withinClause': 'http://smart.iec.ch/clause/16c2966b-0587-46ca-b1db-f18762d01a1a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a3b3e681-265c-4cea-9ffd-3648e1fe348e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003602', 'rdfs:label': '8.10.4.2', 'dcterms:title': 'Connection cords', 'hasTest': ['http://smart.iec.ch/test/11ef58bf-1b59-43c8-843e-703126c83a13', 'http://smart.iec.ch/test/9a36f36c-dbe5-46d9-ac72-d00172432193'], 'trans:checksum': '3838bf4715bac8585929d01c9ffd4e79bbfb720900ebca8ea41a8e47778b89b8', 'withinClause': 'http://smart.iec.ch/clause/16c2966b-0587-46ca-b1db-f18762d01a1a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ca1e65ee-5e10-4bf7-b2ff-8a285e566d14', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003607', 'rdfs:label': '8.10.5', 'dcterms:title': 'Mechanical protection of wiring', 'hasTest': ['http://smart.iec.ch/test/288fd13a-b5c6-47f8-9034-6f7231f745dc', 'http://smart.iec.ch/test/75db874d-7fc4-46f4-9ee9-f830f160e432'], 'trans:checksum': 'a05bea0ff4443c03907ba5889357ae648eee353aba3cea34725bba4ed41aafa0', 'withinClause': 'http://smart.iec.ch/clause/492989f6-c8d9-4006-965a-55418bedcf57', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/323ed650-94f0-4ca5-b3b6-0997ce7c1acd', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003617', 'rdfs:label': '8.10.6', 'dcterms:title': 'Guiding rollers for insulated conductors', 'hasTest': ['http://smart.iec.ch/test/b3bc090b-136f-4d4d-af2d-9f19b98e72ae'], 'trans:checksum': 'ac0d9d74e29e40e70c393c37d5189aab000b2497a24e04e3880a30fc0861b36e', 'withinClause': 'http://smart.iec.ch/clause/492989f6-c8d9-4006-965a-55418bedcf57', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8554a394-0757-42a5-9595-52b5f66719de', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003622', 'rdfs:label': '8.10.7', 'dcterms:title': 'Insulation of internal wiring', 'hasTest': ['http://smart.iec.ch/test/2aa2dd8e-4d4e-4e2e-ab18-491d86ac9666', 'http://smart.iec.ch/test/e69e8604-f260-4d8e-a62f-c8d41e9de92c', 'http://smart.iec.ch/test/f936125b-5a6b-47d8-8e22-038d9a0ec898'], 'trans:checksum': 'd3e399ec81c4639455225d381af2eb69709115353d5f53c309aa570a1f0a3413', 'withinClause': 'http://smart.iec.ch/clause/492989f6-c8d9-4006-965a-55418bedcf57', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d0d645e2-addc-489c-9cb4-cacb6c0dd3f9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003636', 'rdfs:label': '8.11', 'dcterms:title': 'MAINS PARTS, components and layout', 'comprisesClause': ['http://smart.iec.ch/clause/3db9a321-629c-4bdb-8af9-e8af5d38fb64', 'http://smart.iec.ch/clause/61bd37d2-c290-40c9-a784-8de9e2900ae1', 'http://smart.iec.ch/clause/03ced49d-c701-43b8-bf21-985b38dccb24', 'http://smart.iec.ch/clause/43a7c0b3-b319-48f8-afa1-6e98fdfe0118', 'http://smart.iec.ch/clause/ea23c85f-0326-4c47-9daf-0ce3259e7abc', 'http://smart.iec.ch/clause/a2b339b2-59d6-43b8-b200-37a70f868471'], 'trans:checksum': 'f77473fc8d6fe3d7a89f97c1f66631cf13dd56ed9dfbb3092cffc93c311f62ed', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3db9a321-629c-4bdb-8af9-e8af5d38fb64', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003637', 'rdfs:label': '8.11.1', 'dcterms:title': 'Isolation from the SUPPLY MAINS', 'hasTest': ['http://smart.iec.ch/test/01b32c67-bb30-4812-8615-cb0efb7dc287', 'http://smart.iec.ch/test/25e8f49b-bf36-407a-8dd3-9b39bcb18c86', 'http://smart.iec.ch/test/6c33e298-9259-45bd-8084-427a606dc0d3', 'http://smart.iec.ch/test/71ba9741-1c14-4201-a60e-bbb5300e6c89', 'http://smart.iec.ch/test/8e1e752f-9bc3-40d8-aecc-004be6b655b6', 'http://smart.iec.ch/test/9a8eaf05-144d-4276-8c95-215235aa9eb0', 'http://smart.iec.ch/test/9c5ba288-51fd-4b04-98d3-6b8b3ea59b80', 'http://smart.iec.ch/test/a05a61c3-6216-4c3c-adb2-573988e866b6', 'http://smart.iec.ch/test/c2ea18a7-c850-4568-b5af-25a6d1d2eb9d', 'http://smart.iec.ch/test/ca5ce8ff-67a4-4c77-890d-ff15a8f1ec82', 'http://smart.iec.ch/test/d0307e75-1fd1-4a7c-9a77-0404c5685468', 'http://smart.iec.ch/test/d179b57e-6f1c-43a7-b16d-ae029246d9a8', 'http://smart.iec.ch/test/da5b9844-ff3e-4b0a-a8e4-12065def1f5c', 'http://smart.iec.ch/test/dd418783-2840-47f3-94ee-9926aa90b77f', 'http://smart.iec.ch/test/fe789df9-095d-4323-b247-d6c1b24ec2b9'], 'trans:checksum': '56263de55628332c1e7945dc66c438c2ff78663409607cc1e433aa84478e20f5', 'withinClause': 'http://smart.iec.ch/clause/d0d645e2-addc-489c-9cb4-cacb6c0dd3f9', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ea23c85f-0326-4c47-9daf-0ce3259e7abc', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003677', 'rdfs:label': '8.11.2', 'dcterms:title': 'MULTIPLE SOCKET-OUTLETS', 'hasTest': ['http://smart.iec.ch/test/3ad88fd0-7b94-4fcd-8d1a-bcfef172080b'], 'trans:checksum': '809c3dfe1021bbef8b75369d0bab8d5cdb4a871e3d418e709941eadd1f074a9f', 'withinClause': 'http://smart.iec.ch/clause/d0d645e2-addc-489c-9cb4-cacb6c0dd3f9', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/03ced49d-c701-43b8-bf21-985b38dccb24', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003682', 'rdfs:label': '8.11.3', 'dcterms:title': 'POWER SUPPLY CORDS', 'comprisesClause': ['http://smart.iec.ch/clause/4c7da26e-edec-4bb8-bc04-c17be4ddfda9', 'http://smart.iec.ch/clause/2034f88a-61ef-41ea-a41a-ebc1da1091f5', 'http://smart.iec.ch/clause/ffbb53e6-1ec0-4cff-b29f-68a98256ed6f', 'http://smart.iec.ch/clause/0184d520-4743-447d-9757-eec920279906', 'http://smart.iec.ch/clause/adcaba44-d3ba-49f5-9d57-dad98984ce29', 'http://smart.iec.ch/clause/91e384a9-150d-4d61-a412-929d31c6213a'], 'trans:checksum': '66fcedf92a4db66e5481b369d0b2048627638b9f45f1fc5eb2d867fe0dd238b6', 'withinClause': 'http://smart.iec.ch/clause/d0d645e2-addc-489c-9cb4-cacb6c0dd3f9', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0184d520-4743-447d-9757-eec920279906', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003683', 'rdfs:label': '8.11.3.1', 'dcterms:title': 'Application', 'hasTest': ['http://smart.iec.ch/test/fc75f68b-cfbf-4423-aa81-54cd86ceadb8'], 'trans:checksum': 'd8cb83dc121dc59947c250678b3e5af6f3878eaad31d08a48ff30b3809184308', 'withinClause': 'http://smart.iec.ch/clause/03ced49d-c701-43b8-bf21-985b38dccb24', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/91e384a9-150d-4d61-a412-929d31c6213a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003688', 'rdfs:label': '8.11.3.2', 'dcterms:title': 'Types', 'hasTest': ['http://smart.iec.ch/test/aeb29cfb-f2a4-4786-8fc4-c32ef3bbfd0d', 'http://smart.iec.ch/test/be2942df-15ee-42a8-ae8a-b2edc011ee7d'], 'trans:checksum': '77444972d78062d18b163c143ae055e8bf6db17d718578893610cb58eebd63d6', 'withinClause': 'http://smart.iec.ch/clause/03ced49d-c701-43b8-bf21-985b38dccb24', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ffbb53e6-1ec0-4cff-b29f-68a98256ed6f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003696', 'rdfs:label': '8.11.3.3', 'dcterms:title': 'Cross-sectional area of POWER SUPPLY CORD conductors', 'hasTest': ['http://smart.iec.ch/test/034cd74d-f85b-41eb-bd49-040c9481f317', 'http://smart.iec.ch/test/3ca3d435-1c5a-4e13-84c1-3a900c996b8d'], 'trans:checksum': 'a672d8ef1e517dd196ff895b2ec4c71b79fc100e2f5a5cf41c7c7e11a7b82baf', 'withinClause': 'http://smart.iec.ch/clause/03ced49d-c701-43b8-bf21-985b38dccb24', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4c7da26e-edec-4bb8-bc04-c17be4ddfda9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003702', 'rdfs:label': '8.11.3.4', 'dcterms:title': 'APPLIANCE COUPLERS', 'hasTest': ['http://smart.iec.ch/test/36815299-6538-483c-971d-65a4d7302ef4'], 'trans:checksum': 'f968eaf24d0cb3fdb64fb8ac56f50f1fea6953961e43c12ba94e02c14ae2fa72', 'withinClause': 'http://smart.iec.ch/clause/03ced49d-c701-43b8-bf21-985b38dccb24', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/adcaba44-d3ba-49f5-9d57-dad98984ce29', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003707', 'rdfs:label': '8.11.3.5', 'dcterms:title': 'Cord anchorage', 'hasTest': ['http://smart.iec.ch/test/0a12c1a9-4665-4646-a244-fd8bc44eeb38', 'http://smart.iec.ch/test/0c88757f-cd92-4b91-a3e1-029ced981d45', 'http://smart.iec.ch/test/12c2df6d-3a35-476a-9425-f3578f8d35dc', 'http://smart.iec.ch/test/25faab04-6aed-4a5a-ba0e-5d83bd04115c', 'http://smart.iec.ch/test/37fade6a-9b57-4033-9f10-218d58584700', 'http://smart.iec.ch/test/602b5182-a28a-431a-a960-811be1e7e5e8', 'http://smart.iec.ch/test/a178c05c-aa1e-4a3f-9e6a-e83c0f694ef7', 'http://smart.iec.ch/test/a3881de4-1790-4837-bb30-cefaaecc672a', 'http://smart.iec.ch/test/a64296ea-f30d-42dc-8704-4576c44d2db2', 'http://smart.iec.ch/test/b744e96e-370f-435e-9edc-25f831679cab', 'http://smart.iec.ch/test/ec12a5e4-9090-4b68-ad21-9809d45feacb', 'http://smart.iec.ch/test/fe50c9a5-33bc-4fb1-8afe-40abe403e12d', 'http://smart.iec.ch/test/fe5e6c2d-b68b-40f4-b495-8e61e2700242'], 'hasMeasurement': ['http://smart.iec.ch/measurement/45bb03ae-eb73-4cb6-9bbc-59cd58809214'], 'trans:checksum': 'e4cb4ebf107cd54c8d0f18a5a2506ff1cef599239b313c98955eb24befb4a892', 'withinClause': 'http://smart.iec.ch/clause/03ced49d-c701-43b8-bf21-985b38dccb24', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2034f88a-61ef-41ea-a41a-ebc1da1091f5', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003755', 'rdfs:label': '8.11.3.6', 'dcterms:title': 'Cord guards', 'hasTest': ['http://smart.iec.ch/test/3617ae47-0f02-4f80-bc06-2dbb4bab2068', 'http://smart.iec.ch/test/44301cd6-d37c-419d-a579-e8a57d3bafc5', 'http://smart.iec.ch/test/5c03246d-ba0c-4fcd-a526-ed6b3b507389', 'http://smart.iec.ch/test/c1f4abc0-1842-4d5c-af09-224592214f5f', 'http://smart.iec.ch/test/d8b9e612-112c-4003-91b8-c271c22a9553'], 'hasMeasurement': ['http://smart.iec.ch/measurement/cfac8aec-86e9-4ec2-a4e1-194680d512f8'], 'trans:checksum': 'ec1ecc137ae18615f1e0b41a27560d0edf5e17f1b77b506b6e39c55309791fa2', 'withinClause': 'http://smart.iec.ch/clause/03ced49d-c701-43b8-bf21-985b38dccb24', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/43a7c0b3-b319-48f8-afa1-6e98fdfe0118', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003768', 'rdfs:label': '8.11.4', 'dcterms:title': 'MAINS TERMINAL DEVICES', 'comprisesClause': ['http://smart.iec.ch/clause/3e7f59ba-a40e-4fa4-8cca-a633ed97f0a8', 'http://smart.iec.ch/clause/6b1e1e2f-0b70-4c3b-a3d2-7ad953e05c68', 'http://smart.iec.ch/clause/551c37b5-5da0-47d0-814b-27deba36f5c9', 'http://smart.iec.ch/clause/6f69fe89-97e5-42e3-89dd-06131ea25684', 'http://smart.iec.ch/clause/e8a75a23-43ee-47d5-9469-2a900aa41d1e'], 'trans:checksum': 'd443d747b5f80ece628a4077cb5fd2e5e4765c83468d763cd88d776c56e36a4c', 'withinClause': 'http://smart.iec.ch/clause/d0d645e2-addc-489c-9cb4-cacb6c0dd3f9', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e8a75a23-43ee-47d5-9469-2a900aa41d1e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003769', 'rdfs:label': '8.11.4.1', 'dcterms:title': 'General requirements for MAINS TERMINAL DEVICES', 'hasTest': ['http://smart.iec.ch/test/79cf1981-c2dd-45f3-95e1-24546ffb29ac', 'http://smart.iec.ch/test/bb5b9359-80e7-4f73-8060-cc13e3e7ed46', 'http://smart.iec.ch/test/dcdd9ff3-d72c-4f87-9efd-da6c587cf7fa', 'http://smart.iec.ch/test/ebd1565f-02d3-4fce-acb0-8d8668d42630'], 'trans:checksum': '665c4d639a7ccf5a46dd8fdda65bd6d54c801f738b2b398d1ef2201225571f6a', 'withinClause': 'http://smart.iec.ch/clause/43a7c0b3-b319-48f8-afa1-6e98fdfe0118', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/551c37b5-5da0-47d0-814b-27deba36f5c9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003781', 'rdfs:label': '8.11.4.2', 'dcterms:title': 'Arrangement of MAINS TERMINAL DEVICES', 'hasTest': ['http://smart.iec.ch/test/63054498-6391-4eaf-a952-579bab3a5fb8', 'http://smart.iec.ch/test/7a3b3bb9-1957-4565-bb7b-7865ea808228', 'http://smart.iec.ch/test/c7a70ddd-a2e4-4dc1-8800-7f52929a5be3'], 'trans:checksum': '5293dca6b342dca98feba764a913f5df82546f12789604dc5b5c506197d98ab2', 'withinClause': 'http://smart.iec.ch/clause/43a7c0b3-b319-48f8-afa1-6e98fdfe0118', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3e7f59ba-a40e-4fa4-8cca-a633ed97f0a8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003812', 'rdfs:label': '8.11.4.3', 'dcterms:title': 'Fixing of mains terminals', 'hasTest': ['http://smart.iec.ch/test/89d9d6d8-175b-4ac6-9e4d-0703ebfbfc5e'], 'trans:checksum': '6df2d22fb1cda4944681ff2e3a455fe8bdb7cc2c23c1408cfb4aae6aebb0a4db', 'withinClause': 'http://smart.iec.ch/clause/43a7c0b3-b319-48f8-afa1-6e98fdfe0118', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6b1e1e2f-0b70-4c3b-a3d2-7ad953e05c68', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003817', 'rdfs:label': '8.11.4.4', 'dcterms:title': 'Connections to mains terminals', 'hasTest': ['http://smart.iec.ch/test/0e7015b5-d83b-4715-be05-647749e96145'], 'trans:checksum': '24d1df20fc65161025c2c35b402ad6a609fea2e5d535dbd55ad018df481aff69', 'withinClause': 'http://smart.iec.ch/clause/43a7c0b3-b319-48f8-afa1-6e98fdfe0118', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6f69fe89-97e5-42e3-89dd-06131ea25684', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003823', 'rdfs:label': '8.11.4.5', 'dcterms:title': 'Accessibility of the connection', 'hasTest': ['http://smart.iec.ch/test/46a830d4-55a3-47e9-90ad-fa99212e8f2d', 'http://smart.iec.ch/test/a32d0f57-3dd1-4cbb-8b75-675c20df725f'], 'trans:checksum': '06a6f2082bfd2f7075c278bca6d8b257707b9c0f1a468517b7b93aa5c108cee9', 'withinClause': 'http://smart.iec.ch/clause/43a7c0b3-b319-48f8-afa1-6e98fdfe0118', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/61bd37d2-c290-40c9-a784-8de9e2900ae1', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003830', 'rdfs:label': '8.11.5', 'dcterms:title': 'Mains fuses and OVER-CURRENT RELEASES', 'hasTest': ['http://smart.iec.ch/test/36924e7a-48a5-4ad8-bf37-6421d952617d', 'http://smart.iec.ch/test/381cfa6f-bd6e-4043-b277-747259d3af06', 'http://smart.iec.ch/test/5ccbcddb-e938-4125-84eb-31198d20a158', 'http://smart.iec.ch/test/9cde0c7f-2b38-4f2a-bad4-24f6b27aa247', 'http://smart.iec.ch/test/af3c7662-f0f7-4059-ac84-d0da0d77a807', 'http://smart.iec.ch/test/d060bc3c-8931-4879-a935-82eff845f242', 'http://smart.iec.ch/test/d48941bd-7dba-4dcf-8cc0-1e532627df69'], 'trans:checksum': '92d7b8b25187180c8e998f6848c5ccc44144ef99a181c886d863ff45286136de', 'withinClause': 'http://smart.iec.ch/clause/d0d645e2-addc-489c-9cb4-cacb6c0dd3f9', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a2b339b2-59d6-43b8-b200-37a70f868471', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003852', 'rdfs:label': '8.11.6', 'dcterms:title': 'Internal wiring of the MAINS PART', 'hasTest': ['http://smart.iec.ch/test/011e3ed8-145f-467d-aa39-48280c91543a', 'http://smart.iec.ch/test/41922b7c-c1d3-4aad-9dd6-61e24082f1a8'], 'trans:checksum': 'b061915f6bed8b9e025760b05be4b616ef5ffda7a177c82157db824ff3b41060', 'withinClause': 'http://smart.iec.ch/clause/d0d645e2-addc-489c-9cb4-cacb6c0dd3f9', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/86c00cea-ee8a-475d-93d4-36caef2c0363', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003865', 'rdfs:label': '9', 'dcterms:title': 'Protection against MECHANICAL HAZARDS of ME EQUIPMENT and ME SYSTEMS', 'comprisesClause': ['http://smart.iec.ch/clause/0478def8-27d0-44ad-96ba-71f4d0a0157e', 'http://smart.iec.ch/clause/5aafc72e-f980-4bed-8bae-eb558fc0b7f3', 'http://smart.iec.ch/clause/74d7c28f-600e-4ff0-b4d4-e891d54be96c', 'http://smart.iec.ch/clause/9c547894-2cdb-40cf-a573-974d7379b430', 'http://smart.iec.ch/clause/554ea805-8724-41ca-bfec-db7450f147bc', 'http://smart.iec.ch/clause/e32e507b-4659-462c-b0fc-9c39b3acd752', 'http://smart.iec.ch/clause/2ee3631f-bdba-4251-bc0f-969ee02a46dc', 'http://smart.iec.ch/clause/884e5b0a-b795-4bed-a971-22447ea17e59'], 'trans:checksum': 'b8aed785c814646eb12843b1fb56f3df233029fb7d06e3227381503313fcae45', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/554ea805-8724-41ca-bfec-db7450f147bc', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003866', 'rdfs:label': '9.1', 'dcterms:title': 'MECHANICAL HAZARDS of ME EQUIPMENT', 'trans:checksum': '18b0aea56c38376401158c3824ab15497c42ca4d02daf7a4bca0fbf2f1a783dd', 'withinClause': 'http://smart.iec.ch/clause/86c00cea-ee8a-475d-93d4-36caef2c0363', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0478def8-27d0-44ad-96ba-71f4d0a0157e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003872', 'rdfs:label': '9.2', 'dcterms:title': 'HAZARDS associated with moving parts', 'comprisesClause': ['http://smart.iec.ch/clause/e0f7930b-bd83-499f-9825-0c0daf060440', 'http://smart.iec.ch/clause/111c942e-33ac-4127-8bf5-f0022516bdb5'], 'trans:checksum': 'b6aee90f2a83873ab1fba93bdf66e742b9f8f78cffeca6e90271d7f35981b68e', 'withinClause': 'http://smart.iec.ch/clause/86c00cea-ee8a-475d-93d4-36caef2c0363', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/111c942e-33ac-4127-8bf5-f0022516bdb5', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003873', 'rdfs:label': '9.2.1', 'dcterms:title': 'General', 'hasTest': ['http://smart.iec.ch/test/5ba7ac1c-f248-4d6d-ba54-71507db6b5dc', 'http://smart.iec.ch/test/9c39824d-95c5-41c9-81a7-95a729671717', 'http://smart.iec.ch/test/cf302361-0222-4c65-af19-c11a2241d1df', 'http://smart.iec.ch/test/d1cf9671-7204-4d9e-9185-20c1de04543c', 'http://smart.iec.ch/test/ed30fb3f-416f-437d-9819-cf3cf20b2ab5', 'http://smart.iec.ch/test/f2ebb772-1b23-42aa-942c-b1fd05a6964f'], 'trans:checksum': '23263d489874d67eeab330cb8a7e7878d72c6cb07d548943ad77b58c175f27c5', 'withinClause': 'http://smart.iec.ch/clause/0478def8-27d0-44ad-96ba-71f4d0a0157e', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e0f7930b-bd83-499f-9825-0c0daf060440', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003884', 'rdfs:label': '9.2.2', 'dcterms:title': 'TRAPPING ZONE', 'comprisesClause': ['http://smart.iec.ch/clause/925f9650-67ff-4a4c-9c6f-59cd3b8e44d7', 'http://smart.iec.ch/clause/3dba82ba-1d44-4a7a-b073-0e3cb096aac4', 'http://smart.iec.ch/clause/b31318c8-0300-4807-9e48-cf412193dc7a', 'http://smart.iec.ch/clause/f179c03b-6399-456a-8ca2-cff3a59958fa', 'http://smart.iec.ch/clause/6d28dcea-ac89-432f-9f1c-23ba4850bd2b', 'http://smart.iec.ch/clause/008a39b7-f672-4bf0-ab6e-c34e79560db4', 'http://smart.iec.ch/clause/02497b0b-c7aa-4aac-98de-de2e0412f8ff'], 'trans:checksum': '1a8f870ea38e63bc3c2a15c960041cf303c616571eba8683e773a1dff9c57e9f', 'withinClause': 'http://smart.iec.ch/clause/0478def8-27d0-44ad-96ba-71f4d0a0157e', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/008a39b7-f672-4bf0-ab6e-c34e79560db4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003885', 'rdfs:label': '9.2.2.1', 'dcterms:title': 'General', 'hasTest': ['http://smart.iec.ch/test/078d3fd5-26bf-4fb4-8d06-1b306df65eb5', 'http://smart.iec.ch/test/934b6416-7bee-4811-a8c9-e478e13874c2', 'http://smart.iec.ch/test/b61962e3-c2e2-49c8-96e9-8e9894d200b1', 'http://smart.iec.ch/test/bbd9ad45-caf1-4868-9ef2-18bf627ba820', 'http://smart.iec.ch/test/bd2e9d31-22ed-4a01-b0b9-195d8d6c16f6', 'http://smart.iec.ch/test/e0bd0099-1477-439f-8f7a-0dc4e548ecec'], 'trans:checksum': 'b197bfdf3d832daf413c347898882f7fde3fdc3f0502f96e56a80c1ed09301cf', 'withinClause': 'http://smart.iec.ch/clause/e0f7930b-bd83-499f-9825-0c0daf060440', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3dba82ba-1d44-4a7a-b073-0e3cb096aac4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003903', 'rdfs:label': '9.2.2.2', 'dcterms:title': 'Gaps', 'hasTest': ['http://smart.iec.ch/test/24860c7e-39ac-4627-a755-cec11916d1dd'], 'trans:checksum': 'fbade4f55aae13b41901fed94aac04314134fc3604e01a51a6ed1efc16b9ba06', 'withinClause': 'http://smart.iec.ch/clause/e0f7930b-bd83-499f-9825-0c0daf060440', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b31318c8-0300-4807-9e48-cf412193dc7a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003908', 'rdfs:label': '9.2.2.3', 'dcterms:title': 'Safe distances', 'hasTest': ['http://smart.iec.ch/test/a21c7f0f-1b2c-4a1f-bf18-72e7b4d8452b'], 'trans:checksum': 'ec42c8265d08abd5c58c4bba2695d8913b4035b90f599a0e21c4f2979eeb69e6', 'withinClause': 'http://smart.iec.ch/clause/e0f7930b-bd83-499f-9825-0c0daf060440', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/02497b0b-c7aa-4aac-98de-de2e0412f8ff', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003912', 'rdfs:label': '9.2.2.4', 'dcterms:title': 'GUARDS and protective measures', 'hasTest': ['http://smart.iec.ch/test/e6574218-91c9-4064-be35-1afc3435a6f2'], 'comprisesClause': ['http://smart.iec.ch/clause/6e90719a-c970-48af-88e5-f4efb3a0ff5b', 'http://smart.iec.ch/clause/1984b733-9e1e-4ba5-8cb6-4b979d94b8ae', 'http://smart.iec.ch/clause/87c8225c-7dad-4cca-b393-d994f812f868', 'http://smart.iec.ch/clause/6f885e87-f15d-4e34-89b4-0a082d24f390', 'http://smart.iec.ch/clause/2b11277f-ee3c-456e-a423-4edc0bbd0a14'], 'trans:checksum': '5ff031faf1c9a3cd30d33aa41f6da52e7468c5d228884cc29b95cf162263325f', 'withinClause': 'http://smart.iec.ch/clause/e0f7930b-bd83-499f-9825-0c0daf060440', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6f885e87-f15d-4e34-89b4-0a082d24f390', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003913', 'rdfs:label': '9.2.2.4.1', 'dcterms:title': 'Access to TRAPPING ZONES', 'hasTest': ['http://smart.iec.ch/test/ee2d35c9-a59c-4b95-bb1e-f6ae3da9cf6a'], 'trans:checksum': '417c00575181c9179b7e9c833cd62b74f76945ba2800580df6234baca610515c', 'withinClause': 'http://smart.iec.ch/clause/02497b0b-c7aa-4aac-98de-de2e0412f8ff', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/87c8225c-7dad-4cca-b393-d994f812f868', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003928', 'rdfs:label': '9.2.2.4.2', 'dcterms:title': 'FIXED GUARDS', 'hasTest': ['http://smart.iec.ch/test/7323be38-f716-4ad8-9ac9-3886ccce3f21'], 'trans:checksum': '3b47eaaab7bf0a4a08e06a6e7a27156af8fc6588b16c6e27cb1f1e0669f36528', 'withinClause': 'http://smart.iec.ch/clause/02497b0b-c7aa-4aac-98de-de2e0412f8ff', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1984b733-9e1e-4ba5-8cb6-4b979d94b8ae', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003944', 'rdfs:label': '', 'comprisesClause': ['http://smart.iec.ch/clause/728287be-f370-4427-8cce-9404da904610', 'http://smart.iec.ch/clause/7376277c-317f-46ce-a1f3-1f5656542ba4'], 'trans:checksum': '767e31ab7f391a64494a0f54e0f64488730a248a41242b4831d562fa4554b578', 'withinClause': 'http://smart.iec.ch/clause/02497b0b-c7aa-4aac-98de-de2e0412f8ff', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7376277c-317f-46ce-a1f3-1f5656542ba4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003945', 'rdfs:label': '9.2.2.4.3', 'dcterms:title': 'Movable GUARDS', 'hasTest': ['http://smart.iec.ch/test/1313557d-2003-4d73-a228-bd8446ede76a', 'http://smart.iec.ch/test/2e77a580-c439-4688-bf0f-30acfb653a1c', 'http://smart.iec.ch/test/52161f8f-251b-4c05-8375-15b36f2f82e5', 'http://smart.iec.ch/test/eeb11315-f024-45c7-9096-99f8cbaa709a'], 'trans:checksum': 'c99079ae96dbdb6842cf36975d00431aaacc3d274a863b310fcdef7c90951dae', 'withinClause': 'http://smart.iec.ch/clause/1984b733-9e1e-4ba5-8cb6-4b979d94b8ae', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/728287be-f370-4427-8cce-9404da904610', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003960', 'rdfs:label': '9.2.2.4.4', 'dcterms:title': 'Protective measures', 'hasTest': ['http://smart.iec.ch/test/c2988543-ade1-42a0-a84e-4cc050e39d5c', 'http://smart.iec.ch/test/d96dfc38-a791-4f41-b7bd-7b62f544a7de', 'http://smart.iec.ch/test/dc6bc823-94bf-44b4-bcef-fea06fecf8e2'], 'trans:checksum': 'd744d32cd0ee20c144b369786a492e28be5a56e7519fda69e5394682eafb9ce3', 'withinClause': 'http://smart.iec.ch/clause/1984b733-9e1e-4ba5-8cb6-4b979d94b8ae', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2b11277f-ee3c-456e-a423-4edc0bbd0a14', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003975', 'rdfs:label': '9.2.2.5', 'dcterms:title': 'Continuous activation', 'hasTest': ['http://smart.iec.ch/test/2fe23859-06ee-487b-87f5-c4f91c6d7e2e', 'http://smart.iec.ch/test/6a7a1585-ddae-4e08-b195-2976dcd223a5', 'http://smart.iec.ch/test/9d40df6f-ff1a-4a71-94d2-2f7c5b2e5a18', 'http://smart.iec.ch/test/a263260c-57cd-426f-9870-6f90bf29bcae', 'http://smart.iec.ch/test/cc9df9f0-def5-48c6-9dfc-29baaad290d8'], 'trans:checksum': '5f6d310519bf4ef05865dd7cb6016fcbced9e4d09ab274880a117b383f38f401', 'withinClause': 'http://smart.iec.ch/clause/02497b0b-c7aa-4aac-98de-de2e0412f8ff', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6e90719a-c970-48af-88e5-f4efb3a0ff5b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000003996', 'rdfs:label': '9.2.2.6', 'dcterms:title': 'Speed of movement(s)', 'hasTest': ['http://smart.iec.ch/test/3a035ad0-db0d-4388-81b7-f0db47a98e36', 'http://smart.iec.ch/test/5a846929-0800-4e50-983e-3194ce0b2438'], 'trans:checksum': 'c6acf4a3f62c972dd5aa8ec7e4abea16cbfd83c7966def422500c6a75cf38dbc', 'withinClause': 'http://smart.iec.ch/clause/02497b0b-c7aa-4aac-98de-de2e0412f8ff', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/925f9650-67ff-4a4c-9c6f-59cd3b8e44d7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004003', 'rdfs:label': '9.2.3', 'dcterms:title': 'Other HAZARDS associated with moving parts', 'hasTest': ['http://smart.iec.ch/test/8a6fcc3a-d494-4d0c-83b4-bceb563b8949'], 'comprisesClause': ['http://smart.iec.ch/clause/93ebed42-540c-4379-a7ea-d602614c34e2', 'http://smart.iec.ch/clause/97a3885a-0017-4626-bc03-1c6eb56958ff'], 'trans:checksum': 'ec43a4b11b5d725d71171451e377a4118a63a9503e58d8af9da5a9114f363c52', 'withinClause': 'http://smart.iec.ch/clause/e0f7930b-bd83-499f-9825-0c0daf060440', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/93ebed42-540c-4379-a7ea-d602614c34e2', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004004', 'rdfs:label': '9.2.3.1', 'dcterms:title': 'Unintended movement', 'hasTest': ['http://smart.iec.ch/test/251891dc-c7eb-47e8-9ec2-db5bf389c1a4', 'http://smart.iec.ch/test/32a3da95-fd4b-4934-8690-bb7a06383916', 'http://smart.iec.ch/test/cd3c89ad-bf33-4d37-99de-d3eb5a501094'], 'trans:checksum': 'e0246669edd49dae004d5085f319e302828ef16433279a9d89d81d62386ea676', 'withinClause': 'http://smart.iec.ch/clause/925f9650-67ff-4a4c-9c6f-59cd3b8e44d7', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/97a3885a-0017-4626-bc03-1c6eb56958ff', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004009', 'rdfs:label': '9.2.3.2', 'dcterms:title': 'Overtravel', 'hasTest': ['http://smart.iec.ch/test/2d25caf5-1a09-4e71-a730-012923db1307', 'http://smart.iec.ch/test/5305092e-1502-405c-82d2-0a166a6f676e'], 'trans:checksum': 'e585e0e3b8980093206d9dc2d93a55d00f592a06caf623420989cf2881a47e9f', 'withinClause': 'http://smart.iec.ch/clause/925f9650-67ff-4a4c-9c6f-59cd3b8e44d7', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6d28dcea-ac89-432f-9f1c-23ba4850bd2b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004017', 'rdfs:label': '9.2.4', 'dcterms:title': 'Emergency stopping devices', 'hasTest': ['http://smart.iec.ch/test/20d2fa5d-6e93-4d5b-9b2e-dcb5075f2b50', 'http://smart.iec.ch/test/259bb9b5-2f15-410e-99b4-e1cd32ec85e9', 'http://smart.iec.ch/test/42fbdacf-e2e1-4645-a9d8-35635d38cd59', 'http://smart.iec.ch/test/61e1382d-633f-4f31-9811-18b4b0ec2b3c', 'http://smart.iec.ch/test/8489a318-0fdc-42c0-a1dc-b33b7805b317', 'http://smart.iec.ch/test/871eb783-1edb-460f-aa40-0f9461fc4c82', 'http://smart.iec.ch/test/897ac63c-8371-4256-ae40-986398b27627', 'http://smart.iec.ch/test/a4446472-0d75-4df8-81e1-0cbb17b54f59', 'http://smart.iec.ch/test/a75d16e4-e6bf-4c1d-a0d0-ea763f883723', 'http://smart.iec.ch/test/bcf97231-26aa-4600-8612-8568e5ea272d', 'http://smart.iec.ch/test/d14e2bb1-174b-48b0-a6f9-1f960af68e08', 'http://smart.iec.ch/test/d5218d88-b89b-47cb-b50c-58c291ba630c', 'http://smart.iec.ch/test/e6f6705a-adae-486f-94a6-15cdafcd56f8'], 'trans:checksum': '985dc9e3b8133e5f46613c2454752f2d6843cd462d902fdc5f75b6cfb3dc7d5a', 'withinClause': 'http://smart.iec.ch/clause/e0f7930b-bd83-499f-9825-0c0daf060440', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/f179c03b-6399-456a-8ca2-cff3a59958fa', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004058', 'rdfs:label': '9.2.5', 'dcterms:title': 'Release of PATIENT', 'hasTest': ['http://smart.iec.ch/test/89646364-6560-4738-89e7-8ff8a7c9e27f', 'http://smart.iec.ch/test/8b28fe4f-0fea-4e15-bed6-bad548968dd0', 'http://smart.iec.ch/test/a850550b-31bd-451f-97e1-3fffa74f342f', 'http://smart.iec.ch/test/ca24bda8-0303-4c05-b401-e537494117cb', 'http://smart.iec.ch/test/eb1786a2-66e3-409a-aaae-e71c739a26c4'], 'trans:checksum': 'd7d18421250da0ad73c2eaff88921b1fb3dc2fb141c054dff710438be9eed4e0', 'withinClause': 'http://smart.iec.ch/clause/e0f7930b-bd83-499f-9825-0c0daf060440', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5aafc72e-f980-4bed-8bae-eb558fc0b7f3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004074', 'rdfs:label': '9.3', 'dcterms:title': 'HAZARD associated with surfaces, corners and edges', 'hasTest': ['http://smart.iec.ch/test/19a784c4-88cc-4809-925e-3a0652a68181'], 'trans:checksum': '752e1a96aeef3f71d34d0cb113ee59822782e6dbd99060f64d016d02a2cfd338', 'withinClause': 'http://smart.iec.ch/clause/86c00cea-ee8a-475d-93d4-36caef2c0363', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e32e507b-4659-462c-b0fc-9c39b3acd752', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004081', 'rdfs:label': '9.4', 'dcterms:title': 'Instability HAZARDS', 'hasMeasurement': ['http://smart.iec.ch/measurement/b78ef09a-f774-48f8-abc8-f94ebae32ec3'], 'comprisesClause': ['http://smart.iec.ch/clause/a841b334-0ce4-433d-9874-589b56e2f621', 'http://smart.iec.ch/clause/eb30d21f-09cf-4966-ade0-23b3e2adfff8', 'http://smart.iec.ch/clause/c05c4957-1ea7-49e8-8ff7-95f46d7350b2', 'http://smart.iec.ch/clause/05f58c54-2f1e-4fd3-8735-80564924df51'], 'trans:checksum': 'e21476799c8fe910b7c98f3073414380066809bfef462cc70dd725f5037a684b', 'withinClause': 'http://smart.iec.ch/clause/86c00cea-ee8a-475d-93d4-36caef2c0363', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c05c4957-1ea7-49e8-8ff7-95f46d7350b2', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004082', 'rdfs:label': '9.4.1', 'dcterms:title': 'General', 'hasTest': ['http://smart.iec.ch/test/65d84319-2c24-45f3-9c29-ebf28d8a78f4'], 'trans:checksum': '66e4b5008425b84d1c74056f7d5fec54f1d9db75b08546a007264847ca7c245a', 'withinClause': 'http://smart.iec.ch/clause/e32e507b-4659-462c-b0fc-9c39b3acd752', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/05f58c54-2f1e-4fd3-8735-80564924df51', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004089', 'rdfs:label': '9.4.2', 'dcterms:title': 'Instability - overbalance', 'comprisesClause': ['http://smart.iec.ch/clause/c450febd-a2e3-42ca-af76-d8f1430e7ec8', 'http://smart.iec.ch/clause/61c20a15-2009-457a-a12c-c50f7cd5d220', 'http://smart.iec.ch/clause/f5877136-4c28-485b-9363-4a9085d9279a', 'http://smart.iec.ch/clause/9ecc7a47-a57e-40b3-9449-9534d3a26d71'], 'trans:checksum': 'c6d360d967404c56df1e3aaf3593ccccddfa56f16812c189f87d08d567c872a1', 'withinClause': 'http://smart.iec.ch/clause/e32e507b-4659-462c-b0fc-9c39b3acd752', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/61c20a15-2009-457a-a12c-c50f7cd5d220', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004090', 'rdfs:label': '9.4.2.1', 'dcterms:title': 'Instability in transport position', 'hasTest': ['http://smart.iec.ch/test/beded496-4380-4cba-9561-c21840795676'], 'trans:checksum': 'c68fd154527cc2300930d487ab4403d79105adca68290a0ea653d3c78a568b5b', 'withinClause': 'http://smart.iec.ch/clause/05f58c54-2f1e-4fd3-8735-80564924df51', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9ecc7a47-a57e-40b3-9449-9534d3a26d71', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004097', 'rdfs:label': '9.4.2.2', 'dcterms:title': 'Instability excluding transport', 'hasTest': ['http://smart.iec.ch/test/9526871b-689f-49cb-bef2-ed5f1b1a8c71', 'http://smart.iec.ch/test/acaeb056-f67e-4f88-b594-de86d5081268'], 'trans:checksum': 'b40bb84b9da479b787a5c600452108f17375c91cdb1d67898b2d50438b2d8971', 'withinClause': 'http://smart.iec.ch/clause/05f58c54-2f1e-4fd3-8735-80564924df51', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/f5877136-4c28-485b-9363-4a9085d9279a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004134', 'rdfs:label': '9.4.2.3', 'dcterms:title': 'Instability from horizontal and vertical forces', 'hasTest': ['http://smart.iec.ch/test/021b47d7-194b-49d6-94dd-de0e59d3ee60', 'http://smart.iec.ch/test/381ac0a9-05bf-48d3-b157-cd8ad4334531', 'http://smart.iec.ch/test/57b9a87e-ba1f-434f-a43c-540a48bc62f4', 'http://smart.iec.ch/test/588d16df-8281-4657-ae8d-d8fca1bc6748', 'http://smart.iec.ch/test/83be7fac-0d7d-49ab-8b61-2fdcd18a6641', 'http://smart.iec.ch/test/b4893860-8ca1-4405-bc14-24dce233e872'], 'trans:checksum': 'dfdb8f1858329507439fe848cf7246d349cbf23447d29c4ce172b8b77f032b32', 'withinClause': 'http://smart.iec.ch/clause/05f58c54-2f1e-4fd3-8735-80564924df51', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c450febd-a2e3-42ca-af76-d8f1430e7ec8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004155', 'rdfs:label': '9.4.2.4', 'dcterms:title': 'Castors and wheels', 'comprisesClause': ['http://smart.iec.ch/clause/adf55196-7114-478f-b716-b55595e630b3', 'http://smart.iec.ch/clause/73bcbd1b-f330-43c0-83f6-65faa5e9ceda', 'http://smart.iec.ch/clause/ffc35848-de46-456e-bc66-8f5bd5f23aa4'], 'trans:checksum': 'ebdeffe80d21c2d80ad2b9dae0a880a421c5c460eb3c081646e3b0ad79c3e2e9', 'withinClause': 'http://smart.iec.ch/clause/05f58c54-2f1e-4fd3-8735-80564924df51', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ffc35848-de46-456e-bc66-8f5bd5f23aa4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004156', 'rdfs:label': '9.4.2.4.1', 'dcterms:title': 'General', 'hasTest': ['http://smart.iec.ch/test/360c602b-22fd-40e6-ae6d-8872905efdf7'], 'trans:checksum': 'd23b0f34f4a4b357ce509fb1a3766603ef99aee831aec22b94f728b2c041f94b', 'withinClause': 'http://smart.iec.ch/clause/c450febd-a2e3-42ca-af76-d8f1430e7ec8', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/73bcbd1b-f330-43c0-83f6-65faa5e9ceda', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004159', 'rdfs:label': '9.4.2.4.2', 'dcterms:title': 'Force for propulsion', 'hasTest': ['http://smart.iec.ch/test/333f227a-e1c9-4a71-8321-6a87db3e1d47'], 'trans:checksum': 'c9f65edd0b2e449a815ab6dcefecadbb8fc5d342988c971bbc09817f3a88c8a6', 'withinClause': 'http://smart.iec.ch/clause/c450febd-a2e3-42ca-af76-d8f1430e7ec8', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/adf55196-7114-478f-b716-b55595e630b3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004164', 'rdfs:label': '9.4.2.4.3', 'dcterms:title': 'Movement over a threshold', 'hasTest': ['http://smart.iec.ch/test/a101d625-0566-4b8c-a4ca-cb94791867db'], 'trans:checksum': '8f6b5374f11feeabedd449d8de7b6fe7770e638cfffea9f937f9af3c1ca3d68e', 'withinClause': 'http://smart.iec.ch/clause/c450febd-a2e3-42ca-af76-d8f1430e7ec8', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/eb30d21f-09cf-4966-ade0-23b3e2adfff8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004186', 'rdfs:label': '9.4.3', 'dcterms:title': 'Instability from unwanted lateral movement (including sliding)', 'comprisesClause': ['http://smart.iec.ch/clause/2463205e-bf0d-4f49-b7e5-727ad0ecff30', 'http://smart.iec.ch/clause/f213da7e-3d7d-473c-8a2f-49eab9a1af25'], 'trans:checksum': 'f9478883f0fdd7c33ab509c779a887ab35d66d272ecc4fb1d9f4af797638cf26', 'withinClause': 'http://smart.iec.ch/clause/e32e507b-4659-462c-b0fc-9c39b3acd752', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2463205e-bf0d-4f49-b7e5-727ad0ecff30', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004187', 'rdfs:label': '9.4.3.1', 'dcterms:title': 'Instability in transport', 'hasTest': ['http://smart.iec.ch/test/131f9a5e-9ca8-4230-bcae-664eb35a2612', 'http://smart.iec.ch/test/22ae3091-e3b5-4464-aa4b-2e98c805f202', 'http://smart.iec.ch/test/5671c2ab-758c-4c27-958f-f0cdd4d98639'], 'trans:checksum': 'ad8b25f3def6f4a55736fbe77800ea7a027f7a70da0d7ba859db98a6d860c31d', 'withinClause': 'http://smart.iec.ch/clause/eb30d21f-09cf-4966-ade0-23b3e2adfff8', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/f213da7e-3d7d-473c-8a2f-49eab9a1af25', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004208', 'rdfs:label': '9.4.3.2', 'dcterms:title': 'Instability excluding transport', 'hasTest': ['http://smart.iec.ch/test/34d22c9f-d01e-4c61-97bd-13d5e1c2e231', 'http://smart.iec.ch/test/aa08d895-c880-4d94-8944-53960eacd5bb'], 'trans:checksum': 'a8838d35a1aab21de4563d9c16889f3f594078650340050a4ef0cc6e3f34ec1b', 'withinClause': 'http://smart.iec.ch/clause/eb30d21f-09cf-4966-ade0-23b3e2adfff8', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a841b334-0ce4-433d-9874-589b56e2f621', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004224', 'rdfs:label': '9.4.4', 'dcterms:title': 'Grips and other handling devices', 'hasTest': ['http://smart.iec.ch/test/8772deea-abb0-444e-aff4-bc43fa40b2ee', 'http://smart.iec.ch/test/b56a24c2-3e33-4f15-b827-016577816754', 'http://smart.iec.ch/test/cb33ab69-c4c7-4da8-b12d-4c50d4179909', 'http://smart.iec.ch/test/e1676b27-8ff7-4248-8ccb-d1c53c2f0515'], 'trans:checksum': '4784e181596e13f2dfc3af4bdd05603cdf928f381681e23031b8f403bbab2824', 'withinClause': 'http://smart.iec.ch/clause/e32e507b-4659-462c-b0fc-9c39b3acd752', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9c547894-2cdb-40cf-a573-974d7379b430', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004247', 'rdfs:label': '9.5', 'dcterms:title': 'Expelled parts HAZARD', 'comprisesClause': ['http://smart.iec.ch/clause/a480d841-7357-4209-9ae6-dd7300bbccb2', 'http://smart.iec.ch/clause/ef20fcac-7229-4bb5-9a28-bee50f60d70a'], 'trans:checksum': 'd9c083638b183ad8dcc119f2da55ef3501c78845fc55bfcc5d31c8b3320d4e4d', 'withinClause': 'http://smart.iec.ch/clause/86c00cea-ee8a-475d-93d4-36caef2c0363', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a480d841-7357-4209-9ae6-dd7300bbccb2', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004248', 'rdfs:label': '9.5.1', 'dcterms:title': 'Protective means', 'hasTest': ['http://smart.iec.ch/test/0b680ef9-df59-433f-9a3a-7bb63e656756', 'http://smart.iec.ch/test/e03f875b-40d9-43ce-933d-5a27cf3eea0e'], 'trans:checksum': '2b01de9b783015395d2f689d931e9fb9c3e2edbc41fb0c05ab18d492036f83f6', 'withinClause': 'http://smart.iec.ch/clause/9c547894-2cdb-40cf-a573-974d7379b430', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ef20fcac-7229-4bb5-9a28-bee50f60d70a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004253', 'rdfs:label': '9.5.2', 'dcterms:title': 'Cathode ray tubes', 'hasTest': ['http://smart.iec.ch/test/2ac0151a-aba0-45ef-8d41-ab5d3d10d87a'], 'hasMeasurement': ['http://smart.iec.ch/measurement/3d067f4a-479b-49f9-b294-ff8caec05ecb'], 'trans:checksum': 'bfd4f094a47ac762056d564d1a6a05d21cc863cf694e067e820e53886179cec1', 'withinClause': 'http://smart.iec.ch/clause/9c547894-2cdb-40cf-a573-974d7379b430', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/884e5b0a-b795-4bed-a971-22447ea17e59', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004258', 'rdfs:label': '9.6', 'dcterms:title': 'Acoustic energy (including infra- and ultrasound) and vibration', 'comprisesClause': ['http://smart.iec.ch/clause/e80a4935-39ea-47d6-9a56-41d1bdd8bbc3', 'http://smart.iec.ch/clause/0aa52133-4973-41fd-a2f4-b5485dd7eb40', 'http://smart.iec.ch/clause/c3e8dc71-676e-40d0-b127-d41922ea5ddd'], 'trans:checksum': '90c2625ae67a7a2ed32b0554e258b2b980c89f03db82e7181b97c85a88f71a33', 'withinClause': 'http://smart.iec.ch/clause/86c00cea-ee8a-475d-93d4-36caef2c0363', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e80a4935-39ea-47d6-9a56-41d1bdd8bbc3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004259', 'rdfs:label': '9.6.1', 'dcterms:title': 'General', 'hasTest': ['http://smart.iec.ch/test/0e076507-041b-4bb5-9d5c-f704c7f8c866', 'http://smart.iec.ch/test/911f16ee-32c8-4e72-90b3-b463fb52903b', 'http://smart.iec.ch/test/b5cd7954-6610-4b0f-8f16-902106404f9e', 'http://smart.iec.ch/test/e73ec0d4-c380-432e-9c67-ffb56a646771'], 'trans:checksum': 'c094a02ce3a602a815156c50e1dc63bddd039e714ce7fce2ffb922381fed6957', 'withinClause': 'http://smart.iec.ch/clause/884e5b0a-b795-4bed-a971-22447ea17e59', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0aa52133-4973-41fd-a2f4-b5485dd7eb40', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004264', 'rdfs:label': '9.6.2', 'dcterms:title': 'Acoustic energy', 'comprisesClause': ['http://smart.iec.ch/clause/53e01a81-7a0b-48bd-8566-229759aaab4f', 'http://smart.iec.ch/clause/d7f5f823-3115-4513-a02f-a0e4f7d2498a'], 'trans:checksum': '982f86754c71d99bd9ea734805b67bd9fd578efe7a05baedbc998b00874080cb', 'withinClause': 'http://smart.iec.ch/clause/884e5b0a-b795-4bed-a971-22447ea17e59', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/53e01a81-7a0b-48bd-8566-229759aaab4f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004265', 'rdfs:label': '9.6.2.1', 'dcterms:title': 'Audible acoustic energy', 'hasTest': ['http://smart.iec.ch/test/11275364-6507-4536-9f6f-db96ee3bfc94', 'http://smart.iec.ch/test/bc7b2e92-8b2d-431b-b497-9a46f821040c', 'http://smart.iec.ch/test/d0bae6b2-97e7-44bb-aa44-046ac74c0928', 'http://smart.iec.ch/test/d8f630ac-fe07-4e00-87bf-ae24b3cb5567'], 'hasMeasurement': ['http://smart.iec.ch/measurement/a6680525-1506-4569-be1c-406cc2bbbec4'], 'trans:checksum': '6245f35c7487ef78a8dcae92e61cc4ef7c7dfd8caa66d92d01102590e12147ad', 'withinClause': 'http://smart.iec.ch/clause/0aa52133-4973-41fd-a2f4-b5485dd7eb40', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d7f5f823-3115-4513-a02f-a0e4f7d2498a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004299', 'rdfs:label': '9.6.2.2', 'dcterms:title': 'Infrasound and ultrasound energy', 'hasTest': ['http://smart.iec.ch/test/90035aa0-7746-44e5-940b-885fc344e212'], 'trans:checksum': 'acffe7e726b95daa7db5d9e6b52516f1c72e38afcb0f79a2322d542f7d6e9e3b', 'withinClause': 'http://smart.iec.ch/clause/0aa52133-4973-41fd-a2f4-b5485dd7eb40', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c3e8dc71-676e-40d0-b127-d41922ea5ddd', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004304', 'rdfs:label': '9.6.3', 'dcterms:title': 'Hand-transmitted vibration', 'hasTest': ['http://smart.iec.ch/test/24921c90-a5ec-43bc-9a69-6a3346080f95', 'http://smart.iec.ch/test/59de9e13-31b0-4727-9b60-db80488eb9e5', 'http://smart.iec.ch/test/878edfb6-b44a-4465-916d-a6a11921132e'], 'hasMeasurement': ['http://smart.iec.ch/measurement/025377c1-5256-4b7c-a6c3-7eaf8fed912e'], 'trans:checksum': 'aeed21f96da52f82cfd05b23f735a8fbd109399f44603d7447851ff32a09366c', 'withinClause': 'http://smart.iec.ch/clause/884e5b0a-b795-4bed-a971-22447ea17e59', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/74d7c28f-600e-4ff0-b4d4-e891d54be96c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004318', 'rdfs:label': '9.7', 'dcterms:title': 'Pressure vessels and parts subject to pneumatic and hydraulic pressure', 'comprisesClause': ['http://smart.iec.ch/clause/b7d4eeab-967b-4086-ac0b-ecf7c985fd91', 'http://smart.iec.ch/clause/4a629943-34d9-4165-bd8f-68a29357d611', 'http://smart.iec.ch/clause/0abdfb89-2526-4408-8cfe-e1f1a83a10ad', 'http://smart.iec.ch/clause/51fb4b8a-0411-48f4-aebf-3117509869dc', 'http://smart.iec.ch/clause/49d1e1d7-66bb-4516-8a3a-313ba944662e', 'http://smart.iec.ch/clause/30aad441-7ff7-4157-8cae-ba338ab56f0d', 'http://smart.iec.ch/clause/e94162e2-aeb5-437a-bc0c-c13d3e181f50', 'http://smart.iec.ch/clause/b7243750-a6ed-43a9-8557-740f5fd6f7a8'], 'trans:checksum': '66902fcfdf01d5ee2f5fa8f4b209046f5913a9d5618fde9960586d0f8f7193c4', 'withinClause': 'http://smart.iec.ch/clause/86c00cea-ee8a-475d-93d4-36caef2c0363', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/49d1e1d7-66bb-4516-8a3a-313ba944662e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004319', 'rdfs:label': '9.7.1', 'dcterms:title': 'General', 'trans:checksum': 'efbdd0529f40cc7e965130511defa3aad29a35b03272cb16b807001b4f2d68ee', 'withinClause': 'http://smart.iec.ch/clause/74d7c28f-600e-4ff0-b4d4-e891d54be96c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b7d4eeab-967b-4086-ac0b-ecf7c985fd91', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004324', 'rdfs:label': '9.7.2', 'dcterms:title': 'Pneumatic and hydraulic parts', 'hasTest': ['http://smart.iec.ch/test/1866c008-ac63-47cc-bc83-306c3c31c10e', 'http://smart.iec.ch/test/24e322d8-0887-410c-b3c0-5be88920c9e9', 'http://smart.iec.ch/test/29f8b7e5-355b-4fc8-b8dc-2911e83f08bd', 'http://smart.iec.ch/test/3295c7b4-9fbf-4e77-acfd-4715e7d47482', 'http://smart.iec.ch/test/6cd2c73c-f5f2-498d-ab7d-7467c2d8fbfc', 'http://smart.iec.ch/test/bca2d153-b370-44b7-917f-99cc72644737', 'http://smart.iec.ch/test/cf7053dc-f852-4c22-9613-fc7b9c5f3959'], 'trans:checksum': 'e084a0f92495453fa660c346e89a6706d943964aede464fc551185f96c39fb63', 'withinClause': 'http://smart.iec.ch/clause/74d7c28f-600e-4ff0-b4d4-e891d54be96c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e94162e2-aeb5-437a-bc0c-c13d3e181f50', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004346', 'rdfs:label': '9.7.3', 'dcterms:title': 'Maximum pressure', 'trans:checksum': '47ff7a9ef74df5e52458238f0bb760d7d71e2403af4fe1b52dab2af5c5a023d1', 'withinClause': 'http://smart.iec.ch/clause/74d7c28f-600e-4ff0-b4d4-e891d54be96c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/51fb4b8a-0411-48f4-aebf-3117509869dc', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004359', 'rdfs:label': '9.7.4', 'dcterms:title': 'Pressure rating of ME EQUIPMENT parts', 'hasTest': ['http://smart.iec.ch/test/3d359e1b-4f2f-4c37-a640-2a6375b9c3b7'], 'trans:checksum': 'ec69e514cbaf55cc3866f6442a1acfbb0a323d3050b3e800d590690f058b6174', 'withinClause': 'http://smart.iec.ch/clause/74d7c28f-600e-4ff0-b4d4-e891d54be96c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4a629943-34d9-4165-bd8f-68a29357d611', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004364', 'rdfs:label': '9.7.5', 'dcterms:title': 'Pressure vessels', 'hasTest': ['http://smart.iec.ch/test/6971a31c-b50d-49db-9b3d-800f6fa9e156'], 'hasMeasurement': ['http://smart.iec.ch/measurement/1959231c-7832-48a0-821b-14268aa54b69'], 'trans:checksum': '3cdad48cde07c468a5339de3b8f5a7cc8cdfb71f6940931e96e84b01c7f199ea', 'withinClause': 'http://smart.iec.ch/clause/74d7c28f-600e-4ff0-b4d4-e891d54be96c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/30aad441-7ff7-4157-8cae-ba338ab56f0d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004386', 'rdfs:label': '9.7.6', 'dcterms:title': 'Pressure-control device', 'hasTest': ['http://smart.iec.ch/test/71705f09-dc41-43e9-bd2e-984eb1811e0f'], 'trans:checksum': 'fbe89d0ea8d0e617ce88b31fcf2d328cc15c48fbda2b7f8ce72c74c4990713f3', 'withinClause': 'http://smart.iec.ch/clause/74d7c28f-600e-4ff0-b4d4-e891d54be96c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0abdfb89-2526-4408-8cfe-e1f1a83a10ad', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004391', 'rdfs:label': '9.7.7', 'dcterms:title': 'Pressure-relief device', 'hasTest': ['http://smart.iec.ch/test/2312a9cc-779a-4577-9f2c-0fe9f2979d40', 'http://smart.iec.ch/test/55039eac-6105-4d90-bc92-4a2b15b28c21', 'http://smart.iec.ch/test/809d657c-171a-49cd-a150-4d9b09ba6645', 'http://smart.iec.ch/test/9b49a212-d935-4ea8-aff8-ed5ecd281f95', 'http://smart.iec.ch/test/afab5973-43ce-4477-84a9-868f3a713082', 'http://smart.iec.ch/test/c911e421-9ad1-4e43-a777-bb43bc764f93', 'http://smart.iec.ch/test/cb4dc5b9-60a3-4dc1-9c96-3282af6c6a38', 'http://smart.iec.ch/test/e8ca9e61-4423-4b07-b678-44c107c0ca7e', 'http://smart.iec.ch/test/f4bb978e-eb98-45df-b7b5-c295d74a7b86', 'http://smart.iec.ch/test/fd332aa6-752e-4566-b19a-710638931ed4'], 'trans:checksum': '2290d0f9f326a0726be779c7354b1c7b9f898865cf4d41a4543e8c7b644ab2bf', 'withinClause': 'http://smart.iec.ch/clause/74d7c28f-600e-4ff0-b4d4-e891d54be96c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b7243750-a6ed-43a9-8557-740f5fd6f7a8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004423', 'rdfs:label': '9.7.8', 'dcterms:title': 'RATED maximum supply pressure', 'trans:checksum': '8368915665f352a01b170d57dd67d325b6abe6483838d33c28bc90bccf29def0', 'withinClause': 'http://smart.iec.ch/clause/74d7c28f-600e-4ff0-b4d4-e891d54be96c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2ee3631f-bdba-4251-bc0f-969ee02a46dc', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004426', 'rdfs:label': '9.8', 'dcterms:title': 'HAZARDS associated with support systems', 'hasMeasurement': ['http://smart.iec.ch/measurement/dff5bb88-b334-4aec-88b9-f0a8290d4296'], 'comprisesClause': ['http://smart.iec.ch/clause/e13519c7-32d8-4be3-8748-73fa44a1e0dd', 'http://smart.iec.ch/clause/62b481f7-0ec7-4211-99d6-d967f6377d0c', 'http://smart.iec.ch/clause/2aabb8e9-0d6d-45d6-a211-85702bfef41f', 'http://smart.iec.ch/clause/445ecfa6-b8ed-4d97-80fe-020245764422', 'http://smart.iec.ch/clause/ebc658d7-7e83-45bd-bc92-b3b740721a19'], 'trans:checksum': '7abaec8aeaeb11e50d4ee79d1d3e4f357e3612dfc35b8f8cdd33f139c9a46f72', 'withinClause': 'http://smart.iec.ch/clause/86c00cea-ee8a-475d-93d4-36caef2c0363', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2aabb8e9-0d6d-45d6-a211-85702bfef41f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004427', 'rdfs:label': '9.8.1', 'dcterms:title': 'General', 'hasTest': ['http://smart.iec.ch/test/211abd21-f55f-4c57-80f1-a5d388a39ab4', 'http://smart.iec.ch/test/48cfae21-2ae0-4240-a6c4-fe27c5bd4c94', 'http://smart.iec.ch/test/6635801e-cd9a-4182-a266-99a93f6e7880', 'http://smart.iec.ch/test/70a24f03-bcfb-4160-832b-b9224d5eba47', 'http://smart.iec.ch/test/74ab504f-ceb7-4e54-91ef-6d21dea887dc', 'http://smart.iec.ch/test/97ee7eaa-1908-4129-8dc2-7383e0b83b14', 'http://smart.iec.ch/test/9dd30f1d-fef0-4f9f-a60a-d233f919f6ea'], 'trans:checksum': 'd7e7eed781e6aa661eec209d62e72e6572518dc2f643f5e9dd99c13f3d784086', 'withinClause': 'http://smart.iec.ch/clause/2ee3631f-bdba-4251-bc0f-969ee02a46dc', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/62b481f7-0ec7-4211-99d6-d967f6377d0c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004448', 'rdfs:label': '9.8.2', 'dcterms:title': 'TENSILE SAFETY FACTOR', 'hasTest': ['http://smart.iec.ch/test/1fb27f1c-f53e-4209-8618-c11a88908f3c', 'http://smart.iec.ch/test/38cbb618-98d3-49ab-aa39-f71700d3136c', 'http://smart.iec.ch/test/81425efc-307b-4d1b-8385-30e96979081c', 'http://smart.iec.ch/test/81c268ce-796c-4ffb-8671-de82686d71f0', 'http://smart.iec.ch/test/9bcdd4cb-3e06-414d-a35b-2016740ae513', 'http://smart.iec.ch/test/aefdddc9-a17f-49fb-8f04-06680970a49b'], 'trans:checksum': 'f8883da56948202ce3db04993f583c5873d76005acf92984ff71d9897c3959c4', 'withinClause': 'http://smart.iec.ch/clause/2ee3631f-bdba-4251-bc0f-969ee02a46dc', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e13519c7-32d8-4be3-8748-73fa44a1e0dd', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004471', 'rdfs:label': '9.8.3', 'dcterms:title': 'Strength of PATIENT or OPERATOR support or suspension systems', 'comprisesClause': ['http://smart.iec.ch/clause/9dd5deea-b764-41d3-88de-56d4eb27d0c3', 'http://smart.iec.ch/clause/69b24f99-1514-4db0-a0c5-7720a0bbfd5f', 'http://smart.iec.ch/clause/5df3a87c-1c2e-419b-a062-75bdd209616f'], 'trans:checksum': '2c878282bb4d862d70bde37603846cf3bdefa9048c0d32d026b86c3720be7119', 'withinClause': 'http://smart.iec.ch/clause/2ee3631f-bdba-4251-bc0f-969ee02a46dc', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5df3a87c-1c2e-419b-a062-75bdd209616f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004472', 'rdfs:label': '9.8.3.1', 'dcterms:title': 'General', 'hasTest': ['http://smart.iec.ch/test/035d50c4-84b5-47ef-831a-49b5e172523e', 'http://smart.iec.ch/test/4b057370-2ebe-4828-9c5c-43f049f04de4', 'http://smart.iec.ch/test/7107f7b2-ded1-415c-a7a2-ea21fc0531ca', 'http://smart.iec.ch/test/7503e4e9-e835-4a46-81a3-bea2227216f7', 'http://smart.iec.ch/test/787e6460-290b-4884-b984-2c7a1b0ef551', 'http://smart.iec.ch/test/a2838c02-b919-4e53-90ba-e297348948fe', 'http://smart.iec.ch/test/e92b7d59-ce60-42e1-a926-3b09d4178251', 'http://smart.iec.ch/test/f80dddb9-7885-4fdb-9bae-c36cc02f6eb4'], 'trans:checksum': '4ccb342a5918108d6a6e89ba8abc276c8e6ccf1a54643c9aedda2da7852b8f08', 'withinClause': 'http://smart.iec.ch/clause/e13519c7-32d8-4be3-8748-73fa44a1e0dd', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/69b24f99-1514-4db0-a0c5-7720a0bbfd5f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004485', 'rdfs:label': '9.8.3.2', 'dcterms:title': 'Static forces due to loading from persons', 'hasTest': ['http://smart.iec.ch/test/2e934d97-9e3d-42f2-8f5e-13d8828ba903', 'http://smart.iec.ch/test/53b31db1-acf6-4ad1-9af6-9624031b6553', 'http://smart.iec.ch/test/c5671ae0-b9de-423e-b0d1-1ef969464209', 'http://smart.iec.ch/test/cfd756f8-a77b-4acc-a448-52c9daa5e327'], 'trans:checksum': 'b74c60bf51fdd42b0d0a65f1e0effddada3517f4ccfe7c3f7d38aea35b8c9941', 'withinClause': 'http://smart.iec.ch/clause/e13519c7-32d8-4be3-8748-73fa44a1e0dd', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9dd5deea-b764-41d3-88de-56d4eb27d0c3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004511', 'rdfs:label': '9.8.3.3', 'dcterms:title': 'Dynamic forces due to loading from persons', 'hasTest': ['http://smart.iec.ch/test/991e5544-4e93-41fc-a336-9af281bf8f8d'], 'trans:checksum': 'fda63c92397dd1cf54364dcc67f6839af77f5345fbcaee6b87e8aa7a63f41cc0', 'withinClause': 'http://smart.iec.ch/clause/e13519c7-32d8-4be3-8748-73fa44a1e0dd', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ebc658d7-7e83-45bd-bc92-b3b740721a19', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004520', 'rdfs:label': '9.8.4', 'dcterms:title': 'Systems with MECHANICAL PROTECTIVE DEVICES', 'comprisesClause': ['http://smart.iec.ch/clause/13bb29dd-f2a8-41b4-bfa9-4e1fcf042a06', 'http://smart.iec.ch/clause/c7fd3b83-8eca-4d6f-acd0-daadd405744d', 'http://smart.iec.ch/clause/d3af49c8-dd0b-46fc-adf5-f7e12833d7d8'], 'trans:checksum': '329fa699acb521a0f17e99fbbc790c86d35d1e4c92a29b4a49cd646b99919478', 'withinClause': 'http://smart.iec.ch/clause/2ee3631f-bdba-4251-bc0f-969ee02a46dc', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/13bb29dd-f2a8-41b4-bfa9-4e1fcf042a06', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004521', 'rdfs:label': '9.8.4.1', 'dcterms:title': 'General', 'hasTest': ['http://smart.iec.ch/test/08117392-450f-4779-821a-187bc8edb839', 'http://smart.iec.ch/test/0d26e285-b560-4c95-b449-7075e432c4e3', 'http://smart.iec.ch/test/6c9e0e65-e8a0-4b65-ab19-e74194a56394', 'http://smart.iec.ch/test/9a67b97a-28eb-4be9-a1e3-8a6ee8f87f8b', 'http://smart.iec.ch/test/9cb8af47-e996-4797-989c-77b967962a15', 'http://smart.iec.ch/test/ba887b8f-10a2-4cb4-8a9f-0616de3a846e', 'http://smart.iec.ch/test/bf39a350-ac6a-4e60-973b-ded54de5e1d4'], 'trans:checksum': '9cc44ed0f45a2cbaf115c823eb74bdade7bea032e3c8b58c8d30055cff45b70a', 'withinClause': 'http://smart.iec.ch/clause/ebc658d7-7e83-45bd-bc92-b3b740721a19', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d3af49c8-dd0b-46fc-adf5-f7e12833d7d8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004550', 'rdfs:label': '9.8.4.2', 'dcterms:title': 'Use after activation of a MECHANICAL PROTECTIVE DEVICE', 'hasTest': ['http://smart.iec.ch/test/cbc271e5-8a48-49bc-96aa-6a1dc9ebb979', 'http://smart.iec.ch/test/cf653014-a702-45ee-9441-82115f59a454'], 'trans:checksum': '975804d032db96bd3cb5040f9a01f53c2a7fadf8bb12045bc1b6b841ffb5c570', 'withinClause': 'http://smart.iec.ch/clause/ebc658d7-7e83-45bd-bc92-b3b740721a19', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c7fd3b83-8eca-4d6f-acd0-daadd405744d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004557', 'rdfs:label': '9.8.4.3', 'dcterms:title': 'MECHANICAL PROTECTIVE DEVICE intended for single activation', 'hasTest': ['http://smart.iec.ch/test/0a1b4fd6-6e47-494e-9e5b-4eb832ae83c5', 'http://smart.iec.ch/test/1207a0b5-0a2e-4537-95ce-9de05be9c140', 'http://smart.iec.ch/test/31e85626-08fe-46c4-ab26-4a44d51bd5ef', 'http://smart.iec.ch/test/3350df49-f04e-4983-a0d3-2eea4d921396', 'http://smart.iec.ch/test/36f5443c-a428-41dc-b8a0-4f39fb4029ba', 'http://smart.iec.ch/test/7ecfcb87-028f-4087-ad3d-7e9505eb6841', 'http://smart.iec.ch/test/e5783845-ef30-4fa2-aa62-72d7efd03796', 'http://smart.iec.ch/test/ea9f9ad1-733e-46a5-ac18-dd4c4dcf99fe', 'http://smart.iec.ch/test/ff30b9b6-74c8-492a-a9eb-91aedda590be'], 'trans:checksum': 'c388b4400eac4491eb91b24fb4c7f6940c4522ecfdce999dd20457311d83e556', 'withinClause': 'http://smart.iec.ch/clause/ebc658d7-7e83-45bd-bc92-b3b740721a19', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/445ecfa6-b8ed-4d97-80fe-020245764422', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004589', 'rdfs:label': '9.8.5', 'dcterms:title': 'Systems without MECHANICAL PROTECTIVE DEVICES', 'hasTest': ['http://smart.iec.ch/test/2d50cf36-7c2c-4307-8483-14f959aac5c3', 'http://smart.iec.ch/test/8c86efd9-2fe8-4299-823e-da7b5982d3b3'], 'trans:checksum': '682664057afb156880a3789963f298d70015dd3940ae07ca2beb5c16f038cceb', 'withinClause': 'http://smart.iec.ch/clause/2ee3631f-bdba-4251-bc0f-969ee02a46dc', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ad246cdd-bbea-4dba-95d1-ac71f11a0826', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004601', 'rdfs:label': '10', 'dcterms:title': 'Protection against unwanted and excessive radiation HAZARDS', 'comprisesClause': ['http://smart.iec.ch/clause/335b44c6-88a3-40a9-b60e-530284199599', 'http://smart.iec.ch/clause/c864fd8e-dcda-4e98-ab87-52c99099d5ab', 'http://smart.iec.ch/clause/21d37909-504b-40ff-8273-9243a57aa128', 'http://smart.iec.ch/clause/1ed03b9f-d1cc-4206-958f-5c279189195b', 'http://smart.iec.ch/clause/7bd11197-747d-450d-8469-bdf91457eb6b', 'http://smart.iec.ch/clause/f27cc88a-4844-4d45-a0bb-ea19fa1a69b0', 'http://smart.iec.ch/clause/7ee3b5f0-a89d-4066-aeba-2a6736551bb9'], 'trans:checksum': 'ee54603cdd560814c682c47d5fe61803349b05ba9188228fea07566c6272e2c8', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/335b44c6-88a3-40a9-b60e-530284199599', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004602', 'rdfs:label': '10.1', 'dcterms:title': 'X-Radiation', 'hasMeasurement': ['http://smart.iec.ch/measurement/35f0ed6d-15b6-424b-8c63-92ad340030d8'], 'comprisesClause': ['http://smart.iec.ch/clause/ef570fbb-e329-4894-ab57-cd164fdb902a', 'http://smart.iec.ch/clause/9befa8b7-c107-427d-b506-45c39c0ac225'], 'trans:checksum': '5a125515351d0d9de3113f1cfe51ad172c631584abce379068113f12b3e768a0', 'withinClause': 'http://smart.iec.ch/clause/ad246cdd-bbea-4dba-95d1-ac71f11a0826', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9befa8b7-c107-427d-b506-45c39c0ac225', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004603', 'rdfs:label': '10.1.1', 'dcterms:title': 'ME EQUIPMENT not intended to produce diagnostic or therapeutic X-radiation', 'hasTest': ['http://smart.iec.ch/test/4c53f705-ea05-4005-a011-78356f2ab755', 'http://smart.iec.ch/test/e2154030-d037-45bf-b263-7ef5164a10a3'], 'trans:checksum': 'f1b958db596ec72ee0e26793a7c416a2ca56f2dd4674cca7ba98fbaed6e1b170', 'withinClause': 'http://smart.iec.ch/clause/335b44c6-88a3-40a9-b60e-530284199599', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ef570fbb-e329-4894-ab57-cd164fdb902a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004634', 'rdfs:label': '10.1.2', 'dcterms:title': 'ME EQUIPMENT I ntended to produce diagnostic or therapeutic X-radiation', 'hasTest': ['http://smart.iec.ch/test/01772dbb-c457-4567-b550-8eae6801fbc3', 'http://smart.iec.ch/test/9b2d41f1-55d7-4a95-959b-b387bf4efd28'], 'trans:checksum': 'f3c56b034f11f72d4745beedbbf9b061277b57bf2ea2ca3e9ba2cdbc549c30bf', 'withinClause': 'http://smart.iec.ch/clause/335b44c6-88a3-40a9-b60e-530284199599', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/f27cc88a-4844-4d45-a0bb-ea19fa1a69b0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004639', 'rdfs:label': '10.2', 'dcterms:title': 'Alpha, beta, gamma, neutron and other particle radiation', 'hasTest': ['http://smart.iec.ch/test/e71a5cf1-23ef-41ef-b977-ced1e2b3d981'], 'trans:checksum': 'b106d980f4df8e0b974dbcc34d6247c0d9523c0cb40c22722e3eace2b70d3667', 'withinClause': 'http://smart.iec.ch/clause/ad246cdd-bbea-4dba-95d1-ac71f11a0826', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/21d37909-504b-40ff-8273-9243a57aa128', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004644', 'rdfs:label': '10.3', 'dcterms:title': 'Microwave radiation', 'hasTest': ['http://smart.iec.ch/test/12dd25b0-fb0c-40c3-b0d5-6965d9f1cc1c', 'http://smart.iec.ch/test/ac959d79-11f6-4895-9c5f-8cb0b6ce2609'], 'hasMeasurement': ['http://smart.iec.ch/measurement/09c95be6-8dbd-4a0b-95d1-2864f74d1f34'], 'trans:checksum': '5040dc78ad0450fa24b5a3335dbb69b59e02c314a543778c3ab4342e299644ab', 'withinClause': 'http://smart.iec.ch/clause/ad246cdd-bbea-4dba-95d1-ac71f11a0826', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1ed03b9f-d1cc-4206-958f-5c279189195b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004649', 'rdfs:label': '10.4', 'dcterms:title': 'Lasers and light emitting diodes (LEDs)', 'hasTest': ['http://smart.iec.ch/test/2e168588-c887-413a-899f-df207fc4d9bb'], 'hasMeasurement': ['http://smart.iec.ch/measurement/5e4d2efd-2b11-4af6-bfa4-d71e1e140dee'], 'trans:checksum': '156f22397c4cbeebbc064a2389d1c2dfae7ff12566a7882b046dc18ead978f80', 'withinClause': 'http://smart.iec.ch/clause/ad246cdd-bbea-4dba-95d1-ac71f11a0826', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7ee3b5f0-a89d-4066-aeba-2a6736551bb9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004655', 'rdfs:label': '10.5', 'dcterms:title': 'Other visible electromagnetic radiation', 'hasTest': ['http://smart.iec.ch/test/30a98ffb-2e3e-4682-9bbf-e905e8fe7e21'], 'trans:checksum': '3be199f193ba2e87297bd6859d2f8df69123bdba109226c820e901d59b8f82cc', 'withinClause': 'http://smart.iec.ch/clause/ad246cdd-bbea-4dba-95d1-ac71f11a0826', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c864fd8e-dcda-4e98-ab87-52c99099d5ab', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004660', 'rdfs:label': '10.6', 'dcterms:title': 'Infrared radiation', 'hasTest': ['http://smart.iec.ch/test/b466bd3e-b34b-497c-81a2-68ac2de2ec70'], 'trans:checksum': '165759d7c5892488ff207e7d724489e860317ff99f98e4bf2a37153c4142f5cb', 'withinClause': 'http://smart.iec.ch/clause/ad246cdd-bbea-4dba-95d1-ac71f11a0826', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7bd11197-747d-450d-8469-bdf91457eb6b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004665', 'rdfs:label': '10.7', 'dcterms:title': 'Ultraviolet radiation', 'hasTest': ['http://smart.iec.ch/test/30721ee1-3bc2-4d86-b1d2-f57bade47c0e'], 'trans:checksum': 'b3ec2de2f6ccb4244ebc623694b6ee61d6745d16c3c37d5e9334180cb2170709', 'withinClause': 'http://smart.iec.ch/clause/ad246cdd-bbea-4dba-95d1-ac71f11a0826', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7c3363a4-50c3-417d-9b33-fb7002a2e2fd', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004670', 'rdfs:label': '11', 'dcterms:title': 'Protection against excessive temperatures and other HAZARDS', 'comprisesClause': ['http://smart.iec.ch/clause/1e7bfa06-822d-43a6-9954-f7236c5f8ace', 'http://smart.iec.ch/clause/6811b0aa-cd00-4c58-b6b4-1e328cec1d97', 'http://smart.iec.ch/clause/333bef7d-3090-4c57-a0e0-20d92eee7397', 'http://smart.iec.ch/clause/26fa2d1c-e728-4a99-b037-01404a952700', 'http://smart.iec.ch/clause/18994d5f-e4c3-4312-a095-eecea0a58804', 'http://smart.iec.ch/clause/7aa22389-4c70-4d49-8eeb-db55ceb4c9f0', 'http://smart.iec.ch/clause/23723bb3-1c35-48ff-99ce-7f795765989a', 'http://smart.iec.ch/clause/31252bed-e40e-4967-8c3a-0e6db7d498f3'], 'trans:checksum': '3294b2899adfab8e14c1b27f9985112ed07259c3ee4789887a873ebad1c8741a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/31252bed-e40e-4967-8c3a-0e6db7d498f3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004671', 'rdfs:label': '11.1', 'dcterms:title': 'Excessive temperatures in ME EQUIPMENT', 'hasMeasurement': ['http://smart.iec.ch/measurement/b4a797e4-17f7-4fcd-b389-00cfb1c962bc'], 'comprisesClause': ['http://smart.iec.ch/clause/d8eb2be6-24f6-46c6-993a-6580ee51d091', 'http://smart.iec.ch/clause/ba51fbe4-ce7d-47a0-8112-7d47462c6114', 'http://smart.iec.ch/clause/d328f3ad-1e77-4613-8238-4da86ebdc2eb', 'http://smart.iec.ch/clause/a24eea54-8cf7-4356-9712-c41d34221bf8'], 'trans:checksum': '97b9681b5904339fc8570e0b6ce92893069def459829df1bf71ac3fe2bef155c', 'withinClause': 'http://smart.iec.ch/clause/7c3363a4-50c3-417d-9b33-fb7002a2e2fd', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d328f3ad-1e77-4613-8238-4da86ebdc2eb', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004672', 'rdfs:label': '11.1.1', 'dcterms:title': 'Maximum temperature during NORMAL USE', 'hasTest': ['http://smart.iec.ch/test/0fce6c33-6e74-44d8-95ca-c1192484fdd7', 'http://smart.iec.ch/test/2039cc3d-aa30-4fe6-a521-cd2ea6ff7b06', 'http://smart.iec.ch/test/8a11f519-b4d8-4d2f-a716-5ee4e31c0a75', 'http://smart.iec.ch/test/a98f3483-f67d-4fd8-bf3c-9d63eb6f1086'], 'trans:checksum': '7223685e888c15d97daa66ec5221f0a6b941b7f9630789dd15769f21ff76ac5e', 'withinClause': 'http://smart.iec.ch/clause/31252bed-e40e-4967-8c3a-0e6db7d498f3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a24eea54-8cf7-4356-9712-c41d34221bf8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004701', 'rdfs:label': '11.1.2', 'dcterms:title': 'Temperature of APPLIED PARTS', 'comprisesClause': ['http://smart.iec.ch/clause/0ce0d9b4-1338-4101-ac64-9dcdbf2be5cd', 'http://smart.iec.ch/clause/9ad7b00d-9189-4d55-9c37-08e54bccac12'], 'trans:checksum': 'c1750ac8058165dc8721ba2725784e28c93afda052d937d81e92900bce6abdcc', 'withinClause': 'http://smart.iec.ch/clause/31252bed-e40e-4967-8c3a-0e6db7d498f3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0ce0d9b4-1338-4101-ac64-9dcdbf2be5cd', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004702', 'rdfs:label': '11.1.2.1', 'dcterms:title': 'APPLIED PARTS intended to supply heat to a PATIENT', 'hasTest': ['http://smart.iec.ch/test/566ac711-16ff-4380-92d4-43896fe6ca23', 'http://smart.iec.ch/test/adf0efd9-ea70-40d3-b2d2-0c9d7b565701', 'http://smart.iec.ch/test/f5d4b672-7d91-4bc9-932c-8a09b2f20421'], 'trans:checksum': 'c0c45580db994ffb52c419ca39e186fbaa9b9b3a6e5051c12d7ab82e5afaa652', 'withinClause': 'http://smart.iec.ch/clause/a24eea54-8cf7-4356-9712-c41d34221bf8', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9ad7b00d-9189-4d55-9c37-08e54bccac12', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004706', 'rdfs:label': '11.1.2.2', 'dcterms:title': 'APPLIED PARTS not intended to supply heat to a PATIENT', 'hasTest': ['http://smart.iec.ch/test/1796e2cb-5d15-44a6-8498-433862fd1cd7', 'http://smart.iec.ch/test/45371179-e5be-49d0-aeeb-b6e2eb68a6b0', 'http://smart.iec.ch/test/76c5bc5a-82ce-46fd-8ae5-763a05d370ef', 'http://smart.iec.ch/test/796b46ad-79b7-4aa3-9753-41f47607f057', 'http://smart.iec.ch/test/8b3187c7-77f0-4b9f-bf4d-a27c5c2cbe42', 'http://smart.iec.ch/test/9939f857-2ecb-4ad8-b6b6-deade0271096', 'http://smart.iec.ch/test/d28c1218-b3fa-4f47-9927-c7e8fc856645', 'http://smart.iec.ch/test/f4cfe1fc-3630-44a8-9a00-6a80a7faeed1'], 'trans:checksum': 'd6cace664d27da572d6d039db5301cc8ec40ce32cefcb71639a5905c0f0bdcaa', 'withinClause': 'http://smart.iec.ch/clause/a24eea54-8cf7-4356-9712-c41d34221bf8', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ba51fbe4-ce7d-47a0-8112-7d47462c6114', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004713', 'rdfs:label': '11.1.3', 'dcterms:title': 'Measurements', 'hasTest': ['http://smart.iec.ch/test/3654d9f5-9644-465d-8611-f5509b6a790f', 'http://smart.iec.ch/test/676f1cf4-63d6-4955-803f-7b7dcaa850ee', 'http://smart.iec.ch/test/a5c952ea-859f-4ebf-8764-c558819c0f35', 'http://smart.iec.ch/test/e898ced7-6cd9-4240-a875-49d748380cbc'], 'trans:checksum': '585caa8b3e62240912364578cc41b9d573b5e5e5e7ed68bf6e78adc4cfcf24a4', 'withinClause': 'http://smart.iec.ch/clause/31252bed-e40e-4967-8c3a-0e6db7d498f3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d8eb2be6-24f6-46c6-993a-6580ee51d091', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004832', 'rdfs:label': '11.1.4', 'dcterms:title': 'GUARDS', 'hasTest': ['http://smart.iec.ch/test/56a8b0e2-5e5c-4b0f-938b-2ffd4e87b7ac'], 'trans:checksum': '10c7e483ddb7bfedb3cf0d09f4b3fb4d35e6f4463d65d2be7ebb5129d4b8f880', 'withinClause': 'http://smart.iec.ch/clause/31252bed-e40e-4967-8c3a-0e6db7d498f3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1e7bfa06-822d-43a6-9954-f7236c5f8ace', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004837', 'rdfs:label': '11.2', 'dcterms:title': 'Fire prevention', 'hasMeasurement': ['http://smart.iec.ch/measurement/cd7e99ca-531b-449b-8685-23e865b3263b'], 'comprisesClause': ['http://smart.iec.ch/clause/139c48ba-ca7f-4c1d-beba-98ac059b46bd', 'http://smart.iec.ch/clause/d1886cb3-6fac-43e0-938e-067bcf671c30', 'http://smart.iec.ch/clause/ad5f27b1-35c8-46b5-a843-89d6b89f388b'], 'trans:checksum': '9510da6507431612efd31c8b5e74675191bcdc266e33d9a428c2d8374a3ecd66', 'withinClause': 'http://smart.iec.ch/clause/7c3363a4-50c3-417d-9b33-fb7002a2e2fd', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/139c48ba-ca7f-4c1d-beba-98ac059b46bd', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004838', 'rdfs:label': '11.2.1', 'dcterms:title': 'Strength and rigidity required to prevent fire in ME EQUIPMENT', 'hasTest': ['http://smart.iec.ch/test/1d03211c-3e5c-4252-8a05-15bf3ec8018b'], 'trans:checksum': '8a04e02c3d7e8ffa29630ec860813767b3b54eea32e66271056f02f7c2d0fc1d', 'withinClause': 'http://smart.iec.ch/clause/1e7bfa06-822d-43a6-9954-f7236c5f8ace', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d1886cb3-6fac-43e0-938e-067bcf671c30', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004843', 'rdfs:label': '11.2.2', 'dcterms:title': 'ME EQUIPMENT and ME SYSTEMS used in conjunction with OXYGEN RICH ENVIRONMENTS', 'comprisesClause': ['http://smart.iec.ch/clause/ee9d955a-93ed-403a-ba39-27fded885c48', 'http://smart.iec.ch/clause/ec7f3def-d260-4d30-9b0e-cb284c34aee7', 'http://smart.iec.ch/clause/5673673b-2942-46ce-8e6a-4e35d958194e'], 'trans:checksum': 'bdd9c146f4a5ebe71a1a4ef2a6cd1ffefa74aa2024803fae9245dfcc2195aa1a', 'withinClause': 'http://smart.iec.ch/clause/1e7bfa06-822d-43a6-9954-f7236c5f8ace', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5673673b-2942-46ce-8e6a-4e35d958194e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004844', 'rdfs:label': '11.2.2.1', 'dcterms:title': 'RISK of fire in an OXYGEN RICH ENVIRONMENT', 'hasTest': ['http://smart.iec.ch/test/04e9d544-2207-48da-a703-06f1f040b570', 'http://smart.iec.ch/test/105923e5-f2e2-484a-b45a-0fabe620e295', 'http://smart.iec.ch/test/1a8f2a99-8639-479d-95ce-fcb06465b8de', 'http://smart.iec.ch/test/2130b8f4-76de-44d5-87b7-e3bfd5a76c28', 'http://smart.iec.ch/test/233c15cd-f0dc-408b-85e6-2008b862938b', 'http://smart.iec.ch/test/5da48e33-d49e-40da-9e1d-88de0c60d02d', 'http://smart.iec.ch/test/81e02f79-5069-4dc9-9c5d-116dd70e9302', 'http://smart.iec.ch/test/81f2ce68-c5f4-4fcf-93b4-b7f5572b9044', 'http://smart.iec.ch/test/860dab5c-a7ff-4f07-9e30-26a64f5d513c', 'http://smart.iec.ch/test/9179775d-2743-44f0-9cc7-a5e6985ac239', 'http://smart.iec.ch/test/93f2b902-8297-439f-9eb3-a24d7b8ea73e', 'http://smart.iec.ch/test/98cdc7d3-369d-4689-b1a6-f3581ba39d7d', 'http://smart.iec.ch/test/9e18f699-ab6c-4e1e-b30e-b9d3be2d2f38', 'http://smart.iec.ch/test/bf777ce9-c08b-4ab2-ae60-63c04f35b4db', 'http://smart.iec.ch/test/e8879e7b-7ec9-4b7e-975a-ff82822c68e2', 'http://smart.iec.ch/test/fe0d450d-cdf9-415d-b081-fee1c6a71e28'], 'trans:checksum': 'e4bf54573b1c98b55ee807704e72585531fd1037af2fead8fb253637f1a5a093', 'withinClause': 'http://smart.iec.ch/clause/d1886cb3-6fac-43e0-938e-067bcf671c30', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ec7f3def-d260-4d30-9b0e-cb284c34aee7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004933', 'rdfs:label': '11.2.2.2', 'dcterms:title': 'External exhaust outlets for OXYGEN RICH ENVIRONMENT', 'hasTest': ['http://smart.iec.ch/test/8fb43575-c462-4875-97f1-307974fb411c'], 'trans:checksum': '298474b21dc62452bca98573cac68efc5a96c1925fe5bd4495ae54153c120871', 'withinClause': 'http://smart.iec.ch/clause/d1886cb3-6fac-43e0-938e-067bcf671c30', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ee9d955a-93ed-403a-ba39-27fded885c48', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004939', 'rdfs:label': '11.2.2.3', 'dcterms:title': 'Electrical connections in OXYGEN RICH ENVIRONMENTS', 'hasTest': ['http://smart.iec.ch/test/87e59313-e583-4a7b-af44-61809453313b', 'http://smart.iec.ch/test/fd64246a-d5ae-4aad-9c6f-10583ec7ce8e', 'http://smart.iec.ch/test/fe3ed9c0-7ef6-4286-92e2-8fe1704ca348'], 'trans:checksum': 'f4f258cd64ee04cb35e7afd2fb58bfdff6f5e37674eb58acef479aa1bb106df4', 'withinClause': 'http://smart.iec.ch/clause/d1886cb3-6fac-43e0-938e-067bcf671c30', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ad5f27b1-35c8-46b5-a843-89d6b89f388b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004953', 'rdfs:label': '11.2.3', 'dcterms:title': 'SINGLE FAULT CONDITIONS related to OXYGEN RICH ENVIRONMENTS in conjunction with ME EQUIPMENT and ME SYSTEMS', 'hasTest': ['http://smart.iec.ch/test/3419cd03-1a33-43fc-b362-c6ed78b3efa5', 'http://smart.iec.ch/test/3744999f-bd7b-4df9-82bc-ea09776b77f5', 'http://smart.iec.ch/test/45581b86-887f-4dd7-a961-12543ed808fc', 'http://smart.iec.ch/test/6e1a2fd1-159b-458e-a3a5-2c553b18a5f1', 'http://smart.iec.ch/test/8e0be967-b562-43dc-956d-4bfc1cea2063', 'http://smart.iec.ch/test/cce1718f-949e-4f83-8374-6fe002546bfc'], 'trans:checksum': '83dfb6ff722427c565772b91fc30b117a67f42c06064f680ce0b5fc4bb72cd17', 'withinClause': 'http://smart.iec.ch/clause/1e7bfa06-822d-43a6-9954-f7236c5f8ace', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/26fa2d1c-e728-4a99-b037-01404a952700', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000004970', 'rdfs:label': '11.3', 'dcterms:title': 'Constructional requirements for fire ENCLOSURES of ME EQUIPMENT', 'hasTest': ['http://smart.iec.ch/test/09ac85d2-add0-457f-a248-ae05d3d1f8c6', 'http://smart.iec.ch/test/1372b440-d5d3-4462-a853-6f381d3b9215', 'http://smart.iec.ch/test/175bedd2-1129-4d13-9448-a5389e10c6f6', 'http://smart.iec.ch/test/4e374f78-5cb1-476e-9f26-3133c237179c', 'http://smart.iec.ch/test/82bb7889-4fff-413a-ab75-28d716403359', 'http://smart.iec.ch/test/82f9c0f7-83ea-4591-9ed9-67bdc788a8b3', 'http://smart.iec.ch/test/88301acb-0fe7-4b01-9938-c3c2629eec3e', 'http://smart.iec.ch/test/b1fc65f0-a279-4404-b3c3-61a07ba94e58', 'http://smart.iec.ch/test/b50c7e08-b163-4716-a133-4ee7db157e89', 'http://smart.iec.ch/test/c00b8c09-076c-4a5f-ab51-41c06252d0df', 'http://smart.iec.ch/test/f01d214f-f695-426b-b353-14fa6a143215', 'http://smart.iec.ch/test/f387227e-944e-4377-a2b1-6865a18dcfcc'], 'hasMeasurement': ['http://smart.iec.ch/measurement/4f3cf217-acef-4d3e-9ab7-68872982bcb2'], 'trans:checksum': 'f6e763472f1a86c23aa4a4e4ec449ef11b651408e29ba518aa72404001da60c3', 'withinClause': 'http://smart.iec.ch/clause/7c3363a4-50c3-417d-9b33-fb7002a2e2fd', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/333bef7d-3090-4c57-a0e0-20d92eee7397', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005026', 'rdfs:label': '11.4', 'dcterms:title': 'ME EQUIPMENT and ME SYSTEMS intended for use with flammable anaesthetics', 'hasTest': ['http://smart.iec.ch/test/ade7fee1-cae9-46a1-a36e-d25618a53587'], 'trans:checksum': '30ab847e06644f3d6ad4b558f84da1473c4b94073b714591b666545764f46d67', 'withinClause': 'http://smart.iec.ch/clause/7c3363a4-50c3-417d-9b33-fb7002a2e2fd', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/18994d5f-e4c3-4312-a095-eecea0a58804', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005029', 'rdfs:label': '11.5', 'dcterms:title': 'ME EQUIPMENT and ME SYSTEMS intended for use in conjunction with flammable agents', 'hasTest': ['http://smart.iec.ch/test/ed47f901-aae1-4dab-9d6c-b3d436c23952'], 'trans:checksum': '522fe2182175e4f8a4768a0ff4f2c278e447bbebffe837da81f7e9651f70f22e', 'withinClause': 'http://smart.iec.ch/clause/7c3363a4-50c3-417d-9b33-fb7002a2e2fd', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/23723bb3-1c35-48ff-99ce-7f795765989a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005034', 'rdfs:label': '11.6', 'dcterms:title': 'Overflow, spillage, leakage, ingress of water or particulate matter, cleaning, disinfection, sterilization and compatibility with substances used with the ME EQUIPMENT', 'comprisesClause': ['http://smart.iec.ch/clause/7e1d5742-5c6c-488a-a626-a3c816fbf45e', 'http://smart.iec.ch/clause/f49c3d8d-be76-4db0-8e74-9be15fe41212', 'http://smart.iec.ch/clause/ca9b34b8-fba4-456e-acbe-590f9fd3cb7f', 'http://smart.iec.ch/clause/9e834a66-5403-4334-8b7b-8ca0d62a15b2', 'http://smart.iec.ch/clause/e55a08b2-5019-43ba-bd6a-bf0364d66daf', 'http://smart.iec.ch/clause/dc1a56e8-9bbe-494e-9fac-d442c95618bb', 'http://smart.iec.ch/clause/feccdf8a-b1a2-495b-a426-2568f1715dd1', 'http://smart.iec.ch/clause/18c55a37-b545-41ba-a488-44b43e2a7f2d'], 'trans:checksum': '12456f48ccf80db908eae4c6e9f0137a426b20ade309d8e0323cdb849c8ae0e9', 'withinClause': 'http://smart.iec.ch/clause/7c3363a4-50c3-417d-9b33-fb7002a2e2fd', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7e1d5742-5c6c-488a-a626-a3c816fbf45e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005035', 'rdfs:label': '11.6.1', 'dcterms:title': 'General', 'hasTest': ['http://smart.iec.ch/test/4dbb64f3-44e9-48a5-a727-aba9a0101fce'], 'trans:checksum': 'b15cded7120a264ae942ca86039248ad661b33dac446137e09102e9a92e7e7fc', 'withinClause': 'http://smart.iec.ch/clause/23723bb3-1c35-48ff-99ce-7f795765989a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/dc1a56e8-9bbe-494e-9fac-d442c95618bb', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005038', 'rdfs:label': '11.6.2', 'dcterms:title': 'Overflow in ME EQUIPMENT', 'hasTest': ['http://smart.iec.ch/test/0cdb6d8d-65b7-47d3-8131-5a19c39a360b', 'http://smart.iec.ch/test/6a8649df-4b36-41a8-8d75-fc336062249a', 'http://smart.iec.ch/test/80872f60-7f52-41ea-bb9c-ae0a3fba3bae'], 'hasMeasurement': ['http://smart.iec.ch/measurement/1c395393-cffc-44ad-b2aa-db5e0bec2477'], 'trans:checksum': '36c9558fb13541fccfe2fab3e5cbb31620b98631c3ed6a147265b5a3efe93a12', 'withinClause': 'http://smart.iec.ch/clause/23723bb3-1c35-48ff-99ce-7f795765989a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ca9b34b8-fba4-456e-acbe-590f9fd3cb7f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005047', 'rdfs:label': '11.6.3', 'dcterms:title': 'Spillage on ME EQUIPMENT and ME SYSTEM', 'hasTest': ['http://smart.iec.ch/test/592e3576-8634-4cb5-a323-913dd419fc61', 'http://smart.iec.ch/test/7c924925-b138-45bd-8bfe-fb7e9b5d8955'], 'hasMeasurement': ['http://smart.iec.ch/measurement/83a0384f-f8c9-49eb-a9a9-735b079499ba'], 'trans:checksum': '02cf8170426add7ddfd62f882f0c768cdbbfa95b3f2e5a4a369df6c6e9bf830d', 'withinClause': 'http://smart.iec.ch/clause/23723bb3-1c35-48ff-99ce-7f795765989a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/feccdf8a-b1a2-495b-a426-2568f1715dd1', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005056', 'rdfs:label': '11.6.4', 'dcterms:title': 'Leakage', 'trans:checksum': '3a39ac7d0a4b319eecb0ff6715d390e655a2cbe5030815dc18c531b413c15bfd', 'withinClause': 'http://smart.iec.ch/clause/23723bb3-1c35-48ff-99ce-7f795765989a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/18c55a37-b545-41ba-a488-44b43e2a7f2d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005059', 'rdfs:label': '11.6.5', 'dcterms:title': 'Ingress of water or particulate matter into ME EQUIPMENT and ME SYSTEMS', 'hasTest': ['http://smart.iec.ch/test/9a0c8633-605b-4d97-996e-1277b3108ac8', 'http://smart.iec.ch/test/a19319b4-35a5-45d6-a0eb-b280faef5bf7'], 'hasMeasurement': ['http://smart.iec.ch/measurement/dfd65aef-59a6-4527-b8a4-c561dc83e207'], 'trans:checksum': '080bf98ae396ee3f4ab6f84ef4efa94c9f983f4db0be1156ca830de8bbc1b936', 'withinClause': 'http://smart.iec.ch/clause/23723bb3-1c35-48ff-99ce-7f795765989a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e55a08b2-5019-43ba-bd6a-bf0364d66daf', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005067', 'rdfs:label': '11.6.6', 'dcterms:title': 'Cleaning and disinfection of ME EQUIPMENT and ME SYSTEMS', 'hasTest': ['http://smart.iec.ch/test/1446572a-fe35-402f-8c19-95e0a308ed23', 'http://smart.iec.ch/test/18f41499-4192-47bd-aad9-089b8b406ae6'], 'hasMeasurement': ['http://smart.iec.ch/measurement/2656f4d6-e170-485b-8742-8234227ca0b4'], 'trans:checksum': '1dd78178c524a3fa61dbe9e40e1558a7e29097a5bf7ca96ed39e613495ad924f', 'withinClause': 'http://smart.iec.ch/clause/23723bb3-1c35-48ff-99ce-7f795765989a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/f49c3d8d-be76-4db0-8e74-9be15fe41212', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005076', 'rdfs:label': '11.6.7', 'dcterms:title': 'Sterilization of ME EQUIPMENT and ME SYSTEMS', 'hasTest': ['http://smart.iec.ch/test/63b1166a-32ad-4939-85ef-d6319df32081', 'http://smart.iec.ch/test/c46d0acf-d54a-43b8-903f-9ed9c5b1159b'], 'hasMeasurement': ['http://smart.iec.ch/measurement/0297cabe-eac4-4866-a4b4-4a0299ce4c1f'], 'trans:checksum': '18cfa098919d55997f75e04c27127d67e2438065ffe4f93bd2464f692237f00f', 'withinClause': 'http://smart.iec.ch/clause/23723bb3-1c35-48ff-99ce-7f795765989a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9e834a66-5403-4334-8b7b-8ca0d62a15b2', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005082', 'rdfs:label': '11.6.8', 'dcterms:title': 'Compatibility with substances used with the ME EQUIPMENT', 'hasTest': ['http://smart.iec.ch/test/15ee6853-c767-40bf-8e8d-083f30a45c7b'], 'trans:checksum': '1b86f534222d77ff5a6815d56f3cc9ebc3c3f6078d28e956a849f90c47a2d4eb', 'withinClause': 'http://smart.iec.ch/clause/23723bb3-1c35-48ff-99ce-7f795765989a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7aa22389-4c70-4d49-8eeb-db55ceb4c9f0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005087', 'rdfs:label': '11.7', 'dcterms:title': 'Biocompatibility of ME EQUIPMENT and ME SYSTEMS', 'hasTest': ['http://smart.iec.ch/test/44eac930-7744-4264-99ab-3cc1133a759c'], 'trans:checksum': '3b137d859c3051d1aff69c66af41cd440f39fabf72184b45d43da3cb89113f6a', 'withinClause': 'http://smart.iec.ch/clause/7c3363a4-50c3-417d-9b33-fb7002a2e2fd', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6811b0aa-cd00-4c58-b6b4-1e328cec1d97', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005092', 'rdfs:label': '11.8', 'dcterms:title': 'Interruption of the power supply / SUPPLY MAINS to ME EQUIPMENT', 'hasTest': ['http://smart.iec.ch/test/3c56f22e-379a-4759-ab53-dba8f1cf3928'], 'trans:checksum': 'ad57369fd31becd59786ece023bb336b2b08d3682f40b8054bac92ce7bc93064', 'withinClause': 'http://smart.iec.ch/clause/7c3363a4-50c3-417d-9b33-fb7002a2e2fd', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d6ec308a-1ce6-4b96-b4fa-c5c477d71b88', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005099', 'rdfs:label': '12', 'dcterms:title': 'Accuracy of controls and instruments and protection against hazardous outputs', 'comprisesClause': ['http://smart.iec.ch/clause/d91de5e4-ca5f-403e-b2e0-7b5c3e8670b2', 'http://smart.iec.ch/clause/15cfea24-3a88-49db-aaf7-dfa26d89154c', 'http://smart.iec.ch/clause/8de51e2a-b14c-436f-9e37-a988e4b513b8', 'http://smart.iec.ch/clause/e10f0b2c-2326-416d-a4cb-519ddd9b6350'], 'trans:checksum': 'ddbff32dea969ee7a84e60321b6a3f3502005f168209dc6ccce8357a99ac5e9b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/15cfea24-3a88-49db-aaf7-dfa26d89154c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005100', 'rdfs:label': '12.1', 'dcterms:title': 'Accuracy of controls and instruments', 'hasTest': ['http://smart.iec.ch/test/2caa329e-78a6-450b-9382-c29f12e90a60'], 'trans:checksum': '1fa7552ca881ba7c2daebad4695eae48b62aa72047c7b9e5eb720cdfd0d8757c', 'withinClause': 'http://smart.iec.ch/clause/d6ec308a-1ce6-4b96-b4fa-c5c477d71b88', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8de51e2a-b14c-436f-9e37-a988e4b513b8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005105', 'rdfs:label': '12.2', 'dcterms:title': 'USABILITY', 'hasTest': ['http://smart.iec.ch/test/dbddcb22-07ed-4e4c-931a-571f5388099e'], 'trans:checksum': 'bc23c106bcb98eef9e3c71b0a0dae3d100191a1e3ac73032ddc979d6bf90ff5c', 'withinClause': 'http://smart.iec.ch/clause/d6ec308a-1ce6-4b96-b4fa-c5c477d71b88', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d91de5e4-ca5f-403e-b2e0-7b5c3e8670b2', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005111', 'rdfs:label': '12.3', 'dcterms:title': 'Alarm systems', 'hasTest': ['http://smart.iec.ch/test/2855b08c-cc09-4557-9872-61225835c8d7'], 'trans:checksum': '0624451e3a0a6e312c153edb83ad360d19887acde123861695dd387d3b4f6ea8', 'withinClause': 'http://smart.iec.ch/clause/d6ec308a-1ce6-4b96-b4fa-c5c477d71b88', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e10f0b2c-2326-416d-a4cb-519ddd9b6350', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005117', 'rdfs:label': '12.4', 'dcterms:title': 'Protection against hazardous output', 'comprisesClause': ['http://smart.iec.ch/clause/0957d06c-c8f4-4097-97f0-24a537ed445d', 'http://smart.iec.ch/clause/486af3b2-987f-4468-b340-d86fc432367f', 'http://smart.iec.ch/clause/78097635-ce6d-4128-a65f-ea9945503f6f', 'http://smart.iec.ch/clause/59613e89-cb2c-4ff8-a036-c78cd28cc588', 'http://smart.iec.ch/clause/ce918982-793d-4027-8cef-0260aa0e73ba', 'http://smart.iec.ch/clause/9369b064-229f-451f-b4d7-be38b2b4c76a'], 'trans:checksum': '79b279b3f7d15b00260bf59a61ec797e578418b173e231dbf806ff4cdee21244', 'withinClause': 'http://smart.iec.ch/clause/d6ec308a-1ce6-4b96-b4fa-c5c477d71b88', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ce918982-793d-4027-8cef-0260aa0e73ba', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005118', 'rdfs:label': '12.4.1', 'dcterms:title': 'Intentional exceeding of safety limits', 'hasTest': ['http://smart.iec.ch/test/3db3b052-8015-428a-a659-d04b5b2bd394'], 'trans:checksum': 'fc774f2466d18c5f853a1572e9034ea745367502ab160cd0d043d615463fb5f4', 'withinClause': 'http://smart.iec.ch/clause/e10f0b2c-2326-416d-a4cb-519ddd9b6350', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/78097635-ce6d-4128-a65f-ea9945503f6f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005123', 'rdfs:label': '12.4.2', 'dcterms:title': 'Indication of parameters relevant to safety', 'hasTest': ['http://smart.iec.ch/test/9580f06a-169a-44e0-97aa-f91c3eec7c89'], 'trans:checksum': 'c4b3a7874f203fc9a3c60b658899d8d5373ef8a5e20dbc8324958372fcfce79f', 'withinClause': 'http://smart.iec.ch/clause/e10f0b2c-2326-416d-a4cb-519ddd9b6350', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/59613e89-cb2c-4ff8-a036-c78cd28cc588', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005130', 'rdfs:label': '12.4.3', 'dcterms:title': 'Accidental selection of excessive output values', 'hasTest': ['http://smart.iec.ch/test/a72f6435-c4ab-4ee4-9a6f-d972483083b9'], 'trans:checksum': 'abddac1424fa9bc33864f9804348f7be446e84b6ef3664472622315ab1b81361', 'withinClause': 'http://smart.iec.ch/clause/e10f0b2c-2326-416d-a4cb-519ddd9b6350', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0957d06c-c8f4-4097-97f0-24a537ed445d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005135', 'rdfs:label': '12.4.4', 'dcterms:title': 'Incorrect output', 'hasTest': ['http://smart.iec.ch/test/accf10b6-83f0-4fa7-aac9-f081226f2deb'], 'trans:checksum': '08874a8dbaa2118321a0c932794e0b8971879dc1a847d84bda77791b2a41a8d4', 'withinClause': 'http://smart.iec.ch/clause/e10f0b2c-2326-416d-a4cb-519ddd9b6350', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9369b064-229f-451f-b4d7-be38b2b4c76a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005142', 'rdfs:label': '12.4.5', 'dcterms:title': 'Diagnostic or therapeutic radiation', 'comprisesClause': ['http://smart.iec.ch/clause/8431cd5e-300a-48c3-86ff-509db622ba45', 'http://smart.iec.ch/clause/6bd7dcd4-edcb-4cb5-9e6c-7a5b17cea658', 'http://smart.iec.ch/clause/e702aa60-6d84-483c-9f52-841995733ac9', 'http://smart.iec.ch/clause/1580c5f7-5edf-4f73-a6b8-bdc29dbc887a'], 'trans:checksum': 'a7968cf648c0ac20fddc5dfd820bed51e04a30982ecf73d11c665d26e5705801', 'withinClause': 'http://smart.iec.ch/clause/e10f0b2c-2326-416d-a4cb-519ddd9b6350', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6bd7dcd4-edcb-4cb5-9e6c-7a5b17cea658', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005143', 'rdfs:label': '12.4.5.1', 'dcterms:title': 'Limits', 'hasTest': ['http://smart.iec.ch/test/9632cc16-ef09-4022-9c21-0d84b1522771', 'http://smart.iec.ch/test/9ec85236-c9f2-4fa3-9db3-bca1eec7f70c'], 'trans:checksum': 'f29ec10b60a2de908de9b6bb1d668104b6bc00fbdff82a4eef6b84858bc29322', 'withinClause': 'http://smart.iec.ch/clause/9369b064-229f-451f-b4d7-be38b2b4c76a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e702aa60-6d84-483c-9f52-841995733ac9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005150', 'rdfs:label': '12.4.5.2', 'dcterms:title': 'Diagnostic X-ray equipment', 'hasTest': ['http://smart.iec.ch/test/3c687d9b-ea83-4ff8-a49a-a2ea0599256a'], 'trans:checksum': '1f846bd8a6acc094a738c27f6a34122f5706886fdc0a5b6e01f07bf774fe84c2', 'withinClause': 'http://smart.iec.ch/clause/9369b064-229f-451f-b4d7-be38b2b4c76a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1580c5f7-5edf-4f73-a6b8-bdc29dbc887a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005156', 'rdfs:label': '12.4.5.3', 'dcterms:title': 'Radiotherapy equipment', 'hasTest': ['http://smart.iec.ch/test/296a28b4-636d-4a0a-b639-90bcbbb1f58d'], 'trans:checksum': '35c61a11e936b9c555b4754830fce2b9b188e22e093da1ad54ccf25cee3b19cb', 'withinClause': 'http://smart.iec.ch/clause/9369b064-229f-451f-b4d7-be38b2b4c76a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8431cd5e-300a-48c3-86ff-509db622ba45', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005161', 'rdfs:label': '12.4.5.4', 'dcterms:title': 'Other ME EQUIPMENT producing diagnostic or therapeutic radiation', 'hasTest': ['http://smart.iec.ch/test/52801bd4-719c-4909-a5d5-d936d4ecc2c6'], 'trans:checksum': '1b4ff0f8e45776e2ceb66021355aff0086118b8026f7557d344ec0f6c1a05718', 'withinClause': 'http://smart.iec.ch/clause/9369b064-229f-451f-b4d7-be38b2b4c76a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/486af3b2-987f-4468-b340-d86fc432367f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005166', 'rdfs:label': '12.4.6', 'dcterms:title': 'Diagnostic or therapeutic acoustic pressure', 'hasTest': ['http://smart.iec.ch/test/ca595e8c-0392-410c-8829-6cb67c43bca7'], 'trans:checksum': '1aefcb070c06a0233214308a63af776ea13a561f51d624f48c76376daa502c15', 'withinClause': 'http://smart.iec.ch/clause/e10f0b2c-2326-416d-a4cb-519ddd9b6350', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/454b8fd2-e6cf-4bb3-980e-c306ef27c443', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005171', 'rdfs:label': '13', 'dcterms:title': 'HAZARDOUS SITUATIONS and fault conditions', 'hasMeasurement': ['http://smart.iec.ch/measurement/7623e86e-5c95-43e3-aaec-95e0b9d678d8'], 'comprisesClause': ['http://smart.iec.ch/clause/efc28cf3-0709-40f2-b7db-b43fdbe9b169', 'http://smart.iec.ch/clause/b92556a5-44e5-4768-b649-2ac800f0449d'], 'trans:checksum': '690dcaf2e0a0a49f53efdefac04e46c52006b8016c97a7fd0370f0c748ee317b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/efc28cf3-0709-40f2-b7db-b43fdbe9b169', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005172', 'rdfs:label': '13.1', 'dcterms:title': 'Specific HAZARDOUS SITUATIONS', 'comprisesClause': ['http://smart.iec.ch/clause/41d19945-0dbc-43c2-be13-a573ba98cb50', 'http://smart.iec.ch/clause/78d0ff87-6c0e-4122-80c6-50508255e9a8', 'http://smart.iec.ch/clause/1e597a60-331d-49d0-a27b-2fa216896c46', 'http://smart.iec.ch/clause/ba6e46bc-d212-4185-8903-f2ebe843c912'], 'trans:checksum': 'e6cab275df8c0c61ab5f0e7ad0f1ce23146db7ba2c821fab57dace2e12b2f5ec', 'withinClause': 'http://smart.iec.ch/clause/454b8fd2-e6cf-4bb3-980e-c306ef27c443', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1e597a60-331d-49d0-a27b-2fa216896c46', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005173', 'rdfs:label': '13.1.1', 'dcterms:title': 'General', 'trans:checksum': 'cb26e197899630b46aa45e15f37003313bb5bd269a6afe04332bc2e36461bc98', 'withinClause': 'http://smart.iec.ch/clause/efc28cf3-0709-40f2-b7db-b43fdbe9b169', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ba6e46bc-d212-4185-8903-f2ebe843c912', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005178', 'rdfs:label': '13.1.2', 'dcterms:title': 'Emissions, deformation of ENCLOSURE or exceeding maximum temperature', 'hasTest': ['http://smart.iec.ch/test/0ea4833f-52a5-4786-be21-405c8f6e3a24', 'http://smart.iec.ch/test/13feb747-7ab3-4c2a-bc18-a96e10c0bd39', 'http://smart.iec.ch/test/1b010878-e149-4c17-b7a4-df82f296cc11', 'http://smart.iec.ch/test/28cf9616-46d4-4966-8f69-9c8fd9e57633', 'http://smart.iec.ch/test/39934041-9898-4fef-b86f-76eb6f2b694d', 'http://smart.iec.ch/test/4214866c-7a1f-484a-bb42-7899b558d03d', 'http://smart.iec.ch/test/53587f29-d152-4712-8b43-edc919f89e75', 'http://smart.iec.ch/test/6b1bab8f-d28e-446c-9dd2-5c1ed254c540', 'http://smart.iec.ch/test/77ad93b7-6b45-4fda-bd90-700829ea1610', 'http://smart.iec.ch/test/78327584-4c28-47cb-887f-6d8824361892', 'http://smart.iec.ch/test/8761586f-d926-495f-b401-1cfe56395a2b', 'http://smart.iec.ch/test/97175548-9b05-467b-95f9-d64f29bb68ee', 'http://smart.iec.ch/test/a218fcaa-2a9c-4c7f-98d2-74b3877c6ed1', 'http://smart.iec.ch/test/ba55ad56-1434-4e46-94d3-c5135ee1101c', 'http://smart.iec.ch/test/d1083eba-3f27-41b9-8555-afef15e5e663', 'http://smart.iec.ch/test/e7856fa3-7ccb-479a-8b9f-95e9b34b0686', 'http://smart.iec.ch/test/ec9e8803-b50f-420c-9f28-544bd03932f7', 'http://smart.iec.ch/test/f390f53a-e2c7-4a39-9d21-f3387c5c37cf'], 'trans:checksum': '9dd64c6d47f2fb9fb1df9fab20ef88f72c7b21ab06d8a2131e3e0600887bf25c', 'withinClause': 'http://smart.iec.ch/clause/efc28cf3-0709-40f2-b7db-b43fdbe9b169', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/78d0ff87-6c0e-4122-80c6-50508255e9a8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005222', 'rdfs:label': '13.1.3', 'dcterms:title': 'Exceeding LEAKAGE CURRENT or voltage limits', 'hasTest': ['http://smart.iec.ch/test/1b5a35d5-5b3d-4e17-9c1f-289bbc6c20a2', 'http://smart.iec.ch/test/d98404e8-2ea3-44c4-be65-a0603df9a05a'], 'trans:checksum': '0d95ad0e18a61734a78e7fb5322fa5e3ab772acf2a5bd9cb95e09795352653d0', 'withinClause': 'http://smart.iec.ch/clause/efc28cf3-0709-40f2-b7db-b43fdbe9b169', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/41d19945-0dbc-43c2-be13-a573ba98cb50', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005232', 'rdfs:label': '13.1.4', 'dcterms:title': 'Specific MECHANICAL HAZARDS', 'trans:checksum': 'c35db22c09675d3f7bc25e88c8d35d1db8784d4f386616065ad0b1779e818e14', 'withinClause': 'http://smart.iec.ch/clause/efc28cf3-0709-40f2-b7db-b43fdbe9b169', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b92556a5-44e5-4768-b649-2ac800f0449d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005235', 'rdfs:label': '13.2', 'dcterms:title': 'SINGLE FAULT CONDITIONS', 'comprisesClause': ['http://smart.iec.ch/clause/eb6a9704-31d4-4fcb-bced-f07ee2129c59', 'http://smart.iec.ch/clause/97820227-fdc5-492a-9d3e-57ea13c897b0', 'http://smart.iec.ch/clause/1a3beb3a-3b62-4512-84ed-d07a27167ecb', 'http://smart.iec.ch/clause/d8bea70f-e8da-4dca-a542-3670a70df13b', 'http://smart.iec.ch/clause/aecd7f6f-2c48-4cad-8436-edb5a92b1a25', 'http://smart.iec.ch/clause/6e6aa5d8-583e-444d-bf88-8318f5b93d73', 'http://smart.iec.ch/clause/07dc31e2-7dcf-4037-8a31-309748fae2eb', 'http://smart.iec.ch/clause/4deef505-2b1d-432c-bba0-3c6060533ba7', 'http://smart.iec.ch/clause/e3912cbe-3f19-4bf8-9321-625b8cff591f', 'http://smart.iec.ch/clause/b8392a99-2f69-4eb0-8a87-57e45e1cc3ec', 'http://smart.iec.ch/clause/a4025007-053c-4a36-a123-7c6f5030fb65', 'http://smart.iec.ch/clause/1acb62b4-4932-46fe-b69c-23197a6a9a4a', 'http://smart.iec.ch/clause/5456d775-ae46-4a87-900d-57d6c14b6321'], 'trans:checksum': '232751038120b5941d4383753bd960d68891431ed7f1242e75ebdc6249a833b9', 'withinClause': 'http://smart.iec.ch/clause/454b8fd2-e6cf-4bb3-980e-c306ef27c443', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/07dc31e2-7dcf-4037-8a31-309748fae2eb', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005236', 'rdfs:label': '13.2.1', 'dcterms:title': 'General', 'hasTest': ['http://smart.iec.ch/test/12a6330e-3e9d-4ff9-8e42-a48ba0e1ad04', 'http://smart.iec.ch/test/1d579260-1aad-484b-9dad-3edc692bb427', 'http://smart.iec.ch/test/a187fd5a-7da9-412a-8fe8-bb4f090d1386', 'http://smart.iec.ch/test/e4494628-52d9-49bc-a4db-9032b3897ade'], 'trans:checksum': '3ca349d6391ec4dd04ad309ced891d850abbe6d4a16c605adea3acae4344c903', 'withinClause': 'http://smart.iec.ch/clause/b92556a5-44e5-4768-b649-2ac800f0449d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6e6aa5d8-583e-444d-bf88-8318f5b93d73', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005239', 'rdfs:label': '13.2.2', 'dcterms:title': 'Electrical SINGLE FAULT CONDITION', 'trans:checksum': '32c7cb3d890aef88971310766bb4be97b71e9b66737bce72ac72618b8f573929', 'withinClause': 'http://smart.iec.ch/clause/b92556a5-44e5-4768-b649-2ac800f0449d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a4025007-053c-4a36-a123-7c6f5030fb65', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005242', 'rdfs:label': '13.2.3', 'dcterms:title': 'Overheating of transformers in ME EQUIPMENT', 'trans:checksum': '4c0c9e8d0d09c74f98e5098cdbcb8ac96987311bdb4dbaf7c8cb3a0db9d6ad5d', 'withinClause': 'http://smart.iec.ch/clause/b92556a5-44e5-4768-b649-2ac800f0449d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1acb62b4-4932-46fe-b69c-23197a6a9a4a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005245', 'rdfs:label': '13.2.4', 'dcterms:title': 'Failure of THERMOSTATS', 'trans:checksum': '9e1019ad5105ff82d7cd637687392fb5ec7ca6a324205740354d6080cc5fe76e', 'withinClause': 'http://smart.iec.ch/clause/b92556a5-44e5-4768-b649-2ac800f0449d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1a3beb3a-3b62-4512-84ed-d07a27167ecb', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005250', 'rdfs:label': '13.2.5', 'dcterms:title': 'Failure of temperature limiting devices', 'trans:checksum': '80d48be54d1d36daa0910f6f0f67a7818e2f812e8e5100938f5525d0ce75bbd3', 'withinClause': 'http://smart.iec.ch/clause/b92556a5-44e5-4768-b649-2ac800f0449d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d8bea70f-e8da-4dca-a542-3670a70df13b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005255', 'rdfs:label': '13.2.6', 'dcterms:title': 'Leakage of liquid', 'trans:checksum': '13f311d1e3d40876373b082e5dfc9dbab296f733be97b7b96aa48bb9b71ab2af', 'withinClause': 'http://smart.iec.ch/clause/b92556a5-44e5-4768-b649-2ac800f0449d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/97820227-fdc5-492a-9d3e-57ea13c897b0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005264', 'rdfs:label': '13.2.7', 'dcterms:title': 'Impairment of cooling that could result in a HAZARD', 'trans:checksum': '01586f839852d7aa65af57aa5c214447bfd41d21826fa9d4f5965b0e821cfb36', 'withinClause': 'http://smart.iec.ch/clause/b92556a5-44e5-4768-b649-2ac800f0449d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/aecd7f6f-2c48-4cad-8436-edb5a92b1a25', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005286', 'rdfs:label': '13.2.8', 'dcterms:title': 'Locking of moving parts', 'trans:checksum': '4a9e32b3f63e9fce5602530df70272ee319afbfad1a68105fa08a1aaaad1d74b', 'withinClause': 'http://smart.iec.ch/clause/b92556a5-44e5-4768-b649-2ac800f0449d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/eb6a9704-31d4-4fcb-bced-f07ee2129c59', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005303', 'rdfs:label': '13.2.9', 'dcterms:title': 'Interruption and short circuiting of motor capacitors', 'trans:checksum': '0dc8ec3c2d1a446ed107f262f502ab7290676057fa93e0495d6f21d956094f9a', 'withinClause': 'http://smart.iec.ch/clause/b92556a5-44e5-4768-b649-2ac800f0449d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4deef505-2b1d-432c-bba0-3c6060533ba7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005314', 'rdfs:label': '13.2.10', 'dcterms:title': 'Additional test criteria for motor operated ME EQUIPMENT', 'trans:checksum': 'ef11daa91c05166d49e26d9dfbaa2f5045cb1060d35aa23793f1ccd20c8f46c8', 'withinClause': 'http://smart.iec.ch/clause/b92556a5-44e5-4768-b649-2ac800f0449d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5456d775-ae46-4a87-900d-57d6c14b6321', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005346', 'rdfs:label': '13.2.11', 'dcterms:title': 'Failures of components in ME EQUIPMENT used in conjunction with OXYGEN RICH ENVIRONMENTS', 'trans:checksum': 'ada3437d1f57c2e19f2044ac77e544ddaf196952344677f3345702ed4c912c62', 'withinClause': 'http://smart.iec.ch/clause/b92556a5-44e5-4768-b649-2ac800f0449d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b8392a99-2f69-4eb0-8a87-57e45e1cc3ec', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005349', 'rdfs:label': '13.2.12', 'dcterms:title': 'Failure of parts that might result in a MECHANICAL HAZARD', 'trans:checksum': '56c0578c7b85b039dc8125d8bf7ff04773b8274f6f5812b23278df2587dcd9f1', 'withinClause': 'http://smart.iec.ch/clause/b92556a5-44e5-4768-b649-2ac800f0449d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e3912cbe-3f19-4bf8-9321-625b8cff591f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005357', 'rdfs:label': '13.2.13', 'dcterms:title': 'Overload', 'hasTest': ['http://smart.iec.ch/test/6b1145ef-89aa-4f73-b65c-209f52ebb2da', 'http://smart.iec.ch/test/722f6621-3c6c-4f19-80c4-702c5aa37440'], 'comprisesClause': ['http://smart.iec.ch/clause/bcd24f1f-8f34-4b48-9d61-d3535afae70c', 'http://smart.iec.ch/clause/6b68d001-d33e-4311-b70a-3d054a9cb548', 'http://smart.iec.ch/clause/cb0c5a8a-aa3f-4316-8069-ba3d19d05fed', 'http://smart.iec.ch/clause/6b74c64d-a932-4f29-9c84-d2672d3c8d1a'], 'trans:checksum': 'af5ddc4724c3ba9e0469350a8eadeab09f879dbfcf624bde29897e418870d160', 'withinClause': 'http://smart.iec.ch/clause/b92556a5-44e5-4768-b649-2ac800f0449d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6b68d001-d33e-4311-b70a-3d054a9cb548', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005358', 'rdfs:label': '13.2.13.1', 'dcterms:title': 'General overload test conditions', 'trans:checksum': '1c115deec9a744433d5bbf6915989aaa0235af5a3b39e9690c179122275cfe10', 'withinClause': 'http://smart.iec.ch/clause/e3912cbe-3f19-4bf8-9321-625b8cff591f', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6b74c64d-a932-4f29-9c84-d2672d3c8d1a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005365', 'rdfs:label': '13.2.13.2', 'dcterms:title': 'ME EQUIPMENT with heating elements', 'hasTest': ['http://smart.iec.ch/test/03d0de61-32f4-4b19-8e74-4e9d03d3c2e9', 'http://smart.iec.ch/test/245783c1-f485-41e7-8914-ee80e405b771', 'http://smart.iec.ch/test/34ee5039-f858-4b09-b9cc-dde4224c1302', 'http://smart.iec.ch/test/44c899e8-3895-41d5-ae8a-74e5fe4f5f2d', 'http://smart.iec.ch/test/493f2416-bac6-455b-b39b-56d385026995', 'http://smart.iec.ch/test/51586af2-ab96-4544-9b18-d257adb64ff9', 'http://smart.iec.ch/test/5778d5f0-3528-4e9d-a90a-d006f5df7344', 'http://smart.iec.ch/test/5c00fec6-7773-4c17-8135-acbcd78fc9d5', 'http://smart.iec.ch/test/5ee87d98-69c3-4697-b3a4-5ec2d580744f', 'http://smart.iec.ch/test/62e51cfe-feff-43fc-b595-e68cb592bedb', 'http://smart.iec.ch/test/90af2cad-da54-4baf-b973-30848db914db', 'http://smart.iec.ch/test/a3cf75cb-0b09-43d4-b6a4-e97a86bfffbd', 'http://smart.iec.ch/test/a88933fe-8e39-4be0-a5a3-6b4e04d95bec', 'http://smart.iec.ch/test/b8dd4c5c-8e02-47f2-8441-9280aaa3578b', 'http://smart.iec.ch/test/c9b36569-f8b9-4d4e-a79f-500307bbec05'], 'trans:checksum': 'e3a95875843e4f1d54b97e41ff753b87e9b00af104d06389c115a2616784bd8b', 'withinClause': 'http://smart.iec.ch/clause/e3912cbe-3f19-4bf8-9321-625b8cff591f', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/cb0c5a8a-aa3f-4316-8069-ba3d19d05fed', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005404', 'rdfs:label': '13.2.13.3', 'dcterms:title': 'ME EQUIPMENT with motors', 'hasTest': ['http://smart.iec.ch/test/27cba776-56c0-418d-bb74-8d30e688efe6', 'http://smart.iec.ch/test/2a944455-a1a8-4459-881f-6ab857214d05', 'http://smart.iec.ch/test/458bb7f5-5165-485c-b8d5-63ffa1319c16', 'http://smart.iec.ch/test/4ac552fc-d01d-4371-b6b9-bdd95cbcc65c', 'http://smart.iec.ch/test/5076169c-c912-4344-be3c-33b8f582dbf6', 'http://smart.iec.ch/test/58171ecc-bd8c-4c30-b6c9-11968482dc8a', 'http://smart.iec.ch/test/5d98420d-c1c9-49b2-b302-a57d9e3055d7', 'http://smart.iec.ch/test/65b748ca-dcb4-4841-b106-939b47256f43', 'http://smart.iec.ch/test/68bc2b28-c4e1-4177-87bc-40a796aeaf7e', 'http://smart.iec.ch/test/91260522-d8de-4319-acad-4f43d8dae17a', 'http://smart.iec.ch/test/a2f19868-64d3-4d9c-b040-dfab2c8fe91d', 'http://smart.iec.ch/test/cad14e35-4efc-4bc4-8523-711877fe91a1', 'http://smart.iec.ch/test/cc73aa74-47bc-42fa-bec1-f1a8184d0f9b'], 'trans:checksum': '24f8307a313625b699369840bc2118e4910c1bd82e46493eb28ca180426d426d', 'withinClause': 'http://smart.iec.ch/clause/e3912cbe-3f19-4bf8-9321-625b8cff591f', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/bcd24f1f-8f34-4b48-9d61-d3535afae70c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005460', 'rdfs:label': '13.2.13.4', 'dcterms:title': 'ME EQUIPMENT RATED for non- CONTINUOUS OPERATION', 'hasTest': ['http://smart.iec.ch/test/09830c2d-6866-4388-9fa3-2daad0dd45f9', 'http://smart.iec.ch/test/332122fb-89a1-4700-aaa0-d3f54bd721ae', 'http://smart.iec.ch/test/3de0328b-e69c-45a1-b1ac-b251ec6e47b4', 'http://smart.iec.ch/test/5b77f878-7041-469d-b5a8-c8720a135db3', 'http://smart.iec.ch/test/aec19fa1-6441-4076-a8ac-08aca9ea9a43'], 'trans:checksum': 'd03e4447bfe8ca44974de853a8ff317c1c8c1ce8e58c1254b08b674edc65f624', 'withinClause': 'http://smart.iec.ch/clause/e3912cbe-3f19-4bf8-9321-625b8cff591f', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8680e37c-e8c8-45d9-a379-671061d456ec', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005482', 'rdfs:label': '14', 'dcterms:title': 'PROGRAMMABLE ELECTRICAL MEDICAL SYSTEMS( pems)', 'comprisesClause': ['http://smart.iec.ch/clause/25c6f46f-8a9a-44a9-abd2-e6e292b77fef', 'http://smart.iec.ch/clause/ae08b79c-07fa-4e07-829c-da8a967eedd0', 'http://smart.iec.ch/clause/fcd965a5-4c7b-49f5-a2b0-c038292335a3', 'http://smart.iec.ch/clause/99bcc62e-e154-4160-b9d5-9680f62bb8df', 'http://smart.iec.ch/clause/79deda68-044e-464e-9007-6cf0454a21a9', 'http://smart.iec.ch/clause/e047fbd7-52b6-4e1d-8614-c8eff8af1714', 'http://smart.iec.ch/clause/457d58d7-89c8-45a0-a485-7a7df1a9c892', 'http://smart.iec.ch/clause/c3b58276-2d30-4296-873b-ab493c35762f', 'http://smart.iec.ch/clause/d01d67e5-cacc-4e4a-bf9f-6e96ebd493a3', 'http://smart.iec.ch/clause/16f76cc1-6cb2-40d0-9de4-1d8e4326a437', 'http://smart.iec.ch/clause/2b24cb03-95eb-4985-9511-c51aa120a9a0', 'http://smart.iec.ch/clause/ede8e336-c502-4dab-a0af-c550c1d58c90', 'http://smart.iec.ch/clause/59821327-69b9-427f-a0b8-db8ebf304ad1'], 'trans:checksum': '5bc8721f64cd8e2423bc99c134da58d1627ac8e3819f127b0c661cfb651ac054', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c3b58276-2d30-4296-873b-ab493c35762f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005483', 'rdfs:label': '14.1', 'dcterms:title': 'General', 'hasTest': ['http://smart.iec.ch/test/205c56dc-1472-411f-972b-8f3ce284a93b', 'http://smart.iec.ch/test/4fc71a3d-3866-4eff-940e-ecf4efeaee04', 'http://smart.iec.ch/test/67c41c35-84f3-43b0-bcfe-ddca0a66c81a', 'http://smart.iec.ch/test/7f111268-5abf-4410-9263-c5a3e4cd0ef6', 'http://smart.iec.ch/test/8206d87e-3721-48e7-8186-b715588aa925', 'http://smart.iec.ch/test/9b53422e-8e27-4387-b8dc-e65ebdcdcefd', 'http://smart.iec.ch/test/bab20335-e584-4210-903a-fbe3ba618fbc', 'http://smart.iec.ch/test/be18ed76-a155-40fd-8af1-94dfd54dfc80', 'http://smart.iec.ch/test/fcc5908c-f517-4e14-9f0f-b51e31e3904d', 'http://smart.iec.ch/test/fef87a28-7703-43b4-a0fa-4a0f355edb85'], 'trans:checksum': 'bd8a7766aea1a00cb0ba6e990b41bd720813c48c096aa066e47d11761dfb3c2b', 'withinClause': 'http://smart.iec.ch/clause/8680e37c-e8c8-45d9-a379-671061d456ec', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ede8e336-c502-4dab-a0af-c550c1d58c90', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005503', 'rdfs:label': '14.2', 'dcterms:title': 'Documentation', 'hasTest': ['http://smart.iec.ch/test/817cdf40-4046-4d28-9c3c-fb306711227f'], 'trans:checksum': 'b9f8deb1320590ab582cb88b91ae9a4ea095ffa9939cbe37456eeafca347c4dd', 'withinClause': 'http://smart.iec.ch/clause/8680e37c-e8c8-45d9-a379-671061d456ec', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/99bcc62e-e154-4160-b9d5-9680f62bb8df', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005510', 'rdfs:label': '14.3', 'dcterms:title': 'RISK MANAGEMENT plan', 'hasTest': ['http://smart.iec.ch/test/3119186b-5d1b-48e9-85e2-fdacf3ee5e57'], 'trans:checksum': '4eea407e9120e0fd7cc121b8e87d92f923d5cf9bc55449db933d783096e3bda5', 'withinClause': 'http://smart.iec.ch/clause/8680e37c-e8c8-45d9-a379-671061d456ec', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/25c6f46f-8a9a-44a9-abd2-e6e292b77fef', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005513', 'rdfs:label': '14.4', 'dcterms:title': 'PEMS DEVELOPMENT LIFE-CYCLE', 'hasTest': ['http://smart.iec.ch/test/3d2f5179-0a79-4e71-a13e-468202822026', 'http://smart.iec.ch/test/52f3c440-5375-4c08-82d8-32efeb57bd55', 'http://smart.iec.ch/test/68942da2-9cc9-4ec2-afc3-0da356b67461', 'http://smart.iec.ch/test/ac9b24da-6834-46ab-aef6-36908f9d0a83', 'http://smart.iec.ch/test/ed0afa78-bf70-4796-9ed3-439a098328d2'], 'trans:checksum': '32870f17ca59557e9f43a0250e30ae72d6670a14d191bad27d1fd41f5593d4a5', 'withinClause': 'http://smart.iec.ch/clause/8680e37c-e8c8-45d9-a379-671061d456ec', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/79deda68-044e-464e-9007-6cf0454a21a9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005532', 'rdfs:label': '14.5', 'dcterms:title': 'Problem resolution', 'hasTest': ['http://smart.iec.ch/test/38e4443d-784c-44fc-ae2e-8de306ca8903'], 'trans:checksum': '3e86e2b0c497f5d7b7a112416d8116f37cddd4a45e0467c13ba6d35f655a4566', 'withinClause': 'http://smart.iec.ch/clause/8680e37c-e8c8-45d9-a379-671061d456ec', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ae08b79c-07fa-4e07-829c-da8a967eedd0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005553', 'rdfs:label': '14.6', 'dcterms:title': 'RISK MANAGEMENT PROCESS', 'comprisesClause': ['http://smart.iec.ch/clause/73b61fb0-b29e-4df4-9461-1f3a8b668f5f', 'http://smart.iec.ch/clause/28754929-a832-449a-9946-beae65631662'], 'trans:checksum': 'b53ae6930f5bfc62e23c7eaf71d28c21f16ceaef01b420e65f2002c29d93e930', 'withinClause': 'http://smart.iec.ch/clause/8680e37c-e8c8-45d9-a379-671061d456ec', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/73b61fb0-b29e-4df4-9461-1f3a8b668f5f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005554', 'rdfs:label': '14.6.1', 'dcterms:title': 'Identification of known and foreseeable HAZARDS', 'hasTest': ['http://smart.iec.ch/test/211a4fb5-11a9-4620-91aa-81e3d4f87b12', 'http://smart.iec.ch/test/43e23acc-7e0e-4674-890d-965d3cfa12a6'], 'trans:checksum': 'd971c0cdf07ef689de0db60c5937ab735264b7eea91073f30876ff1dad923c11', 'withinClause': 'http://smart.iec.ch/clause/ae08b79c-07fa-4e07-829c-da8a967eedd0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/28754929-a832-449a-9946-beae65631662', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005590', 'rdfs:label': '14.6.2', 'dcterms:title': 'RISK CONTROL', 'hasTest': ['http://smart.iec.ch/test/5e922c2e-cc4a-4462-9561-e4f59cd60895', 'http://smart.iec.ch/test/c5193892-8730-417e-a982-10dd5deb1bdf'], 'trans:checksum': '005670f6c67ed4266701f22b5445d68b2844c86c5f1dac1101e2e057833709c9', 'withinClause': 'http://smart.iec.ch/clause/ae08b79c-07fa-4e07-829c-da8a967eedd0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e047fbd7-52b6-4e1d-8614-c8eff8af1714', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005596', 'rdfs:label': '14.7', 'dcterms:title': 'Requirement specification', 'hasTest': ['http://smart.iec.ch/test/99938f68-cc6d-4633-8159-1aafc24eb485'], 'trans:checksum': 'b5d85e55dc1c6f3b70e10a9e4ec0fcbe20bdd3db12013cf9124b470ace9fc39b', 'withinClause': 'http://smart.iec.ch/clause/8680e37c-e8c8-45d9-a379-671061d456ec', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/457d58d7-89c8-45a0-a485-7a7df1a9c892', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005603', 'rdfs:label': '14.8', 'dcterms:title': 'Architecture', 'hasTest': ['http://smart.iec.ch/test/01239b64-434f-43c9-992d-dec777608ea2'], 'trans:checksum': '3928ed5354fa0f56fe068e23bc33f51351bbcf4f23d776fec2f9ee10ddfd2680', 'withinClause': 'http://smart.iec.ch/clause/8680e37c-e8c8-45d9-a379-671061d456ec', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/59821327-69b9-427f-a0b8-db8ebf304ad1', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005655', 'rdfs:label': '14.9', 'dcterms:title': 'Design and implementation', 'hasTest': ['http://smart.iec.ch/test/a2147c83-5c0d-4cce-9611-84640c9f991f'], 'trans:checksum': 'afb0404e36c603d05203751fd3260faba1184df1f3b9b92d334c2ca258d55c65', 'withinClause': 'http://smart.iec.ch/clause/8680e37c-e8c8-45d9-a379-671061d456ec', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/fcd965a5-4c7b-49f5-a2b0-c038292335a3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005662', 'rdfs:label': '14.10', 'dcterms:title': 'VERIFICATION', 'hasTest': ['http://smart.iec.ch/test/379f84d4-5b7a-48a4-adb6-51e2cb74eabb', 'http://smart.iec.ch/test/697ecb24-d950-4d00-aede-657a58df81e0', 'http://smart.iec.ch/test/99510418-fec2-415e-965d-150132b0966c', 'http://smart.iec.ch/test/df26946f-4fff-4a24-aa72-8bdeaee07556', 'http://smart.iec.ch/test/eb46da6a-6209-45ae-b2f5-f72683436cd9', 'http://smart.iec.ch/test/edbed35a-cbe0-4f17-b671-fb549e18d6a6'], 'trans:checksum': '739e725859c67314512ae90477e75e4877950c29def9f5b79e443f0c328cee13', 'withinClause': 'http://smart.iec.ch/clause/8680e37c-e8c8-45d9-a379-671061d456ec', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d01d67e5-cacc-4e4a-bf9f-6e96ebd493a3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005702', 'rdfs:label': '14.11', 'dcterms:title': 'PEMS VALIDATION', 'hasTest': ['http://smart.iec.ch/test/2c7d2980-1585-4324-bccb-a268fa02d63f', 'http://smart.iec.ch/test/3b13853a-72fb-4d8e-94c2-9c7a2398abdd', 'http://smart.iec.ch/test/745b1b13-a0c8-4496-bc91-1674f04046fb', 'http://smart.iec.ch/test/c8dd8ea9-c8b5-448d-82a1-d7b3f64d6394'], 'trans:checksum': 'ad785fd0aeb00f6cc94fe739d776f483e95f8c503e42b5ad4fac0321498ddc33', 'withinClause': 'http://smart.iec.ch/clause/8680e37c-e8c8-45d9-a379-671061d456ec', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/16f76cc1-6cb2-40d0-9de4-1d8e4326a437', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005717', 'rdfs:label': '14.12', 'dcterms:title': 'Modification', 'hasTest': ['http://smart.iec.ch/test/43ae6005-3866-4afa-a371-4a5a0913dd6e', 'http://smart.iec.ch/test/5de8a9fe-c26f-49f3-9b04-79362e753d19', 'http://smart.iec.ch/test/6b9fd0a9-d7de-435c-a403-7ca1abd67865', 'http://smart.iec.ch/test/911db7a6-d39a-4369-8923-cd7fbf8764e1', 'http://smart.iec.ch/test/ad56ab36-14e5-4838-b9c1-d08d660c26a0', 'http://smart.iec.ch/test/f02e3b92-2110-4db5-9220-fea642249d22'], 'trans:checksum': '3d192e63ad7364612f0d3c82a398bc264a0a596a9196ce56524e5681599a2bc6', 'withinClause': 'http://smart.iec.ch/clause/8680e37c-e8c8-45d9-a379-671061d456ec', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2b24cb03-95eb-4985-9511-c51aa120a9a0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005720', 'rdfs:label': '14.13', 'dcterms:title': 'Connection of PEMS by NETWORK DATA COUPLING to other equipment', 'hasTest': ['http://smart.iec.ch/test/0d043934-3ed0-4764-8838-3c5092349ed1', 'http://smart.iec.ch/test/15761025-2a23-4893-b8e1-9ce0f6755434', 'http://smart.iec.ch/test/6391595e-d4f1-4017-8b55-f702fbb19046', 'http://smart.iec.ch/test/64ed1a16-914d-410a-bcfa-c3d0377d8796', 'http://smart.iec.ch/test/75b32005-8ed4-48f9-be2c-cfd0f741cfc4', 'http://smart.iec.ch/test/76948224-526e-4b6e-b08b-5a80cbb4fdf9', 'http://smart.iec.ch/test/8a25afaa-e954-447d-b8a7-46463851b212', 'http://smart.iec.ch/test/aef09298-56e8-471c-9077-0e64c6ad8b90', 'http://smart.iec.ch/test/d83cd864-2428-41ac-8a46-5ac38c5b30f8', 'http://smart.iec.ch/test/e67e53ae-8022-469e-93b2-e81b25e49365', 'http://smart.iec.ch/test/f2cda9fe-df54-4a52-b767-f4721962a11a', 'http://smart.iec.ch/test/fae3fb33-5a33-4d4f-83ed-c38ddbb95dc1'], 'trans:checksum': '1a67ba459153012e4884c99c002a7d98451302b03fd5d588b2f7094fe20e4513', 'withinClause': 'http://smart.iec.ch/clause/8680e37c-e8c8-45d9-a379-671061d456ec', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/30991ad9-6456-48b9-96a0-6895071493e8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005762', 'rdfs:label': '15', 'dcterms:title': 'Construction of ME EQUIPMENT', 'comprisesClause': ['http://smart.iec.ch/clause/0f3c8960-1963-4477-b334-cdfc584f85ce', 'http://smart.iec.ch/clause/476a8e3d-88ac-43f9-a580-be56a4d99d70', 'http://smart.iec.ch/clause/15f4acbe-79f9-4368-876f-f23a6d66b94b', 'http://smart.iec.ch/clause/72f0a555-19d7-4368-9ea9-0b0c8207dff0', 'http://smart.iec.ch/clause/ce593c17-549b-4617-bff9-c2b3c1ec1646'], 'trans:checksum': 'db6f2af2dfe713e567bf6eea72f0a630528ddd36205db91456af01374cefbcc0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/72f0a555-19d7-4368-9ea9-0b0c8207dff0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005763', 'rdfs:label': '15.1', 'dcterms:title': 'Arrangements of controls and indicators of ME EQUIPMENT', 'hasTest': ['http://smart.iec.ch/test/17d72fd5-c295-4745-9ab0-e70eb5cec8f8'], 'trans:checksum': 'da72b368d8d2ada2aac257144b2df1a13cad5585b8424647c08d63bd0529a10a', 'withinClause': 'http://smart.iec.ch/clause/30991ad9-6456-48b9-96a0-6895071493e8', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ce593c17-549b-4617-bff9-c2b3c1ec1646', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005768', 'rdfs:label': '15.2', 'dcterms:title': 'Serviceability', 'hasTest': ['http://smart.iec.ch/test/36f1f63a-7df0-4c57-8c0f-5c57bbe53c98', 'http://smart.iec.ch/test/6b5b6ca9-12a1-4f3d-8f4c-c2e0fa4c78bf'], 'trans:checksum': 'c5f461b3149640d9157d78377a28a85e30698e637596906941c7919a5044d482', 'withinClause': 'http://smart.iec.ch/clause/30991ad9-6456-48b9-96a0-6895071493e8', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/476a8e3d-88ac-43f9-a580-be56a4d99d70', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005775', 'rdfs:label': '15.3', 'dcterms:title': 'Mechanical strength', 'hasMeasurement': ['http://smart.iec.ch/measurement/b548a8a4-1729-4305-9065-7e79895d6795'], 'comprisesClause': ['http://smart.iec.ch/clause/cceca3ed-be43-4781-b27c-f3e68065dd71', 'http://smart.iec.ch/clause/9e96053a-20bd-4862-ae2f-4abe5880c346', 'http://smart.iec.ch/clause/3aebf262-8333-4e08-8259-abcf093753fd', 'http://smart.iec.ch/clause/4e4ce94d-ade3-46ad-a655-b91b1a4c60f6', 'http://smart.iec.ch/clause/38520c18-8203-49d0-81dd-47b5cdc2efc6', 'http://smart.iec.ch/clause/6b7f91f1-8bc4-4d2a-9a79-7e34ccbcf43e', 'http://smart.iec.ch/clause/0f420aed-4366-42e9-a274-92e4a4f1b8ed'], 'trans:checksum': '44581b5d6241bbc50dc1d82a036ed38e6e3ef751089f9e4296f44cfd1e05217d', 'withinClause': 'http://smart.iec.ch/clause/30991ad9-6456-48b9-96a0-6895071493e8', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9e96053a-20bd-4862-ae2f-4abe5880c346', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005776', 'rdfs:label': '15.3.1', 'dcterms:title': 'General', 'hasTest': ['http://smart.iec.ch/test/22f3c248-f04c-4cbd-a234-90cd15d8cc78'], 'trans:checksum': '6d425341d9de43e9d6c7c8ed840f9e91dbea702c9c77cfec9be9c1e4737263ed', 'withinClause': 'http://smart.iec.ch/clause/476a8e3d-88ac-43f9-a580-be56a4d99d70', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6b7f91f1-8bc4-4d2a-9a79-7e34ccbcf43e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005793', 'rdfs:label': '15.3.2', 'dcterms:title': 'Push test', 'hasTest': ['http://smart.iec.ch/test/0f97ab56-85e2-4117-9471-f46a590dc6f2', 'http://smart.iec.ch/test/808887c8-a281-407e-a314-5187c77fcc9c'], 'trans:checksum': '0c35c99676cb2430d4750e50bb64c7b8a71e7a9586b88a6afd46742725a3935a', 'withinClause': 'http://smart.iec.ch/clause/476a8e3d-88ac-43f9-a580-be56a4d99d70', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4e4ce94d-ade3-46ad-a655-b91b1a4c60f6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005802', 'rdfs:label': '15.3.3', 'dcterms:title': 'Impact test', 'hasTest': ['http://smart.iec.ch/test/66d51414-778f-4c07-ac25-892d8240da67', 'http://smart.iec.ch/test/a23b4ee0-a7be-4c2b-b236-e78a9ec96d5c'], 'trans:checksum': '4015de23ac0124aab019d192e44085c9097195772e2373ef27b9857e7af73776', 'withinClause': 'http://smart.iec.ch/clause/476a8e3d-88ac-43f9-a580-be56a4d99d70', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3aebf262-8333-4e08-8259-abcf093753fd', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005817', 'rdfs:label': '15.3.4', 'dcterms:title': 'Drop test', 'comprisesClause': ['http://smart.iec.ch/clause/0d20ebf2-1a24-413b-bfa3-be3cf943d973', 'http://smart.iec.ch/clause/5dfe2a25-d3b2-42f1-9789-72351c75fb55'], 'trans:checksum': 'f790a42cba1d1dcb2b23a2e6d06bc0e98082c53cd23250a8bb427909f6b9d197', 'withinClause': 'http://smart.iec.ch/clause/476a8e3d-88ac-43f9-a580-be56a4d99d70', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0d20ebf2-1a24-413b-bfa3-be3cf943d973', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005818', 'rdfs:label': '15.3.4.1', 'dcterms:title': 'HAND-HELD ME EQUIPMENT', 'hasTest': ['http://smart.iec.ch/test/0762b17e-e9fc-4920-a94a-421448494509', 'http://smart.iec.ch/test/424eff01-f1ec-458b-9f2d-071c85a736c0'], 'trans:checksum': 'cabe179db11964e4dcd8032f5baa9d9e59befc520a702dbdce2fecf94ea876e6', 'withinClause': 'http://smart.iec.ch/clause/3aebf262-8333-4e08-8259-abcf093753fd', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5dfe2a25-d3b2-42f1-9789-72351c75fb55', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005827', 'rdfs:label': '15.3.4.2', 'dcterms:title': 'PORTABLE ME EQUIPMENT', 'hasTest': ['http://smart.iec.ch/test/24f6d33c-2c01-4fe2-a632-de514b6c4332', 'http://smart.iec.ch/test/6b4901f8-d039-4099-80d2-ab97d919d17c'], 'trans:checksum': 'c8600cd378c3c963c571eb9d5999e15b4cc4865240caf18e9183cd6db8c50f55', 'withinClause': 'http://smart.iec.ch/clause/3aebf262-8333-4e08-8259-abcf093753fd', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0f420aed-4366-42e9-a274-92e4a4f1b8ed', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005837', 'rdfs:label': '15.3.5', 'dcterms:title': 'Rough handling test', 'hasTest': ['http://smart.iec.ch/test/3729e458-41d0-4760-ad8c-556155d36317', 'http://smart.iec.ch/test/9c66486e-8bc7-4c76-8197-7d32db9c6541'], 'trans:checksum': '6190e788515fb900e058a3d68a611d22a5e84ab7dba7094ef17a0c3788c61e73', 'withinClause': 'http://smart.iec.ch/clause/476a8e3d-88ac-43f9-a580-be56a4d99d70', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/cceca3ed-be43-4781-b27c-f3e68065dd71', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005864', 'rdfs:label': '15.3.6', 'dcterms:title': 'Mould stress relief test', 'hasTest': ['http://smart.iec.ch/test/0d9d25b3-2bfc-4073-8079-30949025e314', 'http://smart.iec.ch/test/3d412225-016d-411e-8faa-e98d61c3607b', 'http://smart.iec.ch/test/8643fbb9-1666-4e22-9f42-0fc1bfe47a2b'], 'trans:checksum': 'bc1171d528c9db4141a7685559ee0d6cd1b6d8a642dbef51058b4b8380ca3191', 'withinClause': 'http://smart.iec.ch/clause/476a8e3d-88ac-43f9-a580-be56a4d99d70', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/38520c18-8203-49d0-81dd-47b5cdc2efc6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005877', 'rdfs:label': '15.3.7', 'dcterms:title': 'Environmental influences', 'hasTest': ['http://smart.iec.ch/test/48e3875e-d215-4964-a6b1-54b294a72128', 'http://smart.iec.ch/test/f2cc21eb-1c0f-4c00-b277-ecea50c8d861'], 'trans:checksum': '28b13654838c31fdb67f50ff9277c0233ee684fe5d31f2a30251025f6fdbb437', 'withinClause': 'http://smart.iec.ch/clause/476a8e3d-88ac-43f9-a580-be56a4d99d70', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/15f4acbe-79f9-4368-876f-f23a6d66b94b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005892', 'rdfs:label': '15.4', 'dcterms:title': 'ME EQUIPMENT components and general assembly', 'comprisesClause': ['http://smart.iec.ch/clause/e6ba6593-1928-4ebd-ad5f-aaffb5301118', 'http://smart.iec.ch/clause/50978d37-9f21-4452-9130-8debcb77eb38', 'http://smart.iec.ch/clause/dcc278f3-cb77-411f-ad2c-8ee6fb9fd046', 'http://smart.iec.ch/clause/c8ab8125-5fd7-4a4f-a3e8-29716506773a', 'http://smart.iec.ch/clause/7098f51a-d59c-4669-81f4-9b56210ff54e', 'http://smart.iec.ch/clause/2e6af7cf-1372-4f42-a6fa-bb7ab10306e6', 'http://smart.iec.ch/clause/12ce7b48-5d6b-47a5-a66a-f91db9e3095b', 'http://smart.iec.ch/clause/c064534f-77f1-4bff-b0da-3905a4529d6d', 'http://smart.iec.ch/clause/6c4906cf-7bba-49a6-a86b-8fb704eacd21'], 'trans:checksum': '7645b59e8af4ad2181fd947e380bb4c38f3031c3fccd4510e8feb9301323238b', 'withinClause': 'http://smart.iec.ch/clause/30991ad9-6456-48b9-96a0-6895071493e8', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c064534f-77f1-4bff-b0da-3905a4529d6d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005893', 'rdfs:label': '15.4.1', 'dcterms:title': 'Construction of connectors', 'hasTest': ['http://smart.iec.ch/test/31985983-4acf-4084-b35a-0378b14a4cc1', 'http://smart.iec.ch/test/8b9f21b3-49f6-478a-8abe-31e962285984', 'http://smart.iec.ch/test/b7efaa91-e3de-45f1-8910-554400c11d1b'], 'trans:checksum': 'b7eeba6883df7e2e197636cfc8a30f5e7542d3069a54d237e071e12f101bb163', 'withinClause': 'http://smart.iec.ch/clause/15f4acbe-79f9-4368-876f-f23a6d66b94b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7098f51a-d59c-4669-81f4-9b56210ff54e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005906', 'rdfs:label': '15.4.2', 'dcterms:title': 'Temperature and overload control devices', 'hasMeasurement': ['http://smart.iec.ch/measurement/87f713ce-caea-4cdf-8204-4917025217bd'], 'comprisesClause': ['http://smart.iec.ch/clause/e1e8cbff-7459-4a5f-9e19-6de293b54806', 'http://smart.iec.ch/clause/3b892fc1-83c2-4a74-9d1b-27245fa8452d'], 'trans:checksum': 'c05b4ab4df33c869ef5a638dfd5f311f4ea9e3b4aa777e9ee5804a88a28a8225', 'withinClause': 'http://smart.iec.ch/clause/15f4acbe-79f9-4368-876f-f23a6d66b94b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e1e8cbff-7459-4a5f-9e19-6de293b54806', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005907', 'rdfs:label': '15.4.2.1', 'dcterms:title': 'Application', 'hasTest': ['http://smart.iec.ch/test/0baf82ba-e87a-4218-be22-61bbe6c76f81', 'http://smart.iec.ch/test/16de87ff-6b6c-4309-9a63-098fd53a18ba', 'http://smart.iec.ch/test/1a6fc2d2-e102-4f1c-b874-2a9ed40aa839', 'http://smart.iec.ch/test/3ac8dc52-1b00-420b-b48c-9552a3073cdb', 'http://smart.iec.ch/test/416e6bb6-03e1-4425-8d53-0391009c9554', 'http://smart.iec.ch/test/5f4e4928-5f11-46e1-94a2-2ed79196713c', 'http://smart.iec.ch/test/60b8a23a-5ae1-4d94-a2aa-d3658eb5c544', 'http://smart.iec.ch/test/61854712-46ef-460d-b5e1-389890d19541', 'http://smart.iec.ch/test/64281b03-ecac-4a14-9e3e-aedc50943e09', 'http://smart.iec.ch/test/6fdcc732-4ac8-4717-bea1-746551326897', 'http://smart.iec.ch/test/773c33de-d653-4806-8032-b7063bfc0072', 'http://smart.iec.ch/test/9eb3df35-3c09-4d44-aad8-1ead2e22f4cd', 'http://smart.iec.ch/test/a9212012-5904-44a9-8869-faa0e0a5a4ab', 'http://smart.iec.ch/test/e03b4b8c-08e3-4526-8bc7-e4595b5a7035', 'http://smart.iec.ch/test/ed624d70-12a9-4167-a786-76e6d7932914'], 'trans:checksum': '760a3baa545b019ea46b9a862e320623b6d624926a5a15245807c3f75f2d21ea', 'withinClause': 'http://smart.iec.ch/clause/7098f51a-d59c-4669-81f4-9b56210ff54e', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3b892fc1-83c2-4a74-9d1b-27245fa8452d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005961', 'rdfs:label': '15.4.2.2', 'dcterms:title': 'Temperature settings', 'hasTest': ['http://smart.iec.ch/test/f99c2258-edde-470d-84b4-8f819e5a71a4'], 'trans:checksum': '0013d629a5123bb3f8663f77779e8807e7377538c01a656d4ccc4ae1ef8f60d7', 'withinClause': 'http://smart.iec.ch/clause/7098f51a-d59c-4669-81f4-9b56210ff54e', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c8ab8125-5fd7-4a4f-a3e8-29716506773a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005966', 'rdfs:label': '15.4.3', 'dcterms:title': 'Batteries', 'comprisesClause': ['http://smart.iec.ch/clause/a099ffb1-fc6a-48ee-a98c-9a6dbb2c41a2', 'http://smart.iec.ch/clause/acf4390c-81f8-41bf-8af0-055cbd2df1a8', 'http://smart.iec.ch/clause/55b68a0a-261d-4031-9a2b-ceb250ea99da', 'http://smart.iec.ch/clause/d775aaa9-e3b1-4a0c-8566-51c506d1a823', 'http://smart.iec.ch/clause/1036a567-f40e-4a35-a79d-e66caa80306f'], 'trans:checksum': 'ea5a9bf4a2cf7867d9c77a3d804d82bc8a2d08c4b45b0834c4834bb7c6d5ea28', 'withinClause': 'http://smart.iec.ch/clause/15f4acbe-79f9-4368-876f-f23a6d66b94b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d775aaa9-e3b1-4a0c-8566-51c506d1a823', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005967', 'rdfs:label': '15.4.3.1', 'dcterms:title': 'Housing', 'hasTest': ['http://smart.iec.ch/test/3d91fe6b-b64f-4246-83d1-fb476629a133', 'http://smart.iec.ch/test/7d264315-fbb4-4a93-b8e2-ce8618ee749d'], 'trans:checksum': 'fc7a6af92c7cbcc8fc9181824f63168eb37655a26467e7eebf5fcbc55bbc06ca', 'withinClause': 'http://smart.iec.ch/clause/c8ab8125-5fd7-4a4f-a3e8-29716506773a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/55b68a0a-261d-4031-9a2b-ceb250ea99da', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005974', 'rdfs:label': '15.4.3.2', 'dcterms:title': 'Connection', 'hasTest': ['http://smart.iec.ch/test/08721765-5401-4e7c-8f98-590cc920ff23', 'http://smart.iec.ch/test/e5bae78e-79a7-4af5-9645-24fe5aecb086'], 'trans:checksum': 'c28e9e3bc0b3f19f9a558b4af10091a5c39d5bf6273a5f7a4d8ac5866cd7389c', 'withinClause': 'http://smart.iec.ch/clause/c8ab8125-5fd7-4a4f-a3e8-29716506773a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/acf4390c-81f8-41bf-8af0-055cbd2df1a8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005980', 'rdfs:label': '15.4.3.3', 'dcterms:title': 'Protection against overcharging', 'hasTest': ['http://smart.iec.ch/test/1b012e0e-853c-4e32-bcca-069c4df37089', 'http://smart.iec.ch/test/bc69a1c3-9e4a-484f-9327-eeafcf3959da'], 'trans:checksum': '0238acbc0123b022e9d4302685bad2902c56dcf1014653cccef71e8641c61c53', 'withinClause': 'http://smart.iec.ch/clause/c8ab8125-5fd7-4a4f-a3e8-29716506773a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1036a567-f40e-4a35-a79d-e66caa80306f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005985', 'rdfs:label': '15.4.3.4', 'dcterms:title': 'Lithium batteries', 'hasTest': ['http://smart.iec.ch/test/8356d1ac-ded0-4f78-93d9-42f16670359f', 'http://smart.iec.ch/test/b58c9bee-e8c5-432a-9911-32938baac34c'], 'hasMeasurement': ['http://smart.iec.ch/measurement/4899bd9c-fda4-41bf-b8a3-3355ab598ae2', 'http://smart.iec.ch/measurement/cf263d35-2536-4f15-8c40-ebd26023f420'], 'trans:checksum': 'e921c3ca9bc697d16b09e725a29e6e93aaa3e9e17de244ebf2e36856df73d75b', 'withinClause': 'http://smart.iec.ch/clause/c8ab8125-5fd7-4a4f-a3e8-29716506773a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a099ffb1-fc6a-48ee-a98c-9a6dbb2c41a2', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005991', 'rdfs:label': '15.4.3.5', 'dcterms:title': 'Excessive current and voltage protection', 'hasTest': ['http://smart.iec.ch/test/4a1f387c-ced3-4293-98d1-2fd72f242cce', 'http://smart.iec.ch/test/56bd0c2a-f0f7-423e-88b3-0829581ca0ad', 'http://smart.iec.ch/test/6fa4b7b7-7231-4888-b734-907f12c5a1f3', 'http://smart.iec.ch/test/b06eb987-908c-4fca-9c70-819bdf301dd7', 'http://smart.iec.ch/test/fac462eb-956f-42f4-9617-46b37ee84934'], 'trans:checksum': '3b433380dd7f4aa18d78868d24aa4e974d006321d5432a3843720c52cb488e95', 'withinClause': 'http://smart.iec.ch/clause/c8ab8125-5fd7-4a4f-a3e8-29716506773a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/dcc278f3-cb77-411f-ad2c-8ee6fb9fd046', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000005998', 'rdfs:label': '15.4.4', 'dcterms:title': 'Indicators', 'hasTest': ['http://smart.iec.ch/test/2eb7e65d-0194-42e4-abd2-ec58e5cbab80', 'http://smart.iec.ch/test/6aa05fe0-744e-4277-9198-df9ca055579d', 'http://smart.iec.ch/test/90124f8c-bd5c-4a5f-b904-715d964f46c3', 'http://smart.iec.ch/test/9d88d279-07e4-4160-bddb-a076db66f66c', 'http://smart.iec.ch/test/b64486d0-7a0e-4ca2-91a7-a815827a7e08', 'http://smart.iec.ch/test/cfa1d51a-b68f-4261-9a9c-065e350a4d00', 'http://smart.iec.ch/test/f239b70f-c235-4fce-a678-5525db3ad8d0', 'http://smart.iec.ch/test/f81d8386-a8bf-4e26-8fd3-6ff127e12f5a'], 'trans:checksum': '72b4f6cfb12f4dfb4ccfb73727b321d6ad3de476236949df7c9f42aa700382b3', 'withinClause': 'http://smart.iec.ch/clause/15f4acbe-79f9-4368-876f-f23a6d66b94b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2e6af7cf-1372-4f42-a6fa-bb7ab10306e6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006016', 'rdfs:label': '15.4.5', 'dcterms:title': 'Pre-set controls', 'hasTest': ['http://smart.iec.ch/test/9c4d444f-6c31-4167-b352-022ae29fb5e1'], 'trans:checksum': '7b6018aabb5c76539f3946a9d0298d88d9b0a0bb6280778ff2f3196cd13c9fb3', 'withinClause': 'http://smart.iec.ch/clause/15f4acbe-79f9-4368-876f-f23a6d66b94b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/12ce7b48-5d6b-47a5-a66a-f91db9e3095b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006021', 'rdfs:label': '15.4.6', 'dcterms:title': 'Actuating parts of controls of ME EQUIPMENT', 'hasMeasurement': ['http://smart.iec.ch/measurement/b869a5f3-ed15-4ee8-b358-22890a7781e6'], 'comprisesClause': ['http://smart.iec.ch/clause/5a4be600-7df1-402b-b34d-2138ffd78521', 'http://smart.iec.ch/clause/66eeffd7-1b38-46f3-9c55-25a03e47dfe7'], 'trans:checksum': '555c5b4c76af8cb17040646da6afc4a90ca9ade5f11f6f756f00ee8225149401', 'withinClause': 'http://smart.iec.ch/clause/15f4acbe-79f9-4368-876f-f23a6d66b94b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5a4be600-7df1-402b-b34d-2138ffd78521', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006022', 'rdfs:label': '15.4.6.1', 'dcterms:title': 'Fixing, prevention of maladjustment', 'hasTest': ['http://smart.iec.ch/test/47956c1f-91f4-446d-9c94-279b24506b25', 'http://smart.iec.ch/test/5f35a357-febd-4b07-abcc-3caf0790a8a2', 'http://smart.iec.ch/test/89dca3f5-ac77-4122-858e-df787f0a0e8d', 'http://smart.iec.ch/test/990516bd-f50f-4489-8915-fa2e5e611efa', 'http://smart.iec.ch/test/aa1737af-5095-40d8-a254-fcb389e1d47d'], 'trans:checksum': '2d1ce4197469ed9051f835d5c1c11c12eb8eeea83b746193bc73a39acade76c4', 'withinClause': 'http://smart.iec.ch/clause/12ce7b48-5d6b-47a5-a66a-f91db9e3095b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/66eeffd7-1b38-46f3-9c55-25a03e47dfe7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006044', 'rdfs:label': '15.4.6.2', 'dcterms:title': 'Limitation of movement', 'hasTest': ['http://smart.iec.ch/test/2dbc3a31-e7c7-4203-93f5-852e50d483e0', 'http://smart.iec.ch/test/7a216596-64a7-4adb-95d1-fe3cba778e7c', 'http://smart.iec.ch/test/ef5fbfd0-e74b-4f90-bcd8-ad6813657366'], 'trans:checksum': '39803d0d27ddfd38b085215e274fe843d4b49ba355c932c2e34516fade1e7fd1', 'withinClause': 'http://smart.iec.ch/clause/12ce7b48-5d6b-47a5-a66a-f91db9e3095b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6c4906cf-7bba-49a6-a86b-8fb704eacd21', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006053', 'rdfs:label': '15.4.7', 'dcterms:title': 'Cord-connected HAND-HELD and foot-operated control devices (see also 8.10.4)', 'hasTest': ['http://smart.iec.ch/test/af29e18a-d0a7-4b88-94ee-7cd00b27e4c7'], 'hasMeasurement': ['http://smart.iec.ch/measurement/03cc099a-c1bc-4e0d-b485-1e5e884f8fa6'], 'comprisesClause': ['http://smart.iec.ch/clause/bd257906-2cbd-4c3a-85d0-d0889474fd0c', 'http://smart.iec.ch/clause/9d6a2e8e-9cf5-449b-a39f-fc6912553258', 'http://smart.iec.ch/clause/ea48d39f-5006-4650-8397-f3c3749d40c0'], 'trans:checksum': '3ef342f4b70650941aafcda7850d6bea5a2abc79499ad3b69bce5f1cee430263', 'withinClause': 'http://smart.iec.ch/clause/15f4acbe-79f9-4368-876f-f23a6d66b94b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9d6a2e8e-9cf5-449b-a39f-fc6912553258', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006054', 'rdfs:label': '15.4.7.1', 'dcterms:title': 'Mechanical strength', 'hasTest': ['http://smart.iec.ch/test/7ca09a6f-a10c-4f1f-8fad-e5c754658828', 'http://smart.iec.ch/test/dee27e65-af20-4154-a2e2-66a9fddd0049'], 'trans:checksum': '20ee2465b68383e795b38fc5bbb2cdfc9fc1f372ca1572b87cc1accba8f6b195', 'withinClause': 'http://smart.iec.ch/clause/6c4906cf-7bba-49a6-a86b-8fb704eacd21', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/bd257906-2cbd-4c3a-85d0-d0889474fd0c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006064', 'rdfs:label': '15.4.7.2', 'dcterms:title': 'Accidental operation of ME EQUIPMENT', 'hasTest': ['http://smart.iec.ch/test/651654e9-aab1-48e5-8bdd-5a5ab0bf47b7', 'http://smart.iec.ch/test/73be7c54-4f61-4762-9f9d-6eebf300c43d'], 'trans:checksum': 'e2d9c42cdd172c5a761c2fb5ab27c341031513baa9d5a63355b95a792c872eb7', 'withinClause': 'http://smart.iec.ch/clause/6c4906cf-7bba-49a6-a86b-8fb704eacd21', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ea48d39f-5006-4650-8397-f3c3749d40c0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006069', 'rdfs:label': '15.4.7.3', 'dcterms:title': 'Entry of liquids', 'hasTest': ['http://smart.iec.ch/test/d14ab5db-7c2b-4ef9-a4bf-d7eb1f04acf9', 'http://smart.iec.ch/test/e6584997-ba5d-4ad7-a721-70223b709211'], 'hasMeasurement': ['http://smart.iec.ch/measurement/11bfd928-e094-41c6-b688-64090c2f6e2e'], 'trans:checksum': 'b8f8568b7c26ceca6bc3677411a690399bd78af1cd072e9dcdc8483f495fb0f7', 'withinClause': 'http://smart.iec.ch/clause/6c4906cf-7bba-49a6-a86b-8fb704eacd21', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/50978d37-9f21-4452-9130-8debcb77eb38', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006082', 'rdfs:label': '15.4.8', 'dcterms:title': 'Internal wiring of ME EQUIPMENT', 'hasTest': ['http://smart.iec.ch/test/7a332893-7b70-4e8a-9482-040ce2fb6b57'], 'trans:checksum': 'a08e0e849fbe3fdf692626882aa13839e25f2e56d329a3130bb097be69a7f1f9', 'withinClause': 'http://smart.iec.ch/clause/15f4acbe-79f9-4368-876f-f23a6d66b94b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e6ba6593-1928-4ebd-ad5f-aaffb5301118', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006087', 'rdfs:label': '15.4.9', 'dcterms:title': 'Oil containers', 'hasTest': ['http://smart.iec.ch/test/5246515a-0957-4390-a953-9dd70fb57976', 'http://smart.iec.ch/test/6e0f8788-ddb2-487f-9835-49a8ae663743', 'http://smart.iec.ch/test/89dffd7e-e81c-421b-9335-f8410c43201a', 'http://smart.iec.ch/test/afd0f203-7315-4980-bd56-7543e55173f1', 'http://smart.iec.ch/test/cef180de-ea58-42c8-b64d-b856d597cdb2'], 'trans:checksum': 'd77cdd909fb74edb77633b0a43ae322a28cb605e3303d9b34695e3dd4eeed405', 'withinClause': 'http://smart.iec.ch/clause/15f4acbe-79f9-4368-876f-f23a6d66b94b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0f3c8960-1963-4477-b334-cdfc584f85ce', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006101', 'rdfs:label': '15.5', 'dcterms:title': 'MAINS SUPPLY TRANSFORMERS of ME EQUIPMENT and transformers providing separation in accordance with 8.5', 'comprisesClause': ['http://smart.iec.ch/clause/ec2798d9-0562-4a3c-b638-4d0e6d46a236', 'http://smart.iec.ch/clause/34d0ad1a-b024-4904-b413-0501a4ffb2d0', 'http://smart.iec.ch/clause/8a2fc105-74d0-4477-b89f-8a5d37da9736'], 'trans:checksum': '6ef9c082836bfebd78ef72956ef4fc5401b94fff7c611b714e01934ea8d7dbbc', 'withinClause': 'http://smart.iec.ch/clause/30991ad9-6456-48b9-96a0-6895071493e8', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ec2798d9-0562-4a3c-b638-4d0e6d46a236', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006102', 'rdfs:label': '15.5.1', 'dcterms:title': 'Overheating', 'comprisesClause': ['http://smart.iec.ch/clause/c35c3466-cb4b-4fef-b906-1b50a102b77b', 'http://smart.iec.ch/clause/71061aa0-91af-4594-acbd-0112528a8c87', 'http://smart.iec.ch/clause/3a595ac5-f493-421b-ade1-05516072b7e4'], 'trans:checksum': 'eab64cf4509751f614ec93e4babd4e31f463303f4dbf1bcd05ee517fbe87a2b5', 'withinClause': 'http://smart.iec.ch/clause/0f3c8960-1963-4477-b334-cdfc584f85ce', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c35c3466-cb4b-4fef-b906-1b50a102b77b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006103', 'rdfs:label': '15.5.1.1', 'dcterms:title': 'Transformers', 'hasTest': ['http://smart.iec.ch/test/195b4bc4-83de-4921-baac-7c65ef307351', 'http://smart.iec.ch/test/5d139f1f-c301-4e1a-b2b4-660f9cfd5ad7', 'http://smart.iec.ch/test/d41ad174-021b-4cac-bc42-affe71d42ace'], 'hasMeasurement': ['http://smart.iec.ch/measurement/bbec9203-04e5-4094-aaef-2264ba7431f5'], 'trans:checksum': '7d71d3aa90a84f63990be66de94cb2d44320d52e8be44113180e651633860144', 'withinClause': 'http://smart.iec.ch/clause/ec2798d9-0562-4a3c-b638-4d0e6d46a236', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/71061aa0-91af-4594-acbd-0112528a8c87', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006127', 'rdfs:label': '15.5.1.2', 'dcterms:title': 'Short-circuit test', 'hasTest': ['http://smart.iec.ch/test/58ceec47-568e-4cbb-8a15-2dc2a894ab65', 'http://smart.iec.ch/test/effbd557-0fdd-409d-8e69-663d988c8355'], 'trans:checksum': 'a8b6eb9a2c5a660030087d0061ce34f5b75fab1774bf87caddafd290f7804ea2', 'withinClause': 'http://smart.iec.ch/clause/ec2798d9-0562-4a3c-b638-4d0e6d46a236', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3a595ac5-f493-421b-ade1-05516072b7e4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006130', 'rdfs:label': '15.5.1.3', 'dcterms:title': 'Overload test', 'hasTest': ['http://smart.iec.ch/test/4bc520c0-67e9-47ce-a37c-6de116d369ad'], 'trans:checksum': 'aa4e7397dfb676aa5a6b03b65f4a1c950012ebb9d0eced3d7121c070e7e07613', 'withinClause': 'http://smart.iec.ch/clause/ec2798d9-0562-4a3c-b638-4d0e6d46a236', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/34d0ad1a-b024-4904-b413-0501a4ffb2d0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006166', 'rdfs:label': '15.5.2', 'dcterms:title': 'Dielectric strength', 'hasTest': ['http://smart.iec.ch/test/2e75daef-181d-4bcf-883f-6226c1f44dbe', 'http://smart.iec.ch/test/3dca7b99-5bba-4b67-8501-55503c24509d', 'http://smart.iec.ch/test/f199bc9e-c305-4743-9f81-4e1f98b92107'], 'hasMeasurement': ['http://smart.iec.ch/measurement/65f308fe-9594-47c9-9f19-6440613ded63'], 'trans:checksum': '93a1602167c4c558bf62197ad222d660f56a60ed7e8ed78097e70e52def1cf7a', 'withinClause': 'http://smart.iec.ch/clause/0f3c8960-1963-4477-b334-cdfc584f85ce', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8a2fc105-74d0-4477-b89f-8a5d37da9736', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006209', 'rdfs:label': '15.5.3', 'dcterms:title': 'Construction of transformers used to provide separation as required by 8.5', 'hasTest': ['http://smart.iec.ch/test/082fda2e-0665-460b-a7e5-684dff7abe56', 'http://smart.iec.ch/test/55cee226-86a4-44b5-b5b6-6ec372438d28', 'http://smart.iec.ch/test/ac0fe595-afa8-45e8-a1e0-6940091c1e4b', 'http://smart.iec.ch/test/c013805a-c2d4-46df-b9a8-585e05dc0e7f', 'http://smart.iec.ch/test/cb69679d-146c-4eda-a830-9243dcfa4a43', 'http://smart.iec.ch/test/cd6da2ca-3b90-46e4-b54b-07f8309af6b5'], 'trans:checksum': '36d3dc97bf3e03a8314f598ea65ce1f9749e6f56f5f4139e07b9f019d86838b2', 'withinClause': 'http://smart.iec.ch/clause/0f3c8960-1963-4477-b334-cdfc584f85ce', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ada50b76-92cb-4851-b49a-a7b981d44ad3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006214', 'rdfs:label': '16', 'dcterms:title': 'ME SYSTEMS', 'comprisesClause': ['http://smart.iec.ch/clause/2fa3d787-6d36-4022-b7a8-410a55c26543', 'http://smart.iec.ch/clause/a95a06d0-7294-4c25-b005-0570617ff703', 'http://smart.iec.ch/clause/c184cef3-2b3e-4ab4-981c-c9005600a05a', 'http://smart.iec.ch/clause/6204a9d7-8f2b-4c36-9edd-ea6a63e5f29c', 'http://smart.iec.ch/clause/22b2c69e-ad7b-45bf-be8f-c9e6043faabf', 'http://smart.iec.ch/clause/65be1253-6a92-42fc-9a94-bc6014c32f8b', 'http://smart.iec.ch/clause/72564a01-1e2a-4bc4-92a9-32e9ac16b8e8', 'http://smart.iec.ch/clause/ca7cfc13-c06e-41cf-9a37-08ae17367fdc', 'http://smart.iec.ch/clause/2e26dbd9-dbcc-4de7-8d12-7ccd0bc8875e'], 'trans:checksum': '7b78f537e95dc77a8915380a2a3054c09ddaedd7eacb27c5e374341bb2544f9c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/65be1253-6a92-42fc-9a94-bc6014c32f8b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006215', 'rdfs:label': '16.1', 'dcterms:title': 'General requirements for the ME SYSTEMS', 'hasTest': ['http://smart.iec.ch/test/0fbc626e-c4d9-4be8-a962-a7ec10a4e5d3', 'http://smart.iec.ch/test/18247a40-ed77-469e-a06c-55625d5a922a', 'http://smart.iec.ch/test/649a7bc3-638b-4457-be77-cbbe34455069', 'http://smart.iec.ch/test/6ca0ed81-97c2-4838-bb5c-9543ea034810', 'http://smart.iec.ch/test/827573a2-404a-4477-af69-becbb0914d44', 'http://smart.iec.ch/test/b82e8d52-7aaf-4866-ac2c-4f4b93360751', 'http://smart.iec.ch/test/c0d83405-6a00-4dce-abca-c774f4d8f234', 'http://smart.iec.ch/test/d6ce8edd-cdad-4495-b202-46ef55372c8c', 'http://smart.iec.ch/test/dd25ba6b-bac8-4f18-ba84-3b6b525c4242', 'http://smart.iec.ch/test/df5c7216-d127-4bb0-9af2-f6c6ae0d1a6b', 'http://smart.iec.ch/test/f0fd2e66-37ee-4087-8b19-05b750cd3960'], 'trans:checksum': '8233eec73fec579ea80e3763ab7c91c94eac3ec2e080f3ef34ce320e958bf70a', 'withinClause': 'http://smart.iec.ch/clause/ada50b76-92cb-4851-b49a-a7b981d44ad3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ca7cfc13-c06e-41cf-9a37-08ae17367fdc', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006250', 'rdfs:label': '16.2', 'dcterms:title': 'ACCOMPANYING DOCUMENTS of an ME SYSTEM', 'hasTest': ['http://smart.iec.ch/test/039400c3-0fef-4673-b674-048542d03424', 'http://smart.iec.ch/test/15a32b9e-5a07-4330-902b-350f691dd224', 'http://smart.iec.ch/test/20f4685a-c90a-4684-98fd-de7b9b1cb4a1', 'http://smart.iec.ch/test/30009443-fb1b-453e-9bbc-e782d8f5532e', 'http://smart.iec.ch/test/43567ca7-6c93-4cff-94b7-64209356e22c', 'http://smart.iec.ch/test/44abd1ae-c635-44e8-84c3-62c9c48d95b5', 'http://smart.iec.ch/test/48e2dd40-5679-413f-bead-9fcabf812952', 'http://smart.iec.ch/test/4950db2f-eef2-40fc-8efd-458b79bcd31a', 'http://smart.iec.ch/test/578bb913-bcba-4459-82b7-7a1740f2d25a', 'http://smart.iec.ch/test/585653d1-db74-4ae6-bbdd-628a75250270', 'http://smart.iec.ch/test/5f9549e2-0acd-40cf-b89e-3a2550755f5d', 'http://smart.iec.ch/test/618c91ed-c9af-4aaa-842f-eda33a5309cb', 'http://smart.iec.ch/test/6a7c4ba0-8b31-473e-b1b1-1892f7cd6fd4', 'http://smart.iec.ch/test/842499cf-20d4-487c-8d67-040cb4e44d53', 'http://smart.iec.ch/test/93cdce6a-798d-4f7f-8b5b-c8edb2baabe9', 'http://smart.iec.ch/test/c5f6cc23-bf6c-4be1-9ed4-47c960f47a3f', 'http://smart.iec.ch/test/c8660bf8-a030-47ba-bc25-31d876dfb742', 'http://smart.iec.ch/test/c9cf2fd5-bdf0-441d-9149-0d68735717c7', 'http://smart.iec.ch/test/d0834a36-d902-4ee7-9b13-866b3b37eb2a', 'http://smart.iec.ch/test/da460145-7859-4ff8-bf0e-7d25a63e2964', 'http://smart.iec.ch/test/dd8de829-ded0-4119-87f8-88dd83a9880d', 'http://smart.iec.ch/test/e4bb823e-16b7-4faa-8493-c7698f0a7311', 'http://smart.iec.ch/test/e7020e84-e09e-40ff-9136-fbd21c6938e8'], 'trans:checksum': '48bcb1197c6565d9fcc29be98e8309bad2b7d6703d099055567e4ca60a9aea85', 'withinClause': 'http://smart.iec.ch/clause/ada50b76-92cb-4851-b49a-a7b981d44ad3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c184cef3-2b3e-4ab4-981c-c9005600a05a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006326', 'rdfs:label': '16.3', 'dcterms:title': 'Power supply', 'hasTest': ['http://smart.iec.ch/test/1f36d3a4-a354-46db-a0a9-e033a9a3a30f', 'http://smart.iec.ch/test/407aa8a9-88ce-430c-bad2-9f5c2548d927', 'http://smart.iec.ch/test/d7e1ccb8-13cf-40ea-8eac-cf95b077953b'], 'trans:checksum': '7dc76ce1559e2dcdd5440c9ced047eca799b7c55f209977c689cc6c0d91c8c36', 'withinClause': 'http://smart.iec.ch/clause/ada50b76-92cb-4851-b49a-a7b981d44ad3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/22b2c69e-ad7b-45bf-be8f-c9e6043faabf', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006332', 'rdfs:label': '16.4', 'dcterms:title': 'ENCLOSURES', 'hasTest': ['http://smart.iec.ch/test/a1a14958-5b15-4ca6-b6ee-2252c7b5630b'], 'trans:checksum': '7d2328e3bb74821bbc281bb60d4fcd3f1865888fe087c90ed1b14410f3bab238', 'withinClause': 'http://smart.iec.ch/clause/ada50b76-92cb-4851-b49a-a7b981d44ad3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2e26dbd9-dbcc-4de7-8d12-7ccd0bc8875e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006338', 'rdfs:label': '16.5', 'dcterms:title': 'SEPARATION DEVICES', 'hasTest': ['http://smart.iec.ch/test/2c8ae8d1-4751-474f-8db1-8e5b188f2c5c', 'http://smart.iec.ch/test/dd47ebee-840f-453d-b2e2-b50c7303f77b', 'http://smart.iec.ch/test/ea196025-970b-44f6-9775-041167b39c71'], 'trans:checksum': '8bcd123078b99b0bf07a5e3234b1a105ebdf2f7d7cbe0b922ab2a0a745f96f78', 'withinClause': 'http://smart.iec.ch/clause/ada50b76-92cb-4851-b49a-a7b981d44ad3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6204a9d7-8f2b-4c36-9edd-ea6a63e5f29c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006351', 'rdfs:label': '16.6', 'dcterms:title': 'LEAKAGE CURRENTS', 'hasMeasurement': ['http://smart.iec.ch/measurement/a380181e-3fbf-4b9a-9704-73949595c3eb'], 'comprisesClause': ['http://smart.iec.ch/clause/9924ecc0-08d3-4537-8835-41fa2c193728', 'http://smart.iec.ch/clause/c095e22a-17ae-48e3-bdef-230f6c72685d', 'http://smart.iec.ch/clause/b7849aab-b475-4959-a118-4438cd2d9210', 'http://smart.iec.ch/clause/e22663d1-e598-4d4a-a6df-d56d03e72050'], 'trans:checksum': 'ef9ff2e496f9ad2a376dcd24340744c5f8cbeff942594e778472638aa37bb2ce', 'withinClause': 'http://smart.iec.ch/clause/ada50b76-92cb-4851-b49a-a7b981d44ad3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c095e22a-17ae-48e3-bdef-230f6c72685d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006352', 'rdfs:label': '16.6.1', 'dcterms:title': 'TOUCH CURRENT', 'hasTest': ['http://smart.iec.ch/test/b773f71a-83ae-4f2c-8d78-a1710741f7a9', 'http://smart.iec.ch/test/e1cb475e-2fdb-4553-a4d2-7645dd961f5c'], 'trans:checksum': 'fbb87c0bf8aca4c9af172757c62231383fd25e709cbb72caa79e743e45b505e4', 'withinClause': 'http://smart.iec.ch/clause/6204a9d7-8f2b-4c36-9edd-ea6a63e5f29c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b7849aab-b475-4959-a118-4438cd2d9210', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006359', 'rdfs:label': '16.6.2', 'dcterms:title': 'EARTH LEAKAGE CURRENT of MULTIPLE SOCKET-OUTLET', 'hasTest': ['http://smart.iec.ch/test/1b6c6fbe-0f23-4237-ad4d-afbfd1ec8abe'], 'trans:checksum': '372c9f8495ec4309fdee8af54e05075ac76ed25497843df22d955c4834e66432', 'withinClause': 'http://smart.iec.ch/clause/6204a9d7-8f2b-4c36-9edd-ea6a63e5f29c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9924ecc0-08d3-4537-8835-41fa2c193728', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006362', 'rdfs:label': '16.6.3', 'dcterms:title': 'PATIENT LEAKAGE CURRENT', 'hasTest': ['http://smart.iec.ch/test/179f0a3b-5328-449a-a142-b9e6b9139614'], 'trans:checksum': 'f3a7ca2b8720873708e85ce7c4f3e0dd2040e680b93cfbd95da23d83b359055e', 'withinClause': 'http://smart.iec.ch/clause/6204a9d7-8f2b-4c36-9edd-ea6a63e5f29c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e22663d1-e598-4d4a-a6df-d56d03e72050', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006369', 'rdfs:label': '16.6.4', 'dcterms:title': 'Measurements', 'comprisesClause': ['http://smart.iec.ch/clause/632ed2d3-90d0-448c-85c6-260f1dad185d', 'http://smart.iec.ch/clause/acfcc826-d5bc-4780-9f3e-505432f5651c'], 'trans:checksum': 'eafe3013ab6685b3bf5530810750fc8bdfdfd54f8d0a7f1a46a43645bfde711d', 'withinClause': 'http://smart.iec.ch/clause/6204a9d7-8f2b-4c36-9edd-ea6a63e5f29c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/632ed2d3-90d0-448c-85c6-260f1dad185d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006370', 'rdfs:label': '16.6.4.1', 'dcterms:title': 'General conditions for ME SYSTEMS', 'trans:checksum': 'bd065a691c85d3884ca95c0311cf1088d58dc99f0581ff3a319a578c8c73dbc9', 'withinClause': 'http://smart.iec.ch/clause/e22663d1-e598-4d4a-a6df-d56d03e72050', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/acfcc826-d5bc-4780-9f3e-505432f5651c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006393', 'rdfs:label': '16.6.4.2', 'dcterms:title': 'Connection of the ME SYSTEM to the measuring supply circuit', 'trans:checksum': 'f0637aa0fd710d987948691ea79bd1f97688b3b6adbad895be9b90c9e7b92edd', 'withinClause': 'http://smart.iec.ch/clause/e22663d1-e598-4d4a-a6df-d56d03e72050', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/72564a01-1e2a-4bc4-92a9-32e9ac16b8e8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006407', 'rdfs:label': '16.7', 'dcterms:title': 'Protection against MECHANICAL HAZARDS', 'hasTest': ['http://smart.iec.ch/test/d956c31d-ab31-4dad-b43a-6e7f6fd651a3'], 'trans:checksum': 'e5a8a7b57ba891f72cce0b49cc56427310905b88fadc61ccb518f5b736d1166a', 'withinClause': 'http://smart.iec.ch/clause/ada50b76-92cb-4851-b49a-a7b981d44ad3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a95a06d0-7294-4c25-b005-0570617ff703', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006412', 'rdfs:label': '16.8', 'dcterms:title': 'Interruption of the power supply to parts of an ME SYSTEM', 'hasTest': ['http://smart.iec.ch/test/16934f41-2119-40e5-b39c-bfb683496ec8'], 'trans:checksum': '7d1ece1ce9cfcae5232fc3d3f946130da1fcc9b9df21442a26ff3e84c879590f', 'withinClause': 'http://smart.iec.ch/clause/ada50b76-92cb-4851-b49a-a7b981d44ad3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2fa3d787-6d36-4022-b7a8-410a55c26543', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006417', 'rdfs:label': '16.9', 'dcterms:title': 'ME SYSTEM connections and wiring', 'comprisesClause': ['http://smart.iec.ch/clause/25a4e8a1-b2e9-42e8-a0af-fa2380489d85', 'http://smart.iec.ch/clause/3d2f44dd-08dc-4b61-8812-daf2a26cffcd'], 'trans:checksum': 'e575e2f8ec2f3a3d3e78fd20d93af355f282fb2b0e3051c769f0295436aed986', 'withinClause': 'http://smart.iec.ch/clause/ada50b76-92cb-4851-b49a-a7b981d44ad3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/25a4e8a1-b2e9-42e8-a0af-fa2380489d85', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006418', 'rdfs:label': '16.9.1', 'dcterms:title': 'Connection terminals and connectors', 'hasTest': ['http://smart.iec.ch/test/3976f3e0-4039-4bf7-bad9-89f006ac93f9', 'http://smart.iec.ch/test/ccf92e9c-22ff-4274-b747-e16165581050', 'http://smart.iec.ch/test/df9269e1-6d81-4605-8ea2-d4d456488feb', 'http://smart.iec.ch/test/fb4dd522-6344-4cb7-8382-e44e64c617a5'], 'trans:checksum': 'c56043b1d2f29d2f0ac9e1eff77fce44a954aedc64c7343dcdafa3e7ebaa4a3e', 'withinClause': 'http://smart.iec.ch/clause/2fa3d787-6d36-4022-b7a8-410a55c26543', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3d2f44dd-08dc-4b61-8812-daf2a26cffcd', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006430', 'rdfs:label': '16.9.2', 'dcterms:title': 'MAINS PARTS, components and layout', 'comprisesClause': ['http://smart.iec.ch/clause/485dfa4a-8ee3-4b42-a6b2-8b09639449e6', 'http://smart.iec.ch/clause/2c3d3c6a-2009-486d-9cad-a703e22767ac', 'http://smart.iec.ch/clause/2553e498-4cb9-44cd-871c-bf7b78910b1c'], 'trans:checksum': 'aa5417c608374a7d940c9b8c8e609641859394aa64b1aa1de58d7695ed2f200a', 'withinClause': 'http://smart.iec.ch/clause/2fa3d787-6d36-4022-b7a8-410a55c26543', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2553e498-4cb9-44cd-871c-bf7b78910b1c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006431', 'rdfs:label': '16.9.2.1', 'dcterms:title': 'MULTIPLE SOCKET-OUTLET', 'hasTest': ['http://smart.iec.ch/test/025c8733-a653-47f5-a1c5-cb99de2b3e7e', 'http://smart.iec.ch/test/100ed07e-e07c-4521-beca-84c59bfdaf4a', 'http://smart.iec.ch/test/13433183-cfcd-4db1-a1e9-d4c6c4408371', 'http://smart.iec.ch/test/2355e9e6-1f9b-40d5-b5c5-f4cf40c23f0d', 'http://smart.iec.ch/test/26ebc7f5-8b0d-4265-869c-83e8deec421b', 'http://smart.iec.ch/test/593a7fb9-6d98-430e-9ff9-c0c73196e134', 'http://smart.iec.ch/test/80294f8e-9a71-4e69-8398-573557deb7eb', 'http://smart.iec.ch/test/8f2070c3-4428-4ba2-b246-cab15863107e', 'http://smart.iec.ch/test/941c4f49-7cef-4d30-8b9a-be6d0b26f9b8', 'http://smart.iec.ch/test/95abc08f-d990-4311-85ef-2dc55d18c8a8', 'http://smart.iec.ch/test/98daf5d5-1185-40b3-8051-947562d7693a', 'http://smart.iec.ch/test/aaa783a9-9ca0-4dd6-8868-de403a3452d2', 'http://smart.iec.ch/test/b9e239a6-a126-4213-830b-103303dfb07a', 'http://smart.iec.ch/test/ba9897a0-b01e-4a2b-bae2-699a4abca9ab', 'http://smart.iec.ch/test/bf6479ee-801d-4e44-bd72-7562a16f6ed0', 'http://smart.iec.ch/test/d94a4acc-3b4e-4fd2-bddc-9933dc1d0702', 'http://smart.iec.ch/test/deb00576-d83d-484a-9ac6-065e86e3c7f9', 'http://smart.iec.ch/test/ead87a45-199f-45db-884d-fec1b9a49d4b', 'http://smart.iec.ch/test/ecf0087a-e2e6-4a48-8921-99f5beea143f', 'http://smart.iec.ch/test/f3083d97-93a7-4429-8709-bf623dfc6a2a', 'http://smart.iec.ch/test/f4d1f8dc-16c2-49f0-bf22-546895d40996', 'http://smart.iec.ch/test/fa16f74a-e632-4007-8266-cf44ade0feb3'], 'trans:checksum': '5064cd9da0c4b0d871dbe4dc921eb1de3d71fe8a78ddcefb8049525b53ebdeff', 'withinClause': 'http://smart.iec.ch/clause/3d2f44dd-08dc-4b61-8812-daf2a26cffcd', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/485dfa4a-8ee3-4b42-a6b2-8b09639449e6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006526', 'rdfs:label': '16.9.2.2', 'dcterms:title': 'PROTECTIVE EARTH CONNECTIONS in ME SYSTEMS', 'hasTest': ['http://smart.iec.ch/test/40b9812c-fa84-4aaf-b5a8-4ea8ddb6b256', 'http://smart.iec.ch/test/53c04d92-bd49-4776-be69-46ee447a9a52', 'http://smart.iec.ch/test/626bca69-8291-4f3e-8bf6-8c48b7862a69', 'http://smart.iec.ch/test/c05d4da9-b0cb-4f10-9cb6-c0283b4b844d'], 'trans:checksum': '2528e63b91770cde6feff532d7ca28a986112b827f9c7a0e780cf4d3e5fb2724', 'withinClause': 'http://smart.iec.ch/clause/3d2f44dd-08dc-4b61-8812-daf2a26cffcd', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2c3d3c6a-2009-486d-9cad-a703e22767ac', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006533', 'rdfs:label': '16.9.2.3', 'dcterms:title': 'Protection of conductors', 'hasTest': ['http://smart.iec.ch/test/f3efc4f1-38f4-43e6-a341-5ad5e1f3fef4'], 'trans:checksum': 'c747bc005f8aac44669871a7eef468123d7c545861796bc92796d9ec43d921e0', 'withinClause': 'http://smart.iec.ch/clause/3d2f44dd-08dc-4b61-8812-daf2a26cffcd', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1075eba8-be41-4d43-b6c7-e0c21f283971', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006538', 'rdfs:label': '17', 'dcterms:title': 'Electromagnetic compatibility of ME EQUIPMENT and ME SYSTEMS', 'hasTest': ['http://smart.iec.ch/test/661d8aaa-fdb9-4d89-89dc-d01928e474a4', 'http://smart.iec.ch/test/6ebda6d7-55f2-490d-8f9b-cfc00069afea'], 'trans:checksum': '3fff6c9f4874789bfdc2af89d497d0025e484275015914ff79da04daefb4d36f', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5a475ef8-7348-455d-ae94-bfec12dc95da', '@type': 'corext:Annex', 'trans:sortKey': 'IEC60601120050000006552', 'rdfs:label': '', 'dcterms:title': 'Annexes', 'trans:checksum': '13e13da222ff229e85b627b8d82383b4009fa877a6b2a81df116de713954fb5e', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d2b89b6f-8531-4986-9cb1-e2cfa4d59889', '@type': 'corext:Annex', 'trans:sortKey': 'IEC60601120050000006553', 'rdfs:label': 'Annex A', 'dcterms:title': 'General guidance and rationale', 'hasMeasurement': ['http://smart.iec.ch/measurement/07a7d7ff-8028-45a1-8e1e-b7e867e4f809'], 'comprisesClause': ['http://smart.iec.ch/clause/66d03acd-84fe-499c-9816-a3fc0b42be6d', 'http://smart.iec.ch/clause/4d63db9e-ada0-4a11-b1e1-16fa9de7b225', 'http://smart.iec.ch/clause/bc1949e8-b4ef-4d88-b428-f0eccc58acc3', 'http://smart.iec.ch/clause/9f0e0f06-c759-40e9-a218-afc388ee5d64', 'http://smart.iec.ch/clause/2df1b60f-1805-44e4-b8c4-8ccf4ea9e8bd', 'http://smart.iec.ch/clause/a288393d-1cdb-4658-b78f-25211c3ce700', 'http://smart.iec.ch/clause/142e91dd-ecb9-48a5-af39-2ff00fd99c99', 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'http://smart.iec.ch/clause/9df0a35f-c89f-4b15-9302-6972fc036914', 'http://smart.iec.ch/clause/8dc9f19f-7839-49b3-afd2-300455ad9811', 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'http://smart.iec.ch/clause/ee46a9ce-9d47-4853-93c8-f92475a3e1d7', 'http://smart.iec.ch/clause/defa8811-1642-4d56-aea2-3e9a7b48b0e4', 'http://smart.iec.ch/clause/0cb1e9b4-5a13-462b-8e95-215bee9bb0c0', 'http://smart.iec.ch/clause/242cdb5d-5694-43bd-ad60-5cd37598ff72', 'http://smart.iec.ch/clause/2ff584c1-3dd7-454b-a6a6-29b5c3c20317', 'http://smart.iec.ch/clause/2174033a-461b-4320-9033-662b4ca56144', 'http://smart.iec.ch/clause/8f68e1b8-0e59-42c9-b0fb-82f3762ede48', 'http://smart.iec.ch/clause/c1d36857-9e11-4d71-97de-1b11cdf0819d'], 'trans:checksum': '0779c42bc63c138eff96308bedaeaa4bc09dd0cda2be99b9e3d4f744b8bc5f00', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0cb1e9b4-5a13-462b-8e95-215bee9bb0c0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006554', 'rdfs:label': 'A.1', 'dcterms:title': 'General guidance', 'trans:checksum': 'adfead14b9fe41436f2b13a11d08422123ba243906eb6190ca6c7388f27cf9c2', 'withinClause': 'http://smart.iec.ch/clause/d2b89b6f-8531-4986-9cb1-e2cfa4d59889', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/66d03acd-84fe-499c-9816-a3fc0b42be6d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006588', 'rdfs:label': 'A.2', 'dcterms:title': 'Safety of ME EQUIPMENT and ME SYSTEMS', 'trans:checksum': '886261a859c78eaec914a78d7d7d81a8cc48b28e17bb9e388c7858771fe59dbd', 'withinClause': 'http://smart.iec.ch/clause/d2b89b6f-8531-4986-9cb1-e2cfa4d59889', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c1d36857-9e11-4d71-97de-1b11cdf0819d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006612', 'rdfs:label': 'A.3', 'dcterms:title': 'Guidance to the third edition', 'trans:checksum': '5dd7953ddbe7f81ff994cf2f16b5ab8bccffebf087b3d0fe79b8c4d2eee91c1c', 'withinClause': 'http://smart.iec.ch/clause/d2b89b6f-8531-4986-9cb1-e2cfa4d59889', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006648', 'rdfs:label': 'A.4', 'dcterms:title': 'Rationale for particular clauses and subclauses', 'comprisesClause': ['http://smart.iec.ch/clause/b6b27df7-6ae3-40d6-9495-91b91e0197f5', 'http://smart.iec.ch/clause/4af5c17e-44f5-4747-8975-954e05822d18', 'http://smart.iec.ch/clause/7796dbea-ef6b-40f9-8128-93522ac665de', 'http://smart.iec.ch/clause/3963c89a-007e-44b3-84ad-45351d28850c', 'http://smart.iec.ch/clause/1305b1de-a4ec-4a1c-a44c-6ca45a0ad48e', 'http://smart.iec.ch/clause/7adcda5d-d624-4e0b-a7be-713789411e56', 'http://smart.iec.ch/clause/7d021e8c-adb0-4389-b504-4a69ce2021d0', 'http://smart.iec.ch/clause/9ae0b00e-d9b3-4a88-9fee-c0ef608058c8', 'http://smart.iec.ch/clause/4b02d823-027f-42af-8528-902a9ac4d0a0', 'http://smart.iec.ch/clause/00b6a55c-55f6-44f2-b6fd-a4c0dfd15bb7', 'http://smart.iec.ch/clause/fd14b08e-e587-4f21-aa7b-8cd9f7d37d08', 'http://smart.iec.ch/clause/b857ec2d-ccec-43f8-8e64-bb67e4fdea8c', 'http://smart.iec.ch/clause/bdfba1e6-08e3-42b1-86e0-25a9f1a19ec5', 'http://smart.iec.ch/clause/fa0904ba-2ecc-4fed-8eda-b468cf6c850a', 'http://smart.iec.ch/clause/59c23b53-d2e9-49ae-827e-1038241c3c64', 'http://smart.iec.ch/clause/c10a8f85-2794-4f21-a60e-098b5e2c14b3', 'http://smart.iec.ch/clause/697325eb-aef3-4dea-94fb-53e24ee4c347', 'http://smart.iec.ch/clause/7454372c-58fb-4ccc-837a-01048061b249', 'http://smart.iec.ch/clause/04b1f739-a32c-4c51-bcf0-1c11e071fe59', 'http://smart.iec.ch/clause/5baccd3c-3ade-460c-a40c-7c17f69cd3cf', 'http://smart.iec.ch/clause/fa686b12-1419-444d-96b5-d596110a0c48', 'http://smart.iec.ch/clause/74035f82-742b-4f04-9021-46f7fcbfc6c7', 'http://smart.iec.ch/clause/0e39a999-3d71-4b7c-930e-4c4058db48b9', 'http://smart.iec.ch/clause/5b4b35a4-d4b0-4fd7-ad66-93ce4956e23c', 'http://smart.iec.ch/clause/d77a60cb-bada-47e6-9943-75edcc092456', 'http://smart.iec.ch/clause/1e512fdd-1a14-4e8d-9d7f-43bc6e96fdf4', 'http://smart.iec.ch/clause/4951acc2-4a86-4bda-ab5f-ac80d8186b9a', 'http://smart.iec.ch/clause/85cf0eca-b9ca-41ba-a824-f7b3b296f079', 'http://smart.iec.ch/clause/e8f00448-ba2e-4f8c-a1f9-fcf9eef2ba26', 'http://smart.iec.ch/clause/b1d5ceb0-531a-419f-846b-d480cea4f64d', 'http://smart.iec.ch/clause/e36d1f5c-c0d7-460a-b690-0ddd2da314ad', 'http://smart.iec.ch/clause/90031b51-f840-4b1e-8be5-c0f4b97eb544', 'http://smart.iec.ch/clause/af639708-eda2-4377-b7e5-4e3807fb5302', 'http://smart.iec.ch/clause/c45b7dd0-df4c-45f3-b770-17ad963ca646', 'http://smart.iec.ch/clause/4e1fe785-30f6-42f9-b926-4363643a4211', 'http://smart.iec.ch/clause/06bfea61-7951-4512-96a9-db8d756cb48a', 'http://smart.iec.ch/clause/3f7bdd96-1720-4370-b0f3-ffc988e4de77', 'http://smart.iec.ch/clause/f435ae05-14f0-4150-9f25-49833691538c', 'http://smart.iec.ch/clause/6d34119e-a8ba-451f-8824-a8b8756766da', 'http://smart.iec.ch/clause/7d6728e4-15f8-4537-85f7-c2f89c62fdff', 'http://smart.iec.ch/clause/ffffc917-4802-4b42-b4bc-f2bb264a8491', 'http://smart.iec.ch/clause/fc0403b8-500e-41c3-b31a-7dcfaf603598', 'http://smart.iec.ch/clause/1139928b-da49-4f53-9754-3ee686533463', 'http://smart.iec.ch/clause/c892b495-f787-42e5-abda-4403f20de62a', 'http://smart.iec.ch/clause/20bfa2b9-6ae0-41c6-8bbc-fa6e2d02a48d', 'http://smart.iec.ch/clause/f8cfcddb-ab05-4a18-acee-6bae9f42700a', 'http://smart.iec.ch/clause/2cb19724-4fa8-4bb1-9df5-6065c276d87f', 'http://smart.iec.ch/clause/12326c5c-6c09-4f15-ab71-b5ed87babb99', 'http://smart.iec.ch/clause/ee256f15-0c67-420f-aabc-65dbb2790065', 'http://smart.iec.ch/clause/0dac5590-4818-4958-9dd5-2f6b05238f9b', 'http://smart.iec.ch/clause/70ae2160-5efe-4dd5-9ac0-a7d0be32b7ef', 'http://smart.iec.ch/clause/927d4a6a-bbd1-4c83-bb69-9afc250ee7b4', 'http://smart.iec.ch/clause/89681f65-e594-46c3-b673-217b6e5dbaa5', 'http://smart.iec.ch/clause/cf8f9eab-b137-45a4-b87b-6eb652bfa2c0', 'http://smart.iec.ch/clause/fae7e759-8eff-4a7b-b4b3-fd5e1ccd4053', 'http://smart.iec.ch/clause/634725cc-9fec-4d61-acad-1abe56525b06', 'http://smart.iec.ch/clause/1ab9add3-2d9c-48bc-a8f1-4efe6777e00f', 'http://smart.iec.ch/clause/b9695f38-ec33-4406-880d-71c0f48e58d2', 'http://smart.iec.ch/clause/ed2b06e0-7538-4ea4-a845-ff586478d95c', 'http://smart.iec.ch/clause/83987f98-3b7b-4c11-ba98-a50d8132975b', 'http://smart.iec.ch/clause/6ce18936-30c0-413e-b747-78a992cb00ee', 'http://smart.iec.ch/clause/b00a4140-11f5-4034-87ff-d4625620e335', 'http://smart.iec.ch/clause/a410d077-d6e4-4093-a5b5-e1a03658b3d9', 'http://smart.iec.ch/clause/cb23d0f1-f4c1-4c97-8534-f1753f5bc08c', 'http://smart.iec.ch/clause/62283f8d-368d-4109-ba9b-1d887cc42e8b', 'http://smart.iec.ch/clause/da19ef4a-8e42-4987-ac19-68b61a4ec321', 'http://smart.iec.ch/clause/0b5b6c28-c319-4691-bf84-8a5e2f838bda', 'http://smart.iec.ch/clause/5143a80e-f91a-4e92-93a2-beee09b8cbe4', 'http://smart.iec.ch/clause/dd6c348f-9bf3-4072-a095-d39ae42d322b', 'http://smart.iec.ch/clause/d78554ac-fc8f-4df6-a5eb-1c81c755c4b2', 'http://smart.iec.ch/clause/8ccbaeb6-4e47-4a1f-b329-3d3e99196b5f', 'http://smart.iec.ch/clause/569d4db1-c791-4eaf-aca7-ebd008ebc93c', 'http://smart.iec.ch/clause/1bb40239-4ab1-4a2c-9308-892b78cbc4fa', 'http://smart.iec.ch/clause/1b47e928-23dd-4c7a-a42d-eabb0029efd3', 'http://smart.iec.ch/clause/1a38ac09-3f82-4736-a5b5-cd870048e323', 'http://smart.iec.ch/clause/4b90bbc7-1da3-4357-90f5-6d71033d3657', 'http://smart.iec.ch/clause/7622e164-1a9e-4be2-ae52-c6edc5b5c7a3', 'http://smart.iec.ch/clause/b3d7cf5d-43ab-4c78-b85a-07d4590a6df4'], 'trans:checksum': '5d03b0dae5f614bc4e388e939b6f94a700de42c24f9f62617b6b5e56c27863cb', 'withinClause': 'http://smart.iec.ch/clause/d2b89b6f-8531-4986-9cb1-e2cfa4d59889', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1e512fdd-1a14-4e8d-9d7f-43bc6e96fdf4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006651', 'rdfs:label': 'Subclause 1.1', 'dcterms:title': '- Scope', 'trans:checksum': 'ffad571dc360ac412c42fe887f875571aa74d370d985e7602103ba9a53ca704c', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6d34119e-a8ba-451f-8824-a8b8756766da', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006661', 'rdfs:label': 'Subclause 1.3', 'dcterms:title': '- Collateral standards', 'trans:checksum': 'b0be5b6b8ed76dbe235ebc09cff8d0e727f1e0c0a66fca9df9d8800ad503305b', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/12326c5c-6c09-4f15-ab71-b5ed87babb99', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006690', 'rdfs:label': 'Subclause 1.4', 'dcterms:title': '- Particular standards', 'trans:checksum': '779dd0fc6478b073b2937d973442f506f801a71b1f18ae8a1665d1e59b139a03', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/da19ef4a-8e42-4987-ac19-68b61a4ec321', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006724', 'rdfs:label': 'Clause 2', 'dcterms:title': '- Normative references', 'trans:checksum': 'eb416519b738ccb088f9945b82cbcefa6efc6d2c6fdf3c1047b3b7abde59912b', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0dac5590-4818-4958-9dd5-2f6b05238f9b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006740', 'rdfs:label': 'Clause 3', 'dcterms:title': '- Terminology and definitions', 'trans:checksum': '396681536838e36a1789bec983caa95b77a3481f3777aedab39df26a0db634a8', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/cb23d0f1-f4c1-4c97-8534-f1753f5bc08c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006755', 'rdfs:label': 'Subclause 3.8', 'dcterms:title': '- APPLIED PART', 'trans:checksum': '1192a71042ae84d100c293b2b4f9070a95c12b8a8e81b9ddd42670ab94da4f9b', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ed2b06e0-7538-4ea4-a845-ff586478d95c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006951', 'rdfs:label': 'Subclause 3.9', 'dcterms:title': '- BASIC INSULATION', 'trans:checksum': 'd5de62518cf0c790bac247da702608a4157d4d6f42700a863d42f62fd5986c0a', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1b47e928-23dd-4c7a-a42d-eabb0029efd3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006954', 'rdfs:label': 'Subclause 3.10', 'dcterms:title': '- BASIC SAFETY', 'trans:checksum': '47154f05a0665ba806444f4589f9527c0f6ca9657253ce85c8c2e1071b66aa12', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a410d077-d6e4-4093-a5b5-e1a03658b3d9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006966', 'rdfs:label': 'Subclause 3.17', 'dcterms:title': '- COMPONENT WITH HIGH-INTEGRITY CHARACTERISITCS', 'trans:checksum': '420e351fef5651854ec2f81b4b71ae643ffecc391ded1e8987b5028ce5abdbf2', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4951acc2-4a86-4bda-ab5f-ac80d8186b9a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006972', 'rdfs:label': 'Subclause 3.18', 'dcterms:title': '- CONTINUOUS OPERATION', 'trans:checksum': '874d4226246184aeb4cb17c2dde83f6032497054a73c8bdbd32b2ea5a1b93f1a', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/697325eb-aef3-4dea-94fb-53e24ee4c347', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006976', 'rdfs:label': 'Subclause 3.20', 'dcterms:title': '- DEFIBRILLATION-PROOF APPLIED PART', 'trans:checksum': 'ae7378c28c971163b0600ce74e8303b58dafeb9ab453c5dc407ac1ce2ae84d19', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1bb40239-4ab1-4a2c-9308-892b78cbc4fa', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006980', 'rdfs:label': 'Subclause 3.21', 'dcterms:title': '- DETACHABLE POWER SUPPLY CORD', 'trans:checksum': 'adcf640cf96ae2a99a8b444cefaf5b79d6ebfc4e270ef64c62b08097b0f31680', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/bdfba1e6-08e3-42b1-86e0-25a9f1a19ec5', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006983', 'rdfs:label': 'Subclause 3.22', 'dcterms:title': '- DIRECT CARDIAC APPLICATION', 'trans:checksum': 'f54012dbe6147fbfb172d599daf9cd562cbe91445676a13fc0674876c4fee7a5', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2cb19724-4fa8-4bb1-9df5-6065c276d87f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006987', 'rdfs:label': 'Subclause 3.23', 'dcterms:title': '- DOUBLE INSULATION', 'trans:checksum': '59e95fe7e7c1e575045bf7d5d0e34074afc6952b251738629a20c774cfa4eaa3', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/fc0403b8-500e-41c3-b31a-7dcfaf603598', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006991', 'rdfs:label': 'Subclause 3.24', 'dcterms:title': '- DUTY CYCLE', 'trans:checksum': '92e224ccebd71ad7dd5ee6615d9a28881a91ea53b3d809ea369a24c46370ea22', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5143a80e-f91a-4e92-93a2-beee09b8cbe4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006994', 'rdfs:label': 'Subclause 3.26', 'dcterms:title': '- ENCLOSURE', 'trans:checksum': 'e2724d1d7b8f6c196a2237a0b326911b4147b165a0e5b3cd8d6e742a2f5ff5fc', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/59c23b53-d2e9-49ae-827e-1038241c3c64', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000006998', 'rdfs:label': 'Subclause 3.27', 'dcterms:title': '- ESSENTIAL PERFORMANCE', 'trans:checksum': '3955f63a7f5a3b5de80cf59b5952175ee049817645603cf731ca1e882984e60f', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4b90bbc7-1da3-4357-90f5-6d71033d3657', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007028', 'rdfs:label': 'Subclause 3.33', 'dcterms:title': '- FUNCTIONAL CONNECTION', 'trans:checksum': 'fda8ab244e58f15ceed2537df6d45c3b83268f249c6deb50cb7eb3a2bde93374', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b6b27df7-6ae3-40d6-9495-91b91e0197f5', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007034', 'rdfs:label': 'Subclause 3.35', 'dcterms:title': '- FUNCTIONAL EARTH TERMINAL', 'trans:checksum': '554f9e132e81b08b48e33a012740121a01ffb23bfaa20ef587cce2e9a413ca6b', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/dd6c348f-9bf3-4072-a095-d39ae42d322b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007039', 'rdfs:label': 'Subclause 3.38', 'dcterms:title': '- HARM', 'trans:checksum': '57e90883d912dbd792ed5d5c24a6a8614590e0d105d960e063f21764d98cac7c', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1305b1de-a4ec-4a1c-a44c-6ca45a0ad48e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007043', 'rdfs:label': 'Subclause 3.40', 'dcterms:title': '- HAZARDOUS SITUATION', 'trans:checksum': 'e2e03a8a172d287359a1d8fbd47aa61861cd027389ce3d7b93c4d4df5c8f6abf', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b9695f38-ec33-4406-880d-71c0f48e58d2', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007052', 'rdfs:label': 'Subclause 3.44', 'dcterms:title': '- INTENDED USE', 'trans:checksum': '3324220c59c06e0cb5908925d6a8aa88d67da0eb6bc2d33fc5af0b6bb80fed90', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c10a8f85-2794-4f21-a60e-098b5e2c14b3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007058', 'rdfs:label': 'Subclause 3.49', 'dcterms:title': '- MAINS PART', 'trans:checksum': '51ea7a7cef65ee299fcbd75cc2bff74da860aa308e26b9950d9636a3e9a2e27a', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/00b6a55c-55f6-44f2-b6fd-a4c0dfd15bb7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007063', 'rdfs:label': 'Subclause 3.50', 'dcterms:title': '- MAINS PLUG', 'trans:checksum': 'a9e8e0a3f42349622def9c9a3675a58b87ba92442778c1930fddd9d5f46c8145', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/20bfa2b9-6ae0-41c6-8bbc-fa6e2d02a48d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007067', 'rdfs:label': 'Subclause 3.56', 'dcterms:title': '- MAXIMUM MAINS VOLTAGE', 'trans:checksum': 'bfc36ed0431e3c0298bf400d84481d4d71391f7a332088b25551658f4b8a3008', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/fa0904ba-2ecc-4fed-8eda-b468cf6c850a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007077', 'rdfs:label': 'Subclause 3.57', 'dcterms:title': '- MAXIMUM PERMISSIBLE WORKING PRESSURE', 'trans:checksum': '51e9983661be63eed5018c1f781be0dfe27e2ccfe295c5e9566e3b557718eb8f', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1a38ac09-3f82-4736-a5b5-cd870048e323', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007082', 'rdfs:label': 'Subclause 3.58', 'dcterms:title': '- MEANS OF PROTECTION', 'trans:checksum': '82c5ca9c5a7ec053cb081cc4f3913598c8f0fb536ed4d5ee51ac26e276b3a9ef', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/89681f65-e594-46c3-b673-217b6e5dbaa5', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007093', 'rdfs:label': 'Subclause 3.59', 'dcterms:title': '- MEANS OF PATIENT PROTECTION', 'trans:checksum': '8939b681ab409495a0e9862f0dcd01dbe624691520d5401e154b39b9d8ba4903', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1ab9add3-2d9c-48bc-a8f1-4efe6777e00f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007096', 'rdfs:label': 'Subclause 3.60', 'dcterms:title': '- MEANS OF OPERATOR PROTECTION', 'trans:checksum': 'c901e04a333c8172c227ced68705e2e3ef153aee87bb46976ae28ae35c93561c', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c45b7dd0-df4c-45f3-b770-17ad963ca646', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007099', 'rdfs:label': 'Subclause 3.63', 'dcterms:title': '- MEDICAL ELECTRICAL EQUIPMENT', 'trans:checksum': 'aa66384afe6d9be7383ecf2a2e38eedffe526a628c65e11d90ab086da721598b', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5baccd3c-3ade-460c-a40c-7c17f69cd3cf', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007104', 'rdfs:label': 'Subclause 3.64', 'dcterms:title': '- MEDICAL ELECTRICAL SYSTEM', 'trans:checksum': '788c0c8963b731272fd46730bb7a855b3098bd4fb091d175d1e44a1a42d3d210', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4b02d823-027f-42af-8528-902a9ac4d0a0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007111', 'rdfs:label': 'Subclause 3.66', 'dcterms:title': '- MODEL OR TYPE REFERENCE', 'trans:checksum': 'b4ca638bf14dacc82f3a75ff6a28a52f3de3a1c3d64b4128189379c960bc9f92', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/fa686b12-1419-444d-96b5-d596110a0c48', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007115', 'rdfs:label': 'Subclause 3.67', 'dcterms:title': '- MULTIPLE SOCKET-OUTLET', 'trans:checksum': '8b6b35cfe1778025ef0f8cc9c13f784069b22effb348ee322a84dec3ae7ab88a', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/927d4a6a-bbd1-4c83-bb69-9afc250ee7b4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007165', 'rdfs:label': 'Subclause 3.68', 'dcterms:title': '- NETWORK/DATA COUPLING', 'trans:checksum': 'a70cb04f9ee237ae985059595932790dec5d3fc115673ed6fcbf74a32b33a4ae', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ee256f15-0c67-420f-aabc-65dbb2790065', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007169', 'rdfs:label': 'Subclause 3.73', 'dcterms:title': '- OPERATOR', 'trans:checksum': 'b7c98114a61d878e905aa0cebd350314a3009920c70419626f2722e42279b58a', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/f8cfcddb-ab05-4a18-acee-6bae9f42700a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007193', 'rdfs:label': 'Subclause 3.75', 'dcterms:title': '- OXYGEN RICH ENVIRONMENT', 'trans:checksum': 'fb858e2960c384619f35f4840490eda6a41ba7d32aeb3e084dd101fc5eec3452', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d78554ac-fc8f-4df6-a5eb-1c81c755c4b2', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007208', 'rdfs:label': 'Subclause 3.77', 'dcterms:title': '- PATIENT AUXILIARY CURRENT', 'trans:checksum': '31b3f30a6644256b81b6a6297fbd5b3dc86cfa39bd4ccfa34559d8a0e926717c', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7d6728e4-15f8-4537-85f7-c2f89c62fdff', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007226', 'rdfs:label': 'Subclause 3.78', 'dcterms:title': '- PATIENT CONNECTION', 'trans:checksum': 'c19909a256ca30d13385cf10d8e66a128b5bec0155cb4369f7218b2d292ce49b', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/634725cc-9fec-4d61-acad-1abe56525b06', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007254', 'rdfs:label': 'Subclause 3.79', 'dcterms:title': '- PATIENT ENVIRONMENT', 'trans:checksum': 'ff27e28dcf74c6b24ed935436b9b32145c97a0ec7733382b727741cd131b6b39', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c892b495-f787-42e5-abda-4403f20de62a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007262', 'rdfs:label': 'Subclause 3.81', 'dcterms:title': '- PEAK WORKING VOLTAGE', 'trans:checksum': 'ac2a1c675b482cbd332c334a2576eb3285d34180a20c3b762806aed0960956b3', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/fae7e759-8eff-4a7b-b4b3-fd5e1ccd4053', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007267', 'rdfs:label': 'Subclause 3.99', 'dcterms:title': '- REINFORCED INSULATION', 'trans:checksum': '48be2a3dc19799872232b457536b9bcca72a51b5c0455ebb9a4fe0dc5151325b', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e8f00448-ba2e-4f8c-a1f9-fcf9eef2ba26', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007271', 'rdfs:label': 'Subclause 3.110', 'dcterms:title': '- SECONDARY CIRCUIT', 'trans:checksum': '952d6a42a08974517b799833607c964da557b0e6950aaa1642b374b709eeaf76', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d77a60cb-bada-47e6-9943-75edcc092456', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007274', 'rdfs:label': 'Subclause 3.112', 'dcterms:title': '- SEPARATION DEVICE', 'trans:checksum': 'fb0d9fcd2cef74fc58c90968fc5ff4a7f9ad056240c74b0272c97c06dca4d9b1', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/90031b51-f840-4b1e-8be5-c0f4b97eb544', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007278', 'rdfs:label': 'Subclause 3.115', 'dcterms:title': '- SIGNAL INPUT/OUTPUT PART', 'trans:checksum': '78a2f9e264f06b54147a6bd0a3099352dcba2a266af090bc582cbd73224dcca7', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/62283f8d-368d-4109-ba9b-1d887cc42e8b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007282', 'rdfs:label': 'Subclause 3.120', 'dcterms:title': '- SUPPLY MAINS', 'trans:checksum': '2834cebac8257a364207f47a7b0ba532bd157ee7c4d72bdb26ea8979a971c3fd', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/70ae2160-5efe-4dd5-9ac0-a7d0be32b7ef', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007290', 'rdfs:label': 'Subclause 3.132', 'dcterms:title': '- TYPE B APPLIED PART', 'trans:checksum': '22af40acb7790149946681b1ff9a53d9e1dd50cfc3ac7768170fa8035f1d1760', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8ccbaeb6-4e47-4a1f-b329-3d3e99196b5f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007305', 'rdfs:label': 'Subclause 3.133', 'dcterms:title': '- TYPE BF APPLIED PART', 'trans:checksum': 'dded58cb47953f63261ce7a96cdabaa78439e8c28148474561b3d5128fe506f7', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6ce18936-30c0-413e-b747-78a992cb00ee', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007310', 'rdfs:label': 'Subclause 3.134', 'dcterms:title': '- TYPE CF APPLIED PART', 'trans:checksum': '142c42c0eb9c294eda1836f3a9bd4388077216416c02866ec8b818e5092aceda', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/04b1f739-a32c-4c51-bcf0-1c11e071fe59', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007315', 'rdfs:label': 'Subclause 3.139', 'dcterms:title': '- WORKING VOLTAGE', 'trans:checksum': '637a00ad4fd87ff98cde52a623c615e50e589d60c9017675f55828dc4b61adb0', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/af639708-eda2-4377-b7e5-4e3807fb5302', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007320', 'rdfs:label': 'Subclause 4.1', 'dcterms:title': '- Conditions for application to ME EQUIPMENT or ME SYSTEMS', 'trans:checksum': 'd602e85880e4d7fdaa5d4819d2ff4e9f2ae5c7c97b065c7ef0b641dcb921a0eb', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3f7bdd96-1720-4370-b0f3-ffc988e4de77', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007325', 'rdfs:label': 'Subclause 4.2', 'dcterms:title': '- RISK MANAGEMENT PROCESS for ME EQUIPMENT or ME SYSTEMS', 'trans:checksum': 'a439caeec486c197e7ca1cd244954b7c4a4f718d1b3c61390c6cba5402929575', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/cf8f9eab-b137-45a4-b87b-6eb652bfa2c0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007367', 'rdfs:label': 'Subclause 4.3', 'dcterms:title': '- ESSENTIAL PERFORMANCE', 'trans:checksum': 'b5af7a0ccab5e370449c69345df21ce769cbc69eafd002151617f01d68ea4c2d', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7adcda5d-d624-4e0b-a7be-713789411e56', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007374', 'rdfs:label': 'Subclause 4.4', 'dcterms:title': '- EXPECTED SERVICE LIFE', 'trans:checksum': '1b592b2e26b84d0391a2e3a7d27670f605398ba99845980062c1d4785605fedf', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/fd14b08e-e587-4f21-aa7b-8cd9f7d37d08', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007381', 'rdfs:label': 'Subclause 4.5', 'dcterms:title': '- Equivalent safety for ME EQUIPMENT or ME SYSTEMS', 'trans:checksum': '8ed0339e13dd4da7eeeb313d468d331bf6faf358f161024e432b0dc89dd067cf', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7622e164-1a9e-4be2-ae52-c6edc5b5c7a3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007389', 'rdfs:label': 'Subclause 4.6', 'dcterms:title': '- ME EQUIPMENT or ME SYSTEM parts that contact the PATIENT', 'trans:checksum': 'e56e1d86cb1e096e093af8b044d400ddad5de3ec5f20ed50b7f5286911a19dd3', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4e1fe785-30f6-42f9-b926-4363643a4211', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007401', 'rdfs:label': 'Subclause 4.7', 'dcterms:title': '- SINGLE FAULT SAFE for ME EQUIPMENT', 'trans:checksum': '9f3c3d75d613cfd984839beeae777fc75f1e4177d5169e198579505cea61b4f2', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9ae0b00e-d9b3-4a88-9fee-c0ef608058c8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007442', 'rdfs:label': 'Subclause 4.9', 'dcterms:title': '- Use of COMPONENTS WITH HIGH-INTEGRITY CHARACTERISITCS in ME EQUIPMENT', 'trans:checksum': '73c99ceb7369a5d4550f8b96619ea2c8c643cd0708e79897c36cfc8a47f38f1a', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0b5b6c28-c319-4691-bf84-8a5e2f838bda', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007486', 'rdfs:label': 'Subclause 4.10', 'dcterms:title': '- Power supply', 'trans:checksum': 'a3e8dc5532504270e402ce4399457190dbdcb13df6572e1e863b383fb9c08f3a', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ffffc917-4802-4b42-b4bc-f2bb264a8491', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007494', 'rdfs:label': 'Clause 5', 'dcterms:title': '- General requirements for testing ME EQUIPMENT', 'comprisesClause': ['http://smart.iec.ch/clause/a9f41ce5-c276-4333-bb05-8e5e3aacc487', 'http://smart.iec.ch/clause/8cb4a7e2-427d-4106-b1c7-a23fddaca487', 'http://smart.iec.ch/clause/8d61b62a-c006-4619-86cb-de8a6ba81c82', 'http://smart.iec.ch/clause/6fcd7905-d9b9-4f5a-ae24-95950cd28e94', 'http://smart.iec.ch/clause/7a5b7159-eaaa-4111-ae54-4648db339a48'], 'trans:checksum': '175327b27bbc1a878703ee980d00475c33b169f39bbffaf6e08adbe923ab7c48', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8cb4a7e2-427d-4106-b1c7-a23fddaca487', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007497', 'rdfs:label': 'Subclause 5.1', 'dcterms:title': '- TYPE TESTS', 'trans:checksum': '26edf5a4143f13db3813258f43dd92ad296bbc873ab1c4bf4cc56c480cf0eea7', 'withinClause': 'http://smart.iec.ch/clause/ffffc917-4802-4b42-b4bc-f2bb264a8491', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8d61b62a-c006-4619-86cb-de8a6ba81c82', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007527', 'rdfs:label': 'Subclause 5.2', 'dcterms:title': '- Number of samples', 'trans:checksum': 'd1178ad5ced3133077e3cb41ee2c0a6e121b0e2e11b776cce95bc19d2f044439', 'withinClause': 'http://smart.iec.ch/clause/ffffc917-4802-4b42-b4bc-f2bb264a8491', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a9f41ce5-c276-4333-bb05-8e5e3aacc487', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007530', 'rdfs:label': 'Subclause 5.7', 'dcterms:title': '- Humidity preconditioning treatment', 'trans:checksum': '40a423cf361025e852fe93ed82c33bb80853c1ecf48aadd0ee646a7a9478db57', 'withinClause': 'http://smart.iec.ch/clause/ffffc917-4802-4b42-b4bc-f2bb264a8491', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7a5b7159-eaaa-4111-ae54-4648db339a48', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007544', 'rdfs:label': 'Subclause 5.9', 'dcterms:title': '- Determination of APPLIED PARTS and ACCESSIBLE PARTS', 'trans:checksum': '45fc0261bef6e8e10e8ccbf4c63ff6e519b7987ed999a97dcb4ebb4ae72d68f5', 'withinClause': 'http://smart.iec.ch/clause/ffffc917-4802-4b42-b4bc-f2bb264a8491', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6fcd7905-d9b9-4f5a-ae24-95950cd28e94', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007557', 'rdfs:label': 'Subclause 5.9.2.1', 'dcterms:title': '- Test finger', 'trans:checksum': '756a86f454be0141047e6266cfa5167ec38e7e0295dcedecc1475d35fdd441b7', 'withinClause': 'http://smart.iec.ch/clause/ffffc917-4802-4b42-b4bc-f2bb264a8491', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3963c89a-007e-44b3-84ad-45351d28850c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007572', 'rdfs:label': 'Clause 6', 'dcterms:title': '- Classification of ME EQUIPMENT and ME SYSTEMS', 'comprisesClause': ['http://smart.iec.ch/clause/cb05b9b5-e8db-4e5e-a9f3-e75c5473ead6', 'http://smart.iec.ch/clause/2c6e9f02-e4e4-41b7-b745-57a7313905f0', 'http://smart.iec.ch/clause/7c9998ec-6a64-477b-990e-83d2648e02c7'], 'trans:checksum': '8f688bf0816c608892c9dabc6afe2554d2ed11a41846221a79d37577dbc4b973', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/cb05b9b5-e8db-4e5e-a9f3-e75c5473ead6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007575', 'rdfs:label': 'Subclause 6.2', 'dcterms:title': '- Protection against electric shock', 'trans:checksum': '93fb4f418ecb16a73719b82d2d07eae4ba7312106b4fd608b3508f36b86ee838', 'withinClause': 'http://smart.iec.ch/clause/3963c89a-007e-44b3-84ad-45351d28850c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7c9998ec-6a64-477b-990e-83d2648e02c7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007583', 'rdfs:label': 'Subclause 6.3', 'dcterms:title': '- Protection against harmful ingress of water or particulate matter', 'trans:checksum': '2d6eb719e4b48a65e0d45150964f4f6f4f25ea6d631dc93074b77791d7aa1149', 'withinClause': 'http://smart.iec.ch/clause/3963c89a-007e-44b3-84ad-45351d28850c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2c6e9f02-e4e4-41b7-b745-57a7313905f0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007586', 'rdfs:label': 'Subclause 6.6', 'dcterms:title': '- Mode of operation', 'trans:checksum': '6a43abb925f1174e487b7e3390e944a0b25b9866c651a231a4a8c40109350e09', 'withinClause': 'http://smart.iec.ch/clause/3963c89a-007e-44b3-84ad-45351d28850c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5b4b35a4-d4b0-4fd7-ad66-93ce4956e23c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007590', 'rdfs:label': 'Subclause 7.1.1', 'dcterms:title': '- USABILITY of the identification, marking and documents', 'trans:checksum': '11fe92d830b5e6158f053e147f229001e0b4339d63bffc0e83ac194b51ec955a', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0e39a999-3d71-4b7c-930e-4c4058db48b9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007594', 'rdfs:label': 'Subclause 7.1.2', 'dcterms:title': '- Legibility of markings', 'trans:checksum': '6e4bc3725af5477659e5dc6cb93672b82742db8fb85cb97373e815817e58da38', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7454372c-58fb-4ccc-837a-01048061b249', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007613', 'rdfs:label': 'Subclause 7.1.3', 'dcterms:title': '- Durability of markings', 'trans:checksum': '54d6942836f7d1dd1f3a30341884d10a6fd03a3be5ccff5dfcec83077a861230', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b3d7cf5d-43ab-4c78-b85a-07d4590a6df4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007620', 'rdfs:label': 'Subclause 7.2.2', 'dcterms:title': '- Identification', 'trans:checksum': '695b438c5b3a3046454a1a11e06717d3861f4a1195a3b6689c89cd160231fdb0', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4af5c17e-44f5-4747-8975-954e05822d18', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007635', 'rdfs:label': 'Subclause 7.2.3', 'dcterms:title': '- Consult ACCOMPANYING DOCUMENTS', 'trans:checksum': 'd12bded02fe758646887e06960e9ed950cfecc0e1eec04ece8dcb24f4a823917', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b00a4140-11f5-4034-87ff-d4625620e335', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007640', 'rdfs:label': 'Subclause 7.2.4', 'dcterms:title': '- ACCESSORIES', 'trans:checksum': 'c475f884c901e67286e8d10565fccb863cc3829dcbda0aebb6f8d3b0c23904ca', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/f435ae05-14f0-4150-9f25-49833691538c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007645', 'rdfs:label': 'Subclause 7.2.10', 'dcterms:title': '- APPLIED PARTS', 'trans:checksum': '98bf1e0f41fae52ab2e88922977e785727610dcfc85e36a9e8de8cb5f1bc9709', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7d021e8c-adb0-4389-b504-4a69ce2021d0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007655', 'rdfs:label': 'Subclause 7.2.12', 'dcterms:title': '- Fuses', 'trans:checksum': '76c7808b8ff51e4412cfe153bd55f47e34e921a4a3446332205b76447340c435', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/83987f98-3b7b-4c11-ba98-a50d8132975b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007689', 'rdfs:label': 'Subclause 7.3.2', 'dcterms:title': '- HIGH VOLTAGE parts', 'trans:checksum': '707fe86304e1d3f206401a5d4d744d1ca60fdb7f86bf81abf0148aca7096daec', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/85cf0eca-b9ca-41ba-a824-f7b3b296f079', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007696', 'rdfs:label': 'Subclause 7.3.4', 'dcterms:title': '- Fuses, THERMAL CUT-OUTS and OVER-CURRENT RELEASES', 'trans:checksum': 'afb31805ff180833f998632a2496427467016794d24410378eaeb7a2fd0d00f1', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/74035f82-742b-4f04-9021-46f7fcbfc6c7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007699', 'rdfs:label': 'Subclause 7.8', 'dcterms:title': '- Indicator lights and controls', 'trans:checksum': 'cfbd73334dde5525787737e24edc06e4a57222d1e525f39949db73ada4305a72', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/06bfea61-7951-4512-96a9-db8d756cb48a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007702', 'rdfs:label': 'Subclause 7.9.1', 'dcterms:title': '- General', 'trans:checksum': '7b4e15d7bfeed0fadc9a1a00e87c4758665560fcf6b19fc44bd3dc0bae48e8a8', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b1d5ceb0-531a-419f-846b-d480cea4f64d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007705', 'rdfs:label': 'Subclause 7.9.2.1', 'dcterms:title': '- General', 'trans:checksum': '1cd68aaf70281a8243b0c8b8d994f9aebcb901265d4924c296af0873b65440af', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b857ec2d-ccec-43f8-8e64-bb67e4fdea8c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007715', 'rdfs:label': 'Subclause 7.9.2.2', 'dcterms:title': '- Warning and safety notices', 'trans:checksum': 'ef08e74d1e9290c56bfeddb5badfbb3bb0669918b015c730b684173f5b0fc05b', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1139928b-da49-4f53-9754-3ee686533463', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007718', 'rdfs:label': 'Subclause 7.9.2.6', 'dcterms:title': '- Installation', 'trans:checksum': 'f98a6d5c7e2357f0182368afecbba54b6e760a4d53c587f309794e483b0ddf8c', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/569d4db1-c791-4eaf-aca7-ebd008ebc93c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007731', 'rdfs:label': 'Subclause 7.9.2.7', 'dcterms:title': '- Isolation from the SUPPLY MAINS', 'trans:checksum': 'e9b7369a86377d6b45dd555c826498fc4f4b3215372f2e8ce686a4af333ecf4d', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7796dbea-ef6b-40f9-8128-93522ac665de', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007734', 'rdfs:label': 'Subclause 7.9.3.1', 'dcterms:title': '- General', 'trans:checksum': '519c23958586ea2edc9bac98e7fbfcfbae2238c95b8a66d94fec7e17093528da', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e36d1f5c-c0d7-460a-b690-0ddd2da314ad', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007806', 'rdfs:label': 'Subclause 7.9.3.4', 'dcterms:title': '- Mains isolation', 'trans:checksum': 'bad44aaa3f81c58f1ab2bd85e537dff9b8af34c7e9ac416ad226c6b624164613', 'withinClause': 'http://smart.iec.ch/clause/51daa538-ded5-427f-9435-fe2cef7c9e0a', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007809', 'rdfs:label': 'Clause 8', 'dcterms:title': '- Protection against electrical HAZARDS from ME EQUIPMENT', 'comprisesClause': ['http://smart.iec.ch/clause/fbba6ac2-199f-493d-9d01-386285b138fc', 'http://smart.iec.ch/clause/f5bea503-02ff-4ca2-b674-557468c1a8ec', 'http://smart.iec.ch/clause/2c412aee-4402-48a8-a2fe-437ba498936c', 'http://smart.iec.ch/clause/5fb2e0c6-4fec-4b1d-8dd1-9a9adb4565cd', 'http://smart.iec.ch/clause/c28e16ec-d8bf-43d8-a8ff-057c24fce08e', 'http://smart.iec.ch/clause/85baee54-7cd1-451d-b6ad-1695d027d4e6', 'http://smart.iec.ch/clause/7fde99e7-55d4-4450-a792-b8288f51d3f6', 'http://smart.iec.ch/clause/1138f670-0155-46e4-b1c8-87496787d795', 'http://smart.iec.ch/clause/29eb4228-7685-4a2a-9c1d-1e5f6f5f09aa', 'http://smart.iec.ch/clause/886f2df3-486c-4ffe-9587-ad5ec453746e', 'http://smart.iec.ch/clause/fbb141ad-da96-42dd-b6ae-b79b0c8983a9', 'http://smart.iec.ch/clause/4b0e5be1-eb71-4bbd-b6cf-1971bb490b6f', 'http://smart.iec.ch/clause/7386cf87-ad3a-4e84-b20c-e046bf7b2c70', 'http://smart.iec.ch/clause/96b7b086-3891-4ea4-b1af-2f74cee870aa', 'http://smart.iec.ch/clause/dfc96a36-b588-4ff3-92f6-f6cdfcfbb707', 'http://smart.iec.ch/clause/e487afab-1528-413a-b024-2c29fb372059', 'http://smart.iec.ch/clause/ba6758e2-97d9-4b3e-80f4-5e0fab1b1f58', 'http://smart.iec.ch/clause/188c88c3-e6b3-4e76-81e3-0db171f11679', 'http://smart.iec.ch/clause/2da980f8-e4ae-4d3c-a30d-639cc50489a0', 'http://smart.iec.ch/clause/4b9d37ed-df75-4579-84db-9fb03e63d9ad', 'http://smart.iec.ch/clause/105572f3-e05f-44e1-a88c-9aa8c15f1b58', 'http://smart.iec.ch/clause/1519c05c-c313-4bc5-97bf-a3092d173d63', 'http://smart.iec.ch/clause/bb7ce19a-3df2-4fe4-b58e-073007c3e22f', 'http://smart.iec.ch/clause/d439fe22-e7d8-4261-9501-75ead64a6423', 'http://smart.iec.ch/clause/3066749d-a801-4f70-84f6-e4cdac93bc10', 'http://smart.iec.ch/clause/6029fce9-72b9-4248-8fd1-bb98289329e5', 'http://smart.iec.ch/clause/058ada32-cac2-4944-a9d8-be0937a1bd91', 'http://smart.iec.ch/clause/185f58f4-d71a-4e3e-b80c-1888b8f53071', 'http://smart.iec.ch/clause/1462b97e-2d21-4354-91eb-ea005d24013f', 'http://smart.iec.ch/clause/b2b4cede-4c77-4343-8bf4-61c73989dbd7', 'http://smart.iec.ch/clause/ad340600-c6ba-4243-874c-544684113c05', 'http://smart.iec.ch/clause/a39aad57-04cf-4523-82fb-71ffedee178b', 'http://smart.iec.ch/clause/d5de5742-5d58-40e9-b54b-09ded70adf99', 'http://smart.iec.ch/clause/5efda2cf-985b-4375-b447-9d1e2b752035', 'http://smart.iec.ch/clause/1b20a1ef-ae86-4d70-8b88-f1aaeac03046', 'http://smart.iec.ch/clause/c0ab45a5-c7e9-4228-b15d-9c8fd57aaa62', 'http://smart.iec.ch/clause/cafeb0d9-4476-44ae-9161-2eca006c3ac2', 'http://smart.iec.ch/clause/c1e36564-8c67-43cd-8b60-b5770f45bbb8', 'http://smart.iec.ch/clause/0997cd9d-d5a4-48ba-9848-218233246190', 'http://smart.iec.ch/clause/ad031313-4ef0-4ba1-8dc5-4bbbccd78d9d', 'http://smart.iec.ch/clause/6f7d5dc8-6d0b-465e-925e-bcf4b10c91e3', 'http://smart.iec.ch/clause/1a17b3b6-52d0-41fb-97e9-04977dd7ac6a', 'http://smart.iec.ch/clause/97d8c70b-1ba8-46cb-8048-0c61def640b9', 'http://smart.iec.ch/clause/01c4cc4e-9e27-46ab-b0b2-697cc91ec282', 'http://smart.iec.ch/clause/be239676-6ed8-42e5-bf15-653700a94aa1', 'http://smart.iec.ch/clause/0d2b9a03-43af-4648-bc3d-7a72d81bc79d', 'http://smart.iec.ch/clause/2877e461-4677-4888-976d-fbae5d840edc', 'http://smart.iec.ch/clause/2ed29ca0-ff7c-40e1-9060-dc466226a37d', 'http://smart.iec.ch/clause/a2b6fed4-c7ae-4104-9b92-993dd0097cb0', 'http://smart.iec.ch/clause/ff5ca00e-805d-485c-aa06-b5191db6cdca', 'http://smart.iec.ch/clause/345ae346-ec2d-4977-a0c4-8a7343bc37ee', 'http://smart.iec.ch/clause/c562a660-0522-4504-af31-0418a8a1521a', 'http://smart.iec.ch/clause/44194267-8e26-467c-9ad1-6e212d7478fa', 'http://smart.iec.ch/clause/36b799a6-6f80-4abf-be02-090aa0d496e4', 'http://smart.iec.ch/clause/656c53be-4e5c-45c7-a553-773b0a9e623f', 'http://smart.iec.ch/clause/5a627b4a-36d2-404e-b835-30996042237f', 'http://smart.iec.ch/clause/b1b03ced-d3d8-414e-affa-300449f2a594', 'http://smart.iec.ch/clause/c391b4c0-e7db-463a-bc11-a9a9cbe2b45d', 'http://smart.iec.ch/clause/18d1d68c-039c-4bc3-a44d-a7bf8626c685', 'http://smart.iec.ch/clause/0ef31b15-3473-441f-8972-8fc01530c771', 'http://smart.iec.ch/clause/fd51327a-1432-4582-ad36-fd04799913b8', 'http://smart.iec.ch/clause/aefbf8ef-2c30-4ec5-a9e0-c413835c271f', 'http://smart.iec.ch/clause/c0b7e42b-3889-4f4d-b05e-d6686a9b62e9', 'http://smart.iec.ch/clause/cbe33148-1dbc-4fd3-a5d4-c7fe4b9a0c10', 'http://smart.iec.ch/clause/45a33b8d-55c1-47f1-9f8e-be3e61a0fae9', 'http://smart.iec.ch/clause/563b0188-d0e7-4bb0-aaf9-272b7d930817', 'http://smart.iec.ch/clause/5a541ccf-bac8-49b6-997a-c2e08fb350f9', 'http://smart.iec.ch/clause/c1685ec2-9a1f-4b28-bd77-ada7e08247ae', 'http://smart.iec.ch/clause/3da52100-7d7d-4051-99bc-5c0eb92361f4', 'http://smart.iec.ch/clause/47d40000-8bcf-435e-841d-388c90a5dd3d', 'http://smart.iec.ch/clause/ad4b0ff1-6591-4d29-8532-2fa7dc714118', 'http://smart.iec.ch/clause/6bdaf609-918b-4781-91a9-faeba8a742a9', 'http://smart.iec.ch/clause/cc52360a-7674-46f5-81ee-32953c03ba3f', 'http://smart.iec.ch/clause/610a0310-649e-4e94-955a-f3dce5b920df', 'http://smart.iec.ch/clause/8ae8b9f5-fbc4-41d6-aee1-e6693e62dfbc', 'http://smart.iec.ch/clause/164a124a-9e53-48a2-bd48-bbb23a48316c', 'http://smart.iec.ch/clause/ed0b55bf-4b77-44ae-b93c-69a3cc9e1b98', 'http://smart.iec.ch/clause/e8a8e760-f62f-489c-9432-a85b8af5169d', 'http://smart.iec.ch/clause/42a5fea9-5a44-4d62-a176-43f59e8015fd', 'http://smart.iec.ch/clause/11792fcd-2150-4ea0-8551-ba01524efe44', 'http://smart.iec.ch/clause/790df3af-d72c-445d-b5c6-01328b0d2e39', 'http://smart.iec.ch/clause/2aaa424d-a031-4c34-8a52-70404355beb7', 'http://smart.iec.ch/clause/bcb7aab9-3cf8-4739-be7d-315d78afbadb', 'http://smart.iec.ch/clause/228204f6-e849-4ded-8dcd-b71450d035ba', 'http://smart.iec.ch/clause/5ab7406f-8310-4be4-bf81-99edf222548d', 'http://smart.iec.ch/clause/376ea09e-d74a-4af1-97f2-0da9a6d92bc1', 'http://smart.iec.ch/clause/c081abea-4e0f-444c-8385-1f8acf480d7d', 'http://smart.iec.ch/clause/52b23af9-cf46-415f-9292-1da4bf45d570', 'http://smart.iec.ch/clause/011aa9e5-a347-41b3-91a8-91217948b938', 'http://smart.iec.ch/clause/cd779413-6027-48b9-bbe5-1ff7bbbabd51', 'http://smart.iec.ch/clause/a54c8e67-5c30-4b41-b224-fca96ea46ac2', 'http://smart.iec.ch/clause/53b6b4b5-4326-42df-b3de-5ac60ac83c18', 'http://smart.iec.ch/clause/d4589aaf-774e-4f8c-9791-b1234978ed4d', 'http://smart.iec.ch/clause/a9fefe7a-7a2d-4319-8871-1ad3f494d317', 'http://smart.iec.ch/clause/8e84e336-e1a4-4890-ab10-d6209b55d1a6', 'http://smart.iec.ch/clause/cebbc751-8b9e-4ed1-8c35-e86182b96a1d', 'http://smart.iec.ch/clause/80189c63-1fb1-438c-9d0c-b0ddc6b130d8', 'http://smart.iec.ch/clause/ade6db1d-aaaf-4cc4-b6fa-48dd0ba72158', 'http://smart.iec.ch/clause/f3799215-2c29-4093-8d25-5195a58c88ae', 'http://smart.iec.ch/clause/bbdb6ed4-0ddb-4d98-95ae-d56f64678ce6', 'http://smart.iec.ch/clause/5e28bc4e-57a3-4b2a-acd0-472504bafd29', 'http://smart.iec.ch/clause/7a3dcef0-4807-4cf3-8716-7955a66203f2', 'http://smart.iec.ch/clause/185991af-fe0b-4a93-b4fb-eae4e6419e72', 'http://smart.iec.ch/clause/d7e45cae-d38b-4af1-8a59-2cef33b54f7c', 'http://smart.iec.ch/clause/cc7b7ec7-bb50-4e43-90e5-a5959ae6079b', 'http://smart.iec.ch/clause/71692aee-780b-4aa1-af4f-8f7f15e5fe85', 'http://smart.iec.ch/clause/b36db206-de56-4560-9ce3-5103afa2f849', 'http://smart.iec.ch/clause/8a8215ad-66bc-473f-80a4-2aaf1198436b', 'http://smart.iec.ch/clause/461e264a-e51f-405c-a713-67f926322f86', 'http://smart.iec.ch/clause/b7118081-dddc-4186-8c03-1b7df755ebcc', 'http://smart.iec.ch/clause/2be39f2e-a7ff-4bb7-8582-6e75c4270a6d', 'http://smart.iec.ch/clause/e4028006-37d4-4b9f-9386-8c9408effcf0', 'http://smart.iec.ch/clause/c95a1865-d47a-4dfe-ac30-2bfe0b54fed6', 'http://smart.iec.ch/clause/83decdb3-cbdb-4998-b127-33e9607596d2', 'http://smart.iec.ch/clause/b3220214-14a4-412e-9642-167386920655', 'http://smart.iec.ch/clause/45170692-60b3-4db4-90fb-5311353017ab', 'http://smart.iec.ch/clause/e5ed59f4-6b5a-418a-a87f-157f2a307473', 'http://smart.iec.ch/clause/5571486e-b50e-4d24-a4b0-392cd7c72b03', 'http://smart.iec.ch/clause/7ddae0c0-9910-4a47-8dac-91bf8f5feafe', 'http://smart.iec.ch/clause/edaa8960-3933-4c9c-be0a-d850e5095ed3', 'http://smart.iec.ch/clause/aa6d07a6-3a06-4999-aaea-94bbf53fdd17', 'http://smart.iec.ch/clause/2a08562e-d5cf-48a8-856e-6a624e4f9813', 'http://smart.iec.ch/clause/f99e2deb-4b43-4427-a9d3-b19841d58fb6', 'http://smart.iec.ch/clause/a4de4d90-988d-41be-bead-cb6c20e05518'], 'trans:checksum': 'e2a7900954c1b70ebdad9b187cbcf3c5e46eb8d8d45019c3709516b74140dfad', 'withinClause': 'http://smart.iec.ch/clause/d2b89b6f-8531-4986-9cb1-e2cfa4d59889', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/461e264a-e51f-405c-a713-67f926322f86', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007909', 'rdfs:label': 'Subclause 8.1', 'dcterms:title': '- Fundamental rule of protection against electric shock', 'comprisesClause': ['http://smart.iec.ch/clause/85218723-1845-4d45-a5d8-858a47195415', 'http://smart.iec.ch/clause/0aa81f33-7e06-4c90-a76e-6f140ac7429d'], 'trans:checksum': 'db434497dab9b1a955fbf854805fceaced4b6b4fc1cf5e4ae5afdcfdf76b1e99', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/85218723-1845-4d45-a5d8-858a47195415', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007910', 'rdfs:label': 'Subclause 8.1 a)', 'trans:checksum': '0a29f44c5846fb60054e1020ef296222e7f81129a3e458ad5a30ee0ce2e3e7de', 'withinClause': 'http://smart.iec.ch/clause/461e264a-e51f-405c-a713-67f926322f86', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0aa81f33-7e06-4c90-a76e-6f140ac7429d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007916', 'rdfs:label': 'Subclause 8.1 b)', 'trans:checksum': 'a6ac9034a3b216413c4efc76fc210f867191ff711830cd8e036716dbb7970504', 'withinClause': 'http://smart.iec.ch/clause/461e264a-e51f-405c-a713-67f926322f86', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5571486e-b50e-4d24-a4b0-392cd7c72b03', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007932', 'rdfs:label': 'Subclause 8.3', 'dcterms:title': '- Classification of APPLIED PARTS', 'comprisesClause': ['http://smart.iec.ch/clause/d973b807-6c5a-4335-9861-4c29bb36724c', 'http://smart.iec.ch/clause/6834e067-f430-4937-b7b6-379a914bb9e8', 'http://smart.iec.ch/clause/2751fb87-1440-4175-8adb-35f47312c513'], 'trans:checksum': '9cde3225ec39daf29b07f88e7bbc010f3820f2061313313fb22c53acbc3888e2', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6834e067-f430-4937-b7b6-379a914bb9e8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007933', 'rdfs:label': 'Subclause 8.3 a)', 'trans:checksum': 'e0ad9c1e34ff8e29b7b93ddf6f9facc6d113edccce835b68debb68e557c6d0e7', 'withinClause': 'http://smart.iec.ch/clause/5571486e-b50e-4d24-a4b0-392cd7c72b03', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2751fb87-1440-4175-8adb-35f47312c513', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007938', 'rdfs:label': 'Subclause 8.3 b)', 'trans:checksum': '69e2da92a42eee3e96666d72181261e9ad8fbe83897aaae1fdf102d0f36df238', 'withinClause': 'http://smart.iec.ch/clause/5571486e-b50e-4d24-a4b0-392cd7c72b03', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d973b807-6c5a-4335-9861-4c29bb36724c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007943', 'rdfs:label': 'Subclause 8.3 d)', 'trans:checksum': 'c55f24207fc89a1528da1107450215f08244fd6897156340e0f644b94588f568', 'withinClause': 'http://smart.iec.ch/clause/5571486e-b50e-4d24-a4b0-392cd7c72b03', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5efda2cf-985b-4375-b447-9d1e2b752035', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007948', 'rdfs:label': 'Subclause 8.4.1', 'dcterms:title': '- PATIENT CONNECTIONS intended to deliver current', 'trans:checksum': '682008551c8f4c38c3b527770956d01caabb47f36c397f39015d74718e40113e', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5a627b4a-36d2-404e-b835-30996042237f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007952', 'rdfs:label': 'Subclause 8.4.2', 'dcterms:title': '- ACCESSIBLE PARTS including APPLIED PARTS', 'comprisesClause': ['http://smart.iec.ch/clause/9e9c1d11-f1e8-406c-891f-7eb72f37206a', 'http://smart.iec.ch/clause/7e274e12-5207-4572-83dd-923520e5427f', 'http://smart.iec.ch/clause/2fb2385f-0a07-4641-9196-4042e4416ed6'], 'trans:checksum': '79cc0558dacad4be327bfd297e7308a6624f6bc1cccdfccb4f91f94ec8efbf81', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9e9c1d11-f1e8-406c-891f-7eb72f37206a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007953', 'rdfs:label': 'Subclause 8.4.2 b)', 'trans:checksum': 'd801351739941e5f30cd72ecedcd146e169fe2042779f241634623eb6010b063', 'withinClause': 'http://smart.iec.ch/clause/5a627b4a-36d2-404e-b835-30996042237f', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7e274e12-5207-4572-83dd-923520e5427f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007957', 'rdfs:label': 'Subclause 8.4.2 c)', 'trans:checksum': 'ee76ec9d3a71d6a851fe5387d5efe4e92f2101bd8651066e01aeb45171495ec1', 'withinClause': 'http://smart.iec.ch/clause/5a627b4a-36d2-404e-b835-30996042237f', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2fb2385f-0a07-4641-9196-4042e4416ed6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007968', 'rdfs:label': 'Subclause 8.4.2 d)', 'trans:checksum': '241dba245fc4cc83c37d53d3971158fb7f7580925c0554d74e05cbb3634f16f6', 'withinClause': 'http://smart.iec.ch/clause/5a627b4a-36d2-404e-b835-30996042237f', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a4de4d90-988d-41be-bead-cb6c20e05518', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007981', 'rdfs:label': 'Subclause 8.4.3', 'dcterms:title': '- ME EQUIPMENT intended to be connected to a power source by a plug', 'trans:checksum': '56888a3c06d8945d1324b0a354263094cb7345896b3f82684db8e2966f964da7', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/188c88c3-e6b3-4e76-81e3-0db171f11679', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007986', 'rdfs:label': 'Subclause 8.4.4', 'dcterms:title': '- Internal capacitive circuits', 'trans:checksum': '6dc7131e5601e263b6aa172ff921db8180c38aecacd477a5c49b229289755903', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/f99e2deb-4b43-4427-a9d3-b19841d58fb6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000007989', 'rdfs:label': 'Subclause 8.5.1', 'dcterms:title': '- MEANS OF PROTECTION', 'trans:checksum': '715d0ef4afcf2a2d7d033e1807e876737f8e42d1fd23e57633824b38eed94414', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/44194267-8e26-467c-9ad1-6e212d7478fa', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008062', 'rdfs:label': 'Subclause 8.5.2.1', 'dcterms:title': '- F-TYPE APPLIED PARTS', 'trans:checksum': '3d706e67e1020ae00a0abdef856fdfe21192b32db25d5d1953f6682ee388e097', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0ef31b15-3473-441f-8972-8fc01530c771', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008071', 'rdfs:label': 'Subclause 8.5.2.2', 'dcterms:title': '- TYPE B APPLIED PARTS', 'trans:checksum': '586322b7d6c3bd5baf0e6f0dcc8924d64303731156bc81472c1953cc5e9efe69', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3066749d-a801-4f70-84f6-e4cdac93bc10', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008088', 'rdfs:label': 'Subclause 8.5.2.3', 'dcterms:title': '- PATIENT leads', 'trans:checksum': '227e4ca11893712ddb156c3a4833260a908a13dc1bb18e493050053e8156927c', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/18d1d68c-039c-4bc3-a44d-a7bf8626c685', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008137', 'rdfs:label': 'Subclause 8.5.3', 'dcterms:title': '- MAXIMUM MAINS VOLTAGE', 'trans:checksum': 'fd4a90e53a3a87bd49db1e4cb5c3f25d4e31f934191c7592da6e0dc977d0f2a7', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c391b4c0-e7db-463a-bc11-a9a9cbe2b45d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008160', 'rdfs:label': 'Subclause 8.5.4', 'dcterms:title': '- WORKING VOLTAGE', 'trans:checksum': '41caee650df1c15dbfe96816e21b7668c3db9490f580c5853d927bc225667233', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2be39f2e-a7ff-4bb7-8582-6e75c4270a6d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008169', 'rdfs:label': 'Subclause 8.5.5', 'dcterms:title': '- DEFIBRILLATION-PROOF APPLIED PARTS', 'comprisesClause': ['http://smart.iec.ch/clause/63451ce8-9c68-44b6-974b-0231ae977a91'], 'trans:checksum': '34f73cb6eaaa5c86bca83df9b6a7dc7ff1e4cf4f6a609a1b1db38e4d1a904910', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/63451ce8-9c68-44b6-974b-0231ae977a91', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008172', 'rdfs:label': 'Subclause 8.5.5.1', 'dcterms:title': '- Defibrillation protection', 'trans:checksum': 'a65b5245f4194f8edaca77746a4069c042a8a21190ec3152ca56c2bfefb32917', 'withinClause': 'http://smart.iec.ch/clause/2be39f2e-a7ff-4bb7-8582-6e75c4270a6d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/96b7b086-3891-4ea4-b1af-2f74cee870aa', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008225', 'rdfs:label': 'Subclause 8.6', 'dcterms:title': '- Protective earthing, functional earthing and potential equalization of ME EQUIPMENT', 'comprisesClause': ['http://smart.iec.ch/clause/55cb5318-ea64-4338-8bec-7a49484ec869', 'http://smart.iec.ch/clause/00599c26-c5e2-4f14-af3a-46234117a004', 'http://smart.iec.ch/clause/ddecfb22-8ad5-4def-99e6-49bf4f0bb3a5', 'http://smart.iec.ch/clause/9064df19-0f47-4014-8c8d-87c9cb474d91', 'http://smart.iec.ch/clause/891227d6-bb2b-4ebc-ae91-2d9aa43767a1', 'http://smart.iec.ch/clause/45e2f450-a3f3-4f61-8bd4-a645863c5b41', 'http://smart.iec.ch/clause/11a05c62-73ce-4e7e-a974-172445156de0'], 'trans:checksum': 'f09c92940568315f1e11409791868b13d7fe1698c8ba551b76d935567dcf924d', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ddecfb22-8ad5-4def-99e6-49bf4f0bb3a5', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008231', 'rdfs:label': 'Subclause 8.6.1', 'dcterms:title': '- Applicability of requirements', 'trans:checksum': '265d5afe90d45150684d042b0989e7536d11355142bdca08903f9a24b097478a', 'withinClause': 'http://smart.iec.ch/clause/96b7b086-3891-4ea4-b1af-2f74cee870aa', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/891227d6-bb2b-4ebc-ae91-2d9aa43767a1', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008234', 'rdfs:label': 'Subclause 8.6.2', 'dcterms:title': '- PROTECTIVE EARTH TERMINAL', 'trans:checksum': 'e029136c86ef8c3cfb8759bd0fe7e118b2c14993989ea6ccb9f5037f4c67a0b5', 'withinClause': 'http://smart.iec.ch/clause/96b7b086-3891-4ea4-b1af-2f74cee870aa', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/00599c26-c5e2-4f14-af3a-46234117a004', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008237', 'rdfs:label': 'Subclause 8.6.3', 'dcterms:title': '- Protective earthing of moving parts', 'trans:checksum': '623c5ccb1b6b826bd9c1836164919e3f097b555a4130db6f4b02f965dd698001', 'withinClause': 'http://smart.iec.ch/clause/96b7b086-3891-4ea4-b1af-2f74cee870aa', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/55cb5318-ea64-4338-8bec-7a49484ec869', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008240', 'rdfs:label': 'Subclause 8.6.4 a)', 'trans:checksum': '43c12d1b03e59344f568fb056b24d044bc109f84b0c2d6f739e3830c54bf95c8', 'withinClause': 'http://smart.iec.ch/clause/96b7b086-3891-4ea4-b1af-2f74cee870aa', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9064df19-0f47-4014-8c8d-87c9cb474d91', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008257', 'rdfs:label': 'Subclause 8.6.4 b)', 'trans:checksum': '6693a2322df0e4a26e37f8c8fe92cdbfc1df4ac1bcd8788e4045b407a6174f7b', 'withinClause': 'http://smart.iec.ch/clause/96b7b086-3891-4ea4-b1af-2f74cee870aa', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/11a05c62-73ce-4e7e-a974-172445156de0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008272', 'rdfs:label': 'Subclause 8.6.7', 'dcterms:title': '- POTENTIAL EQUALIZATION CONDUCTOR', 'trans:checksum': 'be1f3a8f3b875a7d3d256d4de5b52e8951b937151e27f22ca8ad038cdecba8be', 'withinClause': 'http://smart.iec.ch/clause/96b7b086-3891-4ea4-b1af-2f74cee870aa', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/45e2f450-a3f3-4f61-8bd4-a645863c5b41', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008277', 'rdfs:label': 'Subclause 8.6.9', 'dcterms:title': '- CLASS II ME EQUIPMENT', 'trans:checksum': 'c2ba09124497cd9bf6fb9306e1793b3bc93a6d041188f89f5c4e0be2a766a9a1', 'withinClause': 'http://smart.iec.ch/clause/96b7b086-3891-4ea4-b1af-2f74cee870aa', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1a17b3b6-52d0-41fb-97e9-04977dd7ac6a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008282', 'rdfs:label': 'Subclause 8.7.2', 'dcterms:title': '- SINGLE FAULT CONDITIONS', 'trans:checksum': '158c4c47f50c068c46174e522d7cf606f746bc13c1ee241b1224296ea301beec', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/fd51327a-1432-4582-ad36-fd04799913b8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008286', 'rdfs:label': 'Subclause 8.7.3', 'dcterms:title': '- Allowable values, Table 3 and Table 4', 'trans:checksum': '55a6816eb530ee4648ddcf3c265eadf266a0b041ea852963d38358cc100a5631', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7fde99e7-55d4-4450-a792-b8288f51d3f6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008517', 'rdfs:label': 'Subclause 8.7.4.2', 'dcterms:title': '- Measuring supply circuits', 'trans:checksum': '1dc88884569f52d0ec8ecde4f65d672720d5c2dcc3d2e5572eee2535da53bb74', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/185991af-fe0b-4a93-b4fb-eae4e6419e72', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008538', 'rdfs:label': 'Subclause 8.7.4.3', 'dcterms:title': '- Connection to the measuring supply circuit', 'trans:checksum': '3dd5cffb06d4b763dd6e51d977fee481b37cee6149fb92a585cff532b6d066a1', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8e84e336-e1a4-4890-ab10-d6209b55d1a6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008559', 'rdfs:label': 'Subclause 8.7.4.5', 'dcterms:title': '- Measurement of EARTH LEAKAGE CURRENT', 'trans:checksum': '05dae7c8615cef6527fd2148ff4b4bfe877778526a8750c2dbed9ebf9b827b31', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/345ae346-ec2d-4977-a0c4-8a7343bc37ee', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008564', 'rdfs:label': 'Subclause 8.7.4.6', 'dcterms:title': '- Measurement of the TOUCH CURRENT', 'trans:checksum': '10a132a5d15f4f2512e145697df28fb8fd8e211c6e24ea559dd4ed74a6841284', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7a3dcef0-4807-4cf3-8716-7955a66203f2', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008567', 'rdfs:label': 'Subclause 8.7.4.7', 'dcterms:title': '- Measurement of PATIENT LEAKAGE CURRENT', 'trans:checksum': '88a8c1adec93f910cbc31677ac1537b12857afa822dd6046aabd4d3f56a1cb9c', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/29eb4228-7685-4a2a-9c1d-1e5f6f5f09aa', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008568', 'rdfs:label': 'Subclause 8.7.4.7 b)', 'trans:checksum': '279e6653bf74013e5601f0fa4bdbe517b264544c66bfef5efaef45f18228fa1c', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1462b97e-2d21-4354-91eb-ea005d24013f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008577', 'rdfs:label': 'Subclause 8.7.4.7 c)', 'trans:checksum': 'fe06cc7abd38f5cdfc1c13dca519d0dbf173dc51c622d4040eaf0dad84b82374', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2ed29ca0-ff7c-40e1-9060-dc466226a37d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008584', 'rdfs:label': 'Subclause 8.7.4.7 d)', 'trans:checksum': '1455bfd03432b3fcb41adb529c3a1d267aad8adac9f37a4af02dd7da385e1769', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/cafeb0d9-4476-44ae-9161-2eca006c3ac2', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008598', 'rdfs:label': 'Subclause 8.7.4.7 h)', 'trans:checksum': '861383b0dcca753938d18d025824d2d511f8a4e7f5126a66e7b7469029f668a9', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0997cd9d-d5a4-48ba-9848-218233246190', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008605', 'rdfs:label': 'Subclause 8.7.4.9', 'dcterms:title': '- ME EQUIPMENT with multiple PATIENT CONNECTIONS', 'trans:checksum': '875c4b6eebc0202c390211fbae668116ba27f4d646ce1fd93a3824e1480af7b1', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b36db206-de56-4560-9ce3-5103afa2f849', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008620', 'rdfs:label': 'Subclause 8.8.1', 'dcterms:title': '- General', 'trans:checksum': '5a96efd5a240eb9a0f393a92f42752ab82cc05e4582b0f7c33a2f58b2870ae85', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/47d40000-8bcf-435e-841d-388c90a5dd3d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008636', 'rdfs:label': 'Subclause 8.8.2', 'dcterms:title': '- Distance through solid insulation or use of thin sheet material', 'trans:checksum': 'efa49c13e8665584953928770e148c1c1a10320a986cbec6d900ebc57325b8ee', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/01c4cc4e-9e27-46ab-b0b2-697cc91ec282', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008670', 'rdfs:label': 'Subclause 8.8.3', 'dcterms:title': '- Dielectric strength', 'trans:checksum': 'd347242ca4f2880c06c2318e856de21b9ee173151f0e7b497f529b53c13f8d83', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/bcb7aab9-3cf8-4739-be7d-315d78afbadb', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008699', 'rdfs:label': 'Subclause 8.8.3 a)', 'trans:checksum': '756fec16b98c0623c4f1e8d41f9549f1bb8987cf92af2ad796720c4c81d9eac7', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ad4b0ff1-6591-4d29-8532-2fa7dc714118', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008705', 'rdfs:label': 'Subclause 8.8.4.1', 'dcterms:title': '- Mechanical strength and resistance to heat', 'trans:checksum': 'c79a41f770fa3668de2e32d4d945445c366d37dab2e9c5dd9b9f4b61b0b12968', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/cebbc751-8b9e-4ed1-8c35-e86182b96a1d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008708', 'rdfs:label': 'Subclause 8.9', 'dcterms:title': '- CREEPAGE DISTANCES and AIR CLEARANCES', 'comprisesClause': ['http://smart.iec.ch/clause/5bb8e762-81a9-463e-9ccd-64a856fbf487', 'http://smart.iec.ch/clause/72e8cd28-4b8c-49d6-9ac1-e01e89d6feff', 'http://smart.iec.ch/clause/35439cd8-6632-4b69-b162-4cfb62658276', 'http://smart.iec.ch/clause/ef64c4b4-ae08-4be6-90d3-d9fe12d171fe', 'http://smart.iec.ch/clause/fb982861-5c72-4762-8daf-8591fab3cc98'], 'trans:checksum': '8d1604593a4ee2761944aa2354c71924e5f743c07504c2774ce39877713199b2', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/35439cd8-6632-4b69-b162-4cfb62658276', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008748', 'rdfs:label': 'Subclause 8.9.1', 'dcterms:title': '- Values', 'comprisesClause': ['http://smart.iec.ch/clause/34b04dc4-f668-4d2b-8d1d-9e09034af18a', 'http://smart.iec.ch/clause/57a9d047-4d6d-4cdc-8e82-8f40818886ad'], 'trans:checksum': '4b4b49ffd45062e4dc1f79842d141619ea6eaca104467e70acb4e6645edb4ec4', 'withinClause': 'http://smart.iec.ch/clause/cebbc751-8b9e-4ed1-8c35-e86182b96a1d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/34b04dc4-f668-4d2b-8d1d-9e09034af18a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008765', 'rdfs:label': 'Subclause 8.9.1.6', 'dcterms:title': '- Interpolation', 'trans:checksum': '1f8cd75ace20da1f75470c9c4b6d8fad0c88ff0b5de4e886ffeb67e3d12d2d8b', 'withinClause': 'http://smart.iec.ch/clause/35439cd8-6632-4b69-b162-4cfb62658276', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/57a9d047-4d6d-4cdc-8e82-8f40818886ad', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008768', 'rdfs:label': 'Subclause 8.9.1.15', 'dcterms:title': '- CREEPAGE DISTANCES and AIR CLEARANCES for DEFIBRILLATION-PROOF APPLIED PARTS', 'trans:checksum': '52b8f2d4076288d731a5aae52f4e0cd0470b57c2ad9f22252afb65c787d434b5', 'withinClause': 'http://smart.iec.ch/clause/35439cd8-6632-4b69-b162-4cfb62658276', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/fb982861-5c72-4762-8daf-8591fab3cc98', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008771', 'rdfs:label': 'Subclause 8.9.2', 'dcterms:title': '- Application', 'trans:checksum': '51c9b634bd052633c901d6ab7eb9e6c98628cc56234ebe7276294c22c1d7cd34', 'withinClause': 'http://smart.iec.ch/clause/cebbc751-8b9e-4ed1-8c35-e86182b96a1d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/72e8cd28-4b8c-49d6-9ac1-e01e89d6feff', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008772', 'rdfs:label': 'Subclause 8.9.2 a)', 'trans:checksum': '4378c5aa476433366a6cb6f50acb27f7874a15c1e70cf4a073c0b69aaec4e3f1', 'withinClause': 'http://smart.iec.ch/clause/cebbc751-8b9e-4ed1-8c35-e86182b96a1d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ef64c4b4-ae08-4be6-90d3-d9fe12d171fe', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008778', 'rdfs:label': 'Subclause 8.9.3', 'dcterms:title': '- Spaces filled by insulating compound', 'trans:checksum': 'e751643b97da1aed922927beed152cd8b67aed509da9e089e8b123670098f230', 'withinClause': 'http://smart.iec.ch/clause/cebbc751-8b9e-4ed1-8c35-e86182b96a1d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5bb8e762-81a9-463e-9ccd-64a856fbf487', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008795', 'rdfs:label': 'Subclause 8.9.4', 'dcterms:title': '- Measurement of CREEPAGE DISTANCES AND AIR CLEARANCES', 'trans:checksum': 'c9db818d7d8d652c9d4285d2687bf58860e1e63da4ef3e2893fdda1dd1bd8106', 'withinClause': 'http://smart.iec.ch/clause/cebbc751-8b9e-4ed1-8c35-e86182b96a1d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/790df3af-d72c-445d-b5c6-01328b0d2e39', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008798', 'rdfs:label': 'Subclauses 8.10.1', 'dcterms:title': '- Fixing of components', 'trans:checksum': '5db37f26b05e53ab1dbe9f763e4fc7a866bf3dfa11c2a6a47ba2e139ddb889fd', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/71692aee-780b-4aa1-af4f-8f7f15e5fe85', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008801', 'rdfs:label': 'Subclause 8.10.2', 'dcterms:title': '- Fixing of wiring', 'trans:checksum': 'cadc459d00d2c0f2aee3251da407e3ebbf141742a9f16d3f1a34c26102ee5da4', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a54c8e67-5c30-4b41-b224-fca96ea46ac2', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008820', 'rdfs:label': 'Subclause 8.10.4', 'dcterms:title': '- Cord-connected HAND-HELD parts and cord-connected foot-operated control devices', 'trans:checksum': '0db459e1cb42d30aa05edb01c5187bd37a29bd1c8d6fcadc13570a3d8bfa847c', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/bbdb6ed4-0ddb-4d98-95ae-d56f64678ce6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008824', 'rdfs:label': 'Subclause 8.10.5', 'dcterms:title': '- Mechanical protection of wiring', 'trans:checksum': '1c089fe56cda82d9a4a762be2b9b623a5fb34d75bf59aa80c833da53ae14ccef', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/aa6d07a6-3a06-4999-aaea-94bbf53fdd17', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008827', 'rdfs:label': 'Subclause 8.10.7', 'dcterms:title': '- Insulation of internal wiring', 'trans:checksum': '5fbd10f11871a229732951333ad3bf99af67b12f3983fccb7620d02d92ba7aff', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0d2b9a03-43af-4648-bc3d-7a72d81bc79d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008831', 'rdfs:label': 'Subclause 8.11.1', 'dcterms:title': '- Isolation from the SUPPLY MAINS', 'trans:checksum': '283b25b53df8a0eecdda1b1304846635f67f8fccbb70c8ace6fec58d05f2416a', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5fb2e0c6-4fec-4b1d-8dd1-9a9adb4565cd', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008832', 'rdfs:label': 'Subclause 8.11.1 a)', 'trans:checksum': '62c839f5f341d9c8236f8192f8bec8579f4f6e298786f7f02e767a36605f7bad', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3da52100-7d7d-4051-99bc-5c0eb92361f4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008838', 'rdfs:label': 'Subclause 8.11.1 c)', 'trans:checksum': '5662c1aa0742f7fbef0bf80f5c9f5188500a33bfcc54883d7c98c56fd5298722', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/45170692-60b3-4db4-90fb-5311353017ab', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008848', 'rdfs:label': 'Subclause 8.11.1 h)', 'trans:checksum': 'ab4db98a8c47be6170ed723bff8926873a09a0714913db6685c93368849af0d2', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/cc52360a-7674-46f5-81ee-32953c03ba3f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008852', 'rdfs:label': 'Subclause 8.11.1 i)', 'trans:checksum': 'a38a36429852b3e3695cda5caa98cdc32c833df5dd33d7cd2dc3e8fc99687a64', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/80189c63-1fb1-438c-9d0c-b0ddc6b130d8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008859', 'rdfs:label': 'Subclause 8.11.2', 'dcterms:title': '- MULTIPLE SOCKET-OUTLETS', 'trans:checksum': '1c3f789e4f2711835ba5c7d6717d3a1a903fe2ede2db13bd0747bf0a4b8658ba', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ba6758e2-97d9-4b3e-80f4-5e0fab1b1f58', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008862', 'rdfs:label': 'Subclause 8.11.3.4', 'dcterms:title': '- APPLIANCE COUPLERS', 'trans:checksum': '38662bcea198912f35caa7c0c381826197929e92aa81a7105b2d02b526f15892', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b1b03ced-d3d8-414e-affa-300449f2a594', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008866', 'rdfs:label': 'Subclause 8.11.3.5', 'dcterms:title': '- Cord anchorage', 'trans:checksum': 'dafda1671cfc3cbaf53aa075ef032a2892f67a72d73a01d2247c0ca70bf74e73', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/83decdb3-cbdb-4998-b127-33e9607596d2', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008869', 'rdfs:label': 'Subclause 8.11.3.6', 'dcterms:title': '- Cord guards', 'trans:checksum': '0b1aea5c7aaeccc1344671b26dccc25a1fd844b902ac2a5cfe45b5248c7be505', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ff5ca00e-805d-485c-aa06-b5191db6cdca', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008877', 'rdfs:label': 'Subclause 8.11.4.1', 'dcterms:title': '- General requirements for MAINS TERMINAL DEVICES', 'trans:checksum': '2d3feeef7d7a64a59850c8ca09a57599f11b47d25e6d306d9d4a8251b0afca60', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a9fefe7a-7a2d-4319-8871-1ad3f494d317', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008886', 'rdfs:label': 'Subclause 8.11.4.2', 'dcterms:title': '- Arrangement of MAINS TERMINAL DEVICES', 'trans:checksum': '6572adc42fc7552d4604661f18978496f60d9ef0934e556624fe29f0cba24a03', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/fbba6ac2-199f-493d-9d01-386285b138fc', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008887', 'rdfs:label': 'Subclause 8.11.4.2 a)', 'trans:checksum': '0d9fcb1c437d1ebceca0df81c3c78f8931b4f1a9bae425b9211cd17ed5ae32c6', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e8a8e760-f62f-489c-9432-a85b8af5169d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008891', 'rdfs:label': 'Subclause 8.11.4.4', 'dcterms:title': '- Connections to mains terminals', 'trans:checksum': '38ccb204eb0ca0c60c9325c41335502f42c389b0e8ff9d8335e659d6f403a96f', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2c412aee-4402-48a8-a2fe-437ba498936c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008895', 'rdfs:label': 'Subclause 8.11.5', 'dcterms:title': '- Mains fuses and OVER-CURRENT RELEASES', 'trans:checksum': '6672ddd9b1af667f255661517ededccf88212f3505231af417808b074b5ab5db', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/164a124a-9e53-48a2-bd48-bbb23a48316c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008906', 'rdfs:label': 'Clause 9', 'dcterms:title': '- Protection against MECHANICAL HAZARDS of ME EQUIPMENT and ME SYSTEMS', 'trans:checksum': '431d8f9c3591279583127a3d7d7615953dd7c22a4656763de93a62a3d746803a', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/aefbf8ef-2c30-4ec5-a9e0-c413835c271f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008926', 'rdfs:label': 'Subclause 9.2', 'dcterms:title': '- HAZARDS associated with moving parts', 'comprisesClause': ['http://smart.iec.ch/clause/90571eb8-0c1b-4113-84ca-8c836e8267b4', 'http://smart.iec.ch/clause/2c68dca6-10c3-49c8-b50a-88d6552ce43c', 'http://smart.iec.ch/clause/2a623dc0-afeb-4bc0-8d78-f2c0b1928ed5', 'http://smart.iec.ch/clause/8aacfd34-9bf7-4cdd-afcd-54ed0decaf16'], 'trans:checksum': '388f2f40d1c2becc5e9c1adf1e4c8a86f1203d81fd44ee2e534891bf1b5aa349', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8aacfd34-9bf7-4cdd-afcd-54ed0decaf16', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008951', 'rdfs:label': 'Subclause 9.2.1', 'dcterms:title': '- General', 'trans:checksum': 'e3cab264f15fe31f00f81f69ab30876ade3566eb3ac273c188a657928a78ee14', 'withinClause': 'http://smart.iec.ch/clause/aefbf8ef-2c30-4ec5-a9e0-c413835c271f', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c1685ec2-9a1f-4b28-bd77-ada7e08247ae', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008958', 'rdfs:label': 'Subclause 9.2.2.4', 'dcterms:title': '- GUARDS and protective measures', 'trans:checksum': '88ec835e0c2987cd093ee15c4cfb881a27df881f231aa433bbe05777089f911e', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5ab7406f-8310-4be4-bf81-99edf222548d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000008986', 'rdfs:label': 'Subclause 9.2.2.5', 'dcterms:title': '- Continuous activation', 'trans:checksum': 'ec08d0829da2942917f8778092cd3a38293910d86b4519b97c7a4523548c496b', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/cbe33148-1dbc-4fd3-a5d4-c7fe4b9a0c10', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009021', 'rdfs:label': 'Subclause 9.2.2.6', 'dcterms:title': '- Speed of movement(s)', 'trans:checksum': '1ce4eeec9862c075acbfd47579aa6662e96101adaa700e27dc98528d5afbe3ef', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/90571eb8-0c1b-4113-84ca-8c836e8267b4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009024', 'rdfs:label': 'Subclause 9.2.3', 'dcterms:title': '- Other HAZARDS associated with moving parts', 'trans:checksum': '847df89b1d747bda9cd1839a4a877d9e3a84381ad2699d5cb2ad57ce17927ee1', 'withinClause': 'http://smart.iec.ch/clause/aefbf8ef-2c30-4ec5-a9e0-c413835c271f', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2a623dc0-afeb-4bc0-8d78-f2c0b1928ed5', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009028', 'rdfs:label': 'Subclause 9.2.4', 'dcterms:title': '- Emergency stopping devices', 'trans:checksum': '94d51dbca0c5d999058fa8adc881249932441b2c1c97d18d8f0e050484da8911', 'withinClause': 'http://smart.iec.ch/clause/aefbf8ef-2c30-4ec5-a9e0-c413835c271f', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2c68dca6-10c3-49c8-b50a-88d6552ce43c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009035', 'rdfs:label': 'Subclause 9.2.5', 'dcterms:title': '- Release of PATIENT', 'trans:checksum': '9d8f7662a504ed2acfe21ba4bb94c24fb9fe27bb0ba931bd4a652b7be99d4df3', 'withinClause': 'http://smart.iec.ch/clause/aefbf8ef-2c30-4ec5-a9e0-c413835c271f', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/cd779413-6027-48b9-bbe5-1ff7bbbabd51', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009038', 'rdfs:label': 'Subclause 9.3', 'dcterms:title': '- HAZARD associated with surfaces, corners and edges', 'trans:checksum': 'e20daaea688fd84275d7b98ffb968c1c5e9d5819ad31653712a38b74f9642d51', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/85baee54-7cd1-451d-b6ad-1695d027d4e6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009046', 'rdfs:label': 'Subclause 9.4', 'dcterms:title': '- Instability HAZARDS', 'comprisesClause': ['http://smart.iec.ch/clause/20021458-b52e-4846-a8d0-3c6bbd9bbe83'], 'trans:checksum': '5597802bec72a2eda5c09678dc57f3d93ef2f31d011113ce6a81f852dcde3649', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/20021458-b52e-4846-a8d0-3c6bbd9bbe83', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009052', 'rdfs:label': 'Subclause 9.4.2', 'dcterms:title': '- Instability - overbalance', 'comprisesClause': ['http://smart.iec.ch/clause/71bd49fd-befe-4a5f-8693-a9db2f47b92b'], 'trans:checksum': '4ccdd54f28aea30267f75b5588fd210bbc0afb1d63728a03c0d13234b62368df', 'withinClause': 'http://smart.iec.ch/clause/85baee54-7cd1-451d-b6ad-1695d027d4e6', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/71bd49fd-befe-4a5f-8693-a9db2f47b92b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009062', 'rdfs:label': 'Subclause 9.4.2.4', 'dcterms:title': '- Castors and wheels', 'trans:checksum': 'cee013d20bce8cfe6bb79c91527c8febadc9ab5580c823456c6040df114f8729', 'withinClause': 'http://smart.iec.ch/clause/20021458-b52e-4846-a8d0-3c6bbd9bbe83', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2aaa424d-a031-4c34-8a52-70404355beb7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009066', 'rdfs:label': 'Subclause 9.5', 'dcterms:title': '- Expelled parts HAZARD', 'trans:checksum': '712dfbf8ba6d977e644d63df3e2d55645256d3f557d485faa4be835c2246fb63', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/058ada32-cac2-4944-a9d8-be0937a1bd91', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009072', 'rdfs:label': 'Subclause 9.6.1', 'dcterms:title': '- General', 'trans:checksum': 'eae4d604333c73fe3532e7b1cad4bc76b5bb53ea0d72d04021aef3be6b2d1b57', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/656c53be-4e5c-45c7-a553-773b0a9e623f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009086', 'rdfs:label': 'Subclause 9.6.2', 'dcterms:title': '- Acoustic energy', 'trans:checksum': '9ba0a8c108ca1879f7e59b98f20d7399c732e37ebe0202e2565125ddb823108d', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c28e16ec-d8bf-43d8-a8ff-057c24fce08e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009094', 'rdfs:label': 'Subclause 9.6.3', 'dcterms:title': '- Hand-transmitted vibration', 'trans:checksum': 'c0ee2fedb2ab32c7fe9d406b2f2bfebf4372bb7be917e6604b3c00da67ddfff4', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/185f58f4-d71a-4e3e-b80c-1888b8f53071', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009118', 'rdfs:label': 'Subclause 9.7', 'dcterms:title': '- Pressure vessels and parts subject to pneumatic and hydraulic pressure', 'comprisesClause': ['http://smart.iec.ch/clause/62d37fc9-c8f3-4bc2-b2fc-4bac530b4944'], 'trans:checksum': '62f81fa5a2fc4e8f5c78848a8d5d22306edfeb91aecaf4a85fb00be2651d4f78', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/62d37fc9-c8f3-4bc2-b2fc-4bac530b4944', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009163', 'rdfs:label': 'Subclause 9.7.5', 'dcterms:title': '- Pressure vessels', 'trans:checksum': 'ad39594186c903358bb0fb3ecddde8120a2f0834893902db07936f3f6192446f', 'withinClause': 'http://smart.iec.ch/clause/185f58f4-d71a-4e3e-b80c-1888b8f53071', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ed0b55bf-4b77-44ae-b93c-69a3cc9e1b98', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009176', 'rdfs:label': 'Subclause 9.8', 'dcterms:title': '- HAZARDS associated with support systems', 'comprisesClause': ['http://smart.iec.ch/clause/1a0f5511-95ee-4eda-96d6-cb75f2c996ec', 'http://smart.iec.ch/clause/4a7de281-e27d-4cc4-b2cb-625ea737ce95'], 'trans:checksum': '545712392298c267bd2cb1308d91d00eff2c6cf885e0137aeea86f90471ac35b', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4a7de281-e27d-4cc4-b2cb-625ea737ce95', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009244', 'rdfs:label': 'Subclause 9.8.3', 'dcterms:title': '- Strength of PATIENT or OPERATOR support or suspension systems', 'comprisesClause': ['http://smart.iec.ch/clause/dbf50659-9fc0-4562-8cfd-09bb0345866e', 'http://smart.iec.ch/clause/8887fd39-3323-4235-af6b-f38f3b987ac8'], 'trans:checksum': 'ddd6e1274d51d8b941cfa1ed217f99d2738d165c5d313f77acdd3ee23469c4a6', 'withinClause': 'http://smart.iec.ch/clause/ed0b55bf-4b77-44ae-b93c-69a3cc9e1b98', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/dbf50659-9fc0-4562-8cfd-09bb0345866e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009255', 'rdfs:label': 'Subclause 9.8.3.2', 'dcterms:title': '- Static forces due to loading from persons', 'trans:checksum': '3bf8b06cb35a0b3e95e9196e2fee8efabc715f2116db9bec14dc26b7bd8419a0', 'withinClause': 'http://smart.iec.ch/clause/4a7de281-e27d-4cc4-b2cb-625ea737ce95', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8887fd39-3323-4235-af6b-f38f3b987ac8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009273', 'rdfs:label': 'Subclause 9.8.3.3', 'dcterms:title': '- Dynamic forces due to loading from persons', 'trans:checksum': '7993bf904b471a109f72ea2a68ef108f7777a732fbf5f1c23dc575d246460e55', 'withinClause': 'http://smart.iec.ch/clause/4a7de281-e27d-4cc4-b2cb-625ea737ce95', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1a0f5511-95ee-4eda-96d6-cb75f2c996ec', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009285', 'rdfs:label': 'Subclause 9.8.4', 'dcterms:title': '- Systems with MECHANICAL PROTECTIVE DEVICES', 'trans:checksum': 'b20e8f9037425d2227c47c0b64c3e632ce37a31f729b23a77e10ca24760284b5', 'withinClause': 'http://smart.iec.ch/clause/ed0b55bf-4b77-44ae-b93c-69a3cc9e1b98', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ad340600-c6ba-4243-874c-544684113c05', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009294', 'rdfs:label': 'Clause 10', 'dcterms:title': '- Protection against unwanted and excessive radiation HAZARDS', 'trans:checksum': '16d962f7979038e6ca0a437c433a7dd699090145a269b97b700e078f43f4946a', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6bdaf609-918b-4781-91a9-faeba8a742a9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009309', 'rdfs:label': 'Subclause 10.1.1', 'dcterms:title': '- ME EQUIPMENT not intended to produce diagnostic or therapeutic X-radiation', 'trans:checksum': '3666b55d99cb493d51638a1a899ae74f71b37841f7153360b8e553557020528d', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/f5bea503-02ff-4ca2-b674-557468c1a8ec', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009317', 'rdfs:label': 'Subclause 10.4', 'dcterms:title': '- Lasers and light emitting diodes ( LED s)', 'trans:checksum': '95f10b0375d8f83f31be2cb9603ab1ed3c240ab0408f5edd596469720d9e82e3', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/be239676-6ed8-42e5-bf15-653700a94aa1', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009320', 'rdfs:label': 'Subclause 11.1', 'dcterms:title': '- Excessive temperatures in ME EQUIPMENT', 'comprisesClause': ['http://smart.iec.ch/clause/957406d4-6c7a-4d3a-95fd-e7093bca7d1e', 'http://smart.iec.ch/clause/508a3779-9342-4f9a-adde-78257a07355f', 'http://smart.iec.ch/clause/aa3b5b7d-f576-4ca7-a41e-654780435b5a'], 'trans:checksum': '8fb25ab2a2da37884d0a236bdbe7b5ddb12d1a0cb30803994f7d464c1e9afd7f', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/508a3779-9342-4f9a-adde-78257a07355f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009327', 'rdfs:label': 'Subclause 11.1.1', 'dcterms:title': '- Maximum temperature during NORMAL USE', 'trans:checksum': '8703867fcf32145e41cd563c131b8f33dcb71d4ba8e3ce41391ec5fa8c9c652c', 'withinClause': 'http://smart.iec.ch/clause/be239676-6ed8-42e5-bf15-653700a94aa1', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/957406d4-6c7a-4d3a-95fd-e7093bca7d1e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009333', 'rdfs:label': 'Subclause 11.1.2', 'dcterms:title': '- Temperature of APPLIED PARTS', 'comprisesClause': ['http://smart.iec.ch/clause/af7fd4f1-5a90-4644-990c-4243c8c14c08'], 'trans:checksum': 'd63c5d298283044923dd66cd0e6032edd755968be01d3783a2c126f8d555702a', 'withinClause': 'http://smart.iec.ch/clause/be239676-6ed8-42e5-bf15-653700a94aa1', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/af7fd4f1-5a90-4644-990c-4243c8c14c08', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009348', 'rdfs:label': 'Subclause 11.1.2.2', 'dcterms:title': '- APPLIED PARTS not intended to supply heat to a PATIENT', 'trans:checksum': '1c1af28b6b0765423b96d0a45358e6c4394f94392b150f4126cfb2c55298616a', 'withinClause': 'http://smart.iec.ch/clause/957406d4-6c7a-4d3a-95fd-e7093bca7d1e', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/aa3b5b7d-f576-4ca7-a41e-654780435b5a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009357', 'rdfs:label': 'Subclause 11.1.3', 'dcterms:title': '- Measurements', 'trans:checksum': '7fd36ee8d4faeda671f3b05cd707f8fbadc6ef45737fa414bd6a96d334e75c1b', 'withinClause': 'http://smart.iec.ch/clause/be239676-6ed8-42e5-bf15-653700a94aa1', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5a541ccf-bac8-49b6-997a-c2e08fb350f9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009361', 'rdfs:label': 'Subclause 11.2', 'dcterms:title': '- Fire prevention', 'comprisesClause': ['http://smart.iec.ch/clause/2ee5a7d3-d7dd-4ae8-8e42-4fac121b4292', 'http://smart.iec.ch/clause/eafbd280-ba21-4d53-9474-6a67b9ff3bbf'], 'trans:checksum': '16108af78584e16392946f92fd974cb5bdbbb473c98606ab41f6d6237a9a29f7', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/eafbd280-ba21-4d53-9474-6a67b9ff3bbf', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009372', 'rdfs:label': 'Subclause 11.2.1', 'dcterms:title': '-Strength and rigidity required to prevent fire in ME EQUIPMENT.', 'trans:checksum': '42d0197bd5908e0606b498aa83a58ea64c9b700c9eda60c15f835295c23c8452', 'withinClause': 'http://smart.iec.ch/clause/5a541ccf-bac8-49b6-997a-c2e08fb350f9', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2ee5a7d3-d7dd-4ae8-8e42-4fac121b4292', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009379', 'rdfs:label': 'Subclause 11.2.2', 'dcterms:title': '- ME EQUIPMENT and ME SYSTEMS used in conjunction with OXYGEN RICH ENVIRONMENTS', 'comprisesClause': ['http://smart.iec.ch/clause/47c4623f-9a7d-4bf8-85a3-ef17f9884d5e', 'http://smart.iec.ch/clause/e06db1c0-4e53-49fd-aa5b-41b3bbcbccae', 'http://smart.iec.ch/clause/176f4987-fdd8-4822-9017-b404dbfd732f', 'http://smart.iec.ch/clause/25473198-0a39-49c3-8034-88136619fa68'], 'trans:checksum': '5883e121f7ba69a3a0ff2426ef9b47808435fd98a33cc81cdee551c7235a4002', 'withinClause': 'http://smart.iec.ch/clause/5a541ccf-bac8-49b6-997a-c2e08fb350f9', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/47c4623f-9a7d-4bf8-85a3-ef17f9884d5e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009388', 'rdfs:label': 'Subclause 11.2.2.1 a)', 'trans:checksum': '355545643ba7a629d2f6dc9568385f45d1dbdc23b4a23e2b8c3a0381462be303', 'withinClause': 'http://smart.iec.ch/clause/2ee5a7d3-d7dd-4ae8-8e42-4fac121b4292', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/25473198-0a39-49c3-8034-88136619fa68', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009413', 'rdfs:label': 'Subclause 11.2.2.1 b) 2)', 'trans:checksum': '0e97fe77ee2c8ce89a655493385c696084a2cbdb0f3330a546bd06cdd8e83baf', 'withinClause': 'http://smart.iec.ch/clause/2ee5a7d3-d7dd-4ae8-8e42-4fac121b4292', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/176f4987-fdd8-4822-9017-b404dbfd732f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009420', 'rdfs:label': 'Subclause 11.2.2.1 b) 3)', 'trans:checksum': 'b64aab82d5e0d6a0dd7a05566320168e2306d8d287f944c934f17c1adbe6461e', 'withinClause': 'http://smart.iec.ch/clause/2ee5a7d3-d7dd-4ae8-8e42-4fac121b4292', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e06db1c0-4e53-49fd-aa5b-41b3bbcbccae', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009436', 'rdfs:label': 'Subclause 11.2.2.2', 'dcterms:title': '- External exhaust outlets for OXYGEN RICH ENVIRONMENT', 'trans:checksum': '8018699a21222d665fcfd2cdbaff8e7974e52773a3a7f1e417852e4a0a0dedfa', 'withinClause': 'http://smart.iec.ch/clause/2ee5a7d3-d7dd-4ae8-8e42-4fac121b4292', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b2b4cede-4c77-4343-8bf4-61c73989dbd7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009439', 'rdfs:label': 'Subclause 11.3', 'dcterms:title': '- Constructional requirement for fire ENCLOSURES of ME EQUIPMENT', 'trans:checksum': '1e4ff5e3e94cdd321f57ab283594edb4a2a789cb3a301c5d8ac5c0e0b12af71b', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4b0e5be1-eb71-4bbd-b6cf-1971bb490b6f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009444', 'rdfs:label': 'Subclause 11.4', 'dcterms:title': '- ME EQUIPMENT and ME SYSTEMS intended for use with flammable anaesthetics', 'trans:checksum': '92d222ecdbf503036a14a2b45e1347355571e18c02df3db41a7b05f67b7bd13a', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d5de5742-5d58-40e9-b54b-09ded70adf99', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009451', 'rdfs:label': 'Subclause 11.5', 'dcterms:title': '- ME EQUIPMENT and ME SYSTEMS intended for use with flammable agents', 'trans:checksum': '5df608716e32dc8959d190f0911fcecf0a7a1870a4f265524c42be497f6dbd95', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c0b7e42b-3889-4f4d-b05e-d6686a9b62e9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009457', 'rdfs:label': 'Subclause 11.6.2', 'dcterms:title': '- Overflow in ME EQUIPMENT', 'trans:checksum': '131253a12c1e572ea9a99041681770b600b7fb9097de6bf028c5708f8bb91bbb', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1b20a1ef-ae86-4d70-8b88-f1aaeac03046', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009461', 'rdfs:label': 'Subclause 11.6.3', 'dcterms:title': '- Spillage on ME EQUIPMENT and ME SYSTEMS', 'trans:checksum': 'aa2044f122a00d499d09be84abf610d7c7cf8369ea87bf87ccf790d4740f85b8', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8a8215ad-66bc-473f-80a4-2aaf1198436b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009473', 'rdfs:label': 'Subclause 11.6.4', 'dcterms:title': '- Leakage', 'trans:checksum': '5ca016fcf0aaba338e0d9b3e74e5c222463da8bda83e3dc8afaab79bb88ebb24', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a2b6fed4-c7ae-4104-9b92-993dd0097cb0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009476', 'rdfs:label': 'Subclause 11.6.5', 'dcterms:title': '- Ingress of water and particulate matter into ME EQUIPMENT and ME SYSTEMS', 'trans:checksum': '5d114a726f592b7ca53498f2432277779b93b0eb0c18c0d3b8b9495bfd1b9839', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/45a33b8d-55c1-47f1-9f8e-be3e61a0fae9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009481', 'rdfs:label': 'Subclause 11.6.8', 'dcterms:title': '- Compatibility with substances used with the ME EQUIPMENT', 'trans:checksum': '8333966fadbab1996619b8583f374700231b5e1a17ae3613d262d8aee60fdf6d', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c95a1865-d47a-4dfe-ac30-2bfe0b54fed6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009486', 'rdfs:label': 'Subclause 11.8', 'dcterms:title': '- Interruption of the power supply / SUPPLY MAINS to ME EQUIPMENT', 'trans:checksum': '3cfb86953577eb58f171e508236b46fb5f30a223053b87afb94548ea9378afaa', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e4028006-37d4-4b9f-9386-8c9408effcf0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009499', 'rdfs:label': 'Clause 12', 'dcterms:title': '- Accuracy of controls and instruments and protection against hazardous outputs', 'trans:checksum': '48a94085417972fff3e7a45ce572c8e3ee32d1508453763c0d71089e92d834a2', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6029fce9-72b9-4248-8fd1-bb98289329e5', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009512', 'rdfs:label': 'Subclause 12.4.1', 'dcterms:title': '- Intentional exceeding of safety limits', 'trans:checksum': '2fb0590f81b0663940f5f6d70ca792416e8f846d40c6f05c1affb65eaf329627', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ad031313-4ef0-4ba1-8dc5-4bbbccd78d9d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009517', 'rdfs:label': 'Subclause 12.4.3', 'dcterms:title': '- Accidental selection of excessive output values', 'trans:checksum': '25eb8faa520ff0fb18f58e3157962bab69be4bd32e590ceba798328c96551984', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c0ab45a5-c7e9-4228-b15d-9c8fd57aaa62', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009521', 'rdfs:label': 'Clause 13', 'dcterms:title': '- HAZARDOUS SITUATIONS and fault conditions', 'trans:checksum': '5090ce809e7d4c02ca45eb9cbd69c09ede3e899cbc8a989d7d09a5638af6a0b7', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/886f2df3-486c-4ffe-9587-ad5ec453746e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009525', 'rdfs:label': 'Subclause 13.1.1', 'dcterms:title': '- General', 'trans:checksum': 'f5583e549bbdc56589610ad5966ba8a72aa4eba59511d73fb9ff3576623342ab', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b7118081-dddc-4186-8c03-1b7df755ebcc', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009537', 'rdfs:label': 'Subclause 13.1.2', 'dcterms:title': '- Emissions, deformation of ENCLOSURE or exceeding maximum temperature', 'trans:checksum': '9ce9f4679a35e54cbe06fde1382300d291ae87c29adb04eb79f430788f457d8d', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6f7d5dc8-6d0b-465e-925e-bcf4b10c91e3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009550', 'rdfs:label': 'Subclause 13.2.9', 'dcterms:title': '- Interruption and short circuiting of motor capacitors', 'trans:checksum': 'c718c1cd99faf3a18bde614360773e337b9048a9c08fb59f0cd7a749f2a97a1c', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e5ed59f4-6b5a-418a-a87f-157f2a307473', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009558', 'rdfs:label': 'Subclause 13.2.10', 'dcterms:title': '- Additional test criteria for motor operated ME EQUIPMENT and Table 26, last line', 'trans:checksum': '347d434d39a13a9eb5d480509a909e2c95945a64a9ea64e7f3e93cff0adda9f4', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ade6db1d-aaaf-4cc4-b6fa-48dd0ba72158', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009563', 'rdfs:label': 'Subclause 13.2.13.1', 'dcterms:title': '- General overload test conditions', 'trans:checksum': '9b8218163ef71e69f154f3aad2bf66ce1777cbf810753399b602df050ca64e25', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4b9d37ed-df75-4579-84db-9fb03e63d9ad', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009568', 'rdfs:label': 'Subclause 13.2.13.4', 'dcterms:title': '- ME EQUIPMENT RATED for non- CONTINUOUS OPERATION', 'trans:checksum': '19ca8faf63161b7f1a4200494cebe2f9a67f136e8c9937ce95a577e24c740de9', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d439fe22-e7d8-4261-9501-75ead64a6423', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009572', 'rdfs:label': 'Clause 14', 'dcterms:title': '- PROGRAMMABLE ELECTRICAL MEDICAL SYSTEMS( PEMS)', 'trans:checksum': '73e5b15de7427a0218284215f2dcf7f475eb169b746c90bc644afa631f164ee6', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/53b6b4b5-4326-42df-b3de-5ac60ac83c18', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009608', 'rdfs:label': 'Subclause 14.1', 'dcterms:title': '- General', 'trans:checksum': '114a8dd5a0390404c830e2b7a5fb027705803085ff0b77bd1a0ca9659d42ee7d', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1138f670-0155-46e4-b1c8-87496787d795', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009625', 'rdfs:label': 'Subclause 14.2', 'dcterms:title': '- Documentation', 'trans:checksum': 'c49a8d9cdd994fb96dd6c09598c955ee6fbfc830aa0de0a32a2b43dc8ccc721a', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2a08562e-d5cf-48a8-856e-6a624e4f9813', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009636', 'rdfs:label': 'Subclause 14.3', 'dcterms:title': '- RISK MANAGEMENT plan', 'trans:checksum': 'ff2bbcabf1534d2e450b3ad95bfc423c0e4b6dafbb33dc7e70af334da5956a1e', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/228204f6-e849-4ded-8dcd-b71450d035ba', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009641', 'rdfs:label': 'Subclause 14.4', 'dcterms:title': '- PEMS DEVELOPMENT LIFE-CYCLE', 'trans:checksum': '73657cd264dfc6e2a530ee63161879cb88e7fe9445d8a8ea1075e98301516434', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7386cf87-ad3a-4e84-b20c-e046bf7b2c70', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009714', 'rdfs:label': 'Subclause 14.5', 'dcterms:title': '- Problem resolution', 'trans:checksum': 'c73a1b87ed86d86f92a3195cdbf00f4cf28137e988de163a98db7c00baf2c4e3', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/f3799215-2c29-4093-8d25-5195a58c88ae', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009751', 'rdfs:label': 'Subclause 14.6.1', 'dcterms:title': '- Identification of known and foreseeable HAZARDS', 'trans:checksum': '3344448ab88e3a8a0bb322daff3faea6471c5811efec0f35ee068896c28d216f', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/563b0188-d0e7-4bb0-aaf9-272b7d930817', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009754', 'rdfs:label': 'Subclause 14.6.2', 'dcterms:title': '- RISK CONTROL', 'trans:checksum': '77cc7ca0c26b913a47543a5a20d3131b82c90cbaa0392f2a9083e02cfe323cbf', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/11792fcd-2150-4ea0-8551-ba01524efe44', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009758', 'rdfs:label': 'Subclause 14.7', 'dcterms:title': '- Requirement specification', 'trans:checksum': '4b09ee8baef7a28cb0ab74599af3d08f4042f0ac2ac572ca597b1f6d01e921f9', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c562a660-0522-4504-af31-0418a8a1521a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009781', 'rdfs:label': 'Subclause 14.8', 'dcterms:title': '- Architecture', 'trans:checksum': '5cfa21f8debbf068d637862e986bd5d5de8cef89713ecee84d5931def8525d0d', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e487afab-1528-413a-b024-2c29fb372059', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009795', 'rdfs:label': 'Subclause 14.8 e)', 'trans:checksum': 'd33e347411efdb5267715f6174b64b3518f0cdaf470e679947ba8416a0a0ad32', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/610a0310-649e-4e94-955a-f3dce5b920df', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009832', 'rdfs:label': 'Subclause 14.8 g) to n)', 'trans:checksum': '87e55955395fe83d0a477972e04a358604997e1f747827fdc7d5d2a9755d0383', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a39aad57-04cf-4523-82fb-71ffedee178b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009836', 'rdfs:label': 'Subclause 14.9', 'dcterms:title': '- Design and implementation', 'trans:checksum': 'a275aa7c029238a6726b06dc2e9e03e8f4a370bdb30d35ab47a06f4eaf3502dd', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2877e461-4677-4888-976d-fbae5d840edc', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009880', 'rdfs:label': 'Subclause 14.10', 'dcterms:title': '- VERIFICATION', 'trans:checksum': '8f1ffafec629fea8cfb3c4e0a270151aa89cfee9651c88e206c9b35ec98abb08', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1519c05c-c313-4bc5-97bf-a3092d173d63', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009901', 'rdfs:label': 'Subclause 14.11', 'dcterms:title': '- PEMS VALIDATION', 'trans:checksum': '2bb3b1962813494141490ca6d3c0ec97c8b30d6e497b55bd53c4bb1131f7217a', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/105572f3-e05f-44e1-a88c-9aa8c15f1b58', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009920', 'rdfs:label': 'Subclause 14.12', 'dcterms:title': '- Modification', 'trans:checksum': 'a3ab98b8b35890c045c80277608b4ca1cf21cb100510fc49b08fe1c684354e88', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c081abea-4e0f-444c-8385-1f8acf480d7d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009925', 'rdfs:label': 'Subclause 14.13', 'dcterms:title': '- Connection of a PEMS by NETWORK/DATA COUPLING to other equipment', 'trans:checksum': 'ae788c8d696c5944dfbd7d1133396e0e1a14b87ba540b8528efc7ff3051e6931', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/011aa9e5-a347-41b3-91a8-91217948b938', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009937', 'rdfs:label': 'Subclause 15.1', 'dcterms:title': '- Arrangements of controls and indicators of ME EQUIPMENT', 'trans:checksum': 'a671b285cacac0f01d9318145cd2c2de1a704567caf581a6ce4399abfaf9195a', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b3220214-14a4-412e-9642-167386920655', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009940', 'rdfs:label': 'Subclause 15.2', 'dcterms:title': '- Serviceability', 'trans:checksum': '76a5fd22d9ab4e007876fc350d593e786b627b8239fafd605c81c94d4a26363e', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/376ea09e-d74a-4af1-97f2-0da9a6d92bc1', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009945', 'rdfs:label': 'Subclause 15.3.2', 'dcterms:title': '- Push test', 'trans:checksum': '9113265ab084f90d160127400cbfa63e3032dd010721c781bb98485a80b786c7', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/52b23af9-cf46-415f-9292-1da4bf45d570', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009955', 'rdfs:label': 'Subclause 15.3.3', 'dcterms:title': '- Impact test', 'trans:checksum': 'c37300bcf336bdc58c6b5eb4545620605f1ac027ee9e8a713401abd73a255447', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5e28bc4e-57a3-4b2a-acd0-472504bafd29', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009965', 'rdfs:label': 'Subclause 15.3.4', 'dcterms:title': '- Drop test', 'comprisesClause': ['http://smart.iec.ch/clause/22ec1fdb-0d61-4148-b92c-e12b11070dbe'], 'trans:checksum': '5a4835c0a9ff24381cce0042bc6d7d4111067ccc31e1c7fbe31f86f3c3f25c18', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/22ec1fdb-0d61-4148-b92c-e12b11070dbe', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009972', 'rdfs:label': 'Subclause 15.3.4.2', 'dcterms:title': '- PORTABLE ME EQUIPMENT', 'trans:checksum': '36b4b8bbacc281161105ba7ea968909ca2d714f564753fc30360cc1d7634a005', 'withinClause': 'http://smart.iec.ch/clause/5e28bc4e-57a3-4b2a-acd0-472504bafd29', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/dfc96a36-b588-4ff3-92f6-f6cdfcfbb707', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009978', 'rdfs:label': 'Subclause 15.3.5', 'dcterms:title': '- Rough handling test', 'trans:checksum': '360798f194283e7bb04261b7325e48840635aa2c9acf2dc8e0f52ed1dd8f34ea', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d4589aaf-774e-4f8c-9791-b1234978ed4d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000009992', 'rdfs:label': 'Subclause 15.3.6', 'dcterms:title': '- Mould stress relief test', 'trans:checksum': 'abe9b62f0287258f3817afb019824e165c844396a2acfab05e64b305e1ce759c', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/bb7ce19a-3df2-4fe4-b58e-073007c3e22f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010001', 'rdfs:label': 'Subclause 15.3.7', 'dcterms:title': '- Environmental influences', 'trans:checksum': '313ffcd38172ffdec9a7a86f5c20f64dbd33018488663846c24d55a4aae29ca7', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/fbb141ad-da96-42dd-b6ae-b79b0c8983a9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010016', 'rdfs:label': 'Subclause 15.4.3', 'dcterms:title': '- Batteries', 'trans:checksum': '3563fa5d5b806a06c18acecfb4441193c33fc0c2eaee28bbf597852d45447693', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/36b799a6-6f80-4abf-be02-090aa0d496e4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010021', 'rdfs:label': 'Subclause 15.4.4', 'dcterms:title': '- Indicators', 'trans:checksum': 'b2f5da0c9f9a351ecc5082e51710e682a3c45205692260dae3241f31daa81a4a', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c1e36564-8c67-43cd-8b60-b5770f45bbb8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010030', 'rdfs:label': 'Subclause 15.4.7.3', 'dcterms:title': '- Entry of liquids', 'trans:checksum': '65d6d71b45ab5de02022ae8224b1baa9a7dde469132d6079453e676f7442f432', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d7e45cae-d38b-4af1-8a59-2cef33b54f7c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010035', 'rdfs:label': 'Subclause 15.5', 'dcterms:title': '- MAINS SUPPLY TRANSFORMERS of ME EQUIPMENT and transformers providing separation in accordance with 8.5', 'comprisesClause': ['http://smart.iec.ch/clause/ad5274fb-3d38-435e-8b8b-8d9dfff950c5', 'http://smart.iec.ch/clause/501d0bd6-9f8b-484e-b955-7205d003ac20'], 'trans:checksum': '722453f5a039b4f651efd342e2e7716605ddd3751dcbec387fcc2ddb58f22540', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/97d8c70b-1ba8-46cb-8048-0c61def640b9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010046', 'rdfs:label': 'Subclause 15.5.1.1', 'dcterms:title': '- Transformers', 'trans:checksum': '62475d391b164d4f47e3980a03429e52907846dfd6e4f560b8c185ca5020b44c', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ad5274fb-3d38-435e-8b8b-8d9dfff950c5', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010057', 'rdfs:label': 'Subclause 15.5.2', 'dcterms:title': '- Dielectric strength', 'trans:checksum': 'c00bb5e0ce56a2eb4c840cd83f84795e21dc9b28be5ea1210a8743145090301e', 'withinClause': 'http://smart.iec.ch/clause/d7e45cae-d38b-4af1-8a59-2cef33b54f7c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/501d0bd6-9f8b-484e-b955-7205d003ac20', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010063', 'rdfs:label': 'Subclause 15.5.3', 'dcterms:title': '- Construction of transformers used to provide separation as required by 8.5', 'trans:checksum': '5d9088f316cc3faf8306cea8ffbc5975d244ec096ae63b40bf128625c79a886f', 'withinClause': 'http://smart.iec.ch/clause/d7e45cae-d38b-4af1-8a59-2cef33b54f7c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2da980f8-e4ae-4d3c-a30d-639cc50489a0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010069', 'rdfs:label': 'Clause 16', 'dcterms:title': '- ME SYSTEMS', 'trans:checksum': 'f31a6a5b52f25d9dc94246287889163b307bd7e4b6f1d4f751fd99f7e13b07e8', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/edaa8960-3933-4c9c-be0a-d850e5095ed3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010108', 'rdfs:label': 'Subclause 16.1', 'dcterms:title': '- General requirements for the ME SYSTEMS', 'trans:checksum': '038c1e55c30ca9d4d07204c4c5f8751e764ff1fde2632076fdc955c42d6ac313', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8ae8b9f5-fbc4-41d6-aee1-e6693e62dfbc', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010120', 'rdfs:label': 'Subclause 16.2', 'dcterms:title': '- ACCOMPANYING DOCUMENTS of an ME SYSTEM', 'trans:checksum': '7824d67f3f5eea3806af684dac67d822220fa9113e5ac2191296de44b2586771', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7ddae0c0-9910-4a47-8dac-91bf8f5feafe', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010148', 'rdfs:label': 'Subclause 16.3', 'dcterms:title': '- Power supply', 'trans:checksum': '8fe95fd5b655f71ff7d0540caaa9251b7998b57c37e33a991d832ab5b0680375', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/42a5fea9-5a44-4d62-a176-43f59e8015fd', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010171', 'rdfs:label': 'Subclause 16.5', 'dcterms:title': '- SEPARATION DEVICES', 'trans:checksum': 'a0cf3ce5252c8ece97fed6ef7055745b2ebc5cb3981ae0d5f5bb51c1ca38c0ab', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/cc7b7ec7-bb50-4e43-90e5-a5959ae6079b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010181', 'rdfs:label': 'Subclause 16.6', 'dcterms:title': '- LEAKAGE CURRENTS', 'comprisesClause': ['http://smart.iec.ch/clause/0d4fff54-818c-48ed-b872-b17df7f2a55f'], 'trans:checksum': '2cffd24856910e21e97a1e3c537114b62bd6667680642fd2992b4fbbde04a06b', 'withinClause': 'http://smart.iec.ch/clause/d2b8b7ec-2ed0-44c6-8059-98ec20b41f48', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/0d4fff54-818c-48ed-b872-b17df7f2a55f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010200', 'rdfs:label': 'Subclause 16.6.3', 'dcterms:title': '- PATIENT LEAKAGE CURRENT', 'trans:checksum': '60b8b6371830a798e55d2a526a9f55867d13f8a76c31e7862cead9fc03947673', 'withinClause': 'http://smart.iec.ch/clause/cc7b7ec7-bb50-4e43-90e5-a5959ae6079b', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/142e91dd-ecb9-48a5-af39-2ff00fd99c99', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010209', 'rdfs:label': 'Subclause 16.7', 'dcterms:title': '- Protection against MECHANICAL HAZARDS', 'trans:checksum': 'f08e738fb12ea3b50892e7c605d7b4c1fffad7f7df0f18cb5acad2ffb07e4c73', 'withinClause': 'http://smart.iec.ch/clause/d2b89b6f-8531-4986-9cb1-e2cfa4d59889', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9f0e0f06-c759-40e9-a218-afc388ee5d64', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010212', 'rdfs:label': 'Subclause 16.9.2.1', 'dcterms:title': '- MULTIPLE SOCKET-OUTLET', 'trans:checksum': '9ed6982ecbf8002d4a37ca066c579bab0fe89b5904dd404b6c9620f2ab1a2ce9', 'withinClause': 'http://smart.iec.ch/clause/d2b89b6f-8531-4986-9cb1-e2cfa4d59889', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/defa8811-1642-4d56-aea2-3e9a7b48b0e4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010224', 'rdfs:label': 'Subclause 16.9.2.1 c', 'dcterms:title': '3 rd dash', 'trans:checksum': 'f481dbcc5c0a503e54995c54d7933f31e8d26d40398d31969eb38705158b19b6', 'withinClause': 'http://smart.iec.ch/clause/d2b89b6f-8531-4986-9cb1-e2cfa4d59889', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ee46a9ce-9d47-4853-93c8-f92475a3e1d7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010232', 'rdfs:label': 'Subclause 16.9.2.1 d)', 'trans:checksum': 'df829afd17b2741f06f6d5aae7236a0c30cea92cedde35a4ad80026f2550fba2', 'withinClause': 'http://smart.iec.ch/clause/d2b89b6f-8531-4986-9cb1-e2cfa4d59889', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2174033a-461b-4320-9033-662b4ca56144', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010244', 'rdfs:label': 'Subclause 16.9.2.2', 'dcterms:title': '- PROTECTIVE EARTH CONNECTIONS in ME SYSTEMS', 'trans:checksum': 'f290acac06a3c9d390c3a31d807c90e592bf0f8f1e18dfec2040a3fb0f5b9761', 'withinClause': 'http://smart.iec.ch/clause/d2b89b6f-8531-4986-9cb1-e2cfa4d59889', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8dc9f19f-7839-49b3-afd2-300455ad9811', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010262', 'rdfs:label': 'Clause 17', 'dcterms:title': '- Electromagnetic compatibility of ME EQUIPMENT and ME SYSTEMS', 'trans:checksum': 'c64b6efe31689fb71fde6eb262f3699535fa0bd2123faf8aae74fd6aa450d8aa', 'withinClause': 'http://smart.iec.ch/clause/d2b89b6f-8531-4986-9cb1-e2cfa4d59889', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2df1b60f-1805-44e4-b8c4-8ccf4ea9e8bd', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010284', 'rdfs:label': 'Annex G', 'dcterms:title': '- Protection against HAZARDS of ignition of flammable anaesthetic mixtures (see also the rationale for 11.4)', 'trans:checksum': '1c6553fb713bd42872c4ef18294556ddd4973bccb1fda7eae9a34d51e7e75d6b', 'withinClause': 'http://smart.iec.ch/clause/d2b89b6f-8531-4986-9cb1-e2cfa4d59889', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2ff584c1-3dd7-454b-a6a6-29b5c3c20317', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010290', 'rdfs:label': 'Subclause G.1.3', 'dcterms:title': '- Requirements for ME EQUIPMENT', 'trans:checksum': '204c6c2ab314ae99d3bdf13896aa33be04dc955730dd574641ebe4f95e19ad1d', 'withinClause': 'http://smart.iec.ch/clause/d2b89b6f-8531-4986-9cb1-e2cfa4d59889', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/242cdb5d-5694-43bd-ad60-5cd37598ff72', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010293', 'rdfs:label': 'Subclause G.5.3', 'dcterms:title': '- Low-energy circuits', 'trans:checksum': '8021d293e4ff4766609e4448581262ce2ac79d79bced73cf5e7bed69f4339aac', 'withinClause': 'http://smart.iec.ch/clause/d2b89b6f-8531-4986-9cb1-e2cfa4d59889', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8f68e1b8-0e59-42c9-b0fb-82f3762ede48', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010299', 'rdfs:label': 'Subclause G.5.4', 'dcterms:title': '- External ventilation with internal overpressure', 'trans:checksum': 'cbd72334d609b2476c70be827a0d96afa9958a27b055c0391cbc18152aa76477', 'withinClause': 'http://smart.iec.ch/clause/d2b89b6f-8531-4986-9cb1-e2cfa4d59889', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a288393d-1cdb-4658-b78f-25211c3ce700', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010304', 'rdfs:label': 'Subclause G.5.5', 'dcterms:title': '- ENCLOSURES with restricted breathing', 'trans:checksum': 'a5cb633b15d2f5e81f1bb9d614f20ea5a6b6faee7aad7fb6927f43c19b7a11eb', 'withinClause': 'http://smart.iec.ch/clause/d2b89b6f-8531-4986-9cb1-e2cfa4d59889', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4d63db9e-ada0-4a11-b1e1-16fa9de7b225', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010305', 'rdfs:label': 'Subclause G.5.5 a)', 'trans:checksum': '932d64e164d37072a97e910424411e6031bedd3401dc922a5ee03210b709649d', 'withinClause': 'http://smart.iec.ch/clause/d2b89b6f-8531-4986-9cb1-e2cfa4d59889', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/bc1949e8-b4ef-4d88-b428-f0eccc58acc3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010308', 'rdfs:label': 'Subclause G.6.2', 'dcterms:title': '- Power supply', 'trans:checksum': 'fe82608617083a5092e933457404e9e135ca000f6c2528f9ccf27a025cb75c67', 'withinClause': 'http://smart.iec.ch/clause/d2b89b6f-8531-4986-9cb1-e2cfa4d59889', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9df0a35f-c89f-4b15-9302-6972fc036914', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010312', 'rdfs:label': 'Subclause G.6.3', 'dcterms:title': '- Temperatures and low-energy circuits', 'trans:checksum': '11b059f645b5af6014a20bf86571f99677223b90933b7ef2703cf4e9b4754981', 'withinClause': 'http://smart.iec.ch/clause/d2b89b6f-8531-4986-9cb1-e2cfa4d59889', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', '@type': 'corext:Annex', 'trans:sortKey': 'IEC60601120050000010315', 'rdfs:label': 'Annex B', 'dcterms:title': 'Sequence of testing', 'comprisesClause': ['http://smart.iec.ch/clause/a2eb51ba-793b-424e-9485-04ea7681ec63', 'http://smart.iec.ch/clause/96129c9d-4218-4ffa-b9a4-bb685fd0cb9e', 'http://smart.iec.ch/clause/072655b2-3a20-41d3-b888-8e602420f014', 'http://smart.iec.ch/clause/d1b5b4eb-34a8-4818-bdba-fb00915a413f', 'http://smart.iec.ch/clause/d0dceba4-8e9a-4b29-b13a-aff96abe53ad', 'http://smart.iec.ch/clause/bd545584-4f0b-4019-8094-ceca85412251', 'http://smart.iec.ch/clause/82f0c1a8-71e6-45ff-b3ee-740d0c4b82f6', 'http://smart.iec.ch/clause/74647e5e-42f2-4b7a-8515-9c59db3f7401', 'http://smart.iec.ch/clause/9ae4e466-4a0e-4f01-9d16-b673405ab25c', 'http://smart.iec.ch/clause/e398135b-9488-47e6-868b-e8a493663024', 'http://smart.iec.ch/clause/d1e50837-88ef-400b-b269-7ee38c516cd9', 'http://smart.iec.ch/clause/f026e570-cbd8-423b-821b-523887d5758e', 'http://smart.iec.ch/clause/9b6151cf-5dc1-4813-9fb8-0b7dafb97d93', 'http://smart.iec.ch/clause/4f311325-8ecf-4d8c-83c2-a3f5d2c07bf1', 'http://smart.iec.ch/clause/6482fe9b-f728-4c7e-8d3a-8272015bc8fe', 'http://smart.iec.ch/clause/9e535b7c-0ac0-4244-a601-c7c159cfbc73', 'http://smart.iec.ch/clause/65067389-030a-46ed-af2e-bdd7c9468b80', 'http://smart.iec.ch/clause/fcb69d4d-1a60-4d3d-bc9a-1340c53cfa89', 'http://smart.iec.ch/clause/81f1fb95-ab9b-46a9-8015-5b9f8cee7cc0', 'http://smart.iec.ch/clause/135874a8-e972-4fb3-ac9b-2208b828ee9d', 'http://smart.iec.ch/clause/60d63972-b5e2-4f89-ab42-e743ecad2bf1', 'http://smart.iec.ch/clause/1a4ec771-009a-4c0e-9bf7-e8724e46051a', 'http://smart.iec.ch/clause/c45a9c85-82c1-4859-826e-4ab4436537ad', 'http://smart.iec.ch/clause/b30e8bd9-143d-498c-9e1d-c3e1f17d34ba', 'http://smart.iec.ch/clause/9ea52c08-8739-4a94-a698-9182d3e15bbf', 'http://smart.iec.ch/clause/cbceacec-2b8d-4eeb-8eab-66e99a0865c7', 'http://smart.iec.ch/clause/483f4d09-b684-4f2e-93de-cf1cc3307d65', 'http://smart.iec.ch/clause/fd2005e4-3c65-4f36-a6a7-a799022d0446', 'http://smart.iec.ch/clause/647677f9-3c30-42fa-a71b-250135857f47', 'http://smart.iec.ch/clause/b759e30e-1d74-4bc9-8ae7-054e9879c6b6', 'http://smart.iec.ch/clause/a3273e8a-6504-456b-a87c-aa17f20c3f19', 'http://smart.iec.ch/clause/9a42255e-e398-41bd-9952-09c972092216', 'http://smart.iec.ch/clause/d73cd948-b413-4d45-a5b7-17a262172c82', 'http://smart.iec.ch/clause/8fbe803f-b2f9-465b-ae9e-8ae8f4371a9b', 'http://smart.iec.ch/clause/50e97fe9-a388-4090-97ce-01cd3d4bb2e7', 'http://smart.iec.ch/clause/1c2fea32-d74f-4fce-80be-dea1cc86f3ab'], 'trans:checksum': '60de133f7236ddb787a4f3fd7bf08249980e6d5f7741c1a3354afe5c34bdd0b8', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/60d63972-b5e2-4f89-ab42-e743ecad2bf1', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010316', 'rdfs:label': 'B.1', 'dcterms:title': 'General', 'trans:checksum': '05e45e460a053a0a2cdf09991c988119b15de2a3b9fef214323573fad5138516', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/647677f9-3c30-42fa-a71b-250135857f47', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010326', 'rdfs:label': 'B.2', 'dcterms:title': 'RISK MANAGEMENT PROCESS for me equipment or me systems and ESSENTIAL PERFORMANCE', 'trans:checksum': '06e1a5a98f4ebcc464fbc4e193489d3401cd763d1319f99eed68f651950e46e8', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b759e30e-1d74-4bc9-8ae7-054e9879c6b6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010329', 'rdfs:label': 'B.3', 'dcterms:title': 'General requirements', 'trans:checksum': 'e9474ec2ad716cd23bcc6434feb0619836a6664ff3ed429eb09c9c8a39387527', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d1b5b4eb-34a8-4818-bdba-fb00915a413f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010332', 'rdfs:label': 'B.4', 'dcterms:title': 'Classification of ME EQUIPMENT and ME SYSTEMS', 'trans:checksum': '2a5bd4dd4c776a6ab156ff4bf520c2fc543d308789a71badd0ee028749ea774a', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/82f0c1a8-71e6-45ff-b3ee-740d0c4b82f6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010335', 'rdfs:label': 'B.5', 'dcterms:title': 'Determination of APPLIED PARTS and ACCESSIBLE PARTS', 'trans:checksum': 'd6f93def74e5772eaf3addeac50a3849005aad236913c78ccb63993ca83b62ea', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/81f1fb95-ab9b-46a9-8015-5b9f8cee7cc0', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010338', 'rdfs:label': 'B.6', 'dcterms:title': 'ME EQUIPMENT identification, marking and documents', 'trans:checksum': 'cde347d5a76b2f92f8022bc0ac415b4b8838dbb059712488c3ddcbe0708b1bba', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d1e50837-88ef-400b-b269-7ee38c516cd9', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010341', 'rdfs:label': 'B.7', 'dcterms:title': 'Energy consumption (power input)', 'trans:checksum': '67bb123552fbb3f48717b911aaa11f0d33826bed5f670c0cb63deb91d7b07ca3', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1a4ec771-009a-4c0e-9bf7-e8724e46051a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010344', 'rdfs:label': 'B.8', 'dcterms:title': 'Limitation of voltage, current or energy', 'trans:checksum': '7f313a1742fa8eb9c7b14dae062f8b0967184cb3ad154ffcbe263d306da9c753', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b30e8bd9-143d-498c-9e1d-c3e1f17d34ba', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010347', 'rdfs:label': 'B.9', 'dcterms:title': 'Separation of parts', 'trans:checksum': '7a723ff439bee0a6286d842f5395ed125c739f0f749a272f95045b3aecfdfe39', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8fbe803f-b2f9-465b-ae9e-8ae8f4371a9b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010350', 'rdfs:label': 'B.10', 'dcterms:title': 'CREEPAGE DISTANCES and AIR CLEARANCES', 'trans:checksum': '02c4f7b82014299872bd659ab269413541371f1707dc7486f66e61f9ce7372b5', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/135874a8-e972-4fb3-ac9b-2208b828ee9d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010353', 'rdfs:label': 'B.11', 'dcterms:title': 'HAZARDS associated with moving parts', 'trans:checksum': '5276e50592a1336a974ba53d0c1071fbc3bc9069e393cff69da803655f77583c', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6482fe9b-f728-4c7e-8d3a-8272015bc8fe', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010356', 'rdfs:label': 'B.12', 'dcterms:title': 'HAZARD associated with surfaces, corners and edges', 'trans:checksum': 'ade09d7d757a6d3d42f8b3c3488344360c90d64809760a821a4ce8f677396013', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/072655b2-3a20-41d3-b888-8e602420f014', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010359', 'rdfs:label': 'B.13', 'dcterms:title': 'Serviceability', 'trans:checksum': '0403c54e5956f6483d7de880ae08820583f2d86f39ea9de98ffb7b75baf26766', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/fcb69d4d-1a60-4d3d-bc9a-1340c53cfa89', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010362', 'rdfs:label': 'B.14', 'dcterms:title': 'Accuracy of controls and instruments and protection against hazardous outputs', 'trans:checksum': '946cb031f2ea9ce6f341270cd60243f59ab20401307aec993d5377bd32a65027', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/cbceacec-2b8d-4eeb-8eab-66e99a0865c7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010365', 'rdfs:label': 'B.15', 'dcterms:title': 'Instability HAZARDS', 'trans:checksum': 'f64f69d1cf1afacb3212bbf362d60f5dbd6c3d25688b8ff9f9c09cd8529e6bfa', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/65067389-030a-46ed-af2e-bdd7c9468b80', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010368', 'rdfs:label': 'B.16', 'dcterms:title': 'Noise, vibration and acoustic energy', 'trans:checksum': 'd6498f078b3df938e86606f71e93b266f46c10eda086df588b7af2ab9c846a2f', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9b6151cf-5dc1-4813-9fb8-0b7dafb97d93', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010371', 'rdfs:label': 'B.17', 'dcterms:title': 'Interruption of the power supply / SUPPLY MAINS to ME EQUIPMENT', 'trans:checksum': '4543517e9b9ecfa8052edd721a1da35928c67e0665f51d66ed7d65c8c0545dbb', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/fd2005e4-3c65-4f36-a6a7-a799022d0446', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010374', 'rdfs:label': 'B.18', 'dcterms:title': 'Protective earthing, functional earthing and potential equalization of ME EQUIPMENT', 'trans:checksum': 'ffd70ecf9e0b138453d70fb785a876b99424b8f7e6807a975d1b4f54bd5aea6e', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9ea52c08-8739-4a94-a698-9182d3e15bbf', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010377', 'rdfs:label': 'B.19', 'dcterms:title': 'Excessive temperatures in ME EQUIPMENT', 'trans:checksum': 'c038454a2ffdeacede3a5434bef721ddc568a805aa7d41f249ed77f993d4ba77', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e398135b-9488-47e6-868b-e8a493663024', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010380', 'rdfs:label': 'B.20', 'dcterms:title': 'LEAKAGE CURRENTS and PATIENT AUXILIARY CURRENTS at operating temperature', 'trans:checksum': 'c9310b7bd5abed0134a7b9d73bd7da507ef6a41a8cb7df795fcd716bec64956a', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9e535b7c-0ac0-4244-a601-c7c159cfbc73', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010383', 'rdfs:label': 'B.21', 'dcterms:title': 'Humidity preconditioning treatment', 'trans:checksum': '1c81206632f39aa5210c84477f34af753ff18f8039575923d4be464beca2356f', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1c2fea32-d74f-4fce-80be-dea1cc86f3ab', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010386', 'rdfs:label': 'B.22', 'dcterms:title': 'Dielectric strength ( COLD CONDITION)', 'trans:checksum': 'e8d493e683d3141416af29a4327a30131ddbe89526216a290b8a78e9af461148', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d73cd948-b413-4d45-a5b7-17a262172c82', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010389', 'rdfs:label': 'B.23', 'dcterms:title': 'Defibrillation protection', 'trans:checksum': '8dc48f8ad0aa637f6702ce72925349edc187ba776c894aa62dd918292b80e589', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4f311325-8ecf-4d8c-83c2-a3f5d2c07bf1', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010392', 'rdfs:label': 'B.24', 'dcterms:title': 'Expelled parts HAZARD', 'trans:checksum': '48169a03b9a14e6817fd1293b6c90044e1c849752eb4d0f93a02bfe524507fd2', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c45a9c85-82c1-4859-826e-4ab4436537ad', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010395', 'rdfs:label': 'B.25', 'dcterms:title': 'Pressure vessels and parts subject to pneumatic and hydraulic pressure', 'trans:checksum': '94e26782b420209c94439dba19ba040471482a1e5e999f66e12a6dc200e54542', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9ae4e466-4a0e-4f01-9d16-b673405ab25c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010398', 'rdfs:label': 'B.26', 'dcterms:title': 'HAZARDS associated with support systems', 'trans:checksum': '16cba00877700086222a95ad8cd7b9318cb415f26f55c3ac8521bcc85a2e5230', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/96129c9d-4218-4ffa-b9a4-bb685fd0cb9e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010401', 'rdfs:label': 'B.27', 'dcterms:title': 'Mechanical strength', 'trans:checksum': '0c9d1a6580e7ecf224458cbe6e580f937909c3e25c75ebc5b9ef5d17f69cae46', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a3273e8a-6504-456b-a87c-aa17f20c3f19', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010404', 'rdfs:label': 'B.28', 'dcterms:title': 'HAZARDOUS SITUATIONS and fault conditions', 'trans:checksum': 'b1a7cdfc4852b3ab43fdf841eb0dc1b35a63898e9305f7877df5aebc15f81c8e', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/f026e570-cbd8-423b-821b-523887d5758e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010407', 'rdfs:label': 'B.29', 'dcterms:title': 'MAINS SUPPLY TRANSFORMERS of ME EQUIPMENT and transformers providing separation in accordance with 8.5', 'trans:checksum': 'e4eef0a3201c5fc2234cfaa6148bdbd2ff47e5df83f92080f2784fd2dd9897c6', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/50e97fe9-a388-4090-97ce-01cd3d4bb2e7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010410', 'rdfs:label': 'B.30', 'dcterms:title': 'ME EQUIPMENT components and general assembly', 'trans:checksum': '5248453bb08fc1257fcb867bc67179f5160322396f7bddc81f8593683e376809', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9a42255e-e398-41bd-9952-09c972092216', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010413', 'rdfs:label': 'B.31', 'dcterms:title': 'MAINS PARTS, components and layout', 'trans:checksum': '0e18bd5e4acb23dc3bc58d0dc1908e35797b6d2fdfb6b282cbbfd3e4b0573663', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d0dceba4-8e9a-4b29-b13a-aff96abe53ad', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010416', 'rdfs:label': 'B.32', 'dcterms:title': 'Insulation other than wire insulation', 'trans:checksum': '02a158181c39e706dfd4ee3a6017ba54c20489b4c0287d82a7d919fe169eaa1f', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/483f4d09-b684-4f2e-93de-cf1cc3307d65', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010419', 'rdfs:label': 'B.33', 'dcterms:title': 'Fire prevention and constructional requirements for fire ENCLOSURES of ME EQUIPMENT', 'trans:checksum': '4101aaae70d7fb32c7be4e066cb9dccfd16e09ab7f4f1d3bd334858d859eb46d', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a2eb51ba-793b-424e-9485-04ea7681ec63', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010422', 'rdfs:label': 'B.34', 'dcterms:title': 'Overflow, spillage, leakage, ingress of water, cleaning, disinfection, sterilization and compatibility with substances used with the ME EQUIPMENT', 'trans:checksum': '033a6c2904c10deba19d9f8150c889adfc2cd49f3f5e14d80671531a0534631b', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/74647e5e-42f2-4b7a-8515-9c59db3f7401', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010425', 'rdfs:label': 'B.35', 'dcterms:title': 'CATEGORY AP and CATEGORY APG ME EQUIPMENT', 'trans:checksum': '75614afccef639064440d9e5fc6f19f21636a00698ee7decc9e7cffce090d5e8', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/bd545584-4f0b-4019-8094-ceca85412251', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010428', 'rdfs:label': 'B.36', 'dcterms:title': 'VERIFICATION of markings', 'trans:checksum': '51c08f1eeab5d505791fc46f9433b9f9415d0062c800485888251e47c4b83624', 'withinClause': 'http://smart.iec.ch/clause/4222aa9b-d357-44b8-a170-3dfcac871df0', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5dfd1609-2fee-46c5-9f1e-964f6fb49c74', '@type': 'corext:Annex', 'trans:sortKey': 'IEC60601120050000010431', 'rdfs:label': 'Annex C', 'dcterms:title': 'Guide to marking and labelling requirements for ME EQUIPMENT and ME SYSTEMS', 'comprisesClause': ['http://smart.iec.ch/clause/ef029d5c-6e5d-4ad8-a181-1b9c30db13a3', 'http://smart.iec.ch/clause/6c3b211d-783b-4d67-b887-65b8a1fd9110', 'http://smart.iec.ch/clause/8eccc867-8ddc-4ed7-a2d1-361ac1d8e0d3', 'http://smart.iec.ch/clause/ac283920-ad27-41df-bfa3-63424987cb8c', 'http://smart.iec.ch/clause/b24a425f-6c3b-49a6-a5fb-f1116c5c3195', 'http://smart.iec.ch/clause/27ea8f28-baa6-49af-95dc-84e5a27567ac'], 'trans:checksum': 'dbe5cf7785e9fa8af3656d1da53f52e38b8f2ee210222367b5cb05ea38009462', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b24a425f-6c3b-49a6-a5fb-f1116c5c3195', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010432', 'rdfs:label': 'C.1', 'dcterms:title': 'Marking on the outside of ME EQUIPMENT, ME SYSTEMS or their parts', 'trans:checksum': '6d8d0140ef377d76369d66098823caa4bbc7eb1721f4f891afa38bf76f198e68', 'withinClause': 'http://smart.iec.ch/clause/5dfd1609-2fee-46c5-9f1e-964f6fb49c74', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6c3b211d-783b-4d67-b887-65b8a1fd9110', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010438', 'rdfs:label': 'C.2', 'dcterms:title': 'Marking on the inside of ME EQUIPMENT, ME SYSTEMS or their parts', 'trans:checksum': '3c25cd1c6f16771c78c31c3c56eed08faf1bd7c76573fbe6c2aea2143a1799db', 'withinClause': 'http://smart.iec.ch/clause/5dfd1609-2fee-46c5-9f1e-964f6fb49c74', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ef029d5c-6e5d-4ad8-a181-1b9c30db13a3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010444', 'rdfs:label': 'C.3', 'dcterms:title': 'Marking of controls and instruments', 'trans:checksum': '65fa90411cd0293cb20a2fb4f4d80a7192a11e78ba5271cc72efc972b4929746', 'withinClause': 'http://smart.iec.ch/clause/5dfd1609-2fee-46c5-9f1e-964f6fb49c74', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ac283920-ad27-41df-bfa3-63424987cb8c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010449', 'rdfs:label': 'C.4', 'dcterms:title': 'ACCOMPANYING DOCUMENTS, general', 'trans:checksum': '5e816e27a2b292da3f2fba7dc4aecdcbf383613a65804fe61cde01acf6cb2e0f', 'withinClause': 'http://smart.iec.ch/clause/5dfd1609-2fee-46c5-9f1e-964f6fb49c74', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/27ea8f28-baa6-49af-95dc-84e5a27567ac', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010454', 'rdfs:label': 'C.5', 'dcterms:title': 'ACCOMPANYING DOCUMENTS, Instructions for use', 'trans:checksum': '5d91cb5b4b800ca3e9e10e1ef397dbd56b487006bd84e1874ae69e2eb9624da5', 'withinClause': 'http://smart.iec.ch/clause/5dfd1609-2fee-46c5-9f1e-964f6fb49c74', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8eccc867-8ddc-4ed7-a2d1-361ac1d8e0d3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010459', 'rdfs:label': 'C.6', 'dcterms:title': 'ACCOMPANYING DOCUMENTS, technical description', 'trans:checksum': '06247a4b9b2f1b445bf933dc371f73c4bb008508f8117cc5c85235ebff0d64e0', 'withinClause': 'http://smart.iec.ch/clause/5dfd1609-2fee-46c5-9f1e-964f6fb49c74', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3da31b04-747c-4672-bd01-e41b93a9240c', '@type': 'corext:Annex', 'trans:sortKey': 'IEC60601120050000010464', 'rdfs:label': 'Annex D', 'dcterms:title': 'Symbols on marking (see Clause 7)', 'trans:checksum': 'ce4fafc9454e5aaa4ae26dad02e564dea5d60fe48495edc57a8953cf4c583fdf', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b0b6685b-78ce-4c32-afa2-f3250c2c0f56', '@type': 'corext:Annex', 'trans:sortKey': 'IEC60601120050000010559', 'rdfs:label': 'Annex E', 'dcterms:title': 'Examples of the connection of the measuring device ( MD) for measurement of the PATIENT LEAKAGE CURRENT and PATIENT AUXILIARY CURRENT(see 8.7)', 'trans:checksum': '37b8392e3718e394cfab28015b00a3bcf2c759317819df6a8d35ec0d16cbf303', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1a0bf41a-bb6c-460f-ba0d-52e5dc486114', '@type': 'corext:Annex', 'trans:sortKey': 'IEC60601120050000010572', 'rdfs:label': 'Annex F', 'dcterms:title': 'Suitable measuring supply circuits', 'trans:checksum': '96a2cdde136be4c870a90dc3ed69f17ec70225b7759553b7e4d40f8fbd8a5765', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8dd890af-5403-48c5-837a-63c1ef795cfb', '@type': 'corext:Annex', 'trans:sortKey': 'IEC60601120050000010585', 'rdfs:label': 'Annex G', 'dcterms:title': 'Protection against HAZARDS of ignition of flammable anaesthetic mixtures', 'hasMeasurement': ['http://smart.iec.ch/measurement/eb893b40-20db-44ad-90bc-600d87326a9a'], 'comprisesClause': ['http://smart.iec.ch/clause/7b3ce590-dc0e-4107-934c-8758df1ddc19', 'http://smart.iec.ch/clause/2d369ed1-33a1-4915-83c3-b6f0c48a63b3', 'http://smart.iec.ch/clause/5c2c4cc6-dbf7-4b9b-9be7-a0fc7ba8378f', 'http://smart.iec.ch/clause/838c3c6c-20b2-4391-88b1-809f58c623c7', 'http://smart.iec.ch/clause/5af89035-8692-4550-8911-2c90f4471408', 'http://smart.iec.ch/clause/b2d8beab-1b3b-440b-a96e-0f58428703ac', 'http://smart.iec.ch/clause/2eec0164-d2fb-496b-9e19-f11fd1a6cf2c'], 'trans:checksum': 'cbbf7c06472155f2a75bc6210b309d0c253db910ccca6689d91c1f2e671da85d', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5c2c4cc6-dbf7-4b9b-9be7-a0fc7ba8378f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010590', 'rdfs:label': 'G.1', 'dcterms:title': 'Introduction', 'comprisesClause': ['http://smart.iec.ch/clause/854c058d-e1f7-488a-94c5-9fef5b1a3dc8', 'http://smart.iec.ch/clause/d35b2260-e691-497a-8ae6-0d17dd05189a', 'http://smart.iec.ch/clause/104fde4c-a718-4de2-8eb6-d3ffee626734'], 'trans:checksum': 'f16d6dcd253777b40f7027ad9d4808bd6b0d87050b465952ffbe1659e7c975a3', 'withinClause': 'http://smart.iec.ch/clause/8dd890af-5403-48c5-837a-63c1ef795cfb', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/854c058d-e1f7-488a-94c5-9fef5b1a3dc8', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010591', 'rdfs:label': 'G.1.1', 'dcterms:title': 'Applicability', 'trans:checksum': 'c53dc341843596ffbf3836d911fc2bdd14d141d1ff49d2514af7d34048640371', 'withinClause': 'http://smart.iec.ch/clause/5c2c4cc6-dbf7-4b9b-9be7-a0fc7ba8378f', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/104fde4c-a718-4de2-8eb6-d3ffee626734', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010603', 'rdfs:label': 'G.1.2', 'dcterms:title': 'Industrial equipment and components', 'trans:checksum': '46807d6b533dfc3e506ce957b40e0f7831cc8156c7f23c2e26f53eeba1b12a04', 'withinClause': 'http://smart.iec.ch/clause/5c2c4cc6-dbf7-4b9b-9be7-a0fc7ba8378f', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d35b2260-e691-497a-8ae6-0d17dd05189a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010621', 'rdfs:label': 'G.1.3', 'dcterms:title': 'Requirements for ME EQUIPMENT', 'trans:checksum': 'c99e28fa8bbec8471c5b510c43017397902423d64f42ee5f288786ff1ae109e0', 'withinClause': 'http://smart.iec.ch/clause/5c2c4cc6-dbf7-4b9b-9be7-a0fc7ba8378f', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5af89035-8692-4550-8911-2c90f4471408', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010645', 'rdfs:label': 'G.2', 'dcterms:title': 'Locations and basic requirements', 'comprisesClause': ['http://smart.iec.ch/clause/ace0d5dc-9161-4679-98d5-829d7d202a01', 'http://smart.iec.ch/clause/5e39c595-649a-4cb8-b7de-5e6ac08f4e81', 'http://smart.iec.ch/clause/18aa56d8-19d1-4e05-ac33-19568ad1ec19', 'http://smart.iec.ch/clause/570401ba-550a-4a44-b410-746a4cb9087b', 'http://smart.iec.ch/clause/a5abbbc4-ac1b-48a9-be11-107d51cb7db2'], 'trans:checksum': '5979366ba95adf98ef1252fa32ba0f7d66d75d75e1639e2729c3836bd210c00b', 'withinClause': 'http://smart.iec.ch/clause/8dd890af-5403-48c5-837a-63c1ef795cfb', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a5abbbc4-ac1b-48a9-be11-107d51cb7db2', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010646', 'rdfs:label': 'G.2.1', 'dcterms:title': 'Parts of CATEGORY APG ME EQUIPMENT', 'hasTest': ['http://smart.iec.ch/test/007235f9-100d-4cb6-9515-2d3f70f0d265'], 'trans:checksum': 'd13b946c78357988a4184a609247d49d9cf2165df09e665c4f25eab75a7c46d9', 'withinClause': 'http://smart.iec.ch/clause/5af89035-8692-4550-8911-2c90f4471408', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ace0d5dc-9161-4679-98d5-829d7d202a01', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010649', 'rdfs:label': 'G.2.2', 'dcterms:title': 'FLAMMABLE ANAESTHETIC MIXTURE WITH AIR', 'hasTest': ['http://smart.iec.ch/test/98e3bda3-690d-4b6d-be3d-a779577814bf'], 'trans:checksum': '9458c219818b1ea783661e63380d9a25cfdf80c6af985405758a4f3f9c23298f', 'withinClause': 'http://smart.iec.ch/clause/5af89035-8692-4550-8911-2c90f4471408', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/18aa56d8-19d1-4e05-ac33-19568ad1ec19', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010652', 'rdfs:label': 'G.2.3', 'dcterms:title': 'FLAMMABLE ANAESTHETIC MIXTURE WITH OXYGEN OR NITROUS OXIDE', 'trans:checksum': '4b41b9a8457d9b2d49e5dab6f8bb67fa814bc7eac33a307199fc116d51dd7357', 'withinClause': 'http://smart.iec.ch/clause/5af89035-8692-4550-8911-2c90f4471408', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5e39c595-649a-4cb8-b7de-5e6ac08f4e81', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010656', 'rdfs:label': 'G.2.4', 'dcterms:title': 'ME EQUIPMENT specified for use with FLAMMABLE ANAESTHETIC MIXTURE WITH AIR', 'hasTest': ['http://smart.iec.ch/test/2c6227f0-d157-4f50-bdb9-64512601eb68'], 'trans:checksum': '8e327821808d33e5aa3c111b35933844ff8cd3c549a558c14a7d7f030474e83c', 'withinClause': 'http://smart.iec.ch/clause/5af89035-8692-4550-8911-2c90f4471408', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/570401ba-550a-4a44-b410-746a4cb9087b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010659', 'rdfs:label': 'G.2.5', 'dcterms:title': 'ME EQUIPMENT specified for use with FLAMMABLE ANAESTHETIC MIXTURE WITH OXYGEN OR NITROUS OXIDE', 'hasTest': ['http://smart.iec.ch/test/8299994c-f125-43fc-864b-7935a4862647', 'http://smart.iec.ch/test/9e139d33-f58d-4b80-8720-d7b3e5671b51'], 'trans:checksum': '2317600f87dc52d0911bbe69416db97b941c760d24dce2530757cd41b50e9cef', 'withinClause': 'http://smart.iec.ch/clause/5af89035-8692-4550-8911-2c90f4471408', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7b3ce590-dc0e-4107-934c-8758df1ddc19', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010666', 'rdfs:label': 'G.3', 'dcterms:title': 'Marking, ACCOMPANYING DOCUMENTS', 'comprisesClause': ['http://smart.iec.ch/clause/5f2f68ab-2365-40b1-b360-4dd5a000dc8e', 'http://smart.iec.ch/clause/9e817d7b-6722-4668-961d-f44d91254755', 'http://smart.iec.ch/clause/c8acc7f4-6ff4-43ac-a5c4-b3d7ad55e65f', 'http://smart.iec.ch/clause/5c60e3a8-a9e0-4fa2-8116-4d0f1a766f9f', 'http://smart.iec.ch/clause/c23a3404-53fb-44dc-95c1-506ab550abad'], 'trans:checksum': '56f8c1c8fcb8417fc52ef925a84eabcd9f92c3b67b7c79d75ae5af12b50ffde9', 'withinClause': 'http://smart.iec.ch/clause/8dd890af-5403-48c5-837a-63c1ef795cfb', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c8acc7f4-6ff4-43ac-a5c4-b3d7ad55e65f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010667', 'rdfs:label': 'G.3.1', 'dcterms:title': 'CATEGORY APG marking', 'hasTest': ['http://smart.iec.ch/test/502675fd-cfeb-4dba-9db7-ae4385d72265', 'http://smart.iec.ch/test/743df07e-4a41-4cfe-b90f-446db66bf1ee', 'http://smart.iec.ch/test/ba24b394-e3e0-4218-9d5c-ee1cef4ea5da', 'http://smart.iec.ch/test/d3270480-dafc-4914-ba00-f504010dbcc0'], 'trans:checksum': '9e500e210a502f5d717e7003902c319c3eb54f3d1c4eaf09f3753d4efe08d329', 'withinClause': 'http://smart.iec.ch/clause/7b3ce590-dc0e-4107-934c-8758df1ddc19', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5f2f68ab-2365-40b1-b360-4dd5a000dc8e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010675', 'rdfs:label': 'G.3.2', 'dcterms:title': 'CATEGORY AP marking', 'hasTest': ['http://smart.iec.ch/test/1be5297f-5dc1-42dc-a08d-eaca7c9d55fe', 'http://smart.iec.ch/test/76cc49f7-22f8-4904-90ee-e5a33f670e2c', 'http://smart.iec.ch/test/7f6015f2-978e-4aa5-a132-1135df22fa0f', 'http://smart.iec.ch/test/b51788c4-cabe-4508-8adc-acc60d4b7c98'], 'trans:checksum': '989f88b36107e76d53cd0f83d3b498d7d9b0687bad2b31ffed1a1c5ed47f6223', 'withinClause': 'http://smart.iec.ch/clause/7b3ce590-dc0e-4107-934c-8758df1ddc19', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5c60e3a8-a9e0-4fa2-8116-4d0f1a766f9f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010683', 'rdfs:label': 'G.3.3', 'dcterms:title': 'Placement of markings', 'hasTest': ['http://smart.iec.ch/test/b4c42618-6981-4875-964b-bed96ff5cc16'], 'trans:checksum': 'de8b4fadb1840b8d6a141cbe7584cd1570187315fd4699e7da635a3de176af29', 'withinClause': 'http://smart.iec.ch/clause/7b3ce590-dc0e-4107-934c-8758df1ddc19', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9e817d7b-6722-4668-961d-f44d91254755', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010689', 'rdfs:label': 'G.3.4', 'dcterms:title': 'ACCOMPANYING DOCUMENTS', 'hasTest': ['http://smart.iec.ch/test/c460c8cd-c2d4-4fba-9adc-25831f431248'], 'trans:checksum': '292f0c60d529f2cd33d2846685ac30dc5202d851fe1f79c7f36e3205bb6be24a', 'withinClause': 'http://smart.iec.ch/clause/7b3ce590-dc0e-4107-934c-8758df1ddc19', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c23a3404-53fb-44dc-95c1-506ab550abad', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010694', 'rdfs:label': 'G.3.5', 'dcterms:title': 'Marking when parts of ME EQUIPMENT are CATEGORY AP or CATEGORY APG', 'hasTest': ['http://smart.iec.ch/test/9ecd7fb8-15b6-4f83-9480-98284d05e830'], 'trans:checksum': 'b680c4433fe11a5694077d8d7e9f03d8a57f0393a23d079055145f3efc743990', 'withinClause': 'http://smart.iec.ch/clause/7b3ce590-dc0e-4107-934c-8758df1ddc19', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b2d8beab-1b3b-440b-a96e-0f58428703ac', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010699', 'rdfs:label': 'G.4', 'dcterms:title': 'Common requirements for CATEGORY AP and CATEGORY APG ME EQUIPMENT', 'comprisesClause': ['http://smart.iec.ch/clause/86eae357-d420-4a19-80c7-e359fd7d946a', 'http://smart.iec.ch/clause/b9490848-79b2-4a32-ada7-5b6e58446bfa', 'http://smart.iec.ch/clause/c5e0dfd0-7b9e-4bbe-a8ad-b6e9b5656597', 'http://smart.iec.ch/clause/fa78c5f3-a555-4530-a44e-2adf022b5050'], 'trans:checksum': '63205ea6143e823fffa139ab80781cc505fa5f4bd266d049e2a2defed5051e59', 'withinClause': 'http://smart.iec.ch/clause/8dd890af-5403-48c5-837a-63c1ef795cfb', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/fa78c5f3-a555-4530-a44e-2adf022b5050', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010700', 'rdfs:label': 'G.4.1', 'dcterms:title': 'Electrical connections', 'hasTest': ['http://smart.iec.ch/test/707cfb06-c24f-446d-9d2f-2603bc3b04b1', 'http://smart.iec.ch/test/8802e30f-ef55-4d98-8ce0-dbe574f0119a', 'http://smart.iec.ch/test/d6b7c445-2019-4799-b509-2e2f4697c1c1'], 'trans:checksum': 'b2fa141a3415a7e5ab8e8a2b5f41b041de31955ee833250555a8da4854591bbe', 'withinClause': 'http://smart.iec.ch/clause/b2d8beab-1b3b-440b-a96e-0f58428703ac', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c5e0dfd0-7b9e-4bbe-a8ad-b6e9b5656597', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010713', 'rdfs:label': 'G.4.2', 'dcterms:title': 'Construction details', 'hasTest': ['http://smart.iec.ch/test/03910687-c150-476e-85ff-d5eb57349f5e', 'http://smart.iec.ch/test/2592f512-dcef-48a3-9905-769d09f0a14b', 'http://smart.iec.ch/test/37887075-a5ff-4055-8d59-7000469ca521', 'http://smart.iec.ch/test/a2a11a30-63f5-4571-96b7-ab2da77063db', 'http://smart.iec.ch/test/f94a4740-11a4-4146-92ed-1ffa7005f47c', 'http://smart.iec.ch/test/fcff2a57-31c5-4741-af07-df828f382a94'], 'trans:checksum': '1b8aa48214037253d58c075d554a437ae36f51c609fb37d089ba93217ce6c140', 'withinClause': 'http://smart.iec.ch/clause/b2d8beab-1b3b-440b-a96e-0f58428703ac', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/b9490848-79b2-4a32-ada7-5b6e58446bfa', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010740', 'rdfs:label': 'G.4.3', 'dcterms:title': 'Prevention of electrostatic charges', 'hasTest': ['http://smart.iec.ch/test/13bb71d4-281c-4114-96e1-4f4e50fb1474', 'http://smart.iec.ch/test/bee1d696-52f4-4203-a439-8ff47fd7627f', 'http://smart.iec.ch/test/d69d1b57-1b00-4f0e-a162-38061794a444', 'http://smart.iec.ch/test/db562d4b-a5f2-4080-8365-a84d0c37fa47'], 'hasMeasurement': ['http://smart.iec.ch/measurement/3f9df679-d429-499b-8147-bf148685c266'], 'trans:checksum': '1d4c4dabc68c3959312a11e912523fc6f50747ad4e4ffe6052d149810035b5ab', 'withinClause': 'http://smart.iec.ch/clause/b2d8beab-1b3b-440b-a96e-0f58428703ac', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/86eae357-d420-4a19-80c7-e359fd7d946a', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010757', 'rdfs:label': 'G.4.4', 'dcterms:title': 'Corona', 'hasTest': ['http://smart.iec.ch/test/37cf0a2e-b583-4250-86ab-195b96919682'], 'trans:checksum': '5db1d5aa6a4b6ff5b9c041512143c3203998258332bf7da9198d0c25fe18b7f0', 'withinClause': 'http://smart.iec.ch/clause/b2d8beab-1b3b-440b-a96e-0f58428703ac', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2eec0164-d2fb-496b-9e19-f11fd1a6cf2c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010762', 'rdfs:label': 'G.5', 'dcterms:title': 'Requirements and tests for CATEGORY AP ME EQUIPMENT, parts and components thereof', 'comprisesClause': ['http://smart.iec.ch/clause/917dbcb8-a2aa-4ab3-a63c-c632d9b322c6', 'http://smart.iec.ch/clause/3ab0dcb4-fc40-4da2-9a1e-9411c0ffbfda', 'http://smart.iec.ch/clause/fc4f4650-bf7a-453d-a2ee-77c2b757037f', 'http://smart.iec.ch/clause/691a6ccc-fcee-41f2-b3e7-23288d72828c', 'http://smart.iec.ch/clause/5e6c27ee-6934-4bde-a502-6bfab750190e'], 'trans:checksum': '5f6bbb53ab8fb140430d646b170511bcd1bf928000490202b7c39aaef13bd463', 'withinClause': 'http://smart.iec.ch/clause/8dd890af-5403-48c5-837a-63c1ef795cfb', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/691a6ccc-fcee-41f2-b3e7-23288d72828c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010763', 'rdfs:label': 'G.5.1', 'dcterms:title': 'General', 'hasTest': ['http://smart.iec.ch/test/01676211-3824-49a8-9cc2-03a03323ce82', 'http://smart.iec.ch/test/ec555561-0279-4ebf-a1be-5f7dcd777e4f'], 'trans:checksum': '25603ad0eef6ac46599806e1d786c904ecaf6169992c48f9e16f5ae0e5111909', 'withinClause': 'http://smart.iec.ch/clause/2eec0164-d2fb-496b-9e19-f11fd1a6cf2c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/fc4f4650-bf7a-453d-a2ee-77c2b757037f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010770', 'rdfs:label': 'G.5.2', 'dcterms:title': 'Temperature limits', 'trans:checksum': '657bfd79403da52b9d227408cf4f8880804e0662229f3546d885a2c283220df5', 'withinClause': 'http://smart.iec.ch/clause/2eec0164-d2fb-496b-9e19-f11fd1a6cf2c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3ab0dcb4-fc40-4da2-9a1e-9411c0ffbfda', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010775', 'rdfs:label': 'G.5.3', 'dcterms:title': 'Low-energy circuits', 'hasTest': ['http://smart.iec.ch/test/05dcd6cc-f396-4bd2-9cba-a9ed96a319f3', 'http://smart.iec.ch/test/06fade78-0b3a-4135-b980-482bc7b89835', 'http://smart.iec.ch/test/1531a768-73a4-431f-9266-2b34e1db8dff', 'http://smart.iec.ch/test/2c91920a-e186-4aee-929b-05f13eb12e7f', 'http://smart.iec.ch/test/309a8bd6-b4d6-44a1-bd6b-69d597e15b18', 'http://smart.iec.ch/test/44321f9e-2f90-49ec-8464-fa598f4b751a', 'http://smart.iec.ch/test/4cafb891-8c3c-4455-a0ed-2dbacfda18c0', 'http://smart.iec.ch/test/6eadf58a-cd5a-46fe-baf7-0907497f13e7', 'http://smart.iec.ch/test/7354e7f3-be3d-4e8f-8a13-e0635ec5bfc5', 'http://smart.iec.ch/test/7d4f6c8c-2f88-4d82-bb51-49810c4b9239', 'http://smart.iec.ch/test/9ae6c089-2e60-4ecf-9878-48c01b379d9b', 'http://smart.iec.ch/test/9ec8bab5-7909-4e30-af71-caa247b71517', 'http://smart.iec.ch/test/ae6532b3-ee98-4d6a-b568-3708d6d015e0', 'http://smart.iec.ch/test/b1ce2182-bbe2-4c0c-89d0-2674de6c2225', 'http://smart.iec.ch/test/ba113dba-239b-4425-8c14-51c58b7e5084', 'http://smart.iec.ch/test/d19a1a38-36c0-464c-a392-e0ba47a48feb', 'http://smart.iec.ch/test/e1b8d0b1-a84a-4fcc-996c-eb345d2ab3d9', 'http://smart.iec.ch/test/ea3726c6-6ffa-4b5a-a9b3-38366234196a', 'http://smart.iec.ch/test/ed3a7e02-0f3c-4f4c-8c35-b61a24b39502'], 'trans:checksum': 'd2e74ac3e28a3058965fa24fea461da304366731b70875f572b68f65d00da04b', 'withinClause': 'http://smart.iec.ch/clause/2eec0164-d2fb-496b-9e19-f11fd1a6cf2c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5e6c27ee-6934-4bde-a502-6bfab750190e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010838', 'rdfs:label': 'G.5.4', 'dcterms:title': 'External ventilation with internal overpressure', 'hasTest': ['http://smart.iec.ch/test/31c6ee90-a55e-4553-a330-e9f365259863', 'http://smart.iec.ch/test/46f8f690-1a55-4673-912a-2cfab5420a83', 'http://smart.iec.ch/test/77854f5b-ac20-49e1-8cf7-4735b108d4ed', 'http://smart.iec.ch/test/7f2bcbc3-eabf-4c1e-b95b-28e2efdb1df8', 'http://smart.iec.ch/test/90e1088f-af29-4936-b352-53de2410c644', 'http://smart.iec.ch/test/ac2f0fdf-8cf0-46ed-9bd2-bc0ea6bdf9da', 'http://smart.iec.ch/test/b28514f3-2f59-40ce-9a60-485cae749d52', 'http://smart.iec.ch/test/b285ac51-a118-4de8-8cf1-5c2ed12bb1b0'], 'trans:checksum': 'cfd8f162e65975a1ca0a7cd64b4123f77c31e8030a13852d2815aa9bad64c973', 'withinClause': 'http://smart.iec.ch/clause/2eec0164-d2fb-496b-9e19-f11fd1a6cf2c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/917dbcb8-a2aa-4ab3-a63c-c632d9b322c6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010860', 'rdfs:label': 'G.5.5', 'dcterms:title': 'ENCLOSURES with restricted breathing', 'hasTest': ['http://smart.iec.ch/test/2c6ad128-0077-4e70-a080-abcb6ce4d605', 'http://smart.iec.ch/test/31b1430b-0e13-4ee3-be1f-938fef591be5', 'http://smart.iec.ch/test/3cd35d81-a83e-409b-b4d3-dd4372a027be', 'http://smart.iec.ch/test/51ada3ff-26c0-49cf-aea0-71844adde2ee', 'http://smart.iec.ch/test/655176b2-b619-4775-838a-95a6175fe042', 'http://smart.iec.ch/test/911c5e40-52f9-4fe3-a21c-10a884c0be7f', 'http://smart.iec.ch/test/b911a8b1-1e4e-4f4c-a4e5-c3c8a2ede9d9', 'http://smart.iec.ch/test/bc557328-db46-4116-aef3-f14532897ad9', 'http://smart.iec.ch/test/e1463a33-75fa-48c9-95dc-10327d369331'], 'trans:checksum': 'c539227f1d7b2a8d8792e2bd33838217d9b73af43b94576a35fe208ea5d4816b', 'withinClause': 'http://smart.iec.ch/clause/2eec0164-d2fb-496b-9e19-f11fd1a6cf2c', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/838c3c6c-20b2-4391-88b1-809f58c623c7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010886', 'rdfs:label': 'G.6', 'dcterms:title': 'Requirements and tests for CATEGORY APG ME EQUIPMENT, parts and components thereof', 'hasTest': ['http://smart.iec.ch/test/c318b318-bd6d-4e12-909b-c643e0f37da7'], 'comprisesClause': ['http://smart.iec.ch/clause/11cc1c07-fd84-4102-9384-8fc1da2d5273', 'http://smart.iec.ch/clause/bda728e2-df28-4b40-81a7-6f5942e1cf6f', 'http://smart.iec.ch/clause/24e1421a-e10a-473c-8e93-d338749b7689', 'http://smart.iec.ch/clause/4b906438-22e3-41f1-895a-b037f5512d84'], 'trans:checksum': 'cfb7b7f70fc14b3b955f94cf0a07bb93821f563e73ec97b04e364a71831a276c', 'withinClause': 'http://smart.iec.ch/clause/8dd890af-5403-48c5-837a-63c1ef795cfb', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/24e1421a-e10a-473c-8e93-d338749b7689', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010887', 'rdfs:label': 'G.6.1', 'dcterms:title': 'General', 'hasTest': ['http://smart.iec.ch/test/790db59f-5061-475e-9654-38ee64fe032f', 'http://smart.iec.ch/test/8abb4702-9eba-4ac3-ac11-d2af69455909'], 'trans:checksum': 'b5d9f4fdfb3b79c987521569129c742734a7dfb1da9acbaadb326ed86d2dddc8', 'withinClause': 'http://smart.iec.ch/clause/838c3c6c-20b2-4391-88b1-809f58c623c7', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/bda728e2-df28-4b40-81a7-6f5942e1cf6f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010893', 'rdfs:label': 'G.6.2', 'dcterms:title': 'Power supply', 'hasTest': ['http://smart.iec.ch/test/28785431-d3b1-49bd-b0a0-73d4c1b82d54'], 'trans:checksum': 'dde936bc4f1ff707c565d247a7846a40abdd5e6febb6f6eed1f7d03bb9691aad', 'withinClause': 'http://smart.iec.ch/clause/838c3c6c-20b2-4391-88b1-809f58c623c7', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4b906438-22e3-41f1-895a-b037f5512d84', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010898', 'rdfs:label': 'G.6.3', 'dcterms:title': 'Temperatures and low-energy circuits', 'hasTest': ['http://smart.iec.ch/test/088351a0-d951-47d4-ad89-e01579978516', 'http://smart.iec.ch/test/17d21bc5-9a5c-4d0b-bb9e-118d6b4cef19', 'http://smart.iec.ch/test/3ea91d66-2a33-4f5a-9d86-56584240649d', 'http://smart.iec.ch/test/4c0e4de4-093e-4504-828a-52b9593b7f1f', 'http://smart.iec.ch/test/4c81f775-9884-4edf-bb5e-d24afd5d84df', 'http://smart.iec.ch/test/60bda119-7df6-4377-9160-9cca213a3863', 'http://smart.iec.ch/test/7272c48d-d87b-4721-a469-e02b46823474', 'http://smart.iec.ch/test/7701b948-dae3-4300-a42c-8d726a74e30f', 'http://smart.iec.ch/test/879cf068-ea05-4034-993c-9d21dcea6370', 'http://smart.iec.ch/test/8f6989c4-b895-4bc0-a2b9-88f7ac647ab0', 'http://smart.iec.ch/test/92cda353-ce90-4763-80c0-7a07f6d0f6a7', 'http://smart.iec.ch/test/98784695-6a3d-452f-93f3-b65102d5de9b', 'http://smart.iec.ch/test/a2264b89-fa68-4064-9139-8b6cff5e5a0a', 'http://smart.iec.ch/test/a72220e3-666d-438e-9139-049670702e9a', 'http://smart.iec.ch/test/b3fc4f1e-0767-46b0-8a4c-b13b67f8f5f6', 'http://smart.iec.ch/test/dd78c322-88a2-429d-b6f0-f0ab2efbe5ee', 'http://smart.iec.ch/test/e4abfe5c-20db-4ef5-9a98-ee97cf709a0c', 'http://smart.iec.ch/test/ed02570e-fc5d-4c06-ae24-f874f28c6259', 'http://smart.iec.ch/test/f6acd8ef-11f1-494a-97fc-34c307fa7877', 'http://smart.iec.ch/test/f7ae7e70-69e5-46f9-97fc-e08ae8cb2667', 'http://smart.iec.ch/test/faa44d7b-e99b-43aa-ac0f-ba5a1d4333ae'], 'trans:checksum': '9c19a6e9c4d0603f3b20ed2028e0851abbe4810721937a5c87b8f3c2cc110c58', 'withinClause': 'http://smart.iec.ch/clause/838c3c6c-20b2-4391-88b1-809f58c623c7', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/11cc1c07-fd84-4102-9384-8fc1da2d5273', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010959', 'rdfs:label': 'G.6.4', 'dcterms:title': 'Heating elements', 'hasTest': ['http://smart.iec.ch/test/9ce6d107-e3a7-446f-94b2-6fbe854e2843', 'http://smart.iec.ch/test/d7d2599b-fdb4-49c1-a7cb-6304f86da210'], 'trans:checksum': 'f42e9dea5be34d1cecb7afab40a4ffe8669aba833853275c39c92070294caa90', 'withinClause': 'http://smart.iec.ch/clause/838c3c6c-20b2-4391-88b1-809f58c623c7', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/2d369ed1-33a1-4915-83c3-b6f0c48a63b3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000010968', 'rdfs:label': 'G.7', 'dcterms:title': 'Test apparatus for flammable mixtures', 'hasTest': ['http://smart.iec.ch/test/51a03907-dcb6-45b4-856d-2127fe52193d'], 'trans:checksum': '4ca36d7638134c5734334838cb5ddf8596f00cadaaa7b8ca2ff92e86981ed59a', 'withinClause': 'http://smart.iec.ch/clause/8dd890af-5403-48c5-837a-63c1ef795cfb', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a7d6937f-2aa1-401c-a52e-1567003f18b8', '@type': 'corext:Annex', 'trans:sortKey': 'IEC60601120050000010999', 'rdfs:label': 'Annex H', 'dcterms:title': 'PEMS structure, PEMS DEVELOPMENT LIFE-CYCLE and documentation', 'comprisesClause': ['http://smart.iec.ch/clause/ec7e861a-ec5d-4377-aced-201d7e99c7c7', 'http://smart.iec.ch/clause/eef03b00-4079-4890-be11-4d209ad3be4c', 'http://smart.iec.ch/clause/c4fb2424-2d7d-4e19-99fc-6c0c53ad5984', 'http://smart.iec.ch/clause/60830af8-0992-4e28-91bc-884690fdcb9f', 'http://smart.iec.ch/clause/ce8a6e48-b9e7-4eba-9353-10a2cbb2e47b', 'http://smart.iec.ch/clause/e16f75c8-93b7-41f9-9d11-eb03e69457d1', 'http://smart.iec.ch/clause/480d5e3d-fbf6-4a77-9adc-0d297ad42cc7'], 'trans:checksum': '828f86f6c95b8fb94ba67fe992b608a06fcf551faceb969c97f52dfcc39a03af', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ce8a6e48-b9e7-4eba-9353-10a2cbb2e47b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011000', 'rdfs:label': 'H.1', 'dcterms:title': 'Examples for PEMS/ PESS structures', 'trans:checksum': 'f7da2596bbbced32279bb8308ed0603983bec567b9d60249026c5a7f5b8c0868', 'withinClause': 'http://smart.iec.ch/clause/a7d6937f-2aa1-401c-a52e-1567003f18b8', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/eef03b00-4079-4890-be11-4d209ad3be4c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011031', 'rdfs:label': 'H.2', 'dcterms:title': 'pems DEVELOPMENT LIFE-CYCLE model', 'trans:checksum': '4dd9b713fc2b051cf3446b7b4a3030af6655f9860c68ab08ad3a5e29102d231a', 'withinClause': 'http://smart.iec.ch/clause/a7d6937f-2aa1-401c-a52e-1567003f18b8', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/60830af8-0992-4e28-91bc-884690fdcb9f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011084', 'rdfs:label': 'H.3', 'dcterms:title': 'Software PROCESSES', 'comprisesClause': ['http://smart.iec.ch/clause/fc68724e-aa27-4ab9-a9d7-bbd21538d3b3', 'http://smart.iec.ch/clause/aa525ed6-bd81-4fab-97c4-ee8eda23be9c', 'http://smart.iec.ch/clause/4f34ef41-4b60-42b1-b0f7-052c33c26627', 'http://smart.iec.ch/clause/235f250c-32bc-4a23-8b22-68f30b722f36', 'http://smart.iec.ch/clause/337fe47f-4f96-4466-b293-78bd791eb997', 'http://smart.iec.ch/clause/7b233b5d-7f4e-4482-a8fd-7476e7ca1290'], 'trans:checksum': 'e1e8ade30077d35562f7cccabe8526a3a32ffad2cd28c462cd2798dbecc79039', 'withinClause': 'http://smart.iec.ch/clause/a7d6937f-2aa1-401c-a52e-1567003f18b8', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/fc68724e-aa27-4ab9-a9d7-bbd21538d3b3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011085', 'rdfs:label': 'H.3.1', 'dcterms:title': 'pems development life-cycle', 'trans:checksum': 'd06e65400231055f9b8b636e4ba7e9ac0a4477741e6e226a97e964260a862524', 'withinClause': 'http://smart.iec.ch/clause/60830af8-0992-4e28-91bc-884690fdcb9f', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/aa525ed6-bd81-4fab-97c4-ee8eda23be9c', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011093', 'rdfs:label': 'H.3.2', 'dcterms:title': 'Requirements specification', 'trans:checksum': 'd5d1d8f2aad79c2dc403bcde44c32861d5a5ae98cdb0728d271f9974ef72dc59', 'withinClause': 'http://smart.iec.ch/clause/60830af8-0992-4e28-91bc-884690fdcb9f', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/7b233b5d-7f4e-4482-a8fd-7476e7ca1290', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011134', 'rdfs:label': 'H.3.3', 'dcterms:title': 'Third-party and off-the-shelf ( OTS) software', 'trans:checksum': '5e8b5814fbb77c6091dc6daf7a08cd2bfb8ecf84569e610066eb0852ac52858c', 'withinClause': 'http://smart.iec.ch/clause/60830af8-0992-4e28-91bc-884690fdcb9f', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/337fe47f-4f96-4466-b293-78bd791eb997', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011152', 'rdfs:label': 'H.3.4', 'dcterms:title': 'Integration', 'trans:checksum': '19a4f5df5984e030fa50aa14b3f69b5482e2b629572ecc1cc3ba431e42ebf50e', 'withinClause': 'http://smart.iec.ch/clause/60830af8-0992-4e28-91bc-884690fdcb9f', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4f34ef41-4b60-42b1-b0f7-052c33c26627', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011158', 'rdfs:label': 'H.3.5', 'dcterms:title': 'Configuration management', 'trans:checksum': 'ce395b7f95a1556a0a0e797b122afa805271889faf571d36896458f0cd118f46', 'withinClause': 'http://smart.iec.ch/clause/60830af8-0992-4e28-91bc-884690fdcb9f', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/235f250c-32bc-4a23-8b22-68f30b722f36', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011180', 'rdfs:label': 'H.3.6', 'dcterms:title': 'Modification/change control', 'trans:checksum': '02e6c8a2799162e1995375eb9105541efa079843c7151a9cd5ca702bc8df73b8', 'withinClause': 'http://smart.iec.ch/clause/60830af8-0992-4e28-91bc-884690fdcb9f', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c4fb2424-2d7d-4e19-99fc-6c0c53ad5984', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011199', 'rdfs:label': 'H.4', 'dcterms:title': 'Design and implementation', 'trans:checksum': '7fd2322f5db988845f379d2c47d2887661993f6f3758b2ca2ce65a14f8cf8c10', 'withinClause': 'http://smart.iec.ch/clause/a7d6937f-2aa1-401c-a52e-1567003f18b8', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/480d5e3d-fbf6-4a77-9adc-0d297ad42cc7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011248', 'rdfs:label': 'H.5', 'dcterms:title': 'Documentation', 'trans:checksum': '42287abaa2989aa160928a0040fcc24d02bfe7bc60fd1d95d61b6a15e193f183', 'withinClause': 'http://smart.iec.ch/clause/a7d6937f-2aa1-401c-a52e-1567003f18b8', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ec7e861a-ec5d-4377-aced-201d7e99c7c7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011257', 'rdfs:label': 'H.6', 'dcterms:title': 'NETWORK/DATA COUPLING', 'comprisesClause': ['http://smart.iec.ch/clause/8c38e6b4-a1e0-425f-a9fe-0de99fee7507', 'http://smart.iec.ch/clause/895ce496-f647-41f6-bf31-10676fb11616'], 'trans:checksum': '47775c1e49fcc34b754a9ae558096a216a02078eacd19d87c1cc06172d6ac537', 'withinClause': 'http://smart.iec.ch/clause/a7d6937f-2aa1-401c-a52e-1567003f18b8', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/895ce496-f647-41f6-bf31-10676fb11616', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011258', 'rdfs:label': 'H.6.1', 'dcterms:title': 'General', 'trans:checksum': 'f7345f374eb943f977118ee2b7ffe75f3ad5d558b6928fb29daa324cd73adcf1', 'withinClause': 'http://smart.iec.ch/clause/ec7e861a-ec5d-4377-aced-201d7e99c7c7', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8c38e6b4-a1e0-425f-a9fe-0de99fee7507', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011264', 'rdfs:label': 'H.6.2', 'dcterms:title': 'System integration responsibilities', 'trans:checksum': '88f65f3908b6e1626c37f063d16a141187daa88448305386a07d890441e97018', 'withinClause': 'http://smart.iec.ch/clause/ec7e861a-ec5d-4377-aced-201d7e99c7c7', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e16f75c8-93b7-41f9-9d11-eb03e69457d1', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011320', 'rdfs:label': 'H.7', 'dcterms:title': 'Design considerations for NETWORK/DATA COUPLING', 'comprisesClause': ['http://smart.iec.ch/clause/c89c3510-e9e5-4c8d-9304-3bbc0165f4d7', 'http://smart.iec.ch/clause/a08a861c-332e-4762-85c1-08dd1b31f0ea', 'http://smart.iec.ch/clause/991c243a-eb4d-4e0e-a841-3bbeacd1a8ef', 'http://smart.iec.ch/clause/dd51623a-2e19-4ac5-9285-aba95575bf1f'], 'trans:checksum': '4225c8b067b5ef6f2cd8a3b3572ea1bab20838fdd16e47ee5cddcff538d55b2c', 'withinClause': 'http://smart.iec.ch/clause/a7d6937f-2aa1-401c-a52e-1567003f18b8', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a08a861c-332e-4762-85c1-08dd1b31f0ea', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011321', 'rdfs:label': 'H.7.1', 'dcterms:title': 'Introduction', 'trans:checksum': 'ce9428e8633162defaccc0b244860c16aa9ee6e9320dff232504edcae55b0140', 'withinClause': 'http://smart.iec.ch/clause/e16f75c8-93b7-41f9-9d11-eb03e69457d1', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/991c243a-eb4d-4e0e-a841-3bbeacd1a8ef', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011325', 'rdfs:label': 'H.7.2', 'dcterms:title': 'Causes of HAZARDS associated with NETWORK/DATA COUPLING', 'trans:checksum': 'c5e1c39087d307d676f006fdcca315b94605d6c299a610fd4d87909b58a46a4b', 'withinClause': 'http://smart.iec.ch/clause/e16f75c8-93b7-41f9-9d11-eb03e69457d1', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c89c3510-e9e5-4c8d-9304-3bbc0165f4d7', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011447', 'rdfs:label': 'H.7.3', 'dcterms:title': 'Network classification based on the consequence to the PATIENT', 'comprisesClause': ['http://smart.iec.ch/clause/1462224f-71dc-4e4d-9701-9e0d2de59082', 'http://smart.iec.ch/clause/a8aa3933-c28d-4bf0-82cb-b85a5a9ce117', 'http://smart.iec.ch/clause/c8492f82-7289-4e19-bcea-10e4e97899bd', 'http://smart.iec.ch/clause/f0bdcfc3-5056-4e29-890e-5cc9bf28010e'], 'trans:checksum': 'cd19c2bf2c6981a1ea2a5b314170c5fcb1f685f02b19ed98ba149f0a75347cfa', 'withinClause': 'http://smart.iec.ch/clause/e16f75c8-93b7-41f9-9d11-eb03e69457d1', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/1462224f-71dc-4e4d-9701-9e0d2de59082', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011448', 'rdfs:label': 'H.7.3.1', 'dcterms:title': 'Consequence to the PATIENT', 'trans:checksum': '2ce42405c26c769be6a9ad8898c7d2a56b7c75d100224b22b71e4de586724831', 'withinClause': 'http://smart.iec.ch/clause/c89c3510-e9e5-4c8d-9304-3bbc0165f4d7', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/a8aa3933-c28d-4bf0-82cb-b85a5a9ce117', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011453', 'rdfs:label': 'H.7.3.2', 'dcterms:title': 'Class C NETWORK/DATA COUPLING( PATIENT vital data, time critical)', 'trans:checksum': 'd2673ba926f585057e1f55635c979a9431bac5225aad9eba7a8d0f5792df9fce', 'withinClause': 'http://smart.iec.ch/clause/c89c3510-e9e5-4c8d-9304-3bbc0165f4d7', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/c8492f82-7289-4e19-bcea-10e4e97899bd', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011464', 'rdfs:label': 'H.7.3.3', 'dcterms:title': 'Class B NETWORK/DATA COUPLING( PATIENT vital data, non-time critical)', 'trans:checksum': '26d2e5a87656c298caf674bb17144ce9ce7686c0c069793de45235f61123d6f8', 'withinClause': 'http://smart.iec.ch/clause/c89c3510-e9e5-4c8d-9304-3bbc0165f4d7', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/f0bdcfc3-5056-4e29-890e-5cc9bf28010e', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011478', 'rdfs:label': 'H.7.3.4', 'dcterms:title': 'Class A NETWORK/DATA COUPLING', 'trans:checksum': '9a851bc98780086848c18639bb0492dc1ddafcc166adfd4db65a7ccfd68c1de5', 'withinClause': 'http://smart.iec.ch/clause/c89c3510-e9e5-4c8d-9304-3bbc0165f4d7', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/dd51623a-2e19-4ac5-9285-aba95575bf1f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011490', 'rdfs:label': 'H.7.4', 'dcterms:title': 'NETWORK/DATA COUPLING parameters', 'trans:checksum': '5f2e292e7b379f549d51356f363a5b5498842ea3b16e692378f6b51840d97fde', 'withinClause': 'http://smart.iec.ch/clause/e16f75c8-93b7-41f9-9d11-eb03e69457d1', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/26bf5d95-7b51-4834-bb13-00e081288d92', '@type': 'corext:Annex', 'trans:sortKey': 'IEC60601120050000011513', 'rdfs:label': 'Annex I', 'dcterms:title': 'ME SYSTEMS aspects', 'comprisesClause': ['http://smart.iec.ch/clause/29bdea49-c2b7-4cca-8e92-b4570c3eaf2b', 'http://smart.iec.ch/clause/75013ae7-4628-4eaa-85ed-967e5d4bd2f1'], 'trans:checksum': '686c4a0b8e3a4b1f1d84bc0a8d303a6f307a41369d56dc81fa2cbf38f20ba373', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/75013ae7-4628-4eaa-85ed-967e5d4bd2f1', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011514', 'rdfs:label': 'I.1', 'dcterms:title': 'Combinations of ME EQUIPMENT and non- ME EQUIPMENT', 'comprisesClause': ['http://smart.iec.ch/clause/34b8de74-2c55-407c-80dd-9a54ce606cb4', 'http://smart.iec.ch/clause/5b1e124d-3871-4c37-a221-a9a17db62e8d', 'http://smart.iec.ch/clause/e65ce0c6-2eab-4901-a214-b0fa062b1a74', 'http://smart.iec.ch/clause/13b32ae7-a4b5-4d38-bde6-93d0bacb7e6f'], 'trans:checksum': '644ddb5cb41a058b826b303d70b32151b60c550bd347f33fda72fe61b8528025', 'withinClause': 'http://smart.iec.ch/clause/26bf5d95-7b51-4834-bb13-00e081288d92', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/13b32ae7-a4b5-4d38-bde6-93d0bacb7e6f', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011515', 'rdfs:label': 'I.1.1', 'dcterms:title': 'Introduction', 'trans:checksum': 'd8ca9766881adf9d4e94a45dd98f5dfcaa9bb97d0c96aaac66a26d0453145b3b', 'withinClause': 'http://smart.iec.ch/clause/75013ae7-4628-4eaa-85ed-967e5d4bd2f1', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e65ce0c6-2eab-4901-a214-b0fa062b1a74', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011519', 'rdfs:label': 'I.1.2', 'dcterms:title': 'Localities in a medical environment', 'trans:checksum': 'c2dee166383f9032dce072f49b171a8d3d74f3e24003e360a6cfd3de7cc57602', 'withinClause': 'http://smart.iec.ch/clause/75013ae7-4628-4eaa-85ed-967e5d4bd2f1', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/5b1e124d-3871-4c37-a221-a9a17db62e8d', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011536', 'rdfs:label': 'I.1.3', 'dcterms:title': 'Basic principles', 'trans:checksum': 'c36495e3609d6656e695c8629f45744d9628f4e72c963184a04cc78087e2cddb', 'withinClause': 'http://smart.iec.ch/clause/75013ae7-4628-4eaa-85ed-967e5d4bd2f1', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/34b8de74-2c55-407c-80dd-9a54ce606cb4', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011548', 'rdfs:label': 'I.1.4', 'dcterms:title': 'Examples of ME SYSTEMS', 'trans:checksum': '38be5fef2e5934873ed825833a6009e6520a2e02e4a95829c9fe557efcfb124e', 'withinClause': 'http://smart.iec.ch/clause/75013ae7-4628-4eaa-85ed-967e5d4bd2f1', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/29bdea49-c2b7-4cca-8e92-b4570c3eaf2b', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011648', 'rdfs:label': 'I.2', 'dcterms:title': 'Examples of application of MULTIPLE SOCKET-OUTLETS ( mso)', 'trans:checksum': 'df7440e8c948fe8c728d3cc48a1bdc96ed95dea13984e29c51c5c26df8051ef0', 'withinClause': 'http://smart.iec.ch/clause/26bf5d95-7b51-4834-bb13-00e081288d92', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/764ca859-c938-46e7-8b17-3a3f9011468d', '@type': 'corext:Annex', 'trans:sortKey': 'IEC60601120050000011656', 'rdfs:label': 'Annex J', 'dcterms:title': 'Survey of insulation paths', 'trans:checksum': '17d0c9b6393ee1a72a9dd4d565949cc25596ff8020a8fe03fa7b7b16b6609c6f', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4c98037b-f154-4b62-a0d7-af215627b831', '@type': 'corext:Annex', 'trans:sortKey': 'IEC60601120050000011675', 'rdfs:label': 'Annex K', 'dcterms:title': 'Simplified PATIENT LEAKAGE CURRENT diagrams', 'trans:checksum': '205f794b94bae7e1b93ae14bab26a2757155337d0313596fdbac3a38df012d3e', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/e7044f25-359a-47d7-850f-976c023bee81', '@type': 'corext:Annex', 'trans:sortKey': 'IEC60601120050000011708', 'rdfs:label': 'Annex L', 'dcterms:title': 'Insulated winding wires for use without interleaved insulation', 'hasMeasurement': ['http://smart.iec.ch/measurement/b4be54d6-afa9-404d-bc9a-8602ddb3d3b9'], 'comprisesClause': ['http://smart.iec.ch/clause/3f9d10e3-2ac1-483f-851f-9f3913930a08', 'http://smart.iec.ch/clause/ddf8a89c-7ee6-4a82-b30f-48e94322bcf1', 'http://smart.iec.ch/clause/687bda14-c2fb-4da0-9846-a067de2656af', 'http://smart.iec.ch/clause/f60ec1b5-b465-4aa9-99a9-148152dfedb3'], 'trans:checksum': '6267788d36535ff849945d78bc7f1b647ad8be1868a424e67fd06e2ffb6df8de', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3f9d10e3-2ac1-483f-851f-9f3913930a08', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011711', 'rdfs:label': 'L.1', 'dcterms:title': 'Introduction', 'hasTest': ['http://smart.iec.ch/test/3f4c84a7-9e92-422a-b022-58797b670dc2'], 'trans:checksum': 'a77c343c8e5f8a96dd60fac2c97d530267b26a34c0df6577f5250ab64bdb1742', 'withinClause': 'http://smart.iec.ch/clause/e7044f25-359a-47d7-850f-976c023bee81', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/687bda14-c2fb-4da0-9846-a067de2656af', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011716', 'rdfs:label': 'L.2', 'dcterms:title': 'Wire construction', 'hasTest': ['http://smart.iec.ch/test/30d89304-5ab6-4fab-ae48-9588b33f558e', 'http://smart.iec.ch/test/5b29e3d3-f19f-4564-8c68-d1b3f21b163e'], 'trans:checksum': 'dcf4e09d01b3ee6d7a0a718ab63aa1fe69efa3ca9e38d4a655360f911796424b', 'withinClause': 'http://smart.iec.ch/clause/e7044f25-359a-47d7-850f-976c023bee81', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/ddf8a89c-7ee6-4a82-b30f-48e94322bcf1', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011720', 'rdfs:label': 'L.3', 'dcterms:title': 'TYPE TEST', 'hasTest': ['http://smart.iec.ch/test/5500d98f-5f89-4d3e-a506-59966fe99681', 'http://smart.iec.ch/test/769f0b01-45d7-4cd8-82bb-b1590a14b788', 'http://smart.iec.ch/test/88f4f5a9-f748-429a-87ba-f8a3269cfbf9'], 'comprisesClause': ['http://smart.iec.ch/clause/8891b841-df26-4bbd-9a11-f8c4a9de2dc6', 'http://smart.iec.ch/clause/d85aed09-4478-427a-bc2d-a14e181be6bf', 'http://smart.iec.ch/clause/6fbc58da-e877-4c58-a967-76c7f3ccb8c6', 'http://smart.iec.ch/clause/9c9d2f50-7fea-4c55-a9d1-4d5b41016f27'], 'trans:checksum': '814809332aa7ef57d67ffdd2088b077f5b2b582e1071c7091b6a09cd7ee7d991', 'withinClause': 'http://smart.iec.ch/clause/e7044f25-359a-47d7-850f-976c023bee81', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/9c9d2f50-7fea-4c55-a9d1-4d5b41016f27', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011723', 'rdfs:label': 'L.3.1', 'dcterms:title': 'Dielectric strength', 'hasTest': ['http://smart.iec.ch/test/7dde11e0-a74e-4886-81bc-6f831adca880', 'http://smart.iec.ch/test/8c37eb97-d466-42e6-8627-01fc4c58330e', 'http://smart.iec.ch/test/b851b08d-dd51-4bd7-a60f-9b31fff0a591'], 'trans:checksum': 'dcd386973551163ebb109d1be0c20596b01d1eeeb89cce86c810d9e2f2841319', 'withinClause': 'http://smart.iec.ch/clause/ddf8a89c-7ee6-4a82-b30f-48e94322bcf1', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/6fbc58da-e877-4c58-a967-76c7f3ccb8c6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011733', 'rdfs:label': 'L.3.2', 'dcterms:title': 'Flexibility and adherence', 'hasTest': ['http://smart.iec.ch/test/3bba4214-10e1-4f37-b00f-5fa6f4f2f246', 'http://smart.iec.ch/test/3d5ddb6c-1f60-4c2f-9d16-5b650f0609c7', 'http://smart.iec.ch/test/8016063d-55c3-4e81-ba82-39504f7768f3', 'http://smart.iec.ch/test/8c2eecfd-51d2-4828-bb91-91adb718f209', 'http://smart.iec.ch/test/c71cfe73-5981-420d-b91c-c3a2f53fa429', 'http://smart.iec.ch/test/f2d5f30c-40fc-4d17-a069-432cfbaa9930'], 'trans:checksum': '338155cb5075d86d99fc6c9265c4f5f898a76d6efe8b145d4aa57742e4990063', 'withinClause': 'http://smart.iec.ch/clause/ddf8a89c-7ee6-4a82-b30f-48e94322bcf1', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/8891b841-df26-4bbd-9a11-f8c4a9de2dc6', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011748', 'rdfs:label': 'L.3.3', 'dcterms:title': 'Heat shock', 'hasTest': ['http://smart.iec.ch/test/03036146-882c-48cc-b3c3-6bdd47861611', 'http://smart.iec.ch/test/70df51ff-2e12-4d41-b8d0-26bf93d0a8d1', 'http://smart.iec.ch/test/78fe7a52-3919-48dc-af5d-09fce592a9c0', 'http://smart.iec.ch/test/8d982082-93b5-451c-b985-2774e00b004c', 'http://smart.iec.ch/test/942c5123-a0e1-4359-8d36-5dfe051a1835', 'http://smart.iec.ch/test/af743732-976c-4f76-a7bb-c14f8ff0becd', 'http://smart.iec.ch/test/e303bd08-76e1-45d5-ad38-d2d528bb3e75'], 'trans:checksum': 'a42f20d845bf33e04f42b4332283149df302539f72c9e94d1543eb8b7947b752', 'withinClause': 'http://smart.iec.ch/clause/ddf8a89c-7ee6-4a82-b30f-48e94322bcf1', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d85aed09-4478-427a-bc2d-a14e181be6bf', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011765', 'rdfs:label': 'L.3.4', 'dcterms:title': 'Retention of electric strength after bending', 'hasTest': ['http://smart.iec.ch/test/1a63af04-245f-4cdf-9b47-bc06483326ff', 'http://smart.iec.ch/test/305e4b44-5df1-4240-a8d4-ab2a195ae87b', 'http://smart.iec.ch/test/4a1ef054-d6f6-4bdb-a89b-a09cd9c4231a', 'http://smart.iec.ch/test/b4f8ef10-cf76-4146-acaa-feb3337c27ea', 'http://smart.iec.ch/test/bfffbc68-7a55-4614-ba16-98f1f9984e4a', 'http://smart.iec.ch/test/e9d4bb64-eccf-48a1-9f26-70518a2e32cd'], 'trans:checksum': '3ba7ce03909e02d71962dc3c68e5f34d32aa28021804dcab0fc907bca51c5212', 'withinClause': 'http://smart.iec.ch/clause/ddf8a89c-7ee6-4a82-b30f-48e94322bcf1', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/f60ec1b5-b465-4aa9-99a9-148152dfedb3', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011783', 'rdfs:label': 'L.4', 'dcterms:title': 'Tests during manufacture', 'comprisesClause': ['http://smart.iec.ch/clause/4da250cc-73a9-447c-9381-cf5538a01363', 'http://smart.iec.ch/clause/d42be9df-1080-4674-b3d9-14fbf6b22894', 'http://smart.iec.ch/clause/3fee0f0c-6c5d-4c1b-af26-71aeed223019'], 'trans:checksum': 'ce3f4a518f57f94512af0d9ce56c141724a701bd8b5e43d54d352b613673bd0f', 'withinClause': 'http://smart.iec.ch/clause/e7044f25-359a-47d7-850f-976c023bee81', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/d42be9df-1080-4674-b3d9-14fbf6b22894', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011784', 'rdfs:label': 'L.4.1', 'dcterms:title': 'General', 'hasTest': ['http://smart.iec.ch/test/e4f0519e-b72d-40da-a0fb-44d9389ea070'], 'trans:checksum': '953880624d6d3d64105dc4f4b2bd3762414cd6e1ee3e0412abafacecfa9162fe', 'withinClause': 'http://smart.iec.ch/clause/f60ec1b5-b465-4aa9-99a9-148152dfedb3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/3fee0f0c-6c5d-4c1b-af26-71aeed223019', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011787', 'rdfs:label': 'L.4.2', 'dcterms:title': 'Routine testing', 'hasTest': ['http://smart.iec.ch/test/93b5a9cd-8380-45c6-91ff-11e63e408b4a', 'http://smart.iec.ch/test/cad3333c-5af7-41e2-9b24-e1377f277525', 'http://smart.iec.ch/test/e9ae9cf9-4091-456f-8fb9-262fc3b1b40d'], 'trans:checksum': '0483cb41b21923155d2c1cf686fee10237bd1827dc765a5ba18f91a6e9f2889a', 'withinClause': 'http://smart.iec.ch/clause/f60ec1b5-b465-4aa9-99a9-148152dfedb3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/4da250cc-73a9-447c-9381-cf5538a01363', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011797', 'rdfs:label': 'L.4.3', 'dcterms:title': 'Sampling tests', 'hasTest': ['http://smart.iec.ch/test/04c8f4f7-f73e-433e-973e-0f318dc1b45d', 'http://smart.iec.ch/test/5f8ab4ca-f7c2-4530-b6f0-c55d0e982881', 'http://smart.iec.ch/test/8ddc1a38-edf7-4360-ada7-71bb03fa8794', 'http://smart.iec.ch/test/ede1cd8a-7417-4847-851c-8e607498bf7a'], 'trans:checksum': 'cd8cfb231a511b16e09698d2375b8a2f378e49670435a8156bf122b4f9ad9afa', 'withinClause': 'http://smart.iec.ch/clause/f60ec1b5-b465-4aa9-99a9-148152dfedb3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/fe986366-5f1e-43bd-aa41-b86dd893cb57', '@type': 'core:Clause', 'trans:sortKey': 'IEC60601120050000011807', 'rdfs:label': '', 'dcterms:title': 'INDEX OF ABBREVIATIONS AND ACRONYMS', 'trans:checksum': 'ab9bd697e81b51dc94f7965c064f9e60cd56db687566e9d8ace2df2a10e39ed3', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/clause/dbd02698-2dac-4307-ac49-9d57d1b9fdb5', '@type': 'corext:Bibliography', 'trans:sortKey': 'IEC60601120050000011934', 'rdfs:label': '', 'dcterms:title': 'Bibliography', 'trans:checksum': '672e027933144f32b36649572f1d742ba42fcc5cbcfa821de405ede3ad075fff', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}]}\n"
     ]
    }
   ],
   "source": [
    "standard_urn = \"urn:iec:std:iec:60601-1:2005-12\"\n",
    "\n",
    "api_url = f\"https://sim-apim.azure-api.net/preprod/v1/standards/{standard_urn}/clauses\"\n",
    "headers = {\n",
    "    \"Authorization\": f\"Bearer {access_token}\"\n",
    "}\n",
    "\n",
    "api_response = requests.get(api_url, headers=headers)\n",
    "api_response.raise_for_status()\n",
    "print(api_response.json())"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "ea3c9129",
   "metadata": {},
   "source": [
    "Find the Foreword and extract the id"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 13,
   "id": "a1a0614a",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Foreword URN: d2370186-f4b8-4bba-b308-b18975249f64\n"
     ]
    }
   ],
   "source": [
    "response = api_response.json()\n",
    "\n",
    "# Extract the ID of the clause with type \"corext:Foreword\"\n",
    "foreword_id = next(\n",
    "    (item['@id'] for item in response.get('@graph', []) if item.get('@type') == 'corext:Foreword'),\n",
    "    None\n",
    ")\n",
    "\n",
    "foreword_urn = foreword_id.rsplit('/', 1)[-1]\n",
    "\n",
    "print(\"Foreword URN:\", foreword_urn)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "7e309569",
   "metadata": {},
   "source": [
    "Get the Foreword content"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 14,
   "id": "4db43436",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "{'@id': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', '@type': 'corext:Foreword', 'trans:sortKey': 'IEC60601120050000000003', 'rdfs:label': '', 'dcterms:title': 'FOREWORD', 'trans:checksum': 'ec80ecb8f195c272229ab4845518e601071b3cc22999fe396acd8dfb00664322', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'core:comprises': [{'@id': 'http://smart.iec.ch/provisionset/5159e1d7-6a0e-4642-8b86-b445f0668a24', '@type': 'corext:List', 'trans:sortKey': 'IEC60601120050000000004', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/70c4a0fd-eb65-4f11-90ac-dc3d6a7409ed', '@type': 'corext:ListItem', 'trans:sortKey': 'IEC60601120050000000005', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/b7786d7f-fcf8-4116-9111-198f41c8bb33', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000006', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/c539c84d-4b86-4333-8505-5ab6256025b3', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000007', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/f2d461fc-e123-4b6f-bf62-179a04a4afe8', '@type': 'core:Textual', 'core:hasPlainContent': 'The International Electrotechnical Commission (IEC) is a worldwide organization for standardization comprising all national electrotechnical committees (IEC National Committees).', 'core:hasFormattedContent': 'The International Electrotechnical Commission (IEC) is a worldwide organization for standardization comprising all national electrotechnical committees (IEC National Committees).'}}, {'@id': 'http://smart.iec.ch/provision/e71054d4-df52-4acd-aa94-5e66350be0f4', '@type': 'core:Requirement', 'trans:sortKey': 'IEC60601120050000000008', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/9da7b922-4e8b-44db-9fe6-53ccc8fe69b2', '@type': 'core:Textual', 'core:hasPlainContent': 'The object of IEC is to promote international co-operation on all questions concerning standardization in the electrical and electronic fields.', 'core:hasFormattedContent': 'The object of IEC is to promote international co-operation on all questions concerning standardization in the electrical and electronic fields.'}}, {'@id': 'http://smart.iec.ch/provision/914175d8-3da9-4b36-8ce4-53ea1636867e', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000009', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/d7d8d93b-c934-4575-a036-372d0d10bf52', '@type': 'core:Textual', 'core:hasPlainContent': 'To this end and in addition to other activities, IEC publishes International Standards, Technical Specifications, Technical Reports, Publicly Available Specifications (PAS) and Guides (hereafter referred to as \"IEC Publication(s)\").', 'core:hasFormattedContent': 'To this end and in addition to other activities, IEC publishes International Standards, Technical Specifications, Technical Reports, Publicly Available Specifications (PAS) and Guides (hereafter referred to as &#8220;IEC Publication(s)&#8221;).'}}, {'@id': 'http://smart.iec.ch/provision/a33cd905-b89c-42c6-9f96-c48030430bae', '@type': 'core:Permission', 'trans:sortKey': 'IEC60601120050000000010', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/bc3090c7-7d70-40bf-9d75-cacfe0aa748f', '@type': 'core:Textual', 'core:hasPlainContent': 'Their preparation is entrusted to technical committees; any IEC National Committee interested in the subject dealt with may participate in this preparatory work.', 'core:hasFormattedContent': 'Their preparation is entrusted to technical committees; any IEC National Committee interested in the subject dealt with may participate in this preparatory work.'}}, {'@id': 'http://smart.iec.ch/provision/58752dcf-2ccc-42ce-9373-9d1b7b2e161a', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000011', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/8e609da5-f286-4b03-a112-895d13806277', '@type': 'core:Textual', 'core:hasPlainContent': 'International, governmental and non-governmental organizations liaising with the IEC also participate in this preparation.', 'core:hasFormattedContent': 'International, governmental and non-governmental organizations liaising with the IEC also participate in this preparation.'}}, {'@id': 'http://smart.iec.ch/provision/a63bb75b-9f64-4f73-b4a5-8a1cca8a5e1f', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000012', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/ac7de94f-8419-42f8-9fd6-3512ee4fe43c', '@type': 'core:Textual', 'core:hasPlainContent': 'IEC collaborates closely with the International Organization for Standardization (ISO) in accordance with conditions determined by agreement between the two organizations.', 'core:hasFormattedContent': 'IEC collaborates closely with the International Organization for Standardization (ISO) in accordance with conditions determined by agreement between the two organizations.'}}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'rdfs:label': '1)'}, {'@id': 'http://smart.iec.ch/provisionset/6dc03ef2-a083-4797-87c4-baba685b4d65', '@type': 'corext:ListItem', 'trans:sortKey': 'IEC60601120050000000013', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/1b1ec28e-ed8c-4aa6-bde6-db309103007e', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000014', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/c9c70935-7026-4666-9266-22bc649b3423', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000015', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/953c39fe-472f-4ba4-996e-e24907ebc627', '@type': 'core:Textual', 'core:hasPlainContent': 'The formal decisions or agreements of IEC on technical matters express, as nearly as possible, an international consensus of opinion on the relevant subjects since each technical committee has representation from all interested IEC National Committees.', 'core:hasFormattedContent': 'The formal decisions or agreements of IEC on technical matters express, as nearly as possible, an international consensus of opinion on the relevant subjects since each technical committee has representation from all interested IEC National Committees.'}}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'rdfs:label': '2)'}, {'@id': 'http://smart.iec.ch/provisionset/9af633b8-756c-49b0-a248-da767be21299', '@type': 'corext:ListItem', 'trans:sortKey': 'IEC60601120050000000016', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/4e8b6a4b-cee1-4086-b413-074ef6a45d04', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000017', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/35259806-d95d-4899-80dc-9e974454f25d', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000018', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/3356d2ed-9bbf-4cb9-9883-2b4a8b7fe128', '@type': 'core:Textual', 'core:hasPlainContent': 'IEC Publications have the form of recommendations for international use and are accepted by IEC National Committees in that sense.', 'core:hasFormattedContent': 'IEC Publications have the form of recommendations for international use and are accepted by IEC National Committees in that sense.'}}, {'@id': 'http://smart.iec.ch/provision/5fa3da29-96a0-4438-90a9-3b65a6b2131d', '@type': 'core:Capability', 'trans:sortKey': 'IEC60601120050000000019', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/66bafd7b-0824-4dfe-bb5b-9b960db5b46b', '@type': 'core:Textual', 'core:hasPlainContent': 'While all reasonable efforts are made to ensure that the technical content of IEC Publications is accurate, IEC cannot be held responsible for the way in which they are used or for any misinterpretation by any end user.', 'core:hasFormattedContent': 'While all reasonable efforts are made to ensure that the technical content of IEC Publications is accurate, IEC cannot be held responsible for the way in which they are used or for any misinterpretation by any end user.'}}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'rdfs:label': '3)'}, {'@id': 'http://smart.iec.ch/provisionset/6436b39d-19e7-490d-a612-a9745e947499', '@type': 'corext:ListItem', 'trans:sortKey': 'IEC60601120050000000020', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/2c2c24b4-dc2a-4832-a35e-0df9c29dbef3', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000021', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/7b3e4304-bb75-430f-9460-0954b89ba50f', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000022', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/389842eb-ae48-4339-ac80-3215386add72', '@type': 'core:Textual', 'core:hasPlainContent': 'In order to promote international uniformity, IEC National Committees undertake to apply IEC Publications transparently to the maximum extent possible in their national and regional publications.', 'core:hasFormattedContent': 'In order to promote international uniformity, IEC National Committees undertake to apply IEC Publications transparently to the maximum extent possible in their national and regional publications.'}}, {'@id': 'http://smart.iec.ch/provision/9daa5537-fc33-4b1e-8091-c007204b974d', '@type': 'core:Requirement', 'trans:sortKey': 'IEC60601120050000000023', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/afdef60c-181e-498c-aa49-9e292415d4cf', '@type': 'core:Textual', 'core:hasPlainContent': 'Any divergence between any IEC Publication and the corresponding national or regional publication shall be clearly indicated in the latter.', 'core:hasFormattedContent': 'Any divergence between any IEC Publication and the corresponding national or regional publication shall be clearly indicated in the latter.'}}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'rdfs:label': '4)'}, {'@id': 'http://smart.iec.ch/provisionset/51a2b0d4-2cc1-4fa2-8712-d55591010dbd', '@type': 'corext:ListItem', 'trans:sortKey': 'IEC60601120050000000024', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/9aaa1ae5-1658-4d00-ae7d-c26ba4197120', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000025', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/06f3791e-4da5-4971-aa91-e6172969dd29', '@type': 'core:Capability', 'trans:sortKey': 'IEC60601120050000000026', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/68a8bf54-85c4-4fc0-a55c-e6749efe97cf', '@type': 'core:Textual', 'core:hasPlainContent': 'IEC provides no marking procedure to indicate its approval and cannot be rendered responsible for any equipment declared to be in conformity with an IEC Publication.', 'core:hasFormattedContent': 'IEC provides no marking procedure to indicate its approval and cannot be rendered responsible for any equipment declared to be in conformity with an IEC Publication.'}}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'rdfs:label': '5)'}, {'@id': 'http://smart.iec.ch/provisionset/13bbc5a4-5c5e-4515-b1ec-bb11bfc02824', '@type': 'corext:ListItem', 'trans:sortKey': 'IEC60601120050000000027', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/6de1d994-d552-4cf1-8a4b-e3c17edac827', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000028', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/5262200d-e8d3-464a-9d6c-ba952095f3e9', '@type': 'core:Recommendation', 'trans:sortKey': 'IEC60601120050000000029', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/f0c015f8-55a0-47a6-a728-b0f98efc16e0', '@type': 'core:Textual', 'core:hasPlainContent': 'All users should ensure that they have the latest edition of this publication.', 'core:hasFormattedContent': 'All users should ensure that they have the latest edition of this publication.'}}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'rdfs:label': '6)'}, {'@id': 'http://smart.iec.ch/provisionset/d6783596-6cba-4635-8d54-3a4084ca64fc', '@type': 'corext:ListItem', 'trans:sortKey': 'IEC60601120050000000030', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/c56eda60-e812-4197-a6cc-96915591b8b9', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000031', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/335f4237-2f1b-41a2-82c5-09db23b5621f', '@type': 'core:Requirement', 'trans:sortKey': 'IEC60601120050000000032', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/a9d1c5b4-0758-41af-ab15-d0e34379498b', '@type': 'core:Textual', 'core:hasPlainContent': 'No liability shall attach to IEC or its directors, employees, servants or agents including individual experts and members of its technical committees and IEC National Committees for any personal injury, property damage or other damage of any nature whatsoever, whether direct or indirect, or for costs (including legal fees) and expenses arising out of the publication, use of, or reliance upon, this IEC Publication or any other IEC Publications.', 'core:hasFormattedContent': 'No liability shall attach to IEC or its directors, employees, servants or agents including individual experts and members of its technical committees and IEC National Committees for any personal injury, property damage or other damage of any nature whatsoever, whether direct or indirect, or for costs (including legal fees) and expenses arising out of the publication, use of, or reliance upon, this IEC Publication or any other IEC Publications.'}}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'rdfs:label': '7)'}, {'@id': 'http://smart.iec.ch/provisionset/74a4cb87-bd91-456e-9843-3d748a2faa1a', '@type': 'corext:ListItem', 'trans:sortKey': 'IEC60601120050000000033', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/435df451-e14b-4fe7-b693-3c03a25ccf85', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000034', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/1e164fdb-cc2c-485e-aa89-a41bf0ca297a', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000035', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/8739668f-8ab3-44f4-9a27-571536dd1855', '@type': 'core:Textual', 'core:hasPlainContent': 'Attention is drawn to the Normative references cited in this publication.', 'core:hasFormattedContent': 'Attention is drawn to the Normative references cited in this publication.'}}, {'@id': 'http://smart.iec.ch/provision/b611e4bd-70dd-4668-b7e3-9c6a05af2d9f', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000036', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/66fab9d8-ae18-41b6-947c-2030eba4b407', '@type': 'core:Textual', 'core:hasPlainContent': 'Use of the referenced publications is indispensable for the correct application of this publication.', 'core:hasFormattedContent': 'Use of the referenced publications is indispensable for the correct application of this publication.'}}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'rdfs:label': '8)'}, {'@id': 'http://smart.iec.ch/provisionset/91240c23-d34f-4d44-83e9-12f27774912b', '@type': 'corext:ListItem', 'trans:sortKey': 'IEC60601120050000000037', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/71c8948f-4eff-45d5-8b10-3abf72ede0aa', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000038', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/e98187dd-733f-45bf-b4a4-d6679d34dec1', '@type': 'core:Permission', 'trans:sortKey': 'IEC60601120050000000039', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/7447b0d7-9605-4858-9fd1-69d9ace704bb', '@type': 'core:Textual', 'core:hasPlainContent': 'Attention is drawn to the possibility that some of the elements of this IEC Publication may be the subject of patent rights.', 'core:hasFormattedContent': 'Attention is drawn to the possibility that some of the elements of this IEC Publication may be the subject of patent rights.'}}, {'@id': 'http://smart.iec.ch/provision/cf3c68bd-5082-40fb-a22d-da483982fb45', '@type': 'core:Requirement', 'trans:sortKey': 'IEC60601120050000000040', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/04f505dc-99ec-4d07-928a-43fe695dd613', '@type': 'core:Textual', 'core:hasPlainContent': 'IEC shall not be held responsible for identifying any or all such patent rights.', 'core:hasFormattedContent': 'IEC shall not be held responsible for identifying any or all such patent rights.'}}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'rdfs:label': '9)'}], 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/provisionset/427736a3-02e0-47da-9673-9fc5d36dc201', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000041', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/40eac037-2068-4c18-97ef-60afe40df84a', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000042', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/0cb4198b-e8ef-4d74-93a3-94e0afbff35d', '@type': 'core:Textual', 'core:hasPlainContent': 'International Standard IEC 60601-1:2005 has been prepared by subcommittee 62A: Common aspects of electrical equipment used in medical practice, of IEC technical committee 62: Electrical equipment in medical practice.', 'core:hasFormattedContent': 'International Standard <std><std-id>http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12</std-id><std-ref>IEC&#160;60601&#8209;1:2005</std-ref></std> has been prepared by subcommittee 62A: Common aspects of electrical equipment used in medical practice, of IEC technical committee 62: Electrical equipment in medical practice.'}, 'referencesStandard': ['http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12']}], 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/provisionset/3919a4a4-702f-4c47-8d9a-027223930baf', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000043', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/0290d65b-5f4c-4250-b4ce-07e680af51de', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000044', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/a2b57436-db40-4f70-8beb-5f73776cb7e4', '@type': 'core:Textual', 'core:hasPlainContent': 'This third edition cancels and replaces the second edition published in 1988, its Amendment 1 (1991) and Amendment 2 (1995).', 'core:hasFormattedContent': '<std><std-id>http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12</std-id><std-ref>This third edition</std-ref></std> cancels and replaces the <std><std-id specific-use=\"search-only\" originator=\"IEC\">http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:1988-12</std-id><std-ref>second edition</std-ref></std> published in 1988, its <std><std-id specific-use=\"search-only\" originator=\"IEC\">http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:1988-12:::%7C%7Camd:1:1991-11</std-id><std-ref>Amendment&#160;1 (1991)</std-ref></std> and <std><std-id specific-use=\"search-only\" originator=\"IEC\">http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:1988-12:::%7C%7Camd:2:1995-03</std-id><std-ref>Amendment&#160;2 (1995)</std-ref></std>.'}, 'referencesStandard': ['http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:1988-12', 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:1988-12:::%7C%7Camd:1:1991-11', 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:1988-12:::%7C%7Camd:2:1995-03', 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12']}, {'@id': 'http://smart.iec.ch/provision/0427f4ec-024b-434d-ad07-18cd48b08daf', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000045', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/93056270-8da5-4ac7-b29a-476afd3c06c7', '@type': 'core:Textual', 'core:hasPlainContent': 'This edition constitutes a technical revision.', 'core:hasFormattedContent': 'This edition constitutes a technical revision.'}}, {'@id': 'http://smart.iec.ch/provision/78cdc4ca-8658-4c1d-889f-988d0b7bb670', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000046', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/9aba5bf7-7678-4e2b-90b1-e563c6df6981', '@type': 'core:Textual', 'core:hasPlainContent': 'This edition has been significantly restructured.', 'core:hasFormattedContent': 'This edition has been significantly restructured.'}}, {'@id': 'http://smart.iec.ch/provision/61bc1278-cec9-42af-ae57-c25cfa45ba27', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000047', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/a208756d-9c53-4d8e-95aa-eec6fed74338', '@type': 'core:Textual', 'core:hasPlainContent': 'Requirements in the electrical section have been further aligned with those for information technology equipment covered by IEC 60950-1 and a requirement for including a RISK MANAGEMENT PROCESS has been added.', 'core:hasFormattedContent': 'Requirements in the electrical section have been further aligned with those for information technology equipment covered by <std><std-id specific-use=\"search-only\" originator=\"IEC\">http://smart.iec.ch/publication/urn:iec:std:iec:60950-1</std-id><std-ref>IEC&#160;60950&#8209;1</std-ref></std> and a requirement for including a <xref ref-type=\"custom\" custom-type=\"termdefinition\" rid=\"http://smart.iec.ch/termdefinition/33508ab1-04de-4b79-9503-6e42c6dfef15\"><sc>risk management</sc></xref><xref ref-type=\"custom\" custom-type=\"termdefinition\" rid=\"http://smart.iec.ch/termdefinition/31e3bc1e-8348-4d22-ac72-1d2d80baf69c\"><sc>process</sc></xref> has been added.'}, 'usesTerm': ['http://smart.iec.ch/term/4911b434-4cbf-4d97-b38a-06460ad08efb', 'http://smart.iec.ch/term/b1f51c1b-bd7a-4e2e-b743-3cae70d4325e'], 'referencesStandard': ['http://smart.iec.ch/publication/urn:iec:std:iec:60950-1']}, {'@id': 'http://smart.iec.ch/provision/3a7e8c86-d597-47cc-bba1-e6af7fa525b1', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000048', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/e00019f0-2b48-4ec6-ab2f-7dd47b17be72', '@type': 'core:Textual', 'core:hasPlainContent': 'For an expanded description of this revision, see Clause A.3.', 'core:hasFormattedContent': 'For an expanded description of this revision, see <xref ref-type=\"sec\" rid=\"http://smart.iec.ch/clause/c1d36857-9e11-4d71-97de-1b11cdf0819d\">Clause&#160;A.3</xref>.'}}], 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/provisionset/21e954da-4513-4f5b-bd0f-d001aeaad252', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000049', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/a0526198-ef33-41b4-9e7a-34ff543f971f', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000050', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/a75ee5c4-1d3f-4ed5-bc02-f2ea5bd2a650', '@type': 'core:Textual', 'core:hasPlainContent': 'The text of this standard is based on the following documents:', 'core:hasFormattedContent': 'The text of this standard is based on the following documents:'}}], 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/provision/e8d6ef44-27de-4897-917e-6b4e41c3fb8a', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000051', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/737e05a8-e42f-4295-972d-7abdefb254b5', '@type': 'core:Table', 'core:hasPlainContent': 'FDIS Report on voting 62A/505A/FDIS 62A/512/RVD', 'core:hasFormattedContent': '<table><colgroup><col align=\"center\" valign=\"middle\" width=\"50%\" /><col align=\"center\" valign=\"middle\" width=\"50%\" /></colgroup><tbody><tr><td><p>FDIS</p></td><td><p>Report on voting</p></td></tr><tr><td><p>62A/505A/FDIS</p></td><td><p>62A/512/RVD</p></td></tr></tbody></table>'}}, {'@id': 'http://smart.iec.ch/provisionset/894ffbab-117b-4f07-9416-5191e89cdccb', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000056', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/379f66f6-6cd5-4f0e-8697-32eb42d338a6', '@type': 'core:Possibility', 'trans:sortKey': 'IEC60601120050000000057', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/c6d85eb8-2ff2-45e1-bc8c-34b9fede20b3', '@type': 'core:Textual', 'core:hasPlainContent': 'Full information on the voting for the approval of this standard can be found in the report on voting indicated in the above table.', 'core:hasFormattedContent': 'Full information on the voting for the approval of this standard can be found in the report on voting indicated in the above table.'}}], 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/provisionset/505c20b5-b3f3-4f28-8fff-86428ce0f863', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000058', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/51653db1-5f7d-49f9-a7a7-24332b6e5e97', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000059', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/d62597ee-b0fd-44c6-b47c-9fe644750d60', '@type': 'core:Textual', 'core:hasPlainContent': 'This publication has been drafted in accordance with the ISO/IEC Directives, Part 2.', 'core:hasFormattedContent': 'This publication has been drafted in accordance with the ISO/IEC Directives, Part&#160;2.'}}], 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/provisionset/b83d01a3-c161-4673-b75c-afa429407565', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000060', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/f8b9c826-d8f4-4ad5-af5c-aa2a4992eb56', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000061', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/8c2225cc-fa45-4d36-8c1f-5573fa37f2b6', '@type': 'core:Textual', 'core:hasPlainContent': 'In this standard the following print types are used:', 'core:hasFormattedContent': 'In this standard the following print types are used:'}}], 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/provisionset/d79b3cab-2aca-4e48-90c0-226d85a8612b', '@type': 'corext:List', 'trans:sortKey': 'IEC60601120050000000062', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/da55a873-c014-4add-b557-386f7dd457a6', '@type': 'corext:ListItem', 'trans:sortKey': 'IEC60601120050000000063', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/398d533e-7506-493c-9f0d-02cf405f6908', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000064', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/c4af96f1-f461-4243-83a7-07e6c47b5ddc', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000065', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/ac881a6c-be37-4c21-ab19-6cff27e6247b', '@type': 'core:Textual', 'core:hasPlainContent': 'Requirements and definitions: in roman type.', 'core:hasFormattedContent': 'Requirements and definitions: in roman type.'}}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'rdfs:label': '-'}, {'@id': 'http://smart.iec.ch/provisionset/fe06d607-a9ce-4075-a928-64265b2b3e95', '@type': 'corext:ListItem', 'trans:sortKey': 'IEC60601120050000000066', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/2613b0be-4534-45dd-9d7b-0a27abe8be30', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000067', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/430b19fa-8ce5-4556-9df0-ff553cbff0d0', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000068', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/33e265eb-4d14-47cb-8619-217a5ec4d831', '@type': 'core:Textual', 'core:hasPlainContent': 'Test specifications: in italic type.', 'core:hasFormattedContent': 'Test specifications: in italic type.'}}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'rdfs:label': '-'}, {'@id': 'http://smart.iec.ch/provisionset/48757caf-b289-443d-86cf-8343669d9a8c', '@type': 'corext:ListItem', 'trans:sortKey': 'IEC60601120050000000069', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/3ae8a552-1210-4ea6-ae5a-3bf036040a44', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000070', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/3107853e-2f14-40dd-8992-6178a7e22999', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000071', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/3a8ddef9-4585-4a4b-a8f0-347e8ab4610d', '@type': 'core:Textual', 'core:hasPlainContent': '', 'core:hasFormattedContent': ''}, 'core:hasSupplement': [{'@id': 'http://smart.iec.ch/supplement/29d10d4f-6c4e-4342-a126-469b01f44f75', '@type': 'core:Note', 'trans:sortKey': 'IEC60601120050000000072', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/3452df51-f9d5-45f1-9391-f2bdde396c3b', '@type': 'core:Textual', 'core:hasPlainContent': 'Informative material appearing outside of tables, such as notes, examples and references: in smaller type. Normative text of tables is also in a smaller type.', 'core:hasFormattedContent': '<p>Informative material appearing outside of tables, such as notes, examples and references: in smaller type. Normative text of tables is also in a smaller type.</p>'}}]}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'rdfs:label': '-'}, {'@id': 'http://smart.iec.ch/provisionset/71fed9c9-fc99-41ec-ab28-131fb00757ea', '@type': 'corext:ListItem', 'trans:sortKey': 'IEC60601120050000000074', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/9b68ac98-1edb-4a5a-b994-ab32de17c727', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000075', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/7b606bf9-f894-4c12-92b8-3ead55ca1ab6', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000076', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/e56b0876-1c7e-4035-9d18-7dd247c2b705', '@type': 'core:Textual', 'core:hasPlainContent': 'TERMS USED THROUGHOUT THIS STANDARD THAT HAVE BEEN DEFINED IN CLAUSE 3 AND ALSO GIVEN IN THE INDEX: IN SMALL CAPITALS.', 'core:hasFormattedContent': '<sc>TERMS USED THROUGHOUT THIS STANDARD THAT HAVE BEEN DEFINED IN <std><std-id specific-use=\"search-only\" originator=\"IEC\">http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005</std-id><std-ref>CLAUSE 3</std-ref></std> AND ALSO GIVEN IN THE INDEX: IN SMALL CAPITALS.</sc>'}, 'referencesStandard': ['http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005']}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'rdfs:label': '-'}], 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/provisionset/a16237ff-b2d3-4d09-9314-73847e121d15', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000077', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/e4f5d27b-0e4b-460e-9616-11493c803065', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000078', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/3784ce76-9292-412d-8bbd-3694c489069c', '@type': 'core:Textual', 'core:hasPlainContent': 'In referring to the structure of this standard, the term', 'core:hasFormattedContent': 'In referring to the structure of this standard, the term'}}], 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/provisionset/8b767643-389f-4698-8bed-54abb1efac8d', '@type': 'corext:List', 'trans:sortKey': 'IEC60601120050000000079', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/71f41623-c40f-4e52-8c89-c9611a859f36', '@type': 'corext:ListItem', 'trans:sortKey': 'IEC60601120050000000080', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/2f174ea6-b038-48e3-a245-386c4eb105e5', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000081', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/e0f381fd-1b53-460e-9568-d56eadf2a510', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000082', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/6e26d0e5-56ea-4e52-b311-b92bbf225b99', '@type': 'core:Textual', 'core:hasPlainContent': '\"clause\" means one of the seventeen numbered divisions within the table of contents, inclusive of all subdivisions (e.g. Clause 7 includes subclauses 7.1, 7.2, etc.);', 'core:hasFormattedContent': '&#8220;clause&#8221; means one of the seventeen numbered divisions within the table of contents, inclusive of all subdivisions (e.g. Clause&#160;7 includes subclauses&#160;7.1, 7.2, etc.);'}}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'rdfs:label': '-'}, {'@id': 'http://smart.iec.ch/provisionset/9850bad8-d923-436d-aaea-df8bc1175f54', '@type': 'corext:ListItem', 'trans:sortKey': 'IEC60601120050000000083', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/f1907139-cdc2-46be-a602-178349ce852c', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000084', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/dd7d547e-1d05-4eff-9aa8-1271150f0dd5', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000085', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/56c36356-333f-4c5d-8389-e5756168d1a9', '@type': 'core:Textual', 'core:hasPlainContent': '\"subclause\" means a numbered subdivision of a clause (e.g. 7.1, 7.2 and 7.2.1 are all subclauses of Clause 7).', 'core:hasFormattedContent': '&#8220;subclause&#8221; means a numbered subdivision of a clause (e.g. 7.1, 7.2 and 7.2.1 are all subclauses of Clause&#160;7).'}}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'rdfs:label': '-'}], 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/provisionset/a328bfbe-fabd-4489-b4d0-a2eb9f60ea29', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000086', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/3f71ff23-275f-43b7-a596-5eb43d082c5d', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000087', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/f119fd25-1a8c-48a9-9704-75d126e5f91d', '@type': 'core:Textual', 'core:hasPlainContent': 'References to clauses within this standard are preceded by the term \"Clause\" followed by the clause number.', 'core:hasFormattedContent': 'References to clauses within this standard are preceded by the term &#8220;Clause&#8221; followed by the clause number.'}}, {'@id': 'http://smart.iec.ch/provision/2796cd50-a00e-47e1-9028-99af8fd11097', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000088', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/5767f106-f6c0-43ef-b7e9-3263d5347264', '@type': 'core:Textual', 'core:hasPlainContent': 'References to subclauses within this standard are by number only.', 'core:hasFormattedContent': 'References to subclauses within this standard are by number only.'}}], 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/provisionset/970deae4-84de-41eb-ad5f-6a13247f1796', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000089', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/283ba567-b474-4d7f-8f73-fa67d3c2284d', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000090', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/3254bf24-8a6c-4e31-8f91-aadfa4e698ea', '@type': 'core:Textual', 'core:hasPlainContent': 'In this standard, the conjunctive \"or\" is used as an \"inclusive or\" so a statement is true if any combination of the conditions is true.', 'core:hasFormattedContent': 'In this standard, the conjunctive &#8220;or&#8221; is used as an &#8220;inclusive or&#8221; so a statement is true if any combination of the conditions is true.'}}], 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/provisionset/203b8b84-7f27-43f6-8fae-9efec9a0901b', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000091', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/ac81ebbf-4f44-408b-a157-8b41fb4d0bf9', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000092', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/04865391-15bf-434f-a104-95c5c11686e4', '@type': 'core:Textual', 'core:hasPlainContent': 'The verbal forms used in this standard conform to usage described in Annex G of the ISO/IEC Directives, Part 2. For the purposes of this standard, the auxiliary verb:', 'core:hasFormattedContent': 'The verbal forms used in this standard conform to usage described in Annex&#160;G of the ISO/IEC Directives, Part&#160;2. For the purposes of this standard, the auxiliary verb:'}}], 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/provisionset/d0badbdb-65cf-40be-8602-b6b93a78c979', '@type': 'corext:List', 'trans:sortKey': 'IEC60601120050000000093', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/3cbb9533-c006-4720-90d7-c5e8a5cced72', '@type': 'corext:ListItem', 'trans:sortKey': 'IEC60601120050000000094', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/9d8a11e5-3bc6-4c65-8295-9ff2f14a726b', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000095', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/52cc335e-6372-44fa-9833-32f642922f59', '@type': 'core:Requirement', 'trans:sortKey': 'IEC60601120050000000096', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/cf41aa02-7564-4c32-b55b-1bafd54d455f', '@type': 'core:Textual', 'core:hasPlainContent': '\"shall\" means that compliance with a requirement or a test is mandatory for compliance with this standard;', 'core:hasFormattedContent': '&#8220;shall&#8221; means that compliance with a requirement or a test is mandatory for compliance with this standard;'}}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'rdfs:label': '-'}, {'@id': 'http://smart.iec.ch/provisionset/adb75bdb-de1b-415c-9bc1-fc0bc7e1e5d3', '@type': 'corext:ListItem', 'trans:sortKey': 'IEC60601120050000000097', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/b5fd1586-8924-4571-8adb-f8eaeb51c005', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000098', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/68fe3ef3-2d14-4025-b84a-7279d26f3987', '@type': 'core:Recommendation', 'trans:sortKey': 'IEC60601120050000000099', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/51f5f836-06f3-457d-b601-cdc0fc84b4c3', '@type': 'core:Textual', 'core:hasPlainContent': '\"should\" means that compliance with a requirement or a test is recommended but is not mandatory for compliance with this standard;', 'core:hasFormattedContent': '&#8220;should&#8221; means that compliance with a requirement or a test is recommended but is not mandatory for compliance with this standard;'}}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'rdfs:label': '-'}, {'@id': 'http://smart.iec.ch/provisionset/76f16bc1-efbf-4ad2-aef5-e071f8d19464', '@type': 'corext:ListItem', 'trans:sortKey': 'IEC60601120050000000100', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/2858802a-e73d-4c80-a2dc-fe589dee2574', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000101', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/a684f2ea-083b-43cb-8d0f-8b4e30aa466d', '@type': 'core:Permission', 'trans:sortKey': 'IEC60601120050000000102', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/6ffe553a-de64-4399-b9de-452264eb9139', '@type': 'core:Textual', 'core:hasPlainContent': '\"may\" is used to describe a permissible way to achieve compliance with a requirement or test.', 'core:hasFormattedContent': '&#8220;may&#8221; is used to describe a permissible way to achieve compliance with a requirement or test.'}}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'rdfs:label': '-'}], 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/provisionset/bfa5742e-7402-4290-a77c-1202629dd9c2', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000103', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/11e80b3e-1671-4685-92d6-c48a8f9813f2', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000104', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/ad2383b9-4ffd-4b56-bb81-5d635e83fd51', '@type': 'core:Textual', 'core:hasPlainContent': 'An asterisk (* ) as the first character of a title or at the beginning of a paragraph or table title indicates that there is guidance or rationale related to that item in Annex A.', 'core:hasFormattedContent': 'An asterisk (*&#160;) as the first character of a title or at the beginning of a paragraph or table title indicates that there is guidance or rationale related to that item in <xref ref-type=\"app\" rid=\"http://smart.iec.ch/clause/d2b89b6f-8531-4986-9cb1-e2cfa4d59889\">Annex&#160;A</xref>.'}}], 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/provisionset/5cc23432-7f8d-449b-bf4b-4a7640a927cb', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000105', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/51f9d365-5844-449a-9cc2-007ebce50efc', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000106', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/30ea7dbc-101f-49ef-881c-34dd0335a9c4', '@type': 'core:Textual', 'core:hasPlainContent': 'The committee has decided that the contents of this publication will remain unchanged until the maintenance result date indicated on the IEC web site under \" http://webstore.iec.ch \" in the data related to the specific publication.', 'core:hasFormattedContent': 'The committee has decided that the contents of this publication will remain unchanged until the maintenance result date indicated on the IEC web site under &#8220; http://webstore.iec.ch&#8221; in the data related to the specific publication.'}}, {'@id': 'http://smart.iec.ch/provision/9b383d6b-fa2d-443b-97c8-67d33025f43c', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000107', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/112251f1-c25a-4bc3-b78a-4d56c2860021', '@type': 'core:Textual', 'core:hasPlainContent': 'At this date, the publication will be', 'core:hasFormattedContent': 'At this date, the publication will be'}}], 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/provisionset/83513094-4093-49d7-b6e5-e85bcd9a8811', '@type': 'corext:List', 'trans:sortKey': 'IEC60601120050000000108', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/8d59d090-c48e-40f0-b6d2-121769ae8147', '@type': 'corext:ListItem', 'trans:sortKey': 'IEC60601120050000000109', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/2ed25860-12c9-4e45-a5ed-28c8fb2594b4', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000110', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/73002ef2-79db-40dd-85ca-80bc7e59db24', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000111', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/65d81327-f52c-4574-9ef4-1213c5472ba8', '@type': 'core:Textual', 'core:hasPlainContent': 'reconfirmed;', 'core:hasFormattedContent': 'reconfirmed;'}}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'rdfs:label': '*'}, {'@id': 'http://smart.iec.ch/provisionset/b1cffd77-5c96-4a84-a807-259077289c50', '@type': 'corext:ListItem', 'trans:sortKey': 'IEC60601120050000000112', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/ae6593a0-8c2a-4eed-98ad-0a7acbbce2f8', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000113', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/2ff2e962-29f4-44ae-96fc-6f1ed3fa85a7', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000114', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/5c157eba-4a4c-48b5-bf71-279b94854037', '@type': 'core:Textual', 'core:hasPlainContent': 'withdrawn;', 'core:hasFormattedContent': 'withdrawn;'}}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'rdfs:label': '*'}, {'@id': 'http://smart.iec.ch/provisionset/a2953123-4a99-431b-aae2-bcac97adbd5f', '@type': 'corext:ListItem', 'trans:sortKey': 'IEC60601120050000000115', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/3213eb20-39ee-40a0-bcf4-223e4b045bbf', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000116', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/f9070993-30c6-440a-ae1b-7e4049ef26fd', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000117', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/d76a0d2e-8648-4492-8edf-fa754c6b492a', '@type': 'core:Textual', 'core:hasPlainContent': 'replaced by a revised edition, or', 'core:hasFormattedContent': 'replaced by a revised edition, or'}}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'rdfs:label': '*'}, {'@id': 'http://smart.iec.ch/provisionset/22dabf08-1d60-459a-b4d1-0bb9a5aaf63a', '@type': 'corext:ListItem', 'trans:sortKey': 'IEC60601120050000000118', 'core:comprisesProvisionSet': [{'@id': 'http://smart.iec.ch/provisionset/1aa2e0e5-8f1f-4fe8-8834-e884dbbefe6a', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000119', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/38342b5b-15f6-4f8b-b484-b8bb6c28b181', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000120', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/a3941792-5ca0-4b70-86ce-6a6ec516edae', '@type': 'core:Textual', 'core:hasPlainContent': 'amended.', 'core:hasFormattedContent': 'amended.'}}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'rdfs:label': '*'}], 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}, {'@id': 'http://smart.iec.ch/provisionset/0654503b-9cdb-471b-9c11-71129e859961', '@type': 'corext:Paragraph', 'trans:sortKey': 'IEC60601120050000000121', 'core:comprisesProvision': [{'@id': 'http://smart.iec.ch/provision/9d84fcf1-aaf9-49b7-a0be-9ba4a7a77e64', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000122', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/3cb38dd5-e215-4791-880f-5b62b454d330', '@type': 'core:Textual', 'core:hasPlainContent': 'The contents of the corrigenda 1 (2006-12) and 2 (2007-12), and the Interpretation sheets 1 (2008-04), 2 (2009-01) and 3 (2013-05) have been included in this copy.', 'core:hasFormattedContent': 'The contents of the corrigenda 1 (2006-12) and 2 (2007-12), and the Interpretation sheets 1 (2008-04), 2 (2009-01) and 3 (2013-05) have been included in this copy.'}}, {'@id': 'http://smart.iec.ch/provision/572f89e7-8f2a-41fe-89d3-68f2a6a15c67', '@type': 'core:Statement', 'trans:sortKey': 'IEC60601120050000000123', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12', 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'hasBindingnessType': 'core:Normative', 'core:hasContent': {'@id': 'http://smart.iec.ch/content/7c06803f-2673-4a05-bdef-cc64e925045d', '@type': 'core:Textual', 'core:hasPlainContent': 'The contents of the corrigendum 3 (2022-12) only apply to the French version.', 'core:hasFormattedContent': 'The contents of the corrigendum 3 (2022-12) only apply to the French version.'}}], 'withinClause': 'http://smart.iec.ch/clause/d2370186-f4b8-4bba-b308-b18975249f64', 'belongsToStandard': 'http://smart.iec.ch/publication/urn:iec:std:iec:60601-1:2005-12'}], '@context': {'termType': {'@type': '@id', '@id': 'tbx:termType'}, 'hasTest': {'@type': '@id', '@id': 'ca:hasTest'}, 'rdfs': 'http://www.w3.org/2000/01/rdf-schema#', 'hasBindingnessType': {'@type': '@id', '@id': 'core:hasBindingnessType'}, 'tbx': 'http://purl.org/smart-standards/tbx#', 'referencesStandard': {'@type': '@id', '@id': 'core:referencesStandard'}, 'usesTerm': {'@type': '@id', '@id': 'core:usesTerm'}, 'hasMeasurement': {'@type': '@id', '@id': 'ca:hasMeasurement'}, 'source': {'@type': '@id', '@id': 'tbx:source'}, 'entailedTerm': {'@type': '@id', '@id': 'tbx:entailedTerm'}, 'references': {'@type': '@id', '@id': 'dcterms:references'}, 'dcterms': 'http://purl.org/dc/terms/', 'hasAsset': {'@type': '@id', '@id': 'core:hasAsset'}, 'core': 'http://purl.org/smart-standards/core#', 'trans': 'http://iec.ch/smart/transformation#', 'belongsToStandard': {'@type': '@id', '@id': 'core:belongsToStandard'}, 'ca': 'http://purl.org/smart-standards/ca#', 'comprisesClause': {'@type': '@id', '@id': 'corext:comprisesClause'}, 'corext': 'http://purl.org/smart-standards/core/extension#', 'hasRelatedClause': {'@type': '@id', '@id': 'core:hasRelatedClause'}, 'partOfSpeech': {'@type': '@id', '@id': 'tbx:partOfSpeech'}, 'withinClause': {'@type': '@id', '@id': 'core:withinClause'}}}\n"
     ]
    }
   ],
   "source": [
    "api_url = f\"https://sim-apim.azure-api.net/preprod/v1/standards/{standard_urn}/clauses/{foreword_urn}\"\n",
    "\n",
    "api_response = requests.get(api_url, headers=headers)\n",
    "api_response.raise_for_status()\n",
    "print(api_response.json())"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "9e3e6aba",
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": ".venv",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.11.11"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}
