These functions use a DCT specification to generate a construct overview or an instruction overview.

generate_construct_overview(
  dctSpec,
  include = c("definition", "measure_dev", "measure_code", "manipulate_dev",
    "manipulate_code", "aspect_dev", "aspect_code", "rel"),
  hideByDefault = NULL,
  divClass = "btn btn-secondary",
  headingLevel = 3,
  collapseButtons = TRUE,
  hyperlink_UCIDs = TRUE,
  HTMLoutput = FALSE,
  urlPrefix = "#",
  sortDecreasing = FALSE
)

generate_definitions_overview(
  dctSpecDf,
  headingLevel = 3,
  hyperlink_UCIDs = "Markdown",
  urlPrefix = "#",
  sortDecreasing = FALSE
)

generate_instruction_overview(
  dctSpecDf,
  type,
  headingLevel = 3,
  hyperlink_UCIDs = "Markdown",
  urlPrefix = "#",
  sortDecreasing = FALSE
)

Arguments

dctSpec

The DCT specification, as resulting from a call to load_dct_specs() or load_dct_dir().

include

Which elements to include in the construct overview.

hideByDefault

Which elements to hide by default.

divClass

The class of the button to collapse/expand sections.

headingLevel

The level of the heading in the Markdown output that is produces.

collapseButtons

Whether to include buttons to show/hide the definition and instructions.

hyperlink_UCIDs

Whether to create hyperlinks to UCIDs.

HTMLoutput

Whether to output to Markdown (FALSE) or HTML (TRUE).

urlPrefix

The prefix to insert before the URL in the produced hyperlink. The default, "#", results in a link to an anchor (an HTML a element) on the current page.

sortDecreasing

Whether to sort the constructs in decreasing order (TRUE), in increasing order (FALSE), or not at all (NULL).

dctSpecDf

The DCT specification dataframer, as produced by a call to load_dct_specs() or load_dct_dir(), and stored within the resulting object.

type

For instruction overviews, the type of instruction to generate can be specified: must be one of "measure_dev", "measure_code", "manipulate_dev", "manipulate_code", "aspect_dev", or "aspect_code".

Value

A character string with the overview.

Examples

exampleDCT <-
  psyverse::dct_object(
    prefix = "exampleConstruct",
    label = "An example construct",
    definition = "The definition goes here",
    measure_dev = "Here you can explain how to measure the construct"
  );
generate_construct_overview(exampleDCT);
#>    [1] ""                                                                                                                                                                                                                                                      
#>    [2] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>    [3] ""                                                                                                                                                                                                                                                      
#>    [4] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>    [5] ""                                                                                                                                                                                                                                                      
#>    [6] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>    [7] ""                                                                                                                                                                                                                                                      
#>    [8] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>    [9] ""                                                                                                                                                                                                                                                      
#>   [10] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>   [11] ""                                                                                                                                                                                                                                                      
#>   [12] ""                                                                                                                                                                                                                                                      
#>   [13] "#### Definition"                                                                                                                                                                                                                                       
#>   [14] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>   [15] ""                                                                                                                                                                                                                                                      
#>   [16] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>   [17] ""                                                                                                                                                                                                                                                      
#>   [18] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>   [19] ""                                                                                                                                                                                                                                                      
#>   [20] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>   [21] ""                                                                                                                                                                                                                                                      
#>   [22] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>   [23] ""                                                                                                                                                                                                                                                      
#>   [24] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>   [25] ""                                                                                                                                                                                                                                                      
#>   [26] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>   [27] ""                                                                                                                                                                                                                                                      
#>   [28] "</div>"                                                                                                                                                                                                                                                
#>   [29] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>   [30] ""                                                                                                                                                                                                                                                      
#>   [31] ""                                                                                                                                                                                                                                                      
#>   [32] "#### Instruction for developing measurement instruments"                                                                                                                                                                                               
#>   [33] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_dev');\">Show/hide measurement instruction</div>"        
#>   [34] ""                                                                                                                                                                                                                                                      
#>   [35] "<div id=\"exampleConstruct_7s1f0r7l_measure_dev\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>   [36] ""                                                                                                                                                                                                                                                      
#>   [37] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>   [38] ""                                                                                                                                                                                                                                                      
#>   [39] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>   [40] ""                                                                                                                                                                                                                                                      
#>   [41] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>   [42] ""                                                                                                                                                                                                                                                      
#>   [43] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>   [44] ""                                                                                                                                                                                                                                                      
#>   [45] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>   [46] ""                                                                                                                                                                                                                                                      
#>   [47] ""                                                                                                                                                                                                                                                      
#>   [48] "#### Definition"                                                                                                                                                                                                                                       
#>   [49] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>   [50] ""                                                                                                                                                                                                                                                      
#>   [51] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>   [52] ""                                                                                                                                                                                                                                                      
#>   [53] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>   [54] ""                                                                                                                                                                                                                                                      
#>   [55] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>   [56] ""                                                                                                                                                                                                                                                      
#>   [57] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>   [58] ""                                                                                                                                                                                                                                                      
#>   [59] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>   [60] ""                                                                                                                                                                                                                                                      
#>   [61] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>   [62] ""                                                                                                                                                                                                                                                      
#>   [63] "</div>"                                                                                                                                                                                                                                                
#>   [64] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>   [65] ""                                                                                                                                                                                                                                                      
#>   [66] "</div>"                                                                                                                                                                                                                                                
#>   [67] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>   [68] ""                                                                                                                                                                                                                                                      
#>   [69] ""                                                                                                                                                                                                                                                      
#>   [70] "#### Instruction for coding measurement instruments"                                                                                                                                                                                                   
#>   [71] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_code');\">Show/hide measurement coding instruction</div>"
#>   [72] ""                                                                                                                                                                                                                                                      
#>   [73] "<div id=\"exampleConstruct_7s1f0r7l_measure_code\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                            
#>   [74] ""                                                                                                                                                                                                                                                      
#>   [75] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>   [76] ""                                                                                                                                                                                                                                                      
#>   [77] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>   [78] ""                                                                                                                                                                                                                                                      
#>   [79] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>   [80] ""                                                                                                                                                                                                                                                      
#>   [81] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>   [82] ""                                                                                                                                                                                                                                                      
#>   [83] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>   [84] ""                                                                                                                                                                                                                                                      
#>   [85] ""                                                                                                                                                                                                                                                      
#>   [86] "#### Definition"                                                                                                                                                                                                                                       
#>   [87] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>   [88] ""                                                                                                                                                                                                                                                      
#>   [89] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>   [90] ""                                                                                                                                                                                                                                                      
#>   [91] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>   [92] ""                                                                                                                                                                                                                                                      
#>   [93] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>   [94] ""                                                                                                                                                                                                                                                      
#>   [95] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>   [96] ""                                                                                                                                                                                                                                                      
#>   [97] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>   [98] ""                                                                                                                                                                                                                                                      
#>   [99] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [100] ""                                                                                                                                                                                                                                                      
#>  [101] "</div>"                                                                                                                                                                                                                                                
#>  [102] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [103] ""                                                                                                                                                                                                                                                      
#>  [104] ""                                                                                                                                                                                                                                                      
#>  [105] "#### Instruction for developing measurement instruments"                                                                                                                                                                                               
#>  [106] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_dev');\">Show/hide measurement instruction</div>"        
#>  [107] ""                                                                                                                                                                                                                                                      
#>  [108] "<div id=\"exampleConstruct_7s1f0r7l_measure_dev\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [109] ""                                                                                                                                                                                                                                                      
#>  [110] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [111] ""                                                                                                                                                                                                                                                      
#>  [112] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [113] ""                                                                                                                                                                                                                                                      
#>  [114] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [115] ""                                                                                                                                                                                                                                                      
#>  [116] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [117] ""                                                                                                                                                                                                                                                      
#>  [118] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [119] ""                                                                                                                                                                                                                                                      
#>  [120] ""                                                                                                                                                                                                                                                      
#>  [121] "#### Definition"                                                                                                                                                                                                                                       
#>  [122] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [123] ""                                                                                                                                                                                                                                                      
#>  [124] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [125] ""                                                                                                                                                                                                                                                      
#>  [126] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [127] ""                                                                                                                                                                                                                                                      
#>  [128] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [129] ""                                                                                                                                                                                                                                                      
#>  [130] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [131] ""                                                                                                                                                                                                                                                      
#>  [132] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [133] ""                                                                                                                                                                                                                                                      
#>  [134] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [135] ""                                                                                                                                                                                                                                                      
#>  [136] "</div>"                                                                                                                                                                                                                                                
#>  [137] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [138] ""                                                                                                                                                                                                                                                      
#>  [139] "</div>"                                                                                                                                                                                                                                                
#>  [140] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [141] ""                                                                                                                                                                                                                                                      
#>  [142] "</div>"                                                                                                                                                                                                                                                
#>  [143] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [144] ""                                                                                                                                                                                                                                                      
#>  [145] ""                                                                                                                                                                                                                                                      
#>  [146] "#### Instruction for developing aspects"                                                                                                                                                                                                               
#>  [147] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_aspect_dev');\">Show/hide aspect elicitation instruction</div>"  
#>  [148] ""                                                                                                                                                                                                                                                      
#>  [149] "<div id=\"exampleConstruct_7s1f0r7l_aspect_dev\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                              
#>  [150] ""                                                                                                                                                                                                                                                      
#>  [151] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [152] ""                                                                                                                                                                                                                                                      
#>  [153] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [154] ""                                                                                                                                                                                                                                                      
#>  [155] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [156] ""                                                                                                                                                                                                                                                      
#>  [157] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [158] ""                                                                                                                                                                                                                                                      
#>  [159] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [160] ""                                                                                                                                                                                                                                                      
#>  [161] ""                                                                                                                                                                                                                                                      
#>  [162] "#### Definition"                                                                                                                                                                                                                                       
#>  [163] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [164] ""                                                                                                                                                                                                                                                      
#>  [165] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [166] ""                                                                                                                                                                                                                                                      
#>  [167] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [168] ""                                                                                                                                                                                                                                                      
#>  [169] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [170] ""                                                                                                                                                                                                                                                      
#>  [171] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [172] ""                                                                                                                                                                                                                                                      
#>  [173] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [174] ""                                                                                                                                                                                                                                                      
#>  [175] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [176] ""                                                                                                                                                                                                                                                      
#>  [177] "</div>"                                                                                                                                                                                                                                                
#>  [178] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [179] ""                                                                                                                                                                                                                                                      
#>  [180] ""                                                                                                                                                                                                                                                      
#>  [181] "#### Instruction for developing measurement instruments"                                                                                                                                                                                               
#>  [182] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_dev');\">Show/hide measurement instruction</div>"        
#>  [183] ""                                                                                                                                                                                                                                                      
#>  [184] "<div id=\"exampleConstruct_7s1f0r7l_measure_dev\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [185] ""                                                                                                                                                                                                                                                      
#>  [186] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [187] ""                                                                                                                                                                                                                                                      
#>  [188] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [189] ""                                                                                                                                                                                                                                                      
#>  [190] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [191] ""                                                                                                                                                                                                                                                      
#>  [192] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [193] ""                                                                                                                                                                                                                                                      
#>  [194] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [195] ""                                                                                                                                                                                                                                                      
#>  [196] ""                                                                                                                                                                                                                                                      
#>  [197] "#### Definition"                                                                                                                                                                                                                                       
#>  [198] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [199] ""                                                                                                                                                                                                                                                      
#>  [200] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [201] ""                                                                                                                                                                                                                                                      
#>  [202] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [203] ""                                                                                                                                                                                                                                                      
#>  [204] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [205] ""                                                                                                                                                                                                                                                      
#>  [206] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [207] ""                                                                                                                                                                                                                                                      
#>  [208] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [209] ""                                                                                                                                                                                                                                                      
#>  [210] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [211] ""                                                                                                                                                                                                                                                      
#>  [212] "</div>"                                                                                                                                                                                                                                                
#>  [213] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [214] ""                                                                                                                                                                                                                                                      
#>  [215] "</div>"                                                                                                                                                                                                                                                
#>  [216] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [217] ""                                                                                                                                                                                                                                                      
#>  [218] ""                                                                                                                                                                                                                                                      
#>  [219] "#### Instruction for coding measurement instruments"                                                                                                                                                                                                   
#>  [220] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_code');\">Show/hide measurement coding instruction</div>"
#>  [221] ""                                                                                                                                                                                                                                                      
#>  [222] "<div id=\"exampleConstruct_7s1f0r7l_measure_code\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                            
#>  [223] ""                                                                                                                                                                                                                                                      
#>  [224] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [225] ""                                                                                                                                                                                                                                                      
#>  [226] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [227] ""                                                                                                                                                                                                                                                      
#>  [228] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [229] ""                                                                                                                                                                                                                                                      
#>  [230] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [231] ""                                                                                                                                                                                                                                                      
#>  [232] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [233] ""                                                                                                                                                                                                                                                      
#>  [234] ""                                                                                                                                                                                                                                                      
#>  [235] "#### Definition"                                                                                                                                                                                                                                       
#>  [236] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [237] ""                                                                                                                                                                                                                                                      
#>  [238] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [239] ""                                                                                                                                                                                                                                                      
#>  [240] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [241] ""                                                                                                                                                                                                                                                      
#>  [242] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [243] ""                                                                                                                                                                                                                                                      
#>  [244] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [245] ""                                                                                                                                                                                                                                                      
#>  [246] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [247] ""                                                                                                                                                                                                                                                      
#>  [248] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [249] ""                                                                                                                                                                                                                                                      
#>  [250] "</div>"                                                                                                                                                                                                                                                
#>  [251] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [252] ""                                                                                                                                                                                                                                                      
#>  [253] ""                                                                                                                                                                                                                                                      
#>  [254] "#### Instruction for developing measurement instruments"                                                                                                                                                                                               
#>  [255] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_dev');\">Show/hide measurement instruction</div>"        
#>  [256] ""                                                                                                                                                                                                                                                      
#>  [257] "<div id=\"exampleConstruct_7s1f0r7l_measure_dev\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [258] ""                                                                                                                                                                                                                                                      
#>  [259] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [260] ""                                                                                                                                                                                                                                                      
#>  [261] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [262] ""                                                                                                                                                                                                                                                      
#>  [263] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [264] ""                                                                                                                                                                                                                                                      
#>  [265] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [266] ""                                                                                                                                                                                                                                                      
#>  [267] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [268] ""                                                                                                                                                                                                                                                      
#>  [269] ""                                                                                                                                                                                                                                                      
#>  [270] "#### Definition"                                                                                                                                                                                                                                       
#>  [271] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [272] ""                                                                                                                                                                                                                                                      
#>  [273] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [274] ""                                                                                                                                                                                                                                                      
#>  [275] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [276] ""                                                                                                                                                                                                                                                      
#>  [277] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [278] ""                                                                                                                                                                                                                                                      
#>  [279] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [280] ""                                                                                                                                                                                                                                                      
#>  [281] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [282] ""                                                                                                                                                                                                                                                      
#>  [283] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [284] ""                                                                                                                                                                                                                                                      
#>  [285] "</div>"                                                                                                                                                                                                                                                
#>  [286] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [287] ""                                                                                                                                                                                                                                                      
#>  [288] "</div>"                                                                                                                                                                                                                                                
#>  [289] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [290] ""                                                                                                                                                                                                                                                      
#>  [291] "</div>"                                                                                                                                                                                                                                                
#>  [292] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [293] ""                                                                                                                                                                                                                                                      
#>  [294] "</div>"                                                                                                                                                                                                                                                
#>  [295] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [296] ""                                                                                                                                                                                                                                                      
#>  [297] ""                                                                                                                                                                                                                                                      
#>  [298] "#### Instruction for coding aspects"                                                                                                                                                                                                                   
#>  [299] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_code');\">Show/hide aspect coding instruction</div>"     
#>  [300] ""                                                                                                                                                                                                                                                      
#>  [301] "<div id=\"exampleConstruct_7s1f0r7l_measure_code\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                            
#>  [302] "*When coding aspects, use the following code: **`dct:exampleConstruct_7s1f0r7l`**\n\n*"                                                                                                                                                                
#>  [303] ""                                                                                                                                                                                                                                                      
#>  [304] ""                                                                                                                                                                                                                                                      
#>  [305] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [306] ""                                                                                                                                                                                                                                                      
#>  [307] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [308] ""                                                                                                                                                                                                                                                      
#>  [309] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [310] ""                                                                                                                                                                                                                                                      
#>  [311] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [312] ""                                                                                                                                                                                                                                                      
#>  [313] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [314] ""                                                                                                                                                                                                                                                      
#>  [315] ""                                                                                                                                                                                                                                                      
#>  [316] "#### Definition"                                                                                                                                                                                                                                       
#>  [317] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [318] ""                                                                                                                                                                                                                                                      
#>  [319] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [320] ""                                                                                                                                                                                                                                                      
#>  [321] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [322] ""                                                                                                                                                                                                                                                      
#>  [323] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [324] ""                                                                                                                                                                                                                                                      
#>  [325] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [326] ""                                                                                                                                                                                                                                                      
#>  [327] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [328] ""                                                                                                                                                                                                                                                      
#>  [329] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [330] ""                                                                                                                                                                                                                                                      
#>  [331] "</div>"                                                                                                                                                                                                                                                
#>  [332] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [333] ""                                                                                                                                                                                                                                                      
#>  [334] ""                                                                                                                                                                                                                                                      
#>  [335] "#### Instruction for developing measurement instruments"                                                                                                                                                                                               
#>  [336] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_dev');\">Show/hide measurement instruction</div>"        
#>  [337] ""                                                                                                                                                                                                                                                      
#>  [338] "<div id=\"exampleConstruct_7s1f0r7l_measure_dev\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [339] ""                                                                                                                                                                                                                                                      
#>  [340] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [341] ""                                                                                                                                                                                                                                                      
#>  [342] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [343] ""                                                                                                                                                                                                                                                      
#>  [344] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [345] ""                                                                                                                                                                                                                                                      
#>  [346] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [347] ""                                                                                                                                                                                                                                                      
#>  [348] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [349] ""                                                                                                                                                                                                                                                      
#>  [350] ""                                                                                                                                                                                                                                                      
#>  [351] "#### Definition"                                                                                                                                                                                                                                       
#>  [352] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [353] ""                                                                                                                                                                                                                                                      
#>  [354] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [355] ""                                                                                                                                                                                                                                                      
#>  [356] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [357] ""                                                                                                                                                                                                                                                      
#>  [358] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [359] ""                                                                                                                                                                                                                                                      
#>  [360] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [361] ""                                                                                                                                                                                                                                                      
#>  [362] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [363] ""                                                                                                                                                                                                                                                      
#>  [364] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [365] ""                                                                                                                                                                                                                                                      
#>  [366] "</div>"                                                                                                                                                                                                                                                
#>  [367] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [368] ""                                                                                                                                                                                                                                                      
#>  [369] "</div>"                                                                                                                                                                                                                                                
#>  [370] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [371] ""                                                                                                                                                                                                                                                      
#>  [372] ""                                                                                                                                                                                                                                                      
#>  [373] "#### Instruction for coding measurement instruments"                                                                                                                                                                                                   
#>  [374] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_code');\">Show/hide measurement coding instruction</div>"
#>  [375] ""                                                                                                                                                                                                                                                      
#>  [376] "<div id=\"exampleConstruct_7s1f0r7l_measure_code\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                            
#>  [377] ""                                                                                                                                                                                                                                                      
#>  [378] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [379] ""                                                                                                                                                                                                                                                      
#>  [380] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [381] ""                                                                                                                                                                                                                                                      
#>  [382] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [383] ""                                                                                                                                                                                                                                                      
#>  [384] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [385] ""                                                                                                                                                                                                                                                      
#>  [386] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [387] ""                                                                                                                                                                                                                                                      
#>  [388] ""                                                                                                                                                                                                                                                      
#>  [389] "#### Definition"                                                                                                                                                                                                                                       
#>  [390] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [391] ""                                                                                                                                                                                                                                                      
#>  [392] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [393] ""                                                                                                                                                                                                                                                      
#>  [394] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [395] ""                                                                                                                                                                                                                                                      
#>  [396] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [397] ""                                                                                                                                                                                                                                                      
#>  [398] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [399] ""                                                                                                                                                                                                                                                      
#>  [400] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [401] ""                                                                                                                                                                                                                                                      
#>  [402] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [403] ""                                                                                                                                                                                                                                                      
#>  [404] "</div>"                                                                                                                                                                                                                                                
#>  [405] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [406] ""                                                                                                                                                                                                                                                      
#>  [407] ""                                                                                                                                                                                                                                                      
#>  [408] "#### Instruction for developing measurement instruments"                                                                                                                                                                                               
#>  [409] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_dev');\">Show/hide measurement instruction</div>"        
#>  [410] ""                                                                                                                                                                                                                                                      
#>  [411] "<div id=\"exampleConstruct_7s1f0r7l_measure_dev\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [412] ""                                                                                                                                                                                                                                                      
#>  [413] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [414] ""                                                                                                                                                                                                                                                      
#>  [415] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [416] ""                                                                                                                                                                                                                                                      
#>  [417] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [418] ""                                                                                                                                                                                                                                                      
#>  [419] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [420] ""                                                                                                                                                                                                                                                      
#>  [421] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [422] ""                                                                                                                                                                                                                                                      
#>  [423] ""                                                                                                                                                                                                                                                      
#>  [424] "#### Definition"                                                                                                                                                                                                                                       
#>  [425] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [426] ""                                                                                                                                                                                                                                                      
#>  [427] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [428] ""                                                                                                                                                                                                                                                      
#>  [429] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [430] ""                                                                                                                                                                                                                                                      
#>  [431] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [432] ""                                                                                                                                                                                                                                                      
#>  [433] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [434] ""                                                                                                                                                                                                                                                      
#>  [435] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [436] ""                                                                                                                                                                                                                                                      
#>  [437] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [438] ""                                                                                                                                                                                                                                                      
#>  [439] "</div>"                                                                                                                                                                                                                                                
#>  [440] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [441] ""                                                                                                                                                                                                                                                      
#>  [442] "</div>"                                                                                                                                                                                                                                                
#>  [443] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [444] ""                                                                                                                                                                                                                                                      
#>  [445] "</div>"                                                                                                                                                                                                                                                
#>  [446] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [447] ""                                                                                                                                                                                                                                                      
#>  [448] ""                                                                                                                                                                                                                                                      
#>  [449] "#### Instruction for developing aspects"                                                                                                                                                                                                               
#>  [450] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_aspect_dev');\">Show/hide aspect elicitation instruction</div>"  
#>  [451] ""                                                                                                                                                                                                                                                      
#>  [452] "<div id=\"exampleConstruct_7s1f0r7l_aspect_dev\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                              
#>  [453] ""                                                                                                                                                                                                                                                      
#>  [454] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [455] ""                                                                                                                                                                                                                                                      
#>  [456] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [457] ""                                                                                                                                                                                                                                                      
#>  [458] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [459] ""                                                                                                                                                                                                                                                      
#>  [460] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [461] ""                                                                                                                                                                                                                                                      
#>  [462] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [463] ""                                                                                                                                                                                                                                                      
#>  [464] ""                                                                                                                                                                                                                                                      
#>  [465] "#### Definition"                                                                                                                                                                                                                                       
#>  [466] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [467] ""                                                                                                                                                                                                                                                      
#>  [468] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [469] ""                                                                                                                                                                                                                                                      
#>  [470] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [471] ""                                                                                                                                                                                                                                                      
#>  [472] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [473] ""                                                                                                                                                                                                                                                      
#>  [474] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [475] ""                                                                                                                                                                                                                                                      
#>  [476] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [477] ""                                                                                                                                                                                                                                                      
#>  [478] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [479] ""                                                                                                                                                                                                                                                      
#>  [480] "</div>"                                                                                                                                                                                                                                                
#>  [481] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [482] ""                                                                                                                                                                                                                                                      
#>  [483] ""                                                                                                                                                                                                                                                      
#>  [484] "#### Instruction for developing measurement instruments"                                                                                                                                                                                               
#>  [485] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_dev');\">Show/hide measurement instruction</div>"        
#>  [486] ""                                                                                                                                                                                                                                                      
#>  [487] "<div id=\"exampleConstruct_7s1f0r7l_measure_dev\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [488] ""                                                                                                                                                                                                                                                      
#>  [489] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [490] ""                                                                                                                                                                                                                                                      
#>  [491] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [492] ""                                                                                                                                                                                                                                                      
#>  [493] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [494] ""                                                                                                                                                                                                                                                      
#>  [495] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [496] ""                                                                                                                                                                                                                                                      
#>  [497] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [498] ""                                                                                                                                                                                                                                                      
#>  [499] ""                                                                                                                                                                                                                                                      
#>  [500] "#### Definition"                                                                                                                                                                                                                                       
#>  [501] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [502] ""                                                                                                                                                                                                                                                      
#>  [503] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [504] ""                                                                                                                                                                                                                                                      
#>  [505] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [506] ""                                                                                                                                                                                                                                                      
#>  [507] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [508] ""                                                                                                                                                                                                                                                      
#>  [509] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [510] ""                                                                                                                                                                                                                                                      
#>  [511] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [512] ""                                                                                                                                                                                                                                                      
#>  [513] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [514] ""                                                                                                                                                                                                                                                      
#>  [515] "</div>"                                                                                                                                                                                                                                                
#>  [516] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [517] ""                                                                                                                                                                                                                                                      
#>  [518] "</div>"                                                                                                                                                                                                                                                
#>  [519] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [520] ""                                                                                                                                                                                                                                                      
#>  [521] ""                                                                                                                                                                                                                                                      
#>  [522] "#### Instruction for coding measurement instruments"                                                                                                                                                                                                   
#>  [523] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_code');\">Show/hide measurement coding instruction</div>"
#>  [524] ""                                                                                                                                                                                                                                                      
#>  [525] "<div id=\"exampleConstruct_7s1f0r7l_measure_code\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                            
#>  [526] ""                                                                                                                                                                                                                                                      
#>  [527] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [528] ""                                                                                                                                                                                                                                                      
#>  [529] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [530] ""                                                                                                                                                                                                                                                      
#>  [531] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [532] ""                                                                                                                                                                                                                                                      
#>  [533] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [534] ""                                                                                                                                                                                                                                                      
#>  [535] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [536] ""                                                                                                                                                                                                                                                      
#>  [537] ""                                                                                                                                                                                                                                                      
#>  [538] "#### Definition"                                                                                                                                                                                                                                       
#>  [539] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [540] ""                                                                                                                                                                                                                                                      
#>  [541] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [542] ""                                                                                                                                                                                                                                                      
#>  [543] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [544] ""                                                                                                                                                                                                                                                      
#>  [545] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [546] ""                                                                                                                                                                                                                                                      
#>  [547] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [548] ""                                                                                                                                                                                                                                                      
#>  [549] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [550] ""                                                                                                                                                                                                                                                      
#>  [551] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [552] ""                                                                                                                                                                                                                                                      
#>  [553] "</div>"                                                                                                                                                                                                                                                
#>  [554] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [555] ""                                                                                                                                                                                                                                                      
#>  [556] ""                                                                                                                                                                                                                                                      
#>  [557] "#### Instruction for developing measurement instruments"                                                                                                                                                                                               
#>  [558] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_dev');\">Show/hide measurement instruction</div>"        
#>  [559] ""                                                                                                                                                                                                                                                      
#>  [560] "<div id=\"exampleConstruct_7s1f0r7l_measure_dev\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [561] ""                                                                                                                                                                                                                                                      
#>  [562] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [563] ""                                                                                                                                                                                                                                                      
#>  [564] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [565] ""                                                                                                                                                                                                                                                      
#>  [566] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [567] ""                                                                                                                                                                                                                                                      
#>  [568] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [569] ""                                                                                                                                                                                                                                                      
#>  [570] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [571] ""                                                                                                                                                                                                                                                      
#>  [572] ""                                                                                                                                                                                                                                                      
#>  [573] "#### Definition"                                                                                                                                                                                                                                       
#>  [574] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [575] ""                                                                                                                                                                                                                                                      
#>  [576] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [577] ""                                                                                                                                                                                                                                                      
#>  [578] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [579] ""                                                                                                                                                                                                                                                      
#>  [580] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [581] ""                                                                                                                                                                                                                                                      
#>  [582] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [583] ""                                                                                                                                                                                                                                                      
#>  [584] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [585] ""                                                                                                                                                                                                                                                      
#>  [586] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [587] ""                                                                                                                                                                                                                                                      
#>  [588] "</div>"                                                                                                                                                                                                                                                
#>  [589] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [590] ""                                                                                                                                                                                                                                                      
#>  [591] "</div>"                                                                                                                                                                                                                                                
#>  [592] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [593] ""                                                                                                                                                                                                                                                      
#>  [594] "</div>"                                                                                                                                                                                                                                                
#>  [595] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [596] ""                                                                                                                                                                                                                                                      
#>  [597] "</div>"                                                                                                                                                                                                                                                
#>  [598] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [599] ""                                                                                                                                                                                                                                                      
#>  [600] "</div>"                                                                                                                                                                                                                                                
#>  [601] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [602] ""                                                                                                                                                                                                                                                      
#>  [603] "#### Relationships with other constructs"                                                                                                                                                                                                              
#>  [604] ""                                                                                                                                                                                                                                                      
#>  [605] ""                                                                                                                                                                                                                                                      
#>  [606] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [607] ""                                                                                                                                                                                                                                                      
#>  [608] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [609] ""                                                                                                                                                                                                                                                      
#>  [610] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [611] ""                                                                                                                                                                                                                                                      
#>  [612] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [613] ""                                                                                                                                                                                                                                                      
#>  [614] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [615] ""                                                                                                                                                                                                                                                      
#>  [616] ""                                                                                                                                                                                                                                                      
#>  [617] "#### Definition"                                                                                                                                                                                                                                       
#>  [618] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [619] ""                                                                                                                                                                                                                                                      
#>  [620] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [621] ""                                                                                                                                                                                                                                                      
#>  [622] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [623] ""                                                                                                                                                                                                                                                      
#>  [624] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [625] ""                                                                                                                                                                                                                                                      
#>  [626] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [627] ""                                                                                                                                                                                                                                                      
#>  [628] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [629] ""                                                                                                                                                                                                                                                      
#>  [630] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [631] ""                                                                                                                                                                                                                                                      
#>  [632] "</div>"                                                                                                                                                                                                                                                
#>  [633] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [634] ""                                                                                                                                                                                                                                                      
#>  [635] ""                                                                                                                                                                                                                                                      
#>  [636] "#### Instruction for developing measurement instruments"                                                                                                                                                                                               
#>  [637] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_dev');\">Show/hide measurement instruction</div>"        
#>  [638] ""                                                                                                                                                                                                                                                      
#>  [639] "<div id=\"exampleConstruct_7s1f0r7l_measure_dev\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [640] ""                                                                                                                                                                                                                                                      
#>  [641] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [642] ""                                                                                                                                                                                                                                                      
#>  [643] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [644] ""                                                                                                                                                                                                                                                      
#>  [645] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [646] ""                                                                                                                                                                                                                                                      
#>  [647] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [648] ""                                                                                                                                                                                                                                                      
#>  [649] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [650] ""                                                                                                                                                                                                                                                      
#>  [651] ""                                                                                                                                                                                                                                                      
#>  [652] "#### Definition"                                                                                                                                                                                                                                       
#>  [653] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [654] ""                                                                                                                                                                                                                                                      
#>  [655] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [656] ""                                                                                                                                                                                                                                                      
#>  [657] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [658] ""                                                                                                                                                                                                                                                      
#>  [659] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [660] ""                                                                                                                                                                                                                                                      
#>  [661] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [662] ""                                                                                                                                                                                                                                                      
#>  [663] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [664] ""                                                                                                                                                                                                                                                      
#>  [665] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [666] ""                                                                                                                                                                                                                                                      
#>  [667] "</div>"                                                                                                                                                                                                                                                
#>  [668] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [669] ""                                                                                                                                                                                                                                                      
#>  [670] "</div>"                                                                                                                                                                                                                                                
#>  [671] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [672] ""                                                                                                                                                                                                                                                      
#>  [673] ""                                                                                                                                                                                                                                                      
#>  [674] "#### Instruction for coding measurement instruments"                                                                                                                                                                                                   
#>  [675] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_code');\">Show/hide measurement coding instruction</div>"
#>  [676] ""                                                                                                                                                                                                                                                      
#>  [677] "<div id=\"exampleConstruct_7s1f0r7l_measure_code\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                            
#>  [678] ""                                                                                                                                                                                                                                                      
#>  [679] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [680] ""                                                                                                                                                                                                                                                      
#>  [681] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [682] ""                                                                                                                                                                                                                                                      
#>  [683] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [684] ""                                                                                                                                                                                                                                                      
#>  [685] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [686] ""                                                                                                                                                                                                                                                      
#>  [687] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [688] ""                                                                                                                                                                                                                                                      
#>  [689] ""                                                                                                                                                                                                                                                      
#>  [690] "#### Definition"                                                                                                                                                                                                                                       
#>  [691] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [692] ""                                                                                                                                                                                                                                                      
#>  [693] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [694] ""                                                                                                                                                                                                                                                      
#>  [695] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [696] ""                                                                                                                                                                                                                                                      
#>  [697] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [698] ""                                                                                                                                                                                                                                                      
#>  [699] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [700] ""                                                                                                                                                                                                                                                      
#>  [701] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [702] ""                                                                                                                                                                                                                                                      
#>  [703] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [704] ""                                                                                                                                                                                                                                                      
#>  [705] "</div>"                                                                                                                                                                                                                                                
#>  [706] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [707] ""                                                                                                                                                                                                                                                      
#>  [708] ""                                                                                                                                                                                                                                                      
#>  [709] "#### Instruction for developing measurement instruments"                                                                                                                                                                                               
#>  [710] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_dev');\">Show/hide measurement instruction</div>"        
#>  [711] ""                                                                                                                                                                                                                                                      
#>  [712] "<div id=\"exampleConstruct_7s1f0r7l_measure_dev\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [713] ""                                                                                                                                                                                                                                                      
#>  [714] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [715] ""                                                                                                                                                                                                                                                      
#>  [716] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [717] ""                                                                                                                                                                                                                                                      
#>  [718] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [719] ""                                                                                                                                                                                                                                                      
#>  [720] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [721] ""                                                                                                                                                                                                                                                      
#>  [722] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [723] ""                                                                                                                                                                                                                                                      
#>  [724] ""                                                                                                                                                                                                                                                      
#>  [725] "#### Definition"                                                                                                                                                                                                                                       
#>  [726] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [727] ""                                                                                                                                                                                                                                                      
#>  [728] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [729] ""                                                                                                                                                                                                                                                      
#>  [730] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [731] ""                                                                                                                                                                                                                                                      
#>  [732] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [733] ""                                                                                                                                                                                                                                                      
#>  [734] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [735] ""                                                                                                                                                                                                                                                      
#>  [736] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [737] ""                                                                                                                                                                                                                                                      
#>  [738] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [739] ""                                                                                                                                                                                                                                                      
#>  [740] "</div>"                                                                                                                                                                                                                                                
#>  [741] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [742] ""                                                                                                                                                                                                                                                      
#>  [743] "</div>"                                                                                                                                                                                                                                                
#>  [744] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [745] ""                                                                                                                                                                                                                                                      
#>  [746] "</div>"                                                                                                                                                                                                                                                
#>  [747] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [748] ""                                                                                                                                                                                                                                                      
#>  [749] ""                                                                                                                                                                                                                                                      
#>  [750] "#### Instruction for developing aspects"                                                                                                                                                                                                               
#>  [751] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_aspect_dev');\">Show/hide aspect elicitation instruction</div>"  
#>  [752] ""                                                                                                                                                                                                                                                      
#>  [753] "<div id=\"exampleConstruct_7s1f0r7l_aspect_dev\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                              
#>  [754] ""                                                                                                                                                                                                                                                      
#>  [755] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [756] ""                                                                                                                                                                                                                                                      
#>  [757] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [758] ""                                                                                                                                                                                                                                                      
#>  [759] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [760] ""                                                                                                                                                                                                                                                      
#>  [761] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [762] ""                                                                                                                                                                                                                                                      
#>  [763] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [764] ""                                                                                                                                                                                                                                                      
#>  [765] ""                                                                                                                                                                                                                                                      
#>  [766] "#### Definition"                                                                                                                                                                                                                                       
#>  [767] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [768] ""                                                                                                                                                                                                                                                      
#>  [769] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [770] ""                                                                                                                                                                                                                                                      
#>  [771] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [772] ""                                                                                                                                                                                                                                                      
#>  [773] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [774] ""                                                                                                                                                                                                                                                      
#>  [775] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [776] ""                                                                                                                                                                                                                                                      
#>  [777] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [778] ""                                                                                                                                                                                                                                                      
#>  [779] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [780] ""                                                                                                                                                                                                                                                      
#>  [781] "</div>"                                                                                                                                                                                                                                                
#>  [782] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [783] ""                                                                                                                                                                                                                                                      
#>  [784] ""                                                                                                                                                                                                                                                      
#>  [785] "#### Instruction for developing measurement instruments"                                                                                                                                                                                               
#>  [786] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_dev');\">Show/hide measurement instruction</div>"        
#>  [787] ""                                                                                                                                                                                                                                                      
#>  [788] "<div id=\"exampleConstruct_7s1f0r7l_measure_dev\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [789] ""                                                                                                                                                                                                                                                      
#>  [790] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [791] ""                                                                                                                                                                                                                                                      
#>  [792] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [793] ""                                                                                                                                                                                                                                                      
#>  [794] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [795] ""                                                                                                                                                                                                                                                      
#>  [796] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [797] ""                                                                                                                                                                                                                                                      
#>  [798] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [799] ""                                                                                                                                                                                                                                                      
#>  [800] ""                                                                                                                                                                                                                                                      
#>  [801] "#### Definition"                                                                                                                                                                                                                                       
#>  [802] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [803] ""                                                                                                                                                                                                                                                      
#>  [804] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [805] ""                                                                                                                                                                                                                                                      
#>  [806] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [807] ""                                                                                                                                                                                                                                                      
#>  [808] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [809] ""                                                                                                                                                                                                                                                      
#>  [810] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [811] ""                                                                                                                                                                                                                                                      
#>  [812] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [813] ""                                                                                                                                                                                                                                                      
#>  [814] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [815] ""                                                                                                                                                                                                                                                      
#>  [816] "</div>"                                                                                                                                                                                                                                                
#>  [817] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [818] ""                                                                                                                                                                                                                                                      
#>  [819] "</div>"                                                                                                                                                                                                                                                
#>  [820] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [821] ""                                                                                                                                                                                                                                                      
#>  [822] ""                                                                                                                                                                                                                                                      
#>  [823] "#### Instruction for coding measurement instruments"                                                                                                                                                                                                   
#>  [824] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_code');\">Show/hide measurement coding instruction</div>"
#>  [825] ""                                                                                                                                                                                                                                                      
#>  [826] "<div id=\"exampleConstruct_7s1f0r7l_measure_code\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                            
#>  [827] ""                                                                                                                                                                                                                                                      
#>  [828] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [829] ""                                                                                                                                                                                                                                                      
#>  [830] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [831] ""                                                                                                                                                                                                                                                      
#>  [832] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [833] ""                                                                                                                                                                                                                                                      
#>  [834] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [835] ""                                                                                                                                                                                                                                                      
#>  [836] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [837] ""                                                                                                                                                                                                                                                      
#>  [838] ""                                                                                                                                                                                                                                                      
#>  [839] "#### Definition"                                                                                                                                                                                                                                       
#>  [840] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [841] ""                                                                                                                                                                                                                                                      
#>  [842] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [843] ""                                                                                                                                                                                                                                                      
#>  [844] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [845] ""                                                                                                                                                                                                                                                      
#>  [846] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [847] ""                                                                                                                                                                                                                                                      
#>  [848] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [849] ""                                                                                                                                                                                                                                                      
#>  [850] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [851] ""                                                                                                                                                                                                                                                      
#>  [852] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [853] ""                                                                                                                                                                                                                                                      
#>  [854] "</div>"                                                                                                                                                                                                                                                
#>  [855] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [856] ""                                                                                                                                                                                                                                                      
#>  [857] ""                                                                                                                                                                                                                                                      
#>  [858] "#### Instruction for developing measurement instruments"                                                                                                                                                                                               
#>  [859] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_dev');\">Show/hide measurement instruction</div>"        
#>  [860] ""                                                                                                                                                                                                                                                      
#>  [861] "<div id=\"exampleConstruct_7s1f0r7l_measure_dev\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [862] ""                                                                                                                                                                                                                                                      
#>  [863] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [864] ""                                                                                                                                                                                                                                                      
#>  [865] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [866] ""                                                                                                                                                                                                                                                      
#>  [867] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [868] ""                                                                                                                                                                                                                                                      
#>  [869] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [870] ""                                                                                                                                                                                                                                                      
#>  [871] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [872] ""                                                                                                                                                                                                                                                      
#>  [873] ""                                                                                                                                                                                                                                                      
#>  [874] "#### Definition"                                                                                                                                                                                                                                       
#>  [875] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [876] ""                                                                                                                                                                                                                                                      
#>  [877] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [878] ""                                                                                                                                                                                                                                                      
#>  [879] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [880] ""                                                                                                                                                                                                                                                      
#>  [881] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [882] ""                                                                                                                                                                                                                                                      
#>  [883] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [884] ""                                                                                                                                                                                                                                                      
#>  [885] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [886] ""                                                                                                                                                                                                                                                      
#>  [887] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [888] ""                                                                                                                                                                                                                                                      
#>  [889] "</div>"                                                                                                                                                                                                                                                
#>  [890] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [891] ""                                                                                                                                                                                                                                                      
#>  [892] "</div>"                                                                                                                                                                                                                                                
#>  [893] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [894] ""                                                                                                                                                                                                                                                      
#>  [895] "</div>"                                                                                                                                                                                                                                                
#>  [896] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [897] ""                                                                                                                                                                                                                                                      
#>  [898] "</div>"                                                                                                                                                                                                                                                
#>  [899] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [900] ""                                                                                                                                                                                                                                                      
#>  [901] ""                                                                                                                                                                                                                                                      
#>  [902] "#### Instruction for coding aspects"                                                                                                                                                                                                                   
#>  [903] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_code');\">Show/hide aspect coding instruction</div>"     
#>  [904] ""                                                                                                                                                                                                                                                      
#>  [905] "<div id=\"exampleConstruct_7s1f0r7l_measure_code\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                            
#>  [906] "*When coding aspects, use the following code: **`[dct:exampleConstruct_7s1f0r7l](#exampleConstruct_7s1f0r7l)`**\n\n*"                                                                                                                                  
#>  [907] ""                                                                                                                                                                                                                                                      
#>  [908] ""                                                                                                                                                                                                                                                      
#>  [909] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [910] ""                                                                                                                                                                                                                                                      
#>  [911] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [912] ""                                                                                                                                                                                                                                                      
#>  [913] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [914] ""                                                                                                                                                                                                                                                      
#>  [915] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [916] ""                                                                                                                                                                                                                                                      
#>  [917] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [918] ""                                                                                                                                                                                                                                                      
#>  [919] ""                                                                                                                                                                                                                                                      
#>  [920] "#### Definition"                                                                                                                                                                                                                                       
#>  [921] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [922] ""                                                                                                                                                                                                                                                      
#>  [923] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [924] ""                                                                                                                                                                                                                                                      
#>  [925] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [926] ""                                                                                                                                                                                                                                                      
#>  [927] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [928] ""                                                                                                                                                                                                                                                      
#>  [929] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [930] ""                                                                                                                                                                                                                                                      
#>  [931] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [932] ""                                                                                                                                                                                                                                                      
#>  [933] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [934] ""                                                                                                                                                                                                                                                      
#>  [935] "</div>"                                                                                                                                                                                                                                                
#>  [936] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [937] ""                                                                                                                                                                                                                                                      
#>  [938] ""                                                                                                                                                                                                                                                      
#>  [939] "#### Instruction for developing measurement instruments"                                                                                                                                                                                               
#>  [940] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_dev');\">Show/hide measurement instruction</div>"        
#>  [941] ""                                                                                                                                                                                                                                                      
#>  [942] "<div id=\"exampleConstruct_7s1f0r7l_measure_dev\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [943] ""                                                                                                                                                                                                                                                      
#>  [944] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [945] ""                                                                                                                                                                                                                                                      
#>  [946] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [947] ""                                                                                                                                                                                                                                                      
#>  [948] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [949] ""                                                                                                                                                                                                                                                      
#>  [950] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [951] ""                                                                                                                                                                                                                                                      
#>  [952] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [953] ""                                                                                                                                                                                                                                                      
#>  [954] ""                                                                                                                                                                                                                                                      
#>  [955] "#### Definition"                                                                                                                                                                                                                                       
#>  [956] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [957] ""                                                                                                                                                                                                                                                      
#>  [958] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [959] ""                                                                                                                                                                                                                                                      
#>  [960] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [961] ""                                                                                                                                                                                                                                                      
#>  [962] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [963] ""                                                                                                                                                                                                                                                      
#>  [964] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [965] ""                                                                                                                                                                                                                                                      
#>  [966] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [967] ""                                                                                                                                                                                                                                                      
#>  [968] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [969] ""                                                                                                                                                                                                                                                      
#>  [970] "</div>"                                                                                                                                                                                                                                                
#>  [971] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [972] ""                                                                                                                                                                                                                                                      
#>  [973] "</div>"                                                                                                                                                                                                                                                
#>  [974] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#>  [975] ""                                                                                                                                                                                                                                                      
#>  [976] ""                                                                                                                                                                                                                                                      
#>  [977] "#### Instruction for coding measurement instruments"                                                                                                                                                                                                   
#>  [978] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_code');\">Show/hide measurement coding instruction</div>"
#>  [979] ""                                                                                                                                                                                                                                                      
#>  [980] "<div id=\"exampleConstruct_7s1f0r7l_measure_code\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                            
#>  [981] ""                                                                                                                                                                                                                                                      
#>  [982] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [983] ""                                                                                                                                                                                                                                                      
#>  [984] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#>  [985] ""                                                                                                                                                                                                                                                      
#>  [986] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#>  [987] ""                                                                                                                                                                                                                                                      
#>  [988] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#>  [989] ""                                                                                                                                                                                                                                                      
#>  [990] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#>  [991] ""                                                                                                                                                                                                                                                      
#>  [992] ""                                                                                                                                                                                                                                                      
#>  [993] "#### Definition"                                                                                                                                                                                                                                       
#>  [994] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#>  [995] ""                                                                                                                                                                                                                                                      
#>  [996] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#>  [997] ""                                                                                                                                                                                                                                                      
#>  [998] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#>  [999] ""                                                                                                                                                                                                                                                      
#> [1000] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#> [1001] ""                                                                                                                                                                                                                                                      
#> [1002] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#> [1003] ""                                                                                                                                                                                                                                                      
#> [1004] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#> [1005] ""                                                                                                                                                                                                                                                      
#> [1006] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#> [1007] ""                                                                                                                                                                                                                                                      
#> [1008] "</div>"                                                                                                                                                                                                                                                
#> [1009] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#> [1010] ""                                                                                                                                                                                                                                                      
#> [1011] ""                                                                                                                                                                                                                                                      
#> [1012] "#### Instruction for developing measurement instruments"                                                                                                                                                                                               
#> [1013] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_dev');\">Show/hide measurement instruction</div>"        
#> [1014] ""                                                                                                                                                                                                                                                      
#> [1015] "<div id=\"exampleConstruct_7s1f0r7l_measure_dev\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#> [1016] ""                                                                                                                                                                                                                                                      
#> [1017] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#> [1018] ""                                                                                                                                                                                                                                                      
#> [1019] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#> [1020] ""                                                                                                                                                                                                                                                      
#> [1021] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#> [1022] ""                                                                                                                                                                                                                                                      
#> [1023] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#> [1024] ""                                                                                                                                                                                                                                                      
#> [1025] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#> [1026] ""                                                                                                                                                                                                                                                      
#> [1027] ""                                                                                                                                                                                                                                                      
#> [1028] "#### Definition"                                                                                                                                                                                                                                       
#> [1029] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#> [1030] ""                                                                                                                                                                                                                                                      
#> [1031] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#> [1032] ""                                                                                                                                                                                                                                                      
#> [1033] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#> [1034] ""                                                                                                                                                                                                                                                      
#> [1035] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#> [1036] ""                                                                                                                                                                                                                                                      
#> [1037] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#> [1038] ""                                                                                                                                                                                                                                                      
#> [1039] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#> [1040] ""                                                                                                                                                                                                                                                      
#> [1041] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#> [1042] ""                                                                                                                                                                                                                                                      
#> [1043] "</div>"                                                                                                                                                                                                                                                
#> [1044] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#> [1045] ""                                                                                                                                                                                                                                                      
#> [1046] "</div>"                                                                                                                                                                                                                                                
#> [1047] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#> [1048] ""                                                                                                                                                                                                                                                      
#> [1049] "</div>"                                                                                                                                                                                                                                                
#> [1050] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#> [1051] ""                                                                                                                                                                                                                                                      
#> [1052] ""                                                                                                                                                                                                                                                      
#> [1053] "#### Instruction for developing aspects"                                                                                                                                                                                                               
#> [1054] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_aspect_dev');\">Show/hide aspect elicitation instruction</div>"  
#> [1055] ""                                                                                                                                                                                                                                                      
#> [1056] "<div id=\"exampleConstruct_7s1f0r7l_aspect_dev\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                              
#> [1057] ""                                                                                                                                                                                                                                                      
#> [1058] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#> [1059] ""                                                                                                                                                                                                                                                      
#> [1060] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#> [1061] ""                                                                                                                                                                                                                                                      
#> [1062] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#> [1063] ""                                                                                                                                                                                                                                                      
#> [1064] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#> [1065] ""                                                                                                                                                                                                                                                      
#> [1066] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#> [1067] ""                                                                                                                                                                                                                                                      
#> [1068] ""                                                                                                                                                                                                                                                      
#> [1069] "#### Definition"                                                                                                                                                                                                                                       
#> [1070] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#> [1071] ""                                                                                                                                                                                                                                                      
#> [1072] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#> [1073] ""                                                                                                                                                                                                                                                      
#> [1074] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#> [1075] ""                                                                                                                                                                                                                                                      
#> [1076] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#> [1077] ""                                                                                                                                                                                                                                                      
#> [1078] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#> [1079] ""                                                                                                                                                                                                                                                      
#> [1080] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#> [1081] ""                                                                                                                                                                                                                                                      
#> [1082] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#> [1083] ""                                                                                                                                                                                                                                                      
#> [1084] "</div>"                                                                                                                                                                                                                                                
#> [1085] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#> [1086] ""                                                                                                                                                                                                                                                      
#> [1087] ""                                                                                                                                                                                                                                                      
#> [1088] "#### Instruction for developing measurement instruments"                                                                                                                                                                                               
#> [1089] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_dev');\">Show/hide measurement instruction</div>"        
#> [1090] ""                                                                                                                                                                                                                                                      
#> [1091] "<div id=\"exampleConstruct_7s1f0r7l_measure_dev\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#> [1092] ""                                                                                                                                                                                                                                                      
#> [1093] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#> [1094] ""                                                                                                                                                                                                                                                      
#> [1095] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#> [1096] ""                                                                                                                                                                                                                                                      
#> [1097] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#> [1098] ""                                                                                                                                                                                                                                                      
#> [1099] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#> [1100] ""                                                                                                                                                                                                                                                      
#> [1101] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#> [1102] ""                                                                                                                                                                                                                                                      
#> [1103] ""                                                                                                                                                                                                                                                      
#> [1104] "#### Definition"                                                                                                                                                                                                                                       
#> [1105] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#> [1106] ""                                                                                                                                                                                                                                                      
#> [1107] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#> [1108] ""                                                                                                                                                                                                                                                      
#> [1109] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#> [1110] ""                                                                                                                                                                                                                                                      
#> [1111] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#> [1112] ""                                                                                                                                                                                                                                                      
#> [1113] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#> [1114] ""                                                                                                                                                                                                                                                      
#> [1115] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#> [1116] ""                                                                                                                                                                                                                                                      
#> [1117] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#> [1118] ""                                                                                                                                                                                                                                                      
#> [1119] "</div>"                                                                                                                                                                                                                                                
#> [1120] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#> [1121] ""                                                                                                                                                                                                                                                      
#> [1122] "</div>"                                                                                                                                                                                                                                                
#> [1123] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#> [1124] ""                                                                                                                                                                                                                                                      
#> [1125] ""                                                                                                                                                                                                                                                      
#> [1126] "#### Instruction for coding measurement instruments"                                                                                                                                                                                                   
#> [1127] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_code');\">Show/hide measurement coding instruction</div>"
#> [1128] ""                                                                                                                                                                                                                                                      
#> [1129] "<div id=\"exampleConstruct_7s1f0r7l_measure_code\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                            
#> [1130] ""                                                                                                                                                                                                                                                      
#> [1131] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#> [1132] ""                                                                                                                                                                                                                                                      
#> [1133] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#> [1134] ""                                                                                                                                                                                                                                                      
#> [1135] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#> [1136] ""                                                                                                                                                                                                                                                      
#> [1137] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#> [1138] ""                                                                                                                                                                                                                                                      
#> [1139] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#> [1140] ""                                                                                                                                                                                                                                                      
#> [1141] ""                                                                                                                                                                                                                                                      
#> [1142] "#### Definition"                                                                                                                                                                                                                                       
#> [1143] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#> [1144] ""                                                                                                                                                                                                                                                      
#> [1145] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#> [1146] ""                                                                                                                                                                                                                                                      
#> [1147] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#> [1148] ""                                                                                                                                                                                                                                                      
#> [1149] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#> [1150] ""                                                                                                                                                                                                                                                      
#> [1151] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#> [1152] ""                                                                                                                                                                                                                                                      
#> [1153] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#> [1154] ""                                                                                                                                                                                                                                                      
#> [1155] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#> [1156] ""                                                                                                                                                                                                                                                      
#> [1157] "</div>"                                                                                                                                                                                                                                                
#> [1158] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#> [1159] ""                                                                                                                                                                                                                                                      
#> [1160] ""                                                                                                                                                                                                                                                      
#> [1161] "#### Instruction for developing measurement instruments"                                                                                                                                                                                               
#> [1162] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_measure_dev');\">Show/hide measurement instruction</div>"        
#> [1163] ""                                                                                                                                                                                                                                                      
#> [1164] "<div id=\"exampleConstruct_7s1f0r7l_measure_dev\" style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#> [1165] ""                                                                                                                                                                                                                                                      
#> [1166] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#> [1167] ""                                                                                                                                                                                                                                                      
#> [1168] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#> [1169] ""                                                                                                                                                                                                                                                      
#> [1170] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#> [1171] ""                                                                                                                                                                                                                                                      
#> [1172] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#> [1173] ""                                                                                                                                                                                                                                                      
#> [1174] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#> [1175] ""                                                                                                                                                                                                                                                      
#> [1176] ""                                                                                                                                                                                                                                                      
#> [1177] "#### Definition"                                                                                                                                                                                                                                       
#> [1178] "<div style=\"float:right;clear:both;margin:2px;border:2px solid #87C3FF;background-color:#c7e3ff;\" class=\"btn btn-secondary\" onclick=\"toggleVisibility('exampleConstruct_7s1f0r7l_definition');\">Show/hide definition</div>"                      
#> [1179] ""                                                                                                                                                                                                                                                      
#> [1180] "<div id=\"exampleConstruct_7s1f0r7l_definition\", style='clear: both; display: block' class='toggleable'>"                                                                                                                                             
#> [1181] ""                                                                                                                                                                                                                                                      
#> [1182] "<script>function toggleVisibility(elementId) {\n  var x = document.getElementById(elementId);\n  if (x.style.display === \"none\") {\n    x.style.display = \"block\";\n  } else {\n    x.style.display = \"none\";\n  }\n}</script>"                  
#> [1183] ""                                                                                                                                                                                                                                                      
#> [1184] "### An example construct {#exampleConstruct_7s1f0r7l}"                                                                                                                                                                                                 
#> [1185] ""                                                                                                                                                                                                                                                      
#> [1186] "*This overview was generated on 2024-01-25 at 19:48:29 CET (GMT+0100)*"                                                                                                                                                                                
#> [1187] ""                                                                                                                                                                                                                                                      
#> [1188] "This Decentralized Construct Taxonomy specification was authored at 2024-01-25."                                                                                                                                                                       
#> [1189] ""                                                                                                                                                                                                                                                      
#> [1190] "Unique Construct Identifier (UCID): `exampleConstruct_7s1f0r7l`"                                                                                                                                                                                       
#> [1191] ""                                                                                                                                                                                                                                                      
#> [1192] "</div>"                                                                                                                                                                                                                                                
#> [1193] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#> [1194] ""                                                                                                                                                                                                                                                      
#> [1195] "</div>"                                                                                                                                                                                                                                                
#> [1196] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#> [1197] ""                                                                                                                                                                                                                                                      
#> [1198] "</div>"                                                                                                                                                                                                                                                
#> [1199] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#> [1200] ""                                                                                                                                                                                                                                                      
#> [1201] "</div>"                                                                                                                                                                                                                                                
#> [1202] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#> [1203] ""                                                                                                                                                                                                                                                      
#> [1204] "</div>"                                                                                                                                                                                                                                                
#> [1205] "<div style='clear:both;height:2px;'></div>"                                                                                                                                                                                                            
#> [1206] ""                                                                                                                                                                                                                                                      
#> [1207] ""