diff --git a/convert-anystyle-data/anystyle-to-tei.ipynb b/convert-anystyle-data/anystyle-to-tei.ipynb
index 4aa4e916c9601843da24b2aa61f5e98d66c9a601..0dae57c758109b425121c5a692a199df899e896e 100644
--- a/convert-anystyle-data/anystyle-to-tei.ipynb
+++ b/convert-anystyle-data/anystyle-to-tei.ipynb
@@ -6,12 +6,11 @@
     "# Conversion to TEI (`<bibl>`)\n",
     "\n",
     "References: \n",
-    "- https://vault.tei-c.de/P5/3.0.0/doc/tei-p5-doc/en/html/CO.html#COBI (Overview)\n",
-    "- https://vault.tei-c.de/P5/3.0.0/doc/tei-p5-doc/en/html/CO.html#COBIOT (Mapping to other bibliographic formats)\n",
-    "- https://vault.tei-c.de/P5/3.0.0/doc/tei-p5-doc/en/html/ref-bibl.html (`<bibl>`)\n",
-    "- https://vault.tei-c.de/P5/3.0.0/doc/tei-p5-doc/en/html/ref-biblStruct.html (`biblStruct`)\n",
+    "- https://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COBI (Overview)\n",
+    "- https://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COBIOT (Mapping to other bibliographic formats)\n",
+    "- https://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-bibl.html (`<bibl>`)\n",
+    "- https://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-biblStruct.html (`biblStruct`)\n",
     "- https://epidoc.stoa.org/gl/latest/supp-bibliography.html (Examples)\n",
-    "- https://quod.lib.umich.edu/cgi/t/tei/tei-idx?type=HTML&rgn=DIV2&byte=647051\n",
     "- https://grobid.readthedocs.io/en/latest/training/Bibliographical-references/ (Grobid examples using `<bibl>`)\n",
     "- http://www.jsonml.org/ (a JSON schema for lossless conversion from/to xml)\n",
     "\n",
@@ -80,7 +79,7 @@
     "\n",
     "def generate_tag_docs(xsd_path):\n",
     "    namespaces = {'xs': 'http://www.w3.org/2001/XMLSchema'}\n",
-    "    doc_base_url = \"https://vault.tei-c.de/P5/3.0.0/doc/tei-p5-doc/en/html\"\n",
+    "    doc_base_url = \"https://www.tei-c.org/release/doc/tei-p5-doc/en/html\"\n",
     "\n",
     "    tree = ET.parse('schema/tei/tei_all.xsd')\n",
     "    root = tree.getroot()\n",
@@ -106,7 +105,9 @@
     "cache_file = \"schema/tei/tei-tags-documentation.json\"\n",
     "if not os.path.isfile(cache_file):\n",
     "    df = generate_tag_docs(\"schema/tei/tei_all.xsd\")\n",
-    "    df.to_json(cache_file, index=False, orient='records')\n",
+    "    json_str = df.to_json(index=False, orient='records', indent=4).replace(r\"\\/\", \"/\")\n",
+    "    with open(cache_file, \"w\", encoding='utf-8') as f:\n",
+    "        f.write(json_str)\n",
     "else:\n",
     "    df = pd.read_json(cache_file)\n",
     "df\n"
@@ -114,8 +115,8 @@
    "metadata": {
     "collapsed": false,
     "ExecuteTime": {
-     "end_time": "2024-07-31T06:58:40.976086Z",
-     "start_time": "2024-07-31T06:58:06.416568500Z"
+     "end_time": "2024-07-31T11:14:56.479071400Z",
+     "start_time": "2024-07-31T11:14:27.200325700Z"
     }
    },
    "id": "572f566fc9784238",
@@ -126,7 +127,7 @@
       "application/vnd.jupyter.widget-view+json": {
        "version_major": 2,
        "version_minor": 0,
-       "model_id": "3f907b3de5a3451689726c258994e188"
+       "model_id": "85ac57b7d0404c92962b2eb1b8c13c55"
       }
      },
      "metadata": {},
@@ -134,15 +135,15 @@
     },
     {
      "data": {
-      "text/plain": "          name                                        description  \\\n0       author  (author) in a bibliographic reference, contain...   \n1    biblScope  (scope of bibliographic reference) defines the...   \n2   citedRange  (cited range) defines the range of cited conte...   \n3         date             (date) contains a date in any format.    \n4      edition  (edition) describes the particularities of one...   \n5       editor  contains a secondary statement of responsibili...   \n6         idno  (identifier) supplies any form of identifier u...   \n7     location  (location) defines the location of a place as ...   \n8         note             (note) contains a note or annotation.    \n9      orgName  (organization name) contains an organizational...   \n10   publisher  (publisher) provides the name of the organizat...   \n11    pubPlace  (publication place) contains the name of the p...   \n12         ptr  (pointer) defines a pointer to another location.    \n13      series  (series information) contains information abou...   \n14       title    (title) contains a title for any kind of work.    \n\n                                        documentation  \\\n0   3.12.2.2. Titles, Authors, and Editors 2.2.1. ...   \n1   3.12.2.5. Scopes and Ranges in Bibliographic C...   \n2   3.12.2.5. Scopes and Ranges in Bibliographic C...   \n3   3.6.4. Dates and Times 2.2.4. Publication, Dis...   \n4                        2.2.2. The Edition Statement   \n5              3.12.2.2. Titles, Authors, and Editors   \n6   14.3.1. Basic Principles 2.2.4. Publication, D...   \n7                                      14.3.4. Places   \n8   3.9.1. Notes and Simple Annotation 2.2.6. The ...   \n9                        14.2.2. Organizational Names   \n10  3.12.2.4. Imprint, Size of a Document, and Rep...   \n11  3.12.2.4. Imprint, Size of a Document, and Rep...   \n12  3.7. Simple Links and Cross-References 17.1. L...   \n13  3.12.2.1. Analytic, Monographic, and Series Le...   \n14  3.12.2.2. Titles, Authors, and Editors 2.2.1. ...   \n\n                                                 urls  \n0   {'3.12.2.2': 'https://vault.tei-c.de/P5/3.0.0/...  \n1   {'3.12.2.5': 'https://vault.tei-c.de/P5/3.0.0/...  \n2   {'3.12.2.5': 'https://vault.tei-c.de/P5/3.0.0/...  \n3   {'3.6.4': 'https://vault.tei-c.de/P5/3.0.0/doc...  \n4   {'2.2.2': 'https://vault.tei-c.de/P5/3.0.0/doc...  \n5   {'3.12.2.2': 'https://vault.tei-c.de/P5/3.0.0/...  \n6   {'14.3.1': 'https://vault.tei-c.de/P5/3.0.0/do...  \n7   {'14.3.4': 'https://vault.tei-c.de/P5/3.0.0/do...  \n8   {'3.9.1': 'https://vault.tei-c.de/P5/3.0.0/doc...  \n9   {'14.2.2': 'https://vault.tei-c.de/P5/3.0.0/do...  \n10  {'3.12.2.4': 'https://vault.tei-c.de/P5/3.0.0/...  \n11  {'3.12.2.4': 'https://vault.tei-c.de/P5/3.0.0/...  \n12  {'3.7': 'https://vault.tei-c.de/P5/3.0.0/doc/t...  \n13  {'3.12.2.1': 'https://vault.tei-c.de/P5/3.0.0/...  \n14  {'3.12.2.2': 'https://vault.tei-c.de/P5/3.0.0/...  ",
-      "text/html": "<div>\n<style scoped>\n    .dataframe tbody tr th:only-of-type {\n        vertical-align: middle;\n    }\n\n    .dataframe tbody tr th {\n        vertical-align: top;\n    }\n\n    .dataframe thead th {\n        text-align: right;\n    }\n</style>\n<table border=\"1\" class=\"dataframe\">\n  <thead>\n    <tr style=\"text-align: right;\">\n      <th></th>\n      <th>name</th>\n      <th>description</th>\n      <th>documentation</th>\n      <th>urls</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr>\n      <th>0</th>\n      <td>author</td>\n      <td>(author) in a bibliographic reference, contain...</td>\n      <td>3.12.2.2. Titles, Authors, and Editors 2.2.1. ...</td>\n      <td>{'3.12.2.2': 'https://vault.tei-c.de/P5/3.0.0/...</td>\n    </tr>\n    <tr>\n      <th>1</th>\n      <td>biblScope</td>\n      <td>(scope of bibliographic reference) defines the...</td>\n      <td>3.12.2.5. Scopes and Ranges in Bibliographic C...</td>\n      <td>{'3.12.2.5': 'https://vault.tei-c.de/P5/3.0.0/...</td>\n    </tr>\n    <tr>\n      <th>2</th>\n      <td>citedRange</td>\n      <td>(cited range) defines the range of cited conte...</td>\n      <td>3.12.2.5. Scopes and Ranges in Bibliographic C...</td>\n      <td>{'3.12.2.5': 'https://vault.tei-c.de/P5/3.0.0/...</td>\n    </tr>\n    <tr>\n      <th>3</th>\n      <td>date</td>\n      <td>(date) contains a date in any format.</td>\n      <td>3.6.4. Dates and Times 2.2.4. Publication, Dis...</td>\n      <td>{'3.6.4': 'https://vault.tei-c.de/P5/3.0.0/doc...</td>\n    </tr>\n    <tr>\n      <th>4</th>\n      <td>edition</td>\n      <td>(edition) describes the particularities of one...</td>\n      <td>2.2.2. The Edition Statement</td>\n      <td>{'2.2.2': 'https://vault.tei-c.de/P5/3.0.0/doc...</td>\n    </tr>\n    <tr>\n      <th>5</th>\n      <td>editor</td>\n      <td>contains a secondary statement of responsibili...</td>\n      <td>3.12.2.2. Titles, Authors, and Editors</td>\n      <td>{'3.12.2.2': 'https://vault.tei-c.de/P5/3.0.0/...</td>\n    </tr>\n    <tr>\n      <th>6</th>\n      <td>idno</td>\n      <td>(identifier) supplies any form of identifier u...</td>\n      <td>14.3.1. Basic Principles 2.2.4. Publication, D...</td>\n      <td>{'14.3.1': 'https://vault.tei-c.de/P5/3.0.0/do...</td>\n    </tr>\n    <tr>\n      <th>7</th>\n      <td>location</td>\n      <td>(location) defines the location of a place as ...</td>\n      <td>14.3.4. Places</td>\n      <td>{'14.3.4': 'https://vault.tei-c.de/P5/3.0.0/do...</td>\n    </tr>\n    <tr>\n      <th>8</th>\n      <td>note</td>\n      <td>(note) contains a note or annotation.</td>\n      <td>3.9.1. Notes and Simple Annotation 2.2.6. The ...</td>\n      <td>{'3.9.1': 'https://vault.tei-c.de/P5/3.0.0/doc...</td>\n    </tr>\n    <tr>\n      <th>9</th>\n      <td>orgName</td>\n      <td>(organization name) contains an organizational...</td>\n      <td>14.2.2. Organizational Names</td>\n      <td>{'14.2.2': 'https://vault.tei-c.de/P5/3.0.0/do...</td>\n    </tr>\n    <tr>\n      <th>10</th>\n      <td>publisher</td>\n      <td>(publisher) provides the name of the organizat...</td>\n      <td>3.12.2.4. Imprint, Size of a Document, and Rep...</td>\n      <td>{'3.12.2.4': 'https://vault.tei-c.de/P5/3.0.0/...</td>\n    </tr>\n    <tr>\n      <th>11</th>\n      <td>pubPlace</td>\n      <td>(publication place) contains the name of the p...</td>\n      <td>3.12.2.4. Imprint, Size of a Document, and Rep...</td>\n      <td>{'3.12.2.4': 'https://vault.tei-c.de/P5/3.0.0/...</td>\n    </tr>\n    <tr>\n      <th>12</th>\n      <td>ptr</td>\n      <td>(pointer) defines a pointer to another location.</td>\n      <td>3.7. Simple Links and Cross-References 17.1. L...</td>\n      <td>{'3.7': 'https://vault.tei-c.de/P5/3.0.0/doc/t...</td>\n    </tr>\n    <tr>\n      <th>13</th>\n      <td>series</td>\n      <td>(series information) contains information abou...</td>\n      <td>3.12.2.1. Analytic, Monographic, and Series Le...</td>\n      <td>{'3.12.2.1': 'https://vault.tei-c.de/P5/3.0.0/...</td>\n    </tr>\n    <tr>\n      <th>14</th>\n      <td>title</td>\n      <td>(title) contains a title for any kind of work.</td>\n      <td>3.12.2.2. Titles, Authors, and Editors 2.2.1. ...</td>\n      <td>{'3.12.2.2': 'https://vault.tei-c.de/P5/3.0.0/...</td>\n    </tr>\n  </tbody>\n</table>\n</div>"
+      "text/plain": "          name                                        description  \\\n0       author  (author) in a bibliographic reference, contain...   \n1    biblScope  (scope of bibliographic reference) defines the...   \n2   citedRange  (cited range) defines the range of cited conte...   \n3         date             (date) contains a date in any format.    \n4      edition  (edition) describes the particularities of one...   \n5       editor  contains a secondary statement of responsibili...   \n6         idno  (identifier) supplies any form of identifier u...   \n7     location  (location) defines the location of a place as ...   \n8         note             (note) contains a note or annotation.    \n9      orgName  (organization name) contains an organizational...   \n10   publisher  (publisher) provides the name of the organizat...   \n11    pubPlace  (publication place) contains the name of the p...   \n12         ptr  (pointer) defines a pointer to another location.    \n13      series  (series information) contains information abou...   \n14       title    (title) contains a title for any kind of work.    \n\n                                        documentation  \\\n0   3.12.2.2. Titles, Authors, and Editors 2.2.1. ...   \n1   3.12.2.5. Scopes and Ranges in Bibliographic C...   \n2   3.12.2.5. Scopes and Ranges in Bibliographic C...   \n3   3.6.4. Dates and Times 2.2.4. Publication, Dis...   \n4                        2.2.2. The Edition Statement   \n5              3.12.2.2. Titles, Authors, and Editors   \n6   14.3.1. Basic Principles 2.2.4. Publication, D...   \n7                                      14.3.4. Places   \n8   3.9.1. Notes and Simple Annotation 2.2.6. The ...   \n9                        14.2.2. Organizational Names   \n10  3.12.2.4. Imprint, Size of a Document, and Rep...   \n11  3.12.2.4. Imprint, Size of a Document, and Rep...   \n12  3.7. Simple Links and Cross-References 17.1. L...   \n13  3.12.2.1. Analytic, Monographic, and Series Le...   \n14  3.12.2.2. Titles, Authors, and Editors 2.2.1. ...   \n\n                                                 urls  \n0   {'3.12.2.2': 'https://www.tei-c.org/release/do...  \n1   {'3.12.2.5': 'https://www.tei-c.org/release/do...  \n2   {'3.12.2.5': 'https://www.tei-c.org/release/do...  \n3   {'3.6.4': 'https://www.tei-c.org/release/doc/t...  \n4   {'2.2.2': 'https://www.tei-c.org/release/doc/t...  \n5   {'3.12.2.2': 'https://www.tei-c.org/release/do...  \n6   {'14.3.1': 'https://www.tei-c.org/release/doc/...  \n7   {'14.3.4': 'https://www.tei-c.org/release/doc/...  \n8   {'3.9.1': 'https://www.tei-c.org/release/doc/t...  \n9   {'14.2.2': 'https://www.tei-c.org/release/doc/...  \n10  {'3.12.2.4': 'https://www.tei-c.org/release/do...  \n11  {'3.12.2.4': 'https://www.tei-c.org/release/do...  \n12  {'3.7': 'https://www.tei-c.org/release/doc/tei...  \n13  {'3.12.2.1': 'https://www.tei-c.org/release/do...  \n14  {'3.12.2.2': 'https://www.tei-c.org/release/do...  ",
+      "text/html": "<div>\n<style scoped>\n    .dataframe tbody tr th:only-of-type {\n        vertical-align: middle;\n    }\n\n    .dataframe tbody tr th {\n        vertical-align: top;\n    }\n\n    .dataframe thead th {\n        text-align: right;\n    }\n</style>\n<table border=\"1\" class=\"dataframe\">\n  <thead>\n    <tr style=\"text-align: right;\">\n      <th></th>\n      <th>name</th>\n      <th>description</th>\n      <th>documentation</th>\n      <th>urls</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr>\n      <th>0</th>\n      <td>author</td>\n      <td>(author) in a bibliographic reference, contain...</td>\n      <td>3.12.2.2. Titles, Authors, and Editors 2.2.1. ...</td>\n      <td>{'3.12.2.2': 'https://www.tei-c.org/release/do...</td>\n    </tr>\n    <tr>\n      <th>1</th>\n      <td>biblScope</td>\n      <td>(scope of bibliographic reference) defines the...</td>\n      <td>3.12.2.5. Scopes and Ranges in Bibliographic C...</td>\n      <td>{'3.12.2.5': 'https://www.tei-c.org/release/do...</td>\n    </tr>\n    <tr>\n      <th>2</th>\n      <td>citedRange</td>\n      <td>(cited range) defines the range of cited conte...</td>\n      <td>3.12.2.5. Scopes and Ranges in Bibliographic C...</td>\n      <td>{'3.12.2.5': 'https://www.tei-c.org/release/do...</td>\n    </tr>\n    <tr>\n      <th>3</th>\n      <td>date</td>\n      <td>(date) contains a date in any format.</td>\n      <td>3.6.4. Dates and Times 2.2.4. Publication, Dis...</td>\n      <td>{'3.6.4': 'https://www.tei-c.org/release/doc/t...</td>\n    </tr>\n    <tr>\n      <th>4</th>\n      <td>edition</td>\n      <td>(edition) describes the particularities of one...</td>\n      <td>2.2.2. The Edition Statement</td>\n      <td>{'2.2.2': 'https://www.tei-c.org/release/doc/t...</td>\n    </tr>\n    <tr>\n      <th>5</th>\n      <td>editor</td>\n      <td>contains a secondary statement of responsibili...</td>\n      <td>3.12.2.2. Titles, Authors, and Editors</td>\n      <td>{'3.12.2.2': 'https://www.tei-c.org/release/do...</td>\n    </tr>\n    <tr>\n      <th>6</th>\n      <td>idno</td>\n      <td>(identifier) supplies any form of identifier u...</td>\n      <td>14.3.1. Basic Principles 2.2.4. Publication, D...</td>\n      <td>{'14.3.1': 'https://www.tei-c.org/release/doc/...</td>\n    </tr>\n    <tr>\n      <th>7</th>\n      <td>location</td>\n      <td>(location) defines the location of a place as ...</td>\n      <td>14.3.4. Places</td>\n      <td>{'14.3.4': 'https://www.tei-c.org/release/doc/...</td>\n    </tr>\n    <tr>\n      <th>8</th>\n      <td>note</td>\n      <td>(note) contains a note or annotation.</td>\n      <td>3.9.1. Notes and Simple Annotation 2.2.6. The ...</td>\n      <td>{'3.9.1': 'https://www.tei-c.org/release/doc/t...</td>\n    </tr>\n    <tr>\n      <th>9</th>\n      <td>orgName</td>\n      <td>(organization name) contains an organizational...</td>\n      <td>14.2.2. Organizational Names</td>\n      <td>{'14.2.2': 'https://www.tei-c.org/release/doc/...</td>\n    </tr>\n    <tr>\n      <th>10</th>\n      <td>publisher</td>\n      <td>(publisher) provides the name of the organizat...</td>\n      <td>3.12.2.4. Imprint, Size of a Document, and Rep...</td>\n      <td>{'3.12.2.4': 'https://www.tei-c.org/release/do...</td>\n    </tr>\n    <tr>\n      <th>11</th>\n      <td>pubPlace</td>\n      <td>(publication place) contains the name of the p...</td>\n      <td>3.12.2.4. Imprint, Size of a Document, and Rep...</td>\n      <td>{'3.12.2.4': 'https://www.tei-c.org/release/do...</td>\n    </tr>\n    <tr>\n      <th>12</th>\n      <td>ptr</td>\n      <td>(pointer) defines a pointer to another location.</td>\n      <td>3.7. Simple Links and Cross-References 17.1. L...</td>\n      <td>{'3.7': 'https://www.tei-c.org/release/doc/tei...</td>\n    </tr>\n    <tr>\n      <th>13</th>\n      <td>series</td>\n      <td>(series information) contains information abou...</td>\n      <td>3.12.2.1. Analytic, Monographic, and Series Le...</td>\n      <td>{'3.12.2.1': 'https://www.tei-c.org/release/do...</td>\n    </tr>\n    <tr>\n      <th>14</th>\n      <td>title</td>\n      <td>(title) contains a title for any kind of work.</td>\n      <td>3.12.2.2. Titles, Authors, and Editors 2.2.1. ...</td>\n      <td>{'3.12.2.2': 'https://www.tei-c.org/release/do...</td>\n    </tr>\n  </tbody>\n</table>\n</div>"
      },
-     "execution_count": 33,
+     "execution_count": 42,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
-   "execution_count": 33
+   "execution_count": 42
   },
   {
    "metadata": {},
diff --git a/convert-anystyle-data/schema/tei-tags-documentation.json b/convert-anystyle-data/schema/tei-tags-documentation.json
index 7f3253a4c33132170263269a0fa0df3f477881e0..43f1265a0b5fc66a723a33fd425d3bb804a89b84 100644
--- a/convert-anystyle-data/schema/tei-tags-documentation.json
+++ b/convert-anystyle-data/schema/tei-tags-documentation.json
@@ -1,137 +1,138 @@
 [
-  {
-    "name": "author",
-    "description": "(author) in a bibliographic reference, contains the name(s) of an author, personal or corporate, of a work; for example in the same form as that provided by a recognized bibliographic name authority. ",
-    "documentation": "3.12.2.2. Titles, Authors, and Editors 2.2.1. The Title Statement",
-    "urls": {
-      "3.12.2.2": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/CO.html#COBICOR",
-      "2.2.1": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/HD.html#HD21"
+    {
+        "name":"author",
+        "description":"(author) in a bibliographic reference, contains the name(s) of an author, personal or corporate, of a work; for example in the same form as that provided by a recognized bibliographic name authority. ",
+        "documentation":"3.12.2.2. Titles, Authors, and Editors 2.2.1. The Title Statement",
+        "urls":{
+            "3.12.2.2":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COBICOR",
+            "2.2.1":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD21"
+        }
+    },
+    {
+        "name":"biblScope",
+        "description":"(scope of bibliographic reference) defines the scope of a bibliographic reference, for example as a list of page numbers, or a named subdivision of a larger work. ",
+        "documentation":"3.12.2.5. Scopes and Ranges in Bibliographic Citations",
+        "urls":{
+            "3.12.2.5":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COBICOB"
+        }
+    },
+    {
+        "name":"citedRange",
+        "description":"(cited range) defines the range of cited content, often represented by pages or other units ",
+        "documentation":"3.12.2.5. Scopes and Ranges in Bibliographic Citations",
+        "urls":{
+            "3.12.2.5":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COBICOB"
+        }
+    },
+    {
+        "name":"date",
+        "description":"(date) contains a date in any format. ",
+        "documentation":"3.6.4. Dates and Times 2.2.4. Publication, Distribution, Licensing, etc. 2.6. The Revision Description 3.12.2.4. Imprint, Size of a Document, and Reprint Information 16.2.3. The Setting Description 14.4. Dates",
+        "urls":{
+            "3.6.4":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#CONADA",
+            "2.2.4":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD24",
+            "2.6":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD6",
+            "3.12.2.4":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COBICOI",
+            "16.2.3":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/CC.html#CCAHSE",
+            "14.4":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#NDDATE"
+        }
+    },
+    {
+        "name":"edition",
+        "description":"(edition) describes the particularities of one edition of a text. ",
+        "documentation":"2.2.2. The Edition Statement",
+        "urls":{
+            "2.2.2":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD22"
+        }
+    },
+    {
+        "name":"editor",
+        "description":"contains a secondary statement of responsibility for a bibliographic item, for example the name of an individual, institution or organization, (or of several such) acting as editor, compiler, translator, etc. ",
+        "documentation":"3.12.2.2. Titles, Authors, and Editors",
+        "urls":{
+            "3.12.2.2":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COBICOR"
+        }
+    },
+    {
+        "name":"idno",
+        "description":"(identifier) supplies any form of identifier used to identify some object, such as a bibliographic item, a person, a title, an organization, etc. in a standardized way. ",
+        "documentation":"14.3.1. Basic Principles 2.2.4. Publication, Distribution, Licensing, etc. 2.2.5. The Series Statement 3.12.2.4. Imprint, Size of a Document, and Reprint Information",
+        "urls":{
+            "14.3.1":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#NDPERSbp",
+            "2.2.4":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD24",
+            "2.2.5":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD26",
+            "3.12.2.4":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COBICOI"
+        }
+    },
+    {
+        "name":"location",
+        "description":"(location) defines the location of a place as a set of geographical coordinates, in terms of other named geo-political entities, or as an address. ",
+        "documentation":"14.3.4. Places",
+        "urls":{
+            "14.3.4":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#NDGEOG"
+        }
+    },
+    {
+        "name":"note",
+        "description":"(note) contains a note or annotation. ",
+        "documentation":"3.9.1. Notes and Simple Annotation 2.2.6. The Notes Statement 3.12.2.8. Notes and Statement of Language 10.3.5.4. Notes within Entries",
+        "urls":{
+            "3.9.1":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#CONONO",
+            "2.2.6":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD27",
+            "3.12.2.8":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COBICON",
+            "10.3.5.4":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/DI.html#DITPNO"
+        }
+    },
+    {
+        "name":"orgName",
+        "description":"(organization name) contains an organizational name. ",
+        "documentation":"14.2.2. Organizational Names",
+        "urls":{
+            "14.2.2":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html#NDORG"
+        }
+    },
+    {
+        "name":"publisher",
+        "description":"(publisher) provides the name of the organization responsible for the publication or distribution of a bibliographic item. ",
+        "documentation":"3.12.2.4. Imprint, Size of a Document, and Reprint Information 2.2.4. Publication, Distribution, Licensing, etc.",
+        "urls":{
+            "3.12.2.4":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COBICOI",
+            "2.2.4":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD24"
+        }
+    },
+    {
+        "name":"pubPlace",
+        "description":"(publication place) contains the name of the place where a bibliographic item was published. ",
+        "documentation":"3.12.2.4. Imprint, Size of a Document, and Reprint Information",
+        "urls":{
+            "3.12.2.4":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COBICOI"
+        }
+    },
+    {
+        "name":"ptr",
+        "description":"(pointer) defines a pointer to another location. ",
+        "documentation":"3.7. Simple Links and Cross-References 17.1. Links",
+        "urls":{
+            "3.7":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COXR",
+            "17.1":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/SA.html#SAPT"
+        }
+    },
+    {
+        "name":"series",
+        "description":"(series information) contains information about the series in which a book or other bibliographic item has appeared. ",
+        "documentation":"3.12.2.1. Analytic, Monographic, and Series Levels",
+        "urls":{
+            "3.12.2.1":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COBICOL"
+        }
+    },
+    {
+        "name":"title",
+        "description":"(title) contains a title for any kind of work. ",
+        "documentation":"3.12.2.2. Titles, Authors, and Editors 2.2.1. The Title Statement 2.2.5. The Series Statement",
+        "urls":{
+            "3.12.2.2":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#COBICOR",
+            "2.2.1":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD21",
+            "2.2.5":"https://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD26"
+        }
     }
-  },
-  {
-    "name": "biblScope",
-    "description": "(scope of bibliographic reference) defines the scope of a bibliographic reference, for example as a list of page numbers, or a named subdivision of a larger work. ",
-    "documentation": "3.12.2.5. Scopes and Ranges in Bibliographic Citations",
-    "urls": {
-      "3.12.2.5": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/CO.html#COBICOB"
-    }
-  },
-  {
-    "name": "citedRange",
-    "description": "(cited range) defines the range of cited content, often represented by pages or other units ",
-    "documentation": "3.12.2.5. Scopes and Ranges in Bibliographic Citations",
-    "urls": {
-      "3.12.2.5": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/CO.html#COBICOB"
-    }
-  },
-  {
-    "name": "date",
-    "description": "(date) contains a date in any format. ",
-    "documentation": "3.6.4. Dates and Times 2.2.4. Publication, Distribution, Licensing, etc. 2.6. The Revision Description 3.12.2.4. Imprint, Size of a Document, and Reprint Information 16.2.3. The Setting Description 14.4. Dates",
-    "urls": {
-      "3.6.4": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/CO.html#CONADA",
-      "2.2.4": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/HD.html#HD24",
-      "2.6": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/HD.html#HD6",
-      "3.12.2.4": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/CO.html#COBICOI",
-      "16.2.3": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/CC.html#CCAHSE",
-      "14.4": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/ND.html#NDDATE"
-    }
-  },
-  {
-    "name": "edition",
-    "description": "(edition) describes the particularities of one edition of a text. ",
-    "documentation": "2.2.2. The Edition Statement",
-    "urls": {
-      "2.2.2": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/HD.html#HD22"
-    }
-  },
-  {
-    "name": "editor",
-    "description": "contains a secondary statement of responsibility for a bibliographic item, for example the name of an individual, institution or organization, (or of several such) acting as editor, compiler, translator, etc. ",
-    "documentation": "3.12.2.2. Titles, Authors, and Editors",
-    "urls": {
-      "3.12.2.2": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/CO.html#COBICOR"
-    }
-  },
-  {
-    "name": "idno",
-    "description": "(identifier) supplies any form of identifier used to identify some object, such as a bibliographic item, a person, a title, an organization, etc. in a standardized way. ",
-    "documentation": "14.3.1. Basic Principles 2.2.4. Publication, Distribution, Licensing, etc. 2.2.5. The Series Statement 3.12.2.4. Imprint, Size of a Document, and Reprint Information",
-    "urls": {
-      "14.3.1": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/HD.html#HD24",
-      "2.2.4": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/HD.html#HD26",
-      "2.2.5": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/CO.html#COBICOI"
-    }
-  },
-  {
-    "name": "location",
-    "description": "(location) defines the location of a place as a set of geographical coordinates, in terms of other named geo-political entities, or as an address. ",
-    "documentation": "14.3.4. Places",
-    "urls": {
-      "14.3.4": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/ND.html#NDGEOG"
-    }
-  },
-  {
-    "name": "note",
-    "description": "(note) contains a note or annotation. ",
-    "documentation": "3.9.1. Notes and Simple Annotation 2.2.6. The Notes Statement 3.12.2.8. Notes and Statement of Language 10.3.5.4. Notes within Entries",
-    "urls": {
-      "3.9.1": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/CO.html#CONONO",
-      "2.2.6": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/HD.html#HD27",
-      "3.12.2.8": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/CO.html#COBICON",
-      "10.3.5.4": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/DI.html#DITPNO"
-    }
-  },
-  {
-    "name": "orgName",
-    "description": "(organization name) contains an organizational name. ",
-    "documentation": "14.2.2. Organizational Names",
-    "urls": {
-      "14.2.2": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/ND.html#NDORG"
-    }
-  },
-  {
-    "name": "publisher",
-    "description": "(publisher) provides the name of the organization responsible for the publication or distribution of a bibliographic item. ",
-    "documentation": "3.12.2.4. Imprint, Size of a Document, and Reprint Information 2.2.4. Publication, Distribution, Licensing, etc.",
-    "urls": {
-      "3.12.2.4": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/CO.html#COBICOI",
-      "2.2.4": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/HD.html#HD24"
-    }
-  },
-  {
-    "name": "pubPlace",
-    "description": "(publication place) contains the name of the place where a bibliographic item was published. ",
-    "documentation": "3.12.2.4. Imprint, Size of a Document, and Reprint Information",
-    "urls": {
-      "3.12.2.4": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/CO.html#COBICOI"
-    }
-  },
-  {
-    "name": "ptr",
-    "description": "(pointer) defines a pointer to another location. ",
-    "documentation": "3.7. Simple Links and Cross-References 17.1. Links",
-    "urls": {
-      "3.7": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/CO.html#COXR",
-      "17.1": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/SA.html#SAPT"
-    }
-  },
-  {
-    "name": "series",
-    "description": "(series information) contains information about the series in which a book or other bibliographic item has appeared. ",
-    "documentation": "3.12.2.1. Analytic, Monographic, and Series Levels",
-    "urls": {
-      "3.12.2.1": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/CO.html#COBICOL"
-    }
-  },
-  {
-    "name": "title",
-    "description": "(title) contains a title for any kind of work. ",
-    "documentation": "3.12.2.2. Titles, Authors, and Editors 2.2.1. The Title Statement 2.2.5. The Series Statement",
-    "urls": {
-      "3.12.2.2": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/CO.html#COBICOR",
-      "2.2.1": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/HD.html#HD21",
-      "2.2.5": "https:\/\/vault.tei-c.de\/P5\/3.0.0\/doc\/tei-p5-doc\/en\/html\/HD.html#HD26"
-    }
-  }
 ]
\ No newline at end of file