diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md
index dd2ae41f..0a817542 100644
--- a/.github/copilot-instructions.md
+++ b/.github/copilot-instructions.md
@@ -7,7 +7,7 @@
- Google-style docstrings; use `Parameters:` not `Args:`
- Line length: 120 characters (configured in `pyproject.toml`)
- Markdown headers use sentence case: capitalize only the first word (and proper nouns/acronyms)
-- When creating work summaries, place them in `.status/` at the repository root
+- **Temporary files** (test scripts, debug files, notes): Always create in `.status/` directory, never in the repository root
## Project overview
diff --git a/hed/schema/hed_cache.py b/hed/schema/hed_cache.py
index 4a9d2924..417945e2 100644
--- a/hed/schema/hed_cache.py
+++ b/hed/schema/hed_cache.py
@@ -130,9 +130,11 @@ def get_hed_versions(local_hed_directory=None, library_name=None, check_prerelea
all_hed_versions[found_library_name].append(version)
for name, hed_versions in all_hed_versions.items():
all_hed_versions[name] = _sort_version_list(hed_versions)
+ if library_name == "all":
+ return all_hed_versions
if library_name in all_hed_versions:
return all_hed_versions[library_name]
- return all_hed_versions
+ return []
def get_hed_version_path(xml_version, library_name=None, local_hed_directory=None) -> Union[str, None]:
diff --git a/hed/schema/hed_schema.py b/hed/schema/hed_schema.py
index 52f7f5a8..9a369f50 100644
--- a/hed/schema/hed_schema.py
+++ b/hed/schema/hed_schema.py
@@ -406,9 +406,17 @@ def save_as_dataframes(self, base_filename, save_merged=False):
Raises:
OSError: File cannot be saved for some reason.
"""
+ from hed.schema.schema_io import df_constants
+
output_dfs = Schema2DF().process_schema(self, save_merged)
- if hasattr(self, "extras") and self.extras:
+ if hasattr(self, "extras") and self.extras and not save_merged:
+ # Only update with original extras if not saving merged
+ # When saving merged, the serializer's merged extras should be preserved
output_dfs.update(self.extras)
+ # Strip in_library column from extras - it's internal metadata, never serialized
+ for key, df in output_dfs.items():
+ if key in df_constants.DF_EXTRAS and df_constants.in_library in df.columns:
+ df.drop(columns=[df_constants.in_library], inplace=True)
df_util.save_dataframes(base_filename, output_dfs)
def set_schema_prefix(self, schema_namespace):
diff --git a/hed/schema/schema_io/base2schema.py b/hed/schema/schema_io/base2schema.py
index 5710a076..b9abc1dc 100644
--- a/hed/schema/schema_io/base2schema.py
+++ b/hed/schema/schema_io/base2schema.py
@@ -249,6 +249,9 @@ def fix_extras(self):
for key, extra in self._schema.extras.items():
self._schema.extras[key] = extra.rename(columns=df_constants.EXTRAS_CONVERSIONS)
+ # Always strip in_library column (internal metadata, never serialized)
+ if df_constants.in_library in self._schema.extras[key].columns:
+ self._schema.extras[key] = self._schema.extras[key].drop(columns=[df_constants.in_library])
if key in df_constants.extras_column_dict:
self._schema.extras[key] = self.fix_extra(key)
@@ -268,6 +271,8 @@ def fix_extra(self, key):
if col_to_add:
df[col_to_add] = ""
other_cols = sorted(set(df.columns) - set(priority_cols))
+ # Strip in_library column (internal metadata, never serialized) and any unknown columns
+ other_cols = [col for col in other_cols if col != df_constants.in_library]
df = df[priority_cols + other_cols]
df = df.sort_values(by=list(df.columns))
return df
diff --git a/hed/schema/schema_io/df2schema.py b/hed/schema/schema_io/df2schema.py
index 7a7ef9db..564af475 100644
--- a/hed/schema/schema_io/df2schema.py
+++ b/hed/schema/schema_io/df2schema.py
@@ -92,6 +92,9 @@ def _parse_data(self):
)
extras = {key: self.input_data[key] for key in constants.DF_EXTRAS if key in self.input_data}
for key, _item in extras.items():
+ # Add in_library column if this is a library schema
+ if self.library and not extras[key].empty and constants.in_library not in extras[key].columns:
+ extras[key][constants.in_library] = self.library
self._schema.extras[key] = df_util.merge_extras_dataframes(extras[key], self._schema.extras.get(key, None))
def _get_prologue_epilogue(self, file_data):
diff --git a/hed/schema/schema_io/df_util.py b/hed/schema/schema_io/df_util.py
index 961af7ab..81b95f67 100644
--- a/hed/schema/schema_io/df_util.py
+++ b/hed/schema/schema_io/df_util.py
@@ -61,15 +61,17 @@ def merge_dataframes(df1, df2, key):
def merge_extras_dataframes(library_df, standard_df):
"""Merge library and standard extras DataFrames by combining and deduplicating.
- The library extras should contain all entries (standard + library-specific).
- This function combines both and removes exact duplicates.
+ When the same entry appears in both library and standard schemas, the library version
+ (with in_library attribute) is retained. This ensures we can track which library
+ specific entries came from.
Parameters:
library_df (pd.DataFrame): DataFrame from library schema extras section
standard_df (pd.DataFrame): DataFrame from standard schema extras section
Returns:
- pd.DataFrame: Combined DataFrame with duplicates removed and sorted
+ pd.DataFrame: Combined DataFrame with duplicates removed and sorted, with in_library
+ preserved for duplicate entries
"""
if standard_df is None or standard_df.empty:
if library_df is None or library_df.empty:
@@ -78,10 +80,36 @@ def merge_extras_dataframes(library_df, standard_df):
if library_df is None or library_df.empty:
return standard_df.drop_duplicates().sort_values(by=list(standard_df.columns)).reset_index(drop=True)
- combined = pd.concat([standard_df, library_df], ignore_index=True)
- combined = combined.drop_duplicates()
- combined = combined.sort_values(by=list(combined.columns)).reset_index(drop=True)
- return combined
+ # Columns to compare for deduplication (exclude in_library)
+ compare_cols = [col for col in library_df.columns if col != constants.in_library]
+ if not compare_cols:
+ # If only in_library column, just return library_df
+ return library_df.drop_duplicates().sort_values(by=list(library_df.columns)).reset_index(drop=True)
+
+ # For each row in standard_df, check if it appears in library_df (by content, not by in_library)
+ # If it does, use the library version (which has in_library). If not, keep the standard version.
+ # Start with library_df
+ merged = library_df.copy()
+
+ # Deduplicate on compare_cols to avoid many-to-many join issues.
+ # When there are duplicate keys, merge() can produce more rows than either input,
+ # causing row indices to misalign. By deduplicating first on the key columns,
+ # we get unique combinations, find which are only in standard_df, then join back
+ # to standard_df to get the full rows.
+ standard_dedup = standard_df[compare_cols].drop_duplicates().reset_index(drop=True)
+ library_dedup = library_df[compare_cols].drop_duplicates().reset_index(drop=True)
+
+ # Use merge with indicator to find unique combinations only in standard_df
+ merge_result = standard_dedup.merge(library_dedup, on=compare_cols, how="left", indicator=True)
+ non_matching_dedup = merge_result[merge_result["_merge"] == "left_only"][compare_cols]
+
+ if len(non_matching_dedup) > 0:
+ # Join back to standard_df to get the full rows matching those unique combinations
+ to_add = standard_df.merge(non_matching_dedup, on=compare_cols, how="inner")
+ merged = pd.concat([merged, to_add], ignore_index=True)
+
+ merged = merged.drop_duplicates().sort_values(by=compare_cols).reset_index(drop=True)
+ return merged
def merge_dataframe_dicts(df_dict1, df_dict2, key_column=constants.KEY_COLUMN_NAME):
@@ -110,15 +138,21 @@ def merge_dataframe_dicts(df_dict1, df_dict2, key_column=constants.KEY_COLUMN_NA
def _merge_dataframes(df1, df2, key_column):
- # Add columns from df2 that are not in df1, only for rows that are in df1
+ """Merge two DataFrames by adding columns from df2 to df1 based on key column matching.
+ Keeps all rows from df1 and adds columns from df2 where keys match.
+ This is used for enriching schema attribute DataFrames with additional column data.
+ """
if df1.empty or df2.empty or key_column not in df1.columns or key_column not in df2.columns:
raise HedFileError(
HedExceptions.BAD_COLUMN_NAMES,
- f"Both dataframes to be merged must be non-empty had nave a '{key_column}' column",
+ f"Both dataframes to be merged must be non-empty and have a '{key_column}' column",
"",
)
+
df1 = df1.copy()
+
+ # Add columns from df2 that are not in df1
for col in df2.columns:
if col not in df1.columns and col != key_column:
df1 = df1.merge(df2[[key_column, col]], on=key_column, how="left")
diff --git a/hed/schema/schema_io/json2schema.py b/hed/schema/schema_io/json2schema.py
index ed1defd9..9b2db758 100644
--- a/hed/schema/schema_io/json2schema.py
+++ b/hed/schema/schema_io/json2schema.py
@@ -512,6 +512,10 @@ def _load_extras(self):
else:
library_df = pd.DataFrame([], columns=df_constants.source_columns)
+ # Add in_library column if this is a library schema
+ if self.library and not library_df.empty:
+ library_df[df_constants.in_library] = self.library
+
# Merge with existing schema extras if present (from withStandard base schema)
standard_df = self._schema.extras.get(df_constants.SOURCES_KEY, None)
self._schema.extras[df_constants.SOURCES_KEY] = df_util.merge_extras_dataframes(library_df, standard_df)
@@ -534,6 +538,10 @@ def _load_extras(self):
else:
library_df = pd.DataFrame([], columns=df_constants.prefix_columns)
+ # Add in_library column if this is a library schema
+ if self.library and not library_df.empty:
+ library_df[df_constants.in_library] = self.library
+
# Merge with existing schema extras if present (from withStandard base schema)
standard_df = self._schema.extras.get(df_constants.PREFIXES_KEY, None)
self._schema.extras[df_constants.PREFIXES_KEY] = df_util.merge_extras_dataframes(library_df, standard_df)
@@ -557,6 +565,10 @@ def _load_extras(self):
else:
library_df = pd.DataFrame([], columns=df_constants.external_annotation_columns)
+ # Add in_library column if this is a library schema
+ if self.library and not library_df.empty:
+ library_df[df_constants.in_library] = self.library
+
# Merge with existing schema extras if present (from withStandard base schema)
standard_df = self._schema.extras.get(df_constants.EXTERNAL_ANNOTATION_KEY, None)
self._schema.extras[df_constants.EXTERNAL_ANNOTATION_KEY] = df_util.merge_extras_dataframes(
diff --git a/hed/schema/schema_io/schema2base.py b/hed/schema/schema_io/schema2base.py
index 8ab78721..156dbfc8 100644
--- a/hed/schema/schema_io/schema2base.py
+++ b/hed/schema/schema_io/schema2base.py
@@ -2,6 +2,8 @@
from hed.schema.hed_schema_constants import HedSectionKey, HedKey
from hed.errors.exceptions import HedFileError, HedExceptions
+from hed.schema.schema_io import df_util
+from hed.schema.schema_io import df_constants
class Schema2Base:
@@ -45,6 +47,7 @@ def __init__(self):
self._save_merged = False
self._strip_out_in_library = False
self._schema = None
+ self._base_schema = None # Used when saving merged library schema to include base schema extras
def process_schema(self, hed_schema, save_merged=False):
"""Convert a HedSchema object to the subclass's output format (mediawiki, XML, JSON, or TSV).
@@ -83,11 +86,22 @@ def process_schema(self, hed_schema, save_merged=False):
self._save_base = False
self._strip_out_in_library = True
self._schema = hed_schema # This is needed to save attributes in dataframes for now
+ self._base_schema = None # Reset base schema reference
+
+ # If it is a library schema with a standard schema, we need to determine if we are saving merged or not.
if hed_schema.with_standard:
self._save_lib = True
if save_merged:
self._save_base = True
self._strip_out_in_library = False
+ # Load base schema so extras can be merged when outputting.
+ # We intentionally do NOT wrap this in try/except. If the base schema cannot be loaded,
+ # we fail fast rather than silently producing an incomplete "merged" output
+ # (e.g., missing Sources/Prefixes/External annotations). This design prevents
+ # the subtle bug of producing partial output that looks valid but is missing data.
+ from hed.schema.hed_schema_io import load_schema_version
+
+ self._base_schema = load_schema_version(hed_schema.with_standard)
else:
# Saving a standard schema or a library schema without a standard schema
save_merged = True
@@ -239,6 +253,37 @@ def _should_skip(self, entry):
def _attribute_disallowed(self, attribute):
return self._strip_out_in_library and attribute == HedKey.InLibrary
+ def _get_merged_extras(self, extras_key):
+ """Get extras, merging base schema extras when saving merged library schema.
+
+ Parameters:
+ extras_key (str): The key for the extras type (e.g., df_constants.SOURCES_KEY)
+
+ Returns:
+ pd.DataFrame or None: The extras dataframe, merged if applicable
+ """
+ lib_extras = self._schema.get_extras(extras_key)
+
+ # If not saving merged or no base schema, just return library extras
+ if not self._save_merged or not self._base_schema:
+ return lib_extras
+
+ # Merge base schema extras with library extras
+ base_extras = self._base_schema.get_extras(extras_key)
+ if base_extras is None and lib_extras is None:
+ return None
+
+ # Ensure both DataFrames have consistent columns, especially in_library
+ if lib_extras is not None and not lib_extras.empty and df_constants.in_library in lib_extras.columns:
+ # Library extras have in_library column - ensure base extras has it too
+ if base_extras is not None and not base_extras.empty and df_constants.in_library not in base_extras.columns:
+ base_extras = base_extras.copy()
+ base_extras[df_constants.in_library] = "" # Mark base schema rows with empty string
+
+ # Use merge_extras_dataframes to combine them
+ merged = df_util.merge_extras_dataframes(lib_extras, base_extras)
+ return merged if not merged.empty else None
+
def _format_tag_attributes(self, attributes):
"""Takes a dictionary of tag attributes and returns a string with the .mediawiki representation.
diff --git a/hed/schema/schema_io/schema2df.py b/hed/schema/schema_io/schema2df.py
index b3c72aad..8bd78889 100644
--- a/hed/schema/schema_io/schema2df.py
+++ b/hed/schema/schema_io/schema2df.py
@@ -90,8 +90,36 @@ def _output_extras(self, hed_schema):
hed_schema(HedSchema): The HED schema to extract the information from
"""
+ # Import here to avoid circular imports
+ from hed.schema.schema_io import df_constants
+
+ # Get all extras keys that might exist
+ extras_keys = [df_constants.SOURCES_KEY, df_constants.PREFIXES_KEY, df_constants.EXTERNAL_ANNOTATION_KEY]
+
+ for key in extras_keys:
+ merged_extras = self._get_merged_extras(key)
+ if merged_extras is not None and not merged_extras.empty:
+ output_df = merged_extras.copy()
+ # Always strip in_library column - it's internal metadata, never serialized
+ if df_constants.in_library in output_df.columns:
+ output_df = output_df.drop(columns=[df_constants.in_library])
+ self.output[key] = output_df
+ elif key in hed_schema.extras and hed_schema.extras[key] is not None:
+ # Include empty dataframes with proper structure
+ output_df = hed_schema.extras[key].copy()
+ # Always strip in_library column - it's internal metadata, never serialized
+ if df_constants.in_library in output_df.columns:
+ output_df = output_df.drop(columns=[df_constants.in_library])
+ self.output[key] = output_df
+
+ # Also include any other extras that might exist
for key, df in hed_schema.extras.items():
- self.output[key] = df.copy()
+ if key not in self.output:
+ output_df = df.copy()
+ # Always strip in_library column - it's internal metadata, never serialized
+ if df_constants.in_library in output_df.columns:
+ output_df = output_df.drop(columns=[df_constants.in_library])
+ self.output[key] = output_df
def _output_epilogue(self, epilogue):
base_object = "HedEpilogue"
diff --git a/hed/schema/schema_io/schema2json.py b/hed/schema/schema_io/schema2json.py
index 366e22e3..eb417a72 100644
--- a/hed/schema/schema_io/schema2json.py
+++ b/hed/schema/schema_io/schema2json.py
@@ -59,7 +59,7 @@ def _output_sources(self, hed_schema):
Parameters:
hed_schema (HedSchema): The schema being output
"""
- sources = hed_schema.get_extras(df_constants.SOURCES_KEY)
+ sources = self._get_merged_extras(df_constants.SOURCES_KEY)
if sources is None or sources.empty:
return
@@ -80,7 +80,7 @@ def _output_prefixes(self, hed_schema):
Parameters:
hed_schema (HedSchema): The schema being output
"""
- prefixes = hed_schema.get_extras(df_constants.PREFIXES_KEY)
+ prefixes = self._get_merged_extras(df_constants.PREFIXES_KEY)
if prefixes is None or prefixes.empty:
return
@@ -101,7 +101,7 @@ def _output_external_annotations(self, hed_schema):
Parameters:
hed_schema (HedSchema): The schema being output
"""
- externals = hed_schema.get_extras(df_constants.EXTERNAL_ANNOTATION_KEY)
+ externals = self._get_merged_extras(df_constants.EXTERNAL_ANNOTATION_KEY)
if externals is None or externals.empty:
return
diff --git a/hed/schema/schema_io/schema2wiki.py b/hed/schema/schema_io/schema2wiki.py
index a806bf73..93e1c39a 100644
--- a/hed/schema/schema_io/schema2wiki.py
+++ b/hed/schema/schema_io/schema2wiki.py
@@ -61,7 +61,7 @@ def _output_extra(self, hed_schema, section_key, wiki_key):
wiki_key (string): The key in the wiki constants for the section.
"""
- extra = hed_schema.get_extras(section_key)
+ extra = self._get_merged_extras(section_key)
if extra is None or extra.empty:
return
@@ -73,6 +73,9 @@ def _output_extra(self, hed_schema, section_key, wiki_key):
# Build column string from all columns
column_strings = []
for col in extra.columns:
+ # Always skip in_library column - it's internal metadata, never serialized
+ if col == df_constants.in_library:
+ continue
if pd.notna(row[col]) and row[col] != "":
column_strings.append(f"{col}={row[col]}")
self.current_tag_extra = ",".join(column_strings)
diff --git a/hed/schema/schema_io/schema2xml.py b/hed/schema/schema_io/schema2xml.py
index 10cc4ae1..1100d71d 100644
--- a/hed/schema/schema_io/schema2xml.py
+++ b/hed/schema/schema_io/schema2xml.py
@@ -45,7 +45,7 @@ def _output_extras(self, hed_schema):
self._output_external_annotations(hed_schema)
def _output_sources(self, hed_schema):
- sources = hed_schema.get_extras(df_constants.SOURCES_KEY)
+ sources = self._get_merged_extras(df_constants.SOURCES_KEY)
if sources is None or sources.empty:
return
@@ -60,7 +60,7 @@ def _output_sources(self, hed_schema):
description.text = row[df_constants.description]
def _output_prefixes(self, hed_schema):
- prefixes = hed_schema.get_extras(df_constants.PREFIXES_KEY)
+ prefixes = self._get_merged_extras(df_constants.PREFIXES_KEY)
if prefixes is None or prefixes.empty:
return
@@ -75,7 +75,7 @@ def _output_prefixes(self, hed_schema):
prefix_description.text = row[df_constants.description]
def _output_external_annotations(self, hed_schema):
- externals = hed_schema.get_extras(df_constants.EXTERNAL_ANNOTATION_KEY)
+ externals = self._get_merged_extras(df_constants.EXTERNAL_ANNOTATION_KEY)
if externals is None or externals.empty:
return
diff --git a/hed/schema/schema_io/wiki2schema.py b/hed/schema/schema_io/wiki2schema.py
index d0384b19..f9378267 100644
--- a/hed/schema/schema_io/wiki2schema.py
+++ b/hed/schema/schema_io/wiki2schema.py
@@ -137,6 +137,10 @@ def _parse_extras(self, wiki_lines_by_section):
stripped_key = extra_key.strip("'")
stripped_key = WIKI_EXTRA_DICT.get(stripped_key, stripped_key)
+ # Add in_library column if this is a library schema
+ if self.library and not df.empty:
+ df[df_constants.in_library] = self.library
+
# Merge with existing schema extras if present (from withStandard base schema)
standard_df = self._schema.extras.get(stripped_key, None)
self._schema.extras[stripped_key] = df_util.merge_extras_dataframes(df, standard_df)
diff --git a/hed/schema/schema_io/xml2schema.py b/hed/schema/schema_io/xml2schema.py
index 919ad852..ff120c91 100644
--- a/hed/schema/schema_io/xml2schema.py
+++ b/hed/schema/schema_io/xml2schema.py
@@ -126,6 +126,10 @@ def _read_sources(self):
)
library_df = pd.DataFrame(data)
+ # Add in_library column if this is a library schema
+ if self.library:
+ library_df[df_constants.in_library] = self.library
+
# Merge with existing schema extras if present (from withStandard base schema)
standard_df = self._schema.extras.get(df_constants.SOURCES_KEY, None)
self._schema.extras[df_constants.SOURCES_KEY] = df_util.merge_extras_dataframes(library_df, standard_df)
@@ -147,6 +151,10 @@ def _read_prefixes(self):
)
library_df = pd.DataFrame(data)
+ # Add in_library column if this is a library schema
+ if self.library:
+ library_df[df_constants.in_library] = self.library
+
# Merge with existing schema extras if present (from withStandard base schema)
standard_df = self._schema.extras.get(df_constants.PREFIXES_KEY, None)
self._schema.extras[df_constants.PREFIXES_KEY] = df_util.merge_extras_dataframes(library_df, standard_df)
@@ -170,6 +178,10 @@ def _read_external_annotations(self):
)
library_df = pd.DataFrame(data)
+ # Add in_library column if this is a library schema
+ if self.library:
+ library_df[df_constants.in_library] = self.library
+
# Merge with existing schema extras if present (from withStandard base schema)
standard_df = self._schema.extras.get(df_constants.EXTERNAL_ANNOTATION_KEY, None)
self._schema.extras[df_constants.EXTERNAL_ANNOTATION_KEY] = df_util.merge_extras_dataframes(
diff --git a/hed/scripts/check_schema_loading.py b/hed/scripts/check_schema_loading.py
index 5fcf5d53..954806fe 100644
--- a/hed/scripts/check_schema_loading.py
+++ b/hed/scripts/check_schema_loading.py
@@ -37,6 +37,10 @@
FORMAT_DIR_MAP = {"xml": "hedxml", "mediawiki": "hedwiki", "json": "hedjson", "tsv": "hedtsv"}
FORMAT_EXTENSIONS = {"hedxml": ".xml", "hedwiki": ".mediawiki", "hedjson": ".json"}
ALL_FORMATS = ["xml", "mediawiki", "json", "tsv"]
+EXTRA_DIRS_CONFIG = {
+ "schemas_latest_json": ".json",
+ "schemas_xml_unmerged": ".xml",
+}
class SchemaLoadTester:
@@ -333,6 +337,64 @@ def _get_library_dirs(self, library_filter=None):
return library_dirs
+ def _test_flat_directory(self, directory_path, format_extension, format_name, indent=""):
+ """Test loading schemas from a flat directory structure.
+
+ Parameters:
+ directory_path (Path): Path to the flat directory.
+ format_extension (str): File extension to search for (e.g., '.json', '.xml').
+ format_name (str): Name of format for display (e.g., 'JSON', 'XML').
+ indent (str): Indentation prefix for output.
+ """
+ schema_files = []
+ for item in directory_path.glob(f"*{format_extension}"):
+ if item.is_file():
+ schema_files.append(item)
+
+ if not schema_files:
+ return
+
+ schema_names = [s.name for s in schema_files]
+ print(f"{indent}{format_name} ({len(schema_files)}): {', '.join(schema_names)}")
+
+ for schema_path in sorted(schema_files):
+ relative_path = schema_path.relative_to(self.hed_schemas_root)
+ success, error = self.try_load_schema(schema_path, relative_path)
+ self.results["total"] += 1
+
+ if success:
+ self.results["passed"] += 1
+ if self.verbose:
+ print(f"{indent} ✓ {schema_path.name}")
+ else:
+ self.results["failed"] += 1
+ self.failures.append({"path": str(relative_path), "error": error})
+ print(f"{indent} ✗ {schema_path.name}: {error}")
+
+ def test_extra_directories(self):
+ """Test loading schemas from all EXTRA_DIRS_CONFIG directories (flat structure).
+
+ Uses EXTRA_DIRS_CONFIG to drive testing of each directory with its corresponding
+ file extension. README files are automatically excluded by extension filtering.
+ """
+ for dir_name, file_extension in EXTRA_DIRS_CONFIG.items():
+ extra_dir = self.hed_schemas_root / dir_name
+ format_name = file_extension.lstrip(".").upper()
+
+ print("\n" + "=" * 80)
+ print(dir_name.upper())
+ print("=" * 80)
+
+ if not extra_dir.exists():
+ print(f"[INFO] Directory not found: {extra_dir}")
+ continue
+
+ if not any(extra_dir.iterdir()):
+ print("[INFO] Directory is empty")
+ continue
+
+ self._test_flat_directory(extra_dir, file_extension, format_name, indent="\n")
+
def print_summary(self):
"""Print test summary."""
print("\n" + "=" * 80)
@@ -365,6 +427,7 @@ def run_loading_check(
exclude_prereleases=False,
prerelease_only=False,
verbose=False,
+ exclude_extras=False,
):
"""Run schema loading checks and return results.
@@ -379,6 +442,7 @@ def run_loading_check(
exclude_prereleases (bool): If True, exclude prerelease schemas.
prerelease_only (bool): If True, test only prerelease schemas.
verbose (bool): If True, show detailed success messages.
+ exclude_extras (bool): If True, exclude extra schema directories (schemas_latest_json, schemas_xml_unmerged).
Returns:
dict: Results dictionary with keys 'total', 'passed', 'failed',
@@ -409,6 +473,10 @@ def run_loading_check(
print("Mode: Prerelease schemas only")
elif exclude_prereleases:
print("Mode: Releases only (prereleases excluded)")
+ if exclude_extras:
+ print("Mode: Extra directories excluded")
+ else:
+ print("Mode: Extra directories included")
if prerelease_only:
if library_filter:
@@ -439,6 +507,9 @@ def run_loading_check(
tester.test_standard_prereleases(format_filter)
tester.test_library_prereleases(format_filter, None)
+ if not exclude_extras:
+ tester.test_extra_directories()
+
tester.print_summary()
return {
@@ -474,6 +545,11 @@ def parse_arguments(arg_list=None):
parser.add_argument("--standard-only", action="store_true", help="Test only standard schemas")
parser.add_argument("--exclude-prereleases", action="store_true", help="Exclude prerelease schemas (releases only)")
parser.add_argument("--prerelease-only", action="store_true", help="Test only prerelease schemas")
+ parser.add_argument(
+ "--exclude-extras",
+ action="store_true",
+ help="Exclude extra schema directories (schemas_latest_json, schemas_xml_unmerged)",
+ )
parser.add_argument("--verbose", action="store_true", help="Show detailed success messages")
return parser.parse_args(arg_list)
@@ -524,6 +600,7 @@ def main(arg_list=None):
exclude_prereleases=args.exclude_prereleases,
prerelease_only=args.prerelease_only,
verbose=args.verbose,
+ exclude_extras=args.exclude_extras,
)
sys.exit(0 if results["failed"] == 0 else 1)
diff --git a/spec_tests/hed-schemas b/spec_tests/hed-schemas
index 83d5a92e..5e0d41d0 160000
--- a/spec_tests/hed-schemas
+++ b/spec_tests/hed-schemas
@@ -1 +1 @@
-Subproject commit 83d5a92ed81153f54af95e59845abbb68b3f52d0
+Subproject commit 5e0d41d02094b09411691852a877301bfb23346b
diff --git a/spec_tests/hed-tests b/spec_tests/hed-tests
index 8c35600d..6885f328 160000
--- a/spec_tests/hed-tests
+++ b/spec_tests/hed-tests
@@ -1 +1 @@
-Subproject commit 8c35600d13ee65c65bd634490f2fb1f0ff0514f1
+Subproject commit 6885f3287d92b388abc0414e0767a64f89809a38
diff --git a/tests/data/schema_tests/HED_testlib_2.1.0.xml b/tests/data/schema_tests/HED_testlib_2.1.0.xml
new file mode 100644
index 00000000..974c43ae
--- /dev/null
+++ b/tests/data/schema_tests/HED_testlib_2.1.0.xml
@@ -0,0 +1,254 @@
+
+
+ Conflicts: testlib_2.0.0 Violin-subsound1, Violin-subsound2, Violin-subsound3 have different parents; testlib_2.0.0 piano-subsound2 does not take value; testlib_2.2.0 Piano-subsound2 takes a value with a unit class.
+
+
+ BA-nonextension
+
+ SubnodeB1A
+
+
+ SubnodeB2A
+
+
+
+ A-nonextension
+ These should not be sorted. A should be second.
+
+ SubnodeA3
+
+
+ SubnodeA1
+
+
+ SubnodeA2
+
+
+
+ Oboe-sound
+ These should be sorted. Oboe should be second
+
+ rooted
+ Instrument-sound
+
+
+ Oboe-subsound1
+
+
+ Oboe-subsound2
+
+
+
+ Piano-sound
+
+ rooted
+ Instrument-sound
+
+
+ Piano-subsound1
+
+
+ Piano-subsound2
+
+ #
+
+
+
+ Piano-subsound2A
+
+
+
+ Violin1-sound
+
+ rooted
+ Instrument-sound
+
+
+ Violin-subsound1
+
+
+ Violin-subsound2
+
+
+ Violin1-subsound3
+
+
+
+
+
+
+
+
+
+
+ Wikipedia
+ https://en.wikipedia.org
+ General definitions of concepts.
+
+
+
+
+ dc:
+ http://purl.org/dc/elements/1.1/#
+ The Dublin Core elements
+
+
+ foaf:
+ http://xmlns.com/foaf/0.1/#
+ Friend-of-a-Friend http://xmlns.com/foaf/spec/
+
+
+ iao:
+ http://purl.obolibrary.org/obo/iao.owl
+ Information Artifact Ontology (IAO)
+
+
+ ncit:
+ http://purl.obolibrary.org/obo/ncit.owl
+ NCI Thesaurus OBO Edition
+
+
+ obogo:
+ http://www.geneontology.org/formats/oboInOwl
+ The OBO Format Namespace
+
+
+ owl:
+ http://www.w3.org/2002/07/owl
+ The OWL namespace [OWL2-OVERVIEW]
+
+
+ prov:
+ http://www.w3.org/ns/prov
+ The PROV namespace [PROV-DM]
+
+
+ rdf:
+ http://www.w3.org/1999/02/22-rdf-syntax-ns
+ The RDF namespace [RDF-CONCEPTS]
+
+
+ rdfs:
+ http://www.w3.org/2000/01/rdf-schema
+ The RDF Schema namespace [RDFS]
+
+
+ skos:
+ http://www.w3.org/2004/02/skos/core
+ SKOS (Simple Knowledge Organization System) Vocabulary
+
+
+ terms:
+ http://purl.org/dc/terms/#
+ The Dublin Core terms
+
+
+ xml:
+ http://www.w3.org/XML/1998/namespace
+ XLM Namespace [XML]
+
+
+ xsd:
+ http://www.w3.org/2001/XMLSchema
+ XML Schema Namespace [XMLSCHEMA11-2]
+
+
+
+
+ dc:
+ contributor
+ http://purl.org/dc/elements/1.1/contributor
+ An entity responsible for making contributions to the resource.
+
+
+ dc:
+ creator
+ http://purl.org/dc/elements/1.1/creator
+ An entity primarily responsible for making the resource.
+
+
+ dc:
+ date
+ http://purl.org/dc/elements/1.1/date
+ A point or period of time associated with an event in the lifecycle of the resource.
+
+
+ dc:
+ description
+ http://purl.org/dc/elements/1.1/description
+ An account of the resource.
+
+
+ dc:
+ format
+ http://purl.org/dc/elements/1.1/format
+ The file format
+
+
+ dc:
+ identifier
+ http://purl.org/dc/elements/1.1/identifier
+ An unambiguous reference to the resource within a given context.
+
+
+ dc:
+ language
+ http://purl.org/dc/elements/1.1/language
+ A language of the resource.
+
+
+ dc:
+ publisher
+ http://purl.org/dc/elements/1.1/publisher
+ An entity responsible for making the resource available.
+
+
+ dc:
+ relation
+ http://purl.org/dc/elements/1.1/relation
+ A related resource.
+
+
+ dc:
+ source
+ http://purl.org/dc/elements/1.1/source
+ A related resource from which the described resource is derived.
+
+
+ dc:
+ subject
+ http://purl.org/dc/elements/1.1/subject
+ The topic of the resource.
+
+
+ dc:
+ title
+ http://purl.org/dc/elements/1.1/title
+ A name given to the resource.
+
+
+ dc:
+ type
+ http://purl.org/dc/elements/1.1/type
+ The nature or genre of the resource.
+
+
+ foaf:
+ homepage
+ http://xmlns.com/foaf/0.1/homepage
+ A homepage for some thing.
+
+
+ obogo:
+ has_dbxref
+ http://www.geneontology.org/formats/oboInOwl#hasDbXref
+ Property indicating that an ontology term has a cross-reference to a database.
+
+
+ terms:
+ license
+ http://purl.org/dc/terms/license
+ A legal document giving official permission to do something with the resource.
+
+
+
diff --git a/tests/data/schema_tests/prerelease/HED9.9.9.mediawiki b/tests/data/schema_tests/prerelease/HED9.9.9.mediawiki
index 4f7ad4da..ac7f5094 100644
--- a/tests/data/schema_tests/prerelease/HED9.9.9.mediawiki
+++ b/tests/data/schema_tests/prerelease/HED9.9.9.mediawiki
@@ -24,4 +24,8 @@ resolution via load_schema/from_string.
'''Epilogue'''
+'''Sources'''
+
+'''External annotations'''
+
!# end hed
diff --git a/tests/data/schema_tests/prerelease/HED_testlib_2.1.0.xml b/tests/data/schema_tests/prerelease/HED_testliba_2.1.0.xml
similarity index 66%
rename from tests/data/schema_tests/prerelease/HED_testlib_2.1.0.xml
rename to tests/data/schema_tests/prerelease/HED_testliba_2.1.0.xml
index a72e7a27..eb78ca6c 100644
--- a/tests/data/schema_tests/prerelease/HED_testlib_2.1.0.xml
+++ b/tests/data/schema_tests/prerelease/HED_testliba_2.1.0.xml
@@ -1,5 +1,5 @@
-
+Test prerelease library schema for testing mixed regular and prerelease loading.
diff --git a/tests/data/schema_tests/prerelease/HED_testpre_1.0.0.mediawiki b/tests/data/schema_tests/prerelease/HED_testpre_1.0.0.mediawiki
index 3821b53e..3f26d65b 100644
--- a/tests/data/schema_tests/prerelease/HED_testpre_1.0.0.mediawiki
+++ b/tests/data/schema_tests/prerelease/HED_testpre_1.0.0.mediawiki
@@ -22,4 +22,6 @@ directory. Used to test prerelease partner resolution through load_schema/from_s
'''Epilogue'''
+'''Prefixes'''
+
!# end hed
diff --git a/tests/data/schema_tests/prerelease/HED_testpre_1.0.1.mediawiki b/tests/data/schema_tests/prerelease/HED_testpre_1.0.1.mediawiki
new file mode 100644
index 00000000..fe450518
--- /dev/null
+++ b/tests/data/schema_tests/prerelease/HED_testpre_1.0.1.mediawiki
@@ -0,0 +1,26 @@
+HED library="testpre" version="1.0.1" withStandard="9.999999" unmerged="True"
+
+'''Prologue'''
+Library schema whose withStandard partner (9.9.99999) does not exist.
+
+!# start schema
+
+'''Prerelease-partner-only-item''' [A test item in the testpre library schema.]
+
+!# end schema
+
+'''Unit classes'''
+
+'''Unit modifiers'''
+
+'''Value classes'''
+
+'''Schema attributes'''
+
+'''Properties'''
+
+'''Epilogue'''
+
+'''Prefixes'''
+
+!# end hed
diff --git a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0.json b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0.json
index 1e663488..8cf146fe 100644
--- a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0.json
+++ b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0.json
@@ -2,7 +2,6 @@
"version": "4.0.0",
"library": "testlib",
"withStandard": "8.4.0",
- "unmerged": "True",
"prologue": "This schema is designed to be lazy partnered with prerelease 8.4.0.",
"tags": {
"Test-some": {
@@ -11,11 +10,14 @@
"description": "Unknown stuff.",
"parent": null,
"children": [
- "Unknown1",
- "Unknown2"
+ "Unknown1"
],
- "attributes": {},
- "explicitAttributes": {}
+ "attributes": {
+ "inLibrary": "testlib"
+ },
+ "explicitAttributes": {
+ "inLibrary": "testlib"
+ }
},
"Unknown1": {
"short_form": "Unknown1",
@@ -23,144 +25,20558 @@
"description": "Unknown1 stuff",
"parent": "Test-some",
"children": [],
- "attributes": {},
- "explicitAttributes": {}
+ "attributes": {
+ "inLibrary": "testlib"
+ },
+ "explicitAttributes": {
+ "inLibrary": "testlib"
+ }
},
- "Unknown2": {
- "short_form": "Unknown2",
- "long_form": "Test-some/Unknown2",
- "description": "Unknown2 stuff",
- "parent": "Test-some",
- "children": [],
+ "Event": {
+ "short_form": "Event",
+ "long_form": "Event",
+ "description": "Something that happens at a given time and (typically) place. Elements of this tag subtree designate the general category in which an event falls.",
+ "parent": null,
+ "children": [
+ "Sensory-event",
+ "Agent-action",
+ "Data-feature",
+ "Experiment-control",
+ "Experiment-procedure",
+ "Experiment-structure",
+ "Measurement-event"
+ ],
"attributes": {
"suggestedTag": [
- "Item"
+ "Task-property"
+ ],
+ "hedId": "HED_0012001",
+ "annotation": [
+ "ncit:C25499",
+ "rdfs:comment Should have this tag in every event process."
]
},
"explicitAttributes": {
"suggestedTag": [
- "Item"
+ "Task-property"
+ ],
+ "hedId": "HED_0012001",
+ "annotation": [
+ "ncit:C25499",
+ "rdfs:comment Should have this tag in every event process."
]
+ }
+ },
+ "Sensory-event": {
+ "short_form": "Sensory-event",
+ "long_form": "Event/Sensory-event",
+ "description": "Something perceivable by the participant. An event meant to be an experimental stimulus should include the tag Task-property/Task-event-role/Experimental-stimulus.",
+ "parent": "Event",
+ "children": [],
+ "attributes": {
+ "suggestedTag": [
+ "Task-event-role",
+ "Sensory-presentation",
+ "Task-property"
+ ],
+ "hedId": "HED_0012002"
},
- "placeholder": {
- "description": "Try this out",
- "takesValue": true,
- "unitClass": [
- "myAngleUnits"
+ "explicitAttributes": {
+ "suggestedTag": [
+ "Task-event-role",
+ "Sensory-presentation"
],
- "valueClass": [
- "digitClass"
- ]
+ "hedId": "HED_0012002"
}
},
- "Fruit": {
- "short_form": "Fruit",
- "long_form": "Item/Biological-item/Organism/Plant/Fruit",
- "description": "Fruit stuff.",
- "parent": "Plant",
+ "Agent-action": {
+ "short_form": "Agent-action",
+ "long_form": "Event/Agent-action",
+ "description": "Any action engaged in by an agent (see the Agent subtree for agent categories). A participant response to an experiment stimulus should include the tag Agent-property/Agent-task-role/Experiment-participant.",
+ "parent": "Event",
+ "children": [],
+ "attributes": {
+ "suggestedTag": [
+ "Task-event-role",
+ "Agent",
+ "Task-property"
+ ],
+ "hedId": "HED_0012003"
+ },
+ "explicitAttributes": {
+ "suggestedTag": [
+ "Task-event-role",
+ "Agent"
+ ],
+ "hedId": "HED_0012003"
+ }
+ },
+ "Data-feature": {
+ "short_form": "Data-feature",
+ "long_form": "Event/Data-feature",
+ "description": "An event marking the occurrence of a data feature such as an interictal spike or alpha burst that is often added post hoc to the data record.",
+ "parent": "Event",
+ "children": [],
+ "attributes": {
+ "suggestedTag": [
+ "Data-property",
+ "Task-property"
+ ],
+ "hedId": "HED_0012004"
+ },
+ "explicitAttributes": {
+ "suggestedTag": [
+ "Data-property"
+ ],
+ "hedId": "HED_0012004"
+ }
+ },
+ "Experiment-control": {
+ "short_form": "Experiment-control",
+ "long_form": "Event/Experiment-control",
+ "description": "An event pertaining to the physical control of the experiment during its operation.",
+ "parent": "Event",
+ "children": [],
+ "attributes": {
+ "suggestedTag": [
+ "Task-property"
+ ],
+ "hedId": "HED_0012005"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012005"
+ }
+ },
+ "Experiment-procedure": {
+ "short_form": "Experiment-procedure",
+ "long_form": "Event/Experiment-procedure",
+ "description": "An event indicating an experimental procedure, as in performing a saliva swab during the experiment or administering a survey.",
+ "parent": "Event",
+ "children": [],
+ "attributes": {
+ "suggestedTag": [
+ "Task-property"
+ ],
+ "hedId": "HED_0012006"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012006"
+ }
+ },
+ "Experiment-structure": {
+ "short_form": "Experiment-structure",
+ "long_form": "Event/Experiment-structure",
+ "description": "An event specifying a change-point of the structure of experiment. This event is typically used to indicate a change in experimental conditions or tasks.",
+ "parent": "Event",
+ "children": [],
+ "attributes": {
+ "suggestedTag": [
+ "Task-property"
+ ],
+ "hedId": "HED_0012007"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012007"
+ }
+ },
+ "Measurement-event": {
+ "short_form": "Measurement-event",
+ "long_form": "Event/Measurement-event",
+ "description": "A discrete measure returned by an instrument.",
+ "parent": "Event",
+ "children": [],
+ "attributes": {
+ "suggestedTag": [
+ "Data-property",
+ "Task-property"
+ ],
+ "hedId": "HED_0012008"
+ },
+ "explicitAttributes": {
+ "suggestedTag": [
+ "Data-property"
+ ],
+ "hedId": "HED_0012008"
+ }
+ },
+ "Agent": {
+ "short_form": "Agent",
+ "long_form": "Agent",
+ "description": "Someone or something that takes an active role or produces a specified effect.The role or effect may be implicit. Being alive or performing an activity such as a computation may qualify something to be an agent. An agent may also be something that simulates something else.",
+ "parent": null,
"children": [
- "Apple"
+ "Animal-agent",
+ "Avatar-agent",
+ "Controller-agent",
+ "Human-agent",
+ "Robotic-agent",
+ "Software-agent"
],
"attributes": {
- "extensionAllowed": true,
- "rooted": "Plant"
+ "suggestedTag": [
+ "Agent-property"
+ ],
+ "hedId": "HED_0012009"
},
"explicitAttributes": {
- "rooted": "Plant"
+ "suggestedTag": [
+ "Agent-property"
+ ],
+ "hedId": "HED_0012009"
}
},
- "Apple": {
- "short_form": "Apple",
- "long_form": "Item/Biological-item/Organism/Plant/Fruit/Apple",
- "description": "Apple stuff",
- "parent": "Fruit",
+ "Animal-agent": {
+ "short_form": "Animal-agent",
+ "long_form": "Agent/Animal-agent",
+ "description": "An agent that is an animal.",
+ "parent": "Agent",
+ "children": [],
+ "attributes": {
+ "suggestedTag": [
+ "Agent-property"
+ ],
+ "hedId": "HED_0012010"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012010"
+ }
+ },
+ "Avatar-agent": {
+ "short_form": "Avatar-agent",
+ "long_form": "Agent/Avatar-agent",
+ "description": "An agent associated with an icon or avatar representing another agent.",
+ "parent": "Agent",
+ "children": [],
+ "attributes": {
+ "suggestedTag": [
+ "Agent-property"
+ ],
+ "hedId": "HED_0012011"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012011"
+ }
+ },
+ "Controller-agent": {
+ "short_form": "Controller-agent",
+ "long_form": "Agent/Controller-agent",
+ "description": "Experiment control software or hardware.",
+ "parent": "Agent",
+ "children": [],
+ "attributes": {
+ "suggestedTag": [
+ "Agent-property"
+ ],
+ "hedId": "HED_0012012"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012012"
+ }
+ },
+ "Human-agent": {
+ "short_form": "Human-agent",
+ "long_form": "Agent/Human-agent",
+ "description": "A person who takes an active role or produces a specified effect.",
+ "parent": "Agent",
+ "children": [],
+ "attributes": {
+ "suggestedTag": [
+ "Agent-property"
+ ],
+ "hedId": "HED_0012013"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012013"
+ }
+ },
+ "Robotic-agent": {
+ "short_form": "Robotic-agent",
+ "long_form": "Agent/Robotic-agent",
+ "description": "An agent mechanical device capable of performing a variety of often complex tasks on command or by being programmed in advance.",
+ "parent": "Agent",
+ "children": [],
+ "attributes": {
+ "suggestedTag": [
+ "Agent-property"
+ ],
+ "hedId": "HED_0012014"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012014"
+ }
+ },
+ "Software-agent": {
+ "short_form": "Software-agent",
+ "long_form": "Agent/Software-agent",
+ "description": "An agent computer program that interacts with the participant in an active role such as an AI advisor.",
+ "parent": "Agent",
+ "children": [],
+ "attributes": {
+ "suggestedTag": [
+ "Agent-property"
+ ],
+ "hedId": "HED_0012015"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012015"
+ }
+ },
+ "Action": {
+ "short_form": "Action",
+ "long_form": "Action",
+ "description": "Do something.",
+ "parent": null,
"children": [
- "Honey-crisp"
+ "Communicate",
+ "Move",
+ "Perceive",
+ "Perform",
+ "Think"
],
"attributes": {
"extensionAllowed": true,
- "annotation": "foodonto:has_botanical_name"
+ "hedId": "HED_0012016"
},
"explicitAttributes": {
- "annotation": "foodonto:has_botanical_name"
+ "extensionAllowed": true,
+ "hedId": "HED_0012016"
}
},
- "Honey-crisp": {
- "short_form": "Honey-crisp",
- "long_form": "Item/Biological-item/Organism/Plant/Fruit/Apple/Honey-crisp",
- "description": "Type of apple",
- "parent": "Apple",
- "children": [],
+ "Communicate": {
+ "short_form": "Communicate",
+ "long_form": "Action/Communicate",
+ "description": "Action conveying knowledge of or about something.",
+ "parent": "Action",
+ "children": [
+ "Communicate-gesturally",
+ "Communicate-musically",
+ "Communicate-vocally"
+ ],
"attributes": {
- "extensionAllowed": true
+ "extensionAllowed": true,
+ "hedId": "HED_0012017"
},
- "explicitAttributes": {}
+ "explicitAttributes": {
+ "hedId": "HED_0012017"
+ }
},
- "Vegetable": {
- "short_form": "Vegetable",
- "long_form": "Item/Biological-item/Organism/Plant/Vegetable",
- "description": "Vegetable stuff.",
- "parent": "Plant",
+ "Communicate-gesturally": {
+ "short_form": "Communicate-gesturally",
+ "long_form": "Action/Communicate/Communicate-gesturally",
+ "description": "Communicate non-verbally using visible bodily actions, either in place of speech or together and in parallel with spoken words. Gestures include movement of the hands, face, or other parts of the body.",
+ "parent": "Communicate",
"children": [
- "Carrot"
+ "Clap-hands",
+ "Clear-throat",
+ "Frown",
+ "Grimace",
+ "Nod-head",
+ "Pump-fist",
+ "Raise-eyebrows",
+ "Shake-fist",
+ "Shake-head",
+ "Shhh",
+ "Shrug",
+ "Smile",
+ "Spread-hands",
+ "Thumb-up",
+ "Thumbs-down",
+ "Wave",
+ "Widen-eyes",
+ "Wink"
],
"attributes": {
"extensionAllowed": true,
- "rooted": "Plant"
+ "relatedTag": [
+ "Move-face",
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012018"
},
"explicitAttributes": {
- "rooted": "Plant"
+ "relatedTag": [
+ "Move-face",
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012018"
}
},
- "Carrot": {
- "short_form": "Carrot",
- "long_form": "Item/Biological-item/Organism/Plant/Vegetable/Carrot",
- "description": "Carrot stuff",
- "parent": "Vegetable",
+ "Clap-hands": {
+ "short_form": "Clap-hands",
+ "long_form": "Action/Communicate/Communicate-gesturally/Clap-hands",
+ "description": "Strike the palms of against one another resoundingly, and usually repeatedly, especially to express approval.",
+ "parent": "Communicate-gesturally",
"children": [],
"attributes": {
"extensionAllowed": true,
- "annotation": "foodonto:has_botanical_name"
+ "relatedTag": [
+ "Move-face",
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012019"
},
"explicitAttributes": {
- "annotation": "foodonto:has_botanical_name"
+ "hedId": "HED_0012019"
}
+ },
+ "Clear-throat": {
+ "short_form": "Clear-throat",
+ "long_form": "Action/Communicate/Communicate-gesturally/Clear-throat",
+ "description": "Cough slightly so as to speak more clearly, attract attention, or to express hesitancy before saying something awkward.",
+ "parent": "Communicate-gesturally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Move-face",
+ "Move-head",
+ "Move-face",
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012020"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Move-face",
+ "Move-head"
+ ],
+ "hedId": "HED_0012020"
+ }
+ },
+ "Frown": {
+ "short_form": "Frown",
+ "long_form": "Action/Communicate/Communicate-gesturally/Frown",
+ "description": "Express disapproval, displeasure, or concentration, typically by turning down the corners of the mouth.",
+ "parent": "Communicate-gesturally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Move-face",
+ "Move-face",
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012021"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Move-face"
+ ],
+ "hedId": "HED_0012021"
+ }
+ },
+ "Grimace": {
+ "short_form": "Grimace",
+ "long_form": "Action/Communicate/Communicate-gesturally/Grimace",
+ "description": "Make a twisted expression, typically expressing disgust, pain, or wry amusement.",
+ "parent": "Communicate-gesturally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Move-face",
+ "Move-face",
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012022"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Move-face"
+ ],
+ "hedId": "HED_0012022"
+ }
+ },
+ "Nod-head": {
+ "short_form": "Nod-head",
+ "long_form": "Action/Communicate/Communicate-gesturally/Nod-head",
+ "description": "Tilt head in alternating up and down arcs along the sagittal plane. It is most commonly, but not universally, used to indicate agreement, acceptance, or acknowledgement.",
+ "parent": "Communicate-gesturally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Move-head",
+ "Move-face",
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012023"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Move-head"
+ ],
+ "hedId": "HED_0012023"
+ }
+ },
+ "Pump-fist": {
+ "short_form": "Pump-fist",
+ "long_form": "Action/Communicate/Communicate-gesturally/Pump-fist",
+ "description": "Raise with fist clenched in triumph or affirmation.",
+ "parent": "Communicate-gesturally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Move-upper-extremity",
+ "Move-face",
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012024"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012024"
+ }
+ },
+ "Raise-eyebrows": {
+ "short_form": "Raise-eyebrows",
+ "long_form": "Action/Communicate/Communicate-gesturally/Raise-eyebrows",
+ "description": "Move eyebrows upward.",
+ "parent": "Communicate-gesturally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Move-face",
+ "Move-eyes",
+ "Move-face",
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012025"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Move-face",
+ "Move-eyes"
+ ],
+ "hedId": "HED_0012025"
+ }
+ },
+ "Shake-fist": {
+ "short_form": "Shake-fist",
+ "long_form": "Action/Communicate/Communicate-gesturally/Shake-fist",
+ "description": "Clench hand into a fist and shake to demonstrate anger.",
+ "parent": "Communicate-gesturally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Move-upper-extremity",
+ "Move-face",
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012026"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012026"
+ }
+ },
+ "Shake-head": {
+ "short_form": "Shake-head",
+ "long_form": "Action/Communicate/Communicate-gesturally/Shake-head",
+ "description": "Turn head from side to side as a way of showing disagreement or refusal.",
+ "parent": "Communicate-gesturally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Move-head",
+ "Move-face",
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012027"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Move-head"
+ ],
+ "hedId": "HED_0012027"
+ }
+ },
+ "Shhh": {
+ "short_form": "Shhh",
+ "long_form": "Action/Communicate/Communicate-gesturally/Shhh",
+ "description": "Place finger over lips and possibly uttering the syllable shhh to indicate the need to be quiet.",
+ "parent": "Communicate-gesturally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Move-upper-extremity",
+ "Move-face",
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012028"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012028"
+ }
+ },
+ "Shrug": {
+ "short_form": "Shrug",
+ "long_form": "Action/Communicate/Communicate-gesturally/Shrug",
+ "description": "Lift shoulders up towards head to indicate a lack of knowledge about a particular topic.",
+ "parent": "Communicate-gesturally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Move-upper-extremity",
+ "Move-torso",
+ "Move-face",
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012029"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Move-upper-extremity",
+ "Move-torso"
+ ],
+ "hedId": "HED_0012029"
+ }
+ },
+ "Smile": {
+ "short_form": "Smile",
+ "long_form": "Action/Communicate/Communicate-gesturally/Smile",
+ "description": "Form facial features into a pleased, kind, or amused expression, typically with the corners of the mouth turned up and the front teeth exposed.",
+ "parent": "Communicate-gesturally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Move-face",
+ "Move-face",
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012030"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Move-face"
+ ],
+ "hedId": "HED_0012030"
+ }
+ },
+ "Spread-hands": {
+ "short_form": "Spread-hands",
+ "long_form": "Action/Communicate/Communicate-gesturally/Spread-hands",
+ "description": "Spread hands apart to indicate ignorance.",
+ "parent": "Communicate-gesturally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Move-upper-extremity",
+ "Move-face",
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012031"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012031"
+ }
+ },
+ "Thumb-up": {
+ "short_form": "Thumb-up",
+ "long_form": "Action/Communicate/Communicate-gesturally/Thumb-up",
+ "description": "Extend the thumb upward to indicate approval.",
+ "parent": "Communicate-gesturally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Move-upper-extremity",
+ "Move-face",
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012032"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012032"
+ }
+ },
+ "Thumbs-down": {
+ "short_form": "Thumbs-down",
+ "long_form": "Action/Communicate/Communicate-gesturally/Thumbs-down",
+ "description": "Extend the thumb downward to indicate disapproval.",
+ "parent": "Communicate-gesturally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Move-upper-extremity",
+ "Move-face",
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012033"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012033"
+ }
+ },
+ "Wave": {
+ "short_form": "Wave",
+ "long_form": "Action/Communicate/Communicate-gesturally/Wave",
+ "description": "Raise hand and move left and right, as a greeting or sign of departure.",
+ "parent": "Communicate-gesturally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Move-upper-extremity",
+ "Move-face",
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012034"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012034"
+ }
+ },
+ "Widen-eyes": {
+ "short_form": "Widen-eyes",
+ "long_form": "Action/Communicate/Communicate-gesturally/Widen-eyes",
+ "description": "Open eyes and possibly with eyebrows lifted especially to express surprise or fear.",
+ "parent": "Communicate-gesturally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Move-face",
+ "Move-eyes",
+ "Move-face",
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012035"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Move-face",
+ "Move-eyes"
+ ],
+ "hedId": "HED_0012035"
+ }
+ },
+ "Wink": {
+ "short_form": "Wink",
+ "long_form": "Action/Communicate/Communicate-gesturally/Wink",
+ "description": "Close and open one eye quickly, typically to indicate that something is a joke or a secret or as a signal of affection or greeting.",
+ "parent": "Communicate-gesturally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Move-face",
+ "Move-eyes",
+ "Move-face",
+ "Move-upper-extremity"
+ ],
+ "hedId": "HED_0012036"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Move-face",
+ "Move-eyes"
+ ],
+ "hedId": "HED_0012036"
+ }
+ },
+ "Communicate-musically": {
+ "short_form": "Communicate-musically",
+ "long_form": "Action/Communicate/Communicate-musically",
+ "description": "Communicate using music.",
+ "parent": "Communicate",
+ "children": [
+ "Hum",
+ "Play-instrument",
+ "Sing",
+ "Vocalize",
+ "Whistle"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012037"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012037"
+ }
+ },
+ "Hum": {
+ "short_form": "Hum",
+ "long_form": "Action/Communicate/Communicate-musically/Hum",
+ "description": "Make a low, steady continuous sound like that of a bee. Sing with the lips closed and without uttering speech.",
+ "parent": "Communicate-musically",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012038"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012038"
+ }
+ },
+ "Play-instrument": {
+ "short_form": "Play-instrument",
+ "long_form": "Action/Communicate/Communicate-musically/Play-instrument",
+ "description": "Make musical sounds using an instrument.",
+ "parent": "Communicate-musically",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012039"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012039"
+ }
+ },
+ "Sing": {
+ "short_form": "Sing",
+ "long_form": "Action/Communicate/Communicate-musically/Sing",
+ "description": "Produce musical tones by means of the voice.",
+ "parent": "Communicate-musically",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012040"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012040"
+ }
+ },
+ "Vocalize": {
+ "short_form": "Vocalize",
+ "long_form": "Action/Communicate/Communicate-musically/Vocalize",
+ "description": "Utter vocal sounds.",
+ "parent": "Communicate-musically",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012041"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012041"
+ }
+ },
+ "Whistle": {
+ "short_form": "Whistle",
+ "long_form": "Action/Communicate/Communicate-musically/Whistle",
+ "description": "Produce a shrill clear sound by forcing breath out or air in through the puckered lips.",
+ "parent": "Communicate-musically",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012042"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012042"
+ }
+ },
+ "Communicate-vocally": {
+ "short_form": "Communicate-vocally",
+ "long_form": "Action/Communicate/Communicate-vocally",
+ "description": "Communicate using mouth or vocal cords.",
+ "parent": "Communicate",
+ "children": [
+ "Cry",
+ "Groan",
+ "Laugh",
+ "Scream",
+ "Shout",
+ "Sigh",
+ "Speak",
+ "Whisper"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012043"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012043"
+ }
+ },
+ "Cry": {
+ "short_form": "Cry",
+ "long_form": "Action/Communicate/Communicate-vocally/Cry",
+ "description": "Shed tears associated with emotions, usually sadness but also joy or frustration.",
+ "parent": "Communicate-vocally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012044"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012044"
+ }
+ },
+ "Groan": {
+ "short_form": "Groan",
+ "long_form": "Action/Communicate/Communicate-vocally/Groan",
+ "description": "Make a deep inarticulate sound in response to pain or despair.",
+ "parent": "Communicate-vocally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012045"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012045"
+ }
+ },
+ "Laugh": {
+ "short_form": "Laugh",
+ "long_form": "Action/Communicate/Communicate-vocally/Laugh",
+ "description": "Make the spontaneous sounds and movements of the face and body that are the instinctive expressions of lively amusement and sometimes also of contempt or derision.",
+ "parent": "Communicate-vocally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012046"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012046"
+ }
+ },
+ "Scream": {
+ "short_form": "Scream",
+ "long_form": "Action/Communicate/Communicate-vocally/Scream",
+ "description": "Make loud, vociferous cries or yells to express pain, excitement, or fear.",
+ "parent": "Communicate-vocally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012047"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012047"
+ }
+ },
+ "Shout": {
+ "short_form": "Shout",
+ "long_form": "Action/Communicate/Communicate-vocally/Shout",
+ "description": "Say something very loudly.",
+ "parent": "Communicate-vocally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012048"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012048"
+ }
+ },
+ "Sigh": {
+ "short_form": "Sigh",
+ "long_form": "Action/Communicate/Communicate-vocally/Sigh",
+ "description": "Emit a long, deep, audible breath expressing sadness, relief, tiredness, or a similar feeling.",
+ "parent": "Communicate-vocally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012049"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012049"
+ }
+ },
+ "Speak": {
+ "short_form": "Speak",
+ "long_form": "Action/Communicate/Communicate-vocally/Speak",
+ "description": "Communicate using spoken language.",
+ "parent": "Communicate-vocally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012050"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012050"
+ }
+ },
+ "Whisper": {
+ "short_form": "Whisper",
+ "long_form": "Action/Communicate/Communicate-vocally/Whisper",
+ "description": "Speak very softly using breath without vocal cords.",
+ "parent": "Communicate-vocally",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012051"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012051"
+ }
+ },
+ "Move": {
+ "short_form": "Move",
+ "long_form": "Action/Move",
+ "description": "Move in a specified direction or manner. Change position or posture.",
+ "parent": "Action",
+ "children": [
+ "Breathe",
+ "Move-body",
+ "Move-body-part"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012052"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012052"
+ }
+ },
+ "Breathe": {
+ "short_form": "Breathe",
+ "long_form": "Action/Move/Breathe",
+ "description": "Inhale or exhale during respiration.",
+ "parent": "Move",
+ "children": [
+ "Blow",
+ "Cough",
+ "Exhale",
+ "Hiccup",
+ "Hold-breath",
+ "Inhale",
+ "Sneeze",
+ "Sniff"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012053"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012053"
+ }
+ },
+ "Blow": {
+ "short_form": "Blow",
+ "long_form": "Action/Move/Breathe/Blow",
+ "description": "Expel air through pursed lips.",
+ "parent": "Breathe",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012054"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012054"
+ }
+ },
+ "Cough": {
+ "short_form": "Cough",
+ "long_form": "Action/Move/Breathe/Cough",
+ "description": "Suddenly and audibly expel air from the lungs through a partially closed glottis, preceded by inhalation.",
+ "parent": "Breathe",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012055"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012055"
+ }
+ },
+ "Exhale": {
+ "short_form": "Exhale",
+ "long_form": "Action/Move/Breathe/Exhale",
+ "description": "Blow out or expel breath.",
+ "parent": "Breathe",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012056"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012056"
+ }
+ },
+ "Hiccup": {
+ "short_form": "Hiccup",
+ "long_form": "Action/Move/Breathe/Hiccup",
+ "description": "Involuntarily spasm the diaphragm and respiratory organs, with a sudden closure of the glottis and a characteristic sound like that of a cough.",
+ "parent": "Breathe",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012057"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012057"
+ }
+ },
+ "Hold-breath": {
+ "short_form": "Hold-breath",
+ "long_form": "Action/Move/Breathe/Hold-breath",
+ "description": "Interrupt normal breathing by ceasing to inhale or exhale.",
+ "parent": "Breathe",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012058"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012058"
+ }
+ },
+ "Inhale": {
+ "short_form": "Inhale",
+ "long_form": "Action/Move/Breathe/Inhale",
+ "description": "Draw in with the breath through the nose or mouth.",
+ "parent": "Breathe",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012059"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012059"
+ }
+ },
+ "Sneeze": {
+ "short_form": "Sneeze",
+ "long_form": "Action/Move/Breathe/Sneeze",
+ "description": "Suddenly and violently expel breath through the nose and mouth.",
+ "parent": "Breathe",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012060"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012060"
+ }
+ },
+ "Sniff": {
+ "short_form": "Sniff",
+ "long_form": "Action/Move/Breathe/Sniff",
+ "description": "Draw in air audibly through the nose to detect a smell, to stop it from running, or to express contempt.",
+ "parent": "Breathe",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012061"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012061"
+ }
+ },
+ "Move-body": {
+ "short_form": "Move-body",
+ "long_form": "Action/Move/Move-body",
+ "description": "Move entire body.",
+ "parent": "Move",
+ "children": [
+ "Bend",
+ "Dance",
+ "Fall-down",
+ "Flex",
+ "Jerk",
+ "Lie-down",
+ "Recover-balance",
+ "Shudder",
+ "Sit-down",
+ "Sit-up",
+ "Stand-up",
+ "Stretch",
+ "Stumble",
+ "Turn"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012062"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012062"
+ }
+ },
+ "Bend": {
+ "short_form": "Bend",
+ "long_form": "Action/Move/Move-body/Bend",
+ "description": "Move body in a bowed or curved manner.",
+ "parent": "Move-body",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012063"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012063"
+ }
+ },
+ "Dance": {
+ "short_form": "Dance",
+ "long_form": "Action/Move/Move-body/Dance",
+ "description": "Perform a purposefully selected sequences of human movement often with aesthetic or symbolic value. Move rhythmically to music, typically following a set sequence of steps.",
+ "parent": "Move-body",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012064"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012064"
+ }
+ },
+ "Fall-down": {
+ "short_form": "Fall-down",
+ "long_form": "Action/Move/Move-body/Fall-down",
+ "description": "Lose balance and collapse.",
+ "parent": "Move-body",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012065"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012065"
+ }
+ },
+ "Flex": {
+ "short_form": "Flex",
+ "long_form": "Action/Move/Move-body/Flex",
+ "description": "Cause a muscle to stand out by contracting or tensing it. Bend a limb or joint.",
+ "parent": "Move-body",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012066"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012066"
+ }
+ },
+ "Jerk": {
+ "short_form": "Jerk",
+ "long_form": "Action/Move/Move-body/Jerk",
+ "description": "Make a quick, sharp, sudden movement.",
+ "parent": "Move-body",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012067"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012067"
+ }
+ },
+ "Lie-down": {
+ "short_form": "Lie-down",
+ "long_form": "Action/Move/Move-body/Lie-down",
+ "description": "Move to a horizontal or resting position.",
+ "parent": "Move-body",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012068"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012068"
+ }
+ },
+ "Recover-balance": {
+ "short_form": "Recover-balance",
+ "long_form": "Action/Move/Move-body/Recover-balance",
+ "description": "Return to a stable, upright body position.",
+ "parent": "Move-body",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012069"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012069"
+ }
+ },
+ "Shudder": {
+ "short_form": "Shudder",
+ "long_form": "Action/Move/Move-body/Shudder",
+ "description": "Tremble convulsively, sometimes as a result of fear or revulsion.",
+ "parent": "Move-body",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012070"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012070"
+ }
+ },
+ "Sit-down": {
+ "short_form": "Sit-down",
+ "long_form": "Action/Move/Move-body/Sit-down",
+ "description": "Move from a standing to a sitting position.",
+ "parent": "Move-body",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012071"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012071"
+ }
+ },
+ "Sit-up": {
+ "short_form": "Sit-up",
+ "long_form": "Action/Move/Move-body/Sit-up",
+ "description": "Move from lying down to a sitting position.",
+ "parent": "Move-body",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012072"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012072"
+ }
+ },
+ "Stand-up": {
+ "short_form": "Stand-up",
+ "long_form": "Action/Move/Move-body/Stand-up",
+ "description": "Move from a sitting to a standing position.",
+ "parent": "Move-body",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012073"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012073"
+ }
+ },
+ "Stretch": {
+ "short_form": "Stretch",
+ "long_form": "Action/Move/Move-body/Stretch",
+ "description": "Straighten or extend body or a part of body to its full length, typically so as to tighten muscles or in order to reach something.",
+ "parent": "Move-body",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012074"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012074"
+ }
+ },
+ "Stumble": {
+ "short_form": "Stumble",
+ "long_form": "Action/Move/Move-body/Stumble",
+ "description": "Trip or momentarily lose balance and almost fall.",
+ "parent": "Move-body",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012075"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012075"
+ }
+ },
+ "Turn": {
+ "short_form": "Turn",
+ "long_form": "Action/Move/Move-body/Turn",
+ "description": "Change or cause to change direction.",
+ "parent": "Move-body",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012076"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012076"
+ }
+ },
+ "Move-body-part": {
+ "short_form": "Move-body-part",
+ "long_form": "Action/Move/Move-body-part",
+ "description": "Move one part of a body.",
+ "parent": "Move",
+ "children": [
+ "Move-eyes",
+ "Move-face",
+ "Move-head",
+ "Move-lower-extremity",
+ "Move-torso",
+ "Move-upper-extremity"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012077"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012077"
+ }
+ },
+ "Move-eyes": {
+ "short_form": "Move-eyes",
+ "long_form": "Action/Move/Move-body-part/Move-eyes",
+ "description": "Move eyes.",
+ "parent": "Move-body-part",
+ "children": [
+ "Blink",
+ "Close-eyes",
+ "Fixate",
+ "Inhibit-blinks",
+ "Open-eyes",
+ "Saccade",
+ "Squint",
+ "Stare"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012078"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012078"
+ }
+ },
+ "Blink": {
+ "short_form": "Blink",
+ "long_form": "Action/Move/Move-body-part/Move-eyes/Blink",
+ "description": "Shut and open the eyes quickly.",
+ "parent": "Move-eyes",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012079"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012079"
+ }
+ },
+ "Close-eyes": {
+ "short_form": "Close-eyes",
+ "long_form": "Action/Move/Move-body-part/Move-eyes/Close-eyes",
+ "description": "Lower and keep eyelids in a closed position.",
+ "parent": "Move-eyes",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012080"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012080"
+ }
+ },
+ "Fixate": {
+ "short_form": "Fixate",
+ "long_form": "Action/Move/Move-body-part/Move-eyes/Fixate",
+ "description": "Direct eyes to a specific point or target.",
+ "parent": "Move-eyes",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012081"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012081"
+ }
+ },
+ "Inhibit-blinks": {
+ "short_form": "Inhibit-blinks",
+ "long_form": "Action/Move/Move-body-part/Move-eyes/Inhibit-blinks",
+ "description": "Purposely prevent blinking.",
+ "parent": "Move-eyes",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012082"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012082"
+ }
+ },
+ "Open-eyes": {
+ "short_form": "Open-eyes",
+ "long_form": "Action/Move/Move-body-part/Move-eyes/Open-eyes",
+ "description": "Raise eyelids to expose pupil.",
+ "parent": "Move-eyes",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012083"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012083"
+ }
+ },
+ "Saccade": {
+ "short_form": "Saccade",
+ "long_form": "Action/Move/Move-body-part/Move-eyes/Saccade",
+ "description": "Move eyes rapidly between fixation points.",
+ "parent": "Move-eyes",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012084"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012084"
+ }
+ },
+ "Squint": {
+ "short_form": "Squint",
+ "long_form": "Action/Move/Move-body-part/Move-eyes/Squint",
+ "description": "Squeeze one or both eyes partly closed in an attempt to see more clearly or as a reaction to strong light.",
+ "parent": "Move-eyes",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012085"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012085"
+ }
+ },
+ "Stare": {
+ "short_form": "Stare",
+ "long_form": "Action/Move/Move-body-part/Move-eyes/Stare",
+ "description": "Look fixedly or vacantly at someone or something with eyes wide open.",
+ "parent": "Move-eyes",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012086"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012086"
+ }
+ },
+ "Move-face": {
+ "short_form": "Move-face",
+ "long_form": "Action/Move/Move-body-part/Move-face",
+ "description": "Move the face or jaw.",
+ "parent": "Move-body-part",
+ "children": [
+ "Bite",
+ "Burp",
+ "Chew",
+ "Gurgle",
+ "Swallow",
+ "Yawn"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012087"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012087"
+ }
+ },
+ "Bite": {
+ "short_form": "Bite",
+ "long_form": "Action/Move/Move-body-part/Move-face/Bite",
+ "description": "Seize with teeth or jaws an object or organism so as to grip or break the surface covering.",
+ "parent": "Move-face",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012088"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012088"
+ }
+ },
+ "Burp": {
+ "short_form": "Burp",
+ "long_form": "Action/Move/Move-body-part/Move-face/Burp",
+ "description": "Noisily release air from the stomach through the mouth. Belch.",
+ "parent": "Move-face",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012089"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012089"
+ }
+ },
+ "Chew": {
+ "short_form": "Chew",
+ "long_form": "Action/Move/Move-body-part/Move-face/Chew",
+ "description": "Repeatedly grinding, tearing, and or crushing with teeth or jaws.",
+ "parent": "Move-face",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012090"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012090"
+ }
+ },
+ "Gurgle": {
+ "short_form": "Gurgle",
+ "long_form": "Action/Move/Move-body-part/Move-face/Gurgle",
+ "description": "Make a hollow bubbling sound like that made by water running out of a bottle.",
+ "parent": "Move-face",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012091"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012091"
+ }
+ },
+ "Swallow": {
+ "short_form": "Swallow",
+ "long_form": "Action/Move/Move-body-part/Move-face/Swallow",
+ "description": "Cause or allow something, especially food or drink to pass down the throat.",
+ "parent": "Move-face",
+ "children": [
+ "Gulp"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012092"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012092"
+ }
+ },
+ "Gulp": {
+ "short_form": "Gulp",
+ "long_form": "Action/Move/Move-body-part/Move-face/Swallow/Gulp",
+ "description": "Swallow quickly or in large mouthfuls, often audibly, sometimes to indicate apprehension.",
+ "parent": "Swallow",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012093"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012093"
+ }
+ },
+ "Yawn": {
+ "short_form": "Yawn",
+ "long_form": "Action/Move/Move-body-part/Move-face/Yawn",
+ "description": "Take a deep involuntary inhalation with the mouth open often as a sign of drowsiness or boredom.",
+ "parent": "Move-face",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012094"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012094"
+ }
+ },
+ "Move-head": {
+ "short_form": "Move-head",
+ "long_form": "Action/Move/Move-body-part/Move-head",
+ "description": "Move head.",
+ "parent": "Move-body-part",
+ "children": [
+ "Lift-head",
+ "Lower-head",
+ "Turn-head"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012095"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012095"
+ }
+ },
+ "Lift-head": {
+ "short_form": "Lift-head",
+ "long_form": "Action/Move/Move-body-part/Move-head/Lift-head",
+ "description": "Tilt head back lifting chin.",
+ "parent": "Move-head",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012096"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012096"
+ }
+ },
+ "Lower-head": {
+ "short_form": "Lower-head",
+ "long_form": "Action/Move/Move-body-part/Move-head/Lower-head",
+ "description": "Move head downward so that eyes are in a lower position.",
+ "parent": "Move-head",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012097"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012097"
+ }
+ },
+ "Turn-head": {
+ "short_form": "Turn-head",
+ "long_form": "Action/Move/Move-body-part/Move-head/Turn-head",
+ "description": "Rotate head horizontally to look in a different direction.",
+ "parent": "Move-head",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012098"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012098"
+ }
+ },
+ "Move-lower-extremity": {
+ "short_form": "Move-lower-extremity",
+ "long_form": "Action/Move/Move-body-part/Move-lower-extremity",
+ "description": "Move leg and/or foot.",
+ "parent": "Move-body-part",
+ "children": [
+ "Curl-toes",
+ "Hop",
+ "Jog",
+ "Jump",
+ "Kick",
+ "Pedal",
+ "Press-foot",
+ "Run",
+ "Step",
+ "Trot",
+ "Walk"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012099"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012099"
+ }
+ },
+ "Curl-toes": {
+ "short_form": "Curl-toes",
+ "long_form": "Action/Move/Move-body-part/Move-lower-extremity/Curl-toes",
+ "description": "Bend toes sometimes to grip.",
+ "parent": "Move-lower-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012100"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012100"
+ }
+ },
+ "Hop": {
+ "short_form": "Hop",
+ "long_form": "Action/Move/Move-body-part/Move-lower-extremity/Hop",
+ "description": "Jump on one foot.",
+ "parent": "Move-lower-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012101"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012101"
+ }
+ },
+ "Jog": {
+ "short_form": "Jog",
+ "long_form": "Action/Move/Move-body-part/Move-lower-extremity/Jog",
+ "description": "Run at a trot to exercise.",
+ "parent": "Move-lower-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012102"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012102"
+ }
+ },
+ "Jump": {
+ "short_form": "Jump",
+ "long_form": "Action/Move/Move-body-part/Move-lower-extremity/Jump",
+ "description": "Move off the ground or other surface through sudden muscular effort in the legs.",
+ "parent": "Move-lower-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012103"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012103"
+ }
+ },
+ "Kick": {
+ "short_form": "Kick",
+ "long_form": "Action/Move/Move-body-part/Move-lower-extremity/Kick",
+ "description": "Strike out or flail with the foot or feet.Strike using the leg, in unison usually with an area of the knee or lower using the foot.",
+ "parent": "Move-lower-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012104"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012104"
+ }
+ },
+ "Pedal": {
+ "short_form": "Pedal",
+ "long_form": "Action/Move/Move-body-part/Move-lower-extremity/Pedal",
+ "description": "Move by working the pedals of a bicycle or other machine.",
+ "parent": "Move-lower-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012105"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012105"
+ }
+ },
+ "Press-foot": {
+ "short_form": "Press-foot",
+ "long_form": "Action/Move/Move-body-part/Move-lower-extremity/Press-foot",
+ "description": "Move by pressing foot.",
+ "parent": "Move-lower-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012106"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012106"
+ }
+ },
+ "Run": {
+ "short_form": "Run",
+ "long_form": "Action/Move/Move-body-part/Move-lower-extremity/Run",
+ "description": "Travel on foot at a fast pace.",
+ "parent": "Move-lower-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012107"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012107"
+ }
+ },
+ "Step": {
+ "short_form": "Step",
+ "long_form": "Action/Move/Move-body-part/Move-lower-extremity/Step",
+ "description": "Put one leg in front of the other and shift weight onto it.",
+ "parent": "Move-lower-extremity",
+ "children": [
+ "Heel-strike",
+ "Toe-off"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012108"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012108"
+ }
+ },
+ "Heel-strike": {
+ "short_form": "Heel-strike",
+ "long_form": "Action/Move/Move-body-part/Move-lower-extremity/Step/Heel-strike",
+ "description": "Strike the ground with the heel during a step.",
+ "parent": "Step",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012109"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012109"
+ }
+ },
+ "Toe-off": {
+ "short_form": "Toe-off",
+ "long_form": "Action/Move/Move-body-part/Move-lower-extremity/Step/Toe-off",
+ "description": "Push with toe as part of a stride.",
+ "parent": "Step",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012110"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012110"
+ }
+ },
+ "Trot": {
+ "short_form": "Trot",
+ "long_form": "Action/Move/Move-body-part/Move-lower-extremity/Trot",
+ "description": "Run at a moderate pace, typically with short steps.",
+ "parent": "Move-lower-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012111"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012111"
+ }
+ },
+ "Walk": {
+ "short_form": "Walk",
+ "long_form": "Action/Move/Move-body-part/Move-lower-extremity/Walk",
+ "description": "Move at a regular pace by lifting and setting down each foot in turn never having both feet off the ground at once.",
+ "parent": "Move-lower-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012112"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012112"
+ }
+ },
+ "Move-torso": {
+ "short_form": "Move-torso",
+ "long_form": "Action/Move/Move-body-part/Move-torso",
+ "description": "Move body trunk.",
+ "parent": "Move-body-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012113"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012113"
+ }
+ },
+ "Move-upper-extremity": {
+ "short_form": "Move-upper-extremity",
+ "long_form": "Action/Move/Move-body-part/Move-upper-extremity",
+ "description": "Move arm, shoulder, and/or hand.",
+ "parent": "Move-body-part",
+ "children": [
+ "Drop",
+ "Grab",
+ "Grasp",
+ "Hold-down",
+ "Lift",
+ "Make-fist",
+ "Point",
+ "Press",
+ "Push",
+ "Reach",
+ "Release",
+ "Retract",
+ "Scratch",
+ "Snap-fingers",
+ "Touch"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012114"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012114"
+ }
+ },
+ "Drop": {
+ "short_form": "Drop",
+ "long_form": "Action/Move/Move-body-part/Move-upper-extremity/Drop",
+ "description": "Let or cause to fall vertically.",
+ "parent": "Move-upper-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012115"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012115"
+ }
+ },
+ "Grab": {
+ "short_form": "Grab",
+ "long_form": "Action/Move/Move-body-part/Move-upper-extremity/Grab",
+ "description": "Seize suddenly or quickly. Snatch or clutch.",
+ "parent": "Move-upper-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012116"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012116"
+ }
+ },
+ "Grasp": {
+ "short_form": "Grasp",
+ "long_form": "Action/Move/Move-body-part/Move-upper-extremity/Grasp",
+ "description": "Seize and hold firmly.",
+ "parent": "Move-upper-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012117"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012117"
+ }
+ },
+ "Hold-down": {
+ "short_form": "Hold-down",
+ "long_form": "Action/Move/Move-body-part/Move-upper-extremity/Hold-down",
+ "description": "Prevent someone or something from moving by holding them firmly.",
+ "parent": "Move-upper-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012118"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012118"
+ }
+ },
+ "Lift": {
+ "short_form": "Lift",
+ "long_form": "Action/Move/Move-body-part/Move-upper-extremity/Lift",
+ "description": "Raising something to higher position.",
+ "parent": "Move-upper-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012119"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012119"
+ }
+ },
+ "Make-fist": {
+ "short_form": "Make-fist",
+ "long_form": "Action/Move/Move-body-part/Move-upper-extremity/Make-fist",
+ "description": "Close hand tightly with the fingers bent against the palm.",
+ "parent": "Move-upper-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012120"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012120"
+ }
+ },
+ "Point": {
+ "short_form": "Point",
+ "long_form": "Action/Move/Move-body-part/Move-upper-extremity/Point",
+ "description": "Draw attention to something by extending a finger or arm.",
+ "parent": "Move-upper-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012121"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012121"
+ }
+ },
+ "Press": {
+ "short_form": "Press",
+ "long_form": "Action/Move/Move-body-part/Move-upper-extremity/Press",
+ "description": "Apply pressure to something to flatten, shape, smooth or depress it. This action tag should be used to indicate key presses and mouse clicks.",
+ "parent": "Move-upper-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Push"
+ ],
+ "hedId": "HED_0012122"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Push"
+ ],
+ "hedId": "HED_0012122"
+ }
+ },
+ "Push": {
+ "short_form": "Push",
+ "long_form": "Action/Move/Move-body-part/Move-upper-extremity/Push",
+ "description": "Apply force in order to move something away. Use Press to indicate a key press or mouse click.",
+ "parent": "Move-upper-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Press"
+ ],
+ "hedId": "HED_0012123"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Press"
+ ],
+ "hedId": "HED_0012123"
+ }
+ },
+ "Reach": {
+ "short_form": "Reach",
+ "long_form": "Action/Move/Move-body-part/Move-upper-extremity/Reach",
+ "description": "Stretch out your arm in order to get or touch something.",
+ "parent": "Move-upper-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012124"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012124"
+ }
+ },
+ "Release": {
+ "short_form": "Release",
+ "long_form": "Action/Move/Move-body-part/Move-upper-extremity/Release",
+ "description": "Make available or set free.",
+ "parent": "Move-upper-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012125"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012125"
+ }
+ },
+ "Retract": {
+ "short_form": "Retract",
+ "long_form": "Action/Move/Move-body-part/Move-upper-extremity/Retract",
+ "description": "Draw or pull back.",
+ "parent": "Move-upper-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012126"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012126"
+ }
+ },
+ "Scratch": {
+ "short_form": "Scratch",
+ "long_form": "Action/Move/Move-body-part/Move-upper-extremity/Scratch",
+ "description": "Drag claws or nails over a surface or on skin.",
+ "parent": "Move-upper-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012127"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012127"
+ }
+ },
+ "Snap-fingers": {
+ "short_form": "Snap-fingers",
+ "long_form": "Action/Move/Move-body-part/Move-upper-extremity/Snap-fingers",
+ "description": "Make a noise by pushing second finger hard against thumb and then releasing it suddenly so that it hits the base of the thumb.",
+ "parent": "Move-upper-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012128"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012128"
+ }
+ },
+ "Touch": {
+ "short_form": "Touch",
+ "long_form": "Action/Move/Move-body-part/Move-upper-extremity/Touch",
+ "description": "Come into or be in contact with.",
+ "parent": "Move-upper-extremity",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012129"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012129"
+ }
+ },
+ "Perceive": {
+ "short_form": "Perceive",
+ "long_form": "Action/Perceive",
+ "description": "Produce an internal, conscious image through stimulating a sensory system.",
+ "parent": "Action",
+ "children": [
+ "Hear",
+ "See",
+ "Sense-by-touch",
+ "Smell",
+ "Taste"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012130"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012130"
+ }
+ },
+ "Hear": {
+ "short_form": "Hear",
+ "long_form": "Action/Perceive/Hear",
+ "description": "Give attention to a sound.",
+ "parent": "Perceive",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012131"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012131"
+ }
+ },
+ "See": {
+ "short_form": "See",
+ "long_form": "Action/Perceive/See",
+ "description": "Direct gaze toward someone or something or in a specified direction.",
+ "parent": "Perceive",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012132"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012132"
+ }
+ },
+ "Sense-by-touch": {
+ "short_form": "Sense-by-touch",
+ "long_form": "Action/Perceive/Sense-by-touch",
+ "description": "Sense something through receptors in the skin.",
+ "parent": "Perceive",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012133"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012133"
+ }
+ },
+ "Smell": {
+ "short_form": "Smell",
+ "long_form": "Action/Perceive/Smell",
+ "description": "Inhale in order to ascertain an odor or scent.",
+ "parent": "Perceive",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012134"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012134"
+ }
+ },
+ "Taste": {
+ "short_form": "Taste",
+ "long_form": "Action/Perceive/Taste",
+ "description": "Sense a flavor in the mouth and throat on contact with a substance.",
+ "parent": "Perceive",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012135"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012135"
+ }
+ },
+ "Perform": {
+ "short_form": "Perform",
+ "long_form": "Action/Perform",
+ "description": "Carry out or accomplish an action, task, or function.",
+ "parent": "Action",
+ "children": [
+ "Close",
+ "Collide-with",
+ "Halt",
+ "Modify",
+ "Open",
+ "Operate",
+ "Play",
+ "Read",
+ "Repeat",
+ "Rest",
+ "Ride",
+ "Write"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012136"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012136"
+ }
+ },
+ "Close": {
+ "short_form": "Close",
+ "long_form": "Action/Perform/Close",
+ "description": "Act as to blocked against entry or passage.",
+ "parent": "Perform",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012137"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012137"
+ }
+ },
+ "Collide-with": {
+ "short_form": "Collide-with",
+ "long_form": "Action/Perform/Collide-with",
+ "description": "Hit with force when moving.",
+ "parent": "Perform",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012138"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012138"
+ }
+ },
+ "Halt": {
+ "short_form": "Halt",
+ "long_form": "Action/Perform/Halt",
+ "description": "Bring or come to an abrupt stop.",
+ "parent": "Perform",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012139"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012139"
+ }
+ },
+ "Modify": {
+ "short_form": "Modify",
+ "long_form": "Action/Perform/Modify",
+ "description": "Change something.",
+ "parent": "Perform",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012140"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012140"
+ }
+ },
+ "Open": {
+ "short_form": "Open",
+ "long_form": "Action/Perform/Open",
+ "description": "Widen an aperture, door, or gap, especially one allowing access to something.",
+ "parent": "Perform",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012141"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012141"
+ }
+ },
+ "Operate": {
+ "short_form": "Operate",
+ "long_form": "Action/Perform/Operate",
+ "description": "Control the functioning of a machine, process, or system.",
+ "parent": "Perform",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012142"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012142"
+ }
+ },
+ "Play": {
+ "short_form": "Play",
+ "long_form": "Action/Perform/Play",
+ "description": "Engage in activity for enjoyment and recreation rather than a serious or practical purpose.",
+ "parent": "Perform",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012143"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012143"
+ }
+ },
+ "Read": {
+ "short_form": "Read",
+ "long_form": "Action/Perform/Read",
+ "description": "Interpret something that is written or printed.",
+ "parent": "Perform",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012144"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012144"
+ }
+ },
+ "Repeat": {
+ "short_form": "Repeat",
+ "long_form": "Action/Perform/Repeat",
+ "description": "Make do or perform again.",
+ "parent": "Perform",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012145"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012145"
+ }
+ },
+ "Rest": {
+ "short_form": "Rest",
+ "long_form": "Action/Perform/Rest",
+ "description": "Be inactive in order to regain strength, health, or energy.",
+ "parent": "Perform",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012146"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012146"
+ }
+ },
+ "Ride": {
+ "short_form": "Ride",
+ "long_form": "Action/Perform/Ride",
+ "description": "Ride on an animal or in a vehicle. Ride conveys some notion that another agent has partial or total control of the motion.",
+ "parent": "Perform",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012147"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012147"
+ }
+ },
+ "Write": {
+ "short_form": "Write",
+ "long_form": "Action/Perform/Write",
+ "description": "Communicate or express by means of letters or symbols written or imprinted on a surface.",
+ "parent": "Perform",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012148"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012148"
+ }
+ },
+ "Think": {
+ "short_form": "Think",
+ "long_form": "Action/Think",
+ "description": "Direct the mind toward someone or something or use the mind actively to form connected ideas.",
+ "parent": "Action",
+ "children": [
+ "Allow",
+ "Attend-to",
+ "Count",
+ "Deny",
+ "Detect",
+ "Discriminate",
+ "Encode",
+ "Evade",
+ "Generate",
+ "Identify",
+ "Imagine",
+ "Judge",
+ "Learn",
+ "Memorize",
+ "Plan",
+ "Predict",
+ "Recall",
+ "Recognize",
+ "Respond",
+ "Switch-attention",
+ "Track"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012149"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012149"
+ }
+ },
+ "Allow": {
+ "short_form": "Allow",
+ "long_form": "Action/Think/Allow",
+ "description": "Allow access to something such as allowing a car to pass.",
+ "parent": "Think",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012150"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012150"
+ }
+ },
+ "Attend-to": {
+ "short_form": "Attend-to",
+ "long_form": "Action/Think/Attend-to",
+ "description": "Focus mental experience on specific targets.",
+ "parent": "Think",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012151"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012151"
+ }
+ },
+ "Count": {
+ "short_form": "Count",
+ "long_form": "Action/Think/Count",
+ "description": "Tally items either silently or aloud.",
+ "parent": "Think",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012152"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012152"
+ }
+ },
+ "Deny": {
+ "short_form": "Deny",
+ "long_form": "Action/Think/Deny",
+ "description": "Refuse to give or grant something requested or desired by someone.",
+ "parent": "Think",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012153"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012153"
+ }
+ },
+ "Detect": {
+ "short_form": "Detect",
+ "long_form": "Action/Think/Detect",
+ "description": "Discover or identify the presence or existence of something.",
+ "parent": "Think",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012154"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012154"
+ }
+ },
+ "Discriminate": {
+ "short_form": "Discriminate",
+ "long_form": "Action/Think/Discriminate",
+ "description": "Recognize a distinction.",
+ "parent": "Think",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012155"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012155"
+ }
+ },
+ "Encode": {
+ "short_form": "Encode",
+ "long_form": "Action/Think/Encode",
+ "description": "Convert information or an instruction into a particular form.",
+ "parent": "Think",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012156"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012156"
+ }
+ },
+ "Evade": {
+ "short_form": "Evade",
+ "long_form": "Action/Think/Evade",
+ "description": "Escape or avoid, especially by cleverness or trickery.",
+ "parent": "Think",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012157"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012157"
+ }
+ },
+ "Generate": {
+ "short_form": "Generate",
+ "long_form": "Action/Think/Generate",
+ "description": "Cause something, especially an emotion or situation to arise or come about.",
+ "parent": "Think",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012158"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012158"
+ }
+ },
+ "Identify": {
+ "short_form": "Identify",
+ "long_form": "Action/Think/Identify",
+ "description": "Establish or indicate who or what someone or something is.",
+ "parent": "Think",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012159"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012159"
+ }
+ },
+ "Imagine": {
+ "short_form": "Imagine",
+ "long_form": "Action/Think/Imagine",
+ "description": "Form a mental image or concept of something.",
+ "parent": "Think",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012160"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012160"
+ }
+ },
+ "Judge": {
+ "short_form": "Judge",
+ "long_form": "Action/Think/Judge",
+ "description": "Evaluate evidence to make a decision or form a belief.",
+ "parent": "Think",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012161"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012161"
+ }
+ },
+ "Learn": {
+ "short_form": "Learn",
+ "long_form": "Action/Think/Learn",
+ "description": "Adaptively change behavior as the result of experience.",
+ "parent": "Think",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012162"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012162"
+ }
+ },
+ "Memorize": {
+ "short_form": "Memorize",
+ "long_form": "Action/Think/Memorize",
+ "description": "Adaptively change behavior as the result of experience.",
+ "parent": "Think",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012163"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012163"
+ }
+ },
+ "Plan": {
+ "short_form": "Plan",
+ "long_form": "Action/Think/Plan",
+ "description": "Think about the activities required to achieve a desired goal.",
+ "parent": "Think",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012164"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012164"
+ }
+ },
+ "Predict": {
+ "short_form": "Predict",
+ "long_form": "Action/Think/Predict",
+ "description": "Say or estimate that something will happen or will be a consequence of something without having exact information.",
+ "parent": "Think",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012165"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012165"
+ }
+ },
+ "Recall": {
+ "short_form": "Recall",
+ "long_form": "Action/Think/Recall",
+ "description": "Remember information by mental effort.",
+ "parent": "Think",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012166"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012166"
+ }
+ },
+ "Recognize": {
+ "short_form": "Recognize",
+ "long_form": "Action/Think/Recognize",
+ "description": "Identify someone or something from having encountered them before.",
+ "parent": "Think",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012167"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012167"
+ }
+ },
+ "Respond": {
+ "short_form": "Respond",
+ "long_form": "Action/Think/Respond",
+ "description": "React to something such as a treatment or a stimulus.",
+ "parent": "Think",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012168"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012168"
+ }
+ },
+ "Switch-attention": {
+ "short_form": "Switch-attention",
+ "long_form": "Action/Think/Switch-attention",
+ "description": "Transfer attention from one focus to another.",
+ "parent": "Think",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012169"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012169"
+ }
+ },
+ "Track": {
+ "short_form": "Track",
+ "long_form": "Action/Think/Track",
+ "description": "Follow a person, animal, or object through space or time.",
+ "parent": "Think",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012170"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012170"
+ }
+ },
+ "Item": {
+ "short_form": "Item",
+ "long_form": "Item",
+ "description": "An independently existing thing (living or nonliving).",
+ "parent": null,
+ "children": [
+ "Biological-item",
+ "Language-item",
+ "Object",
+ "Sound"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012171"
+ },
+ "explicitAttributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012171"
+ }
+ },
+ "Biological-item": {
+ "short_form": "Biological-item",
+ "long_form": "Item/Biological-item",
+ "description": "An entity that is biological, that is related to living organisms.",
+ "parent": "Item",
+ "children": [
+ "Anatomical-item",
+ "Organism"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012172"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012172"
+ }
+ },
+ "Anatomical-item": {
+ "short_form": "Anatomical-item",
+ "long_form": "Item/Biological-item/Anatomical-item",
+ "description": "A biological structure, system, fluid or other substance excluding single molecular entities.",
+ "parent": "Biological-item",
+ "children": [
+ "Body",
+ "Body-part"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012173"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012173"
+ }
+ },
+ "Body": {
+ "short_form": "Body",
+ "long_form": "Item/Biological-item/Anatomical-item/Body",
+ "description": "The biological structure representing an organism.",
+ "parent": "Anatomical-item",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012174"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012174"
+ }
+ },
+ "Body-part": {
+ "short_form": "Body-part",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part",
+ "description": "Any part of an organism.",
+ "parent": "Anatomical-item",
+ "children": [
+ "Head",
+ "Head-part",
+ "Lower-extremity",
+ "Lower-extremity-part",
+ "Neck",
+ "Torso",
+ "Torso-part",
+ "Upper-extremity",
+ "Upper-extremity-part"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012175"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012175"
+ }
+ },
+ "Head": {
+ "short_form": "Head",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head",
+ "description": "The upper part of the human body, or the front or upper part of the body of an animal, typically separated from the rest of the body by a neck, and containing the brain, mouth, and sense organs.",
+ "parent": "Body-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012176"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012176"
+ }
+ },
+ "Head-part": {
+ "short_form": "Head-part",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part",
+ "description": "A part of the head.",
+ "parent": "Body-part",
+ "children": [
+ "Brain",
+ "Brain-region",
+ "Ear",
+ "Face",
+ "Face-part",
+ "Hair"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013200"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013200"
+ }
+ },
+ "Brain": {
+ "short_form": "Brain",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Brain",
+ "description": "Organ inside the head that is made up of nerve cells and controls the body.",
+ "parent": "Head-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012177"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012177"
+ }
+ },
+ "Brain-region": {
+ "short_form": "Brain-region",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Brain-region",
+ "description": "A region of the brain.",
+ "parent": "Head-part",
+ "children": [
+ "Cerebellum",
+ "Frontal-lobe",
+ "Occipital-lobe",
+ "Parietal-lobe",
+ "Temporal-lobe"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013201"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013201"
+ }
+ },
+ "Cerebellum": {
+ "short_form": "Cerebellum",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Brain-region/Cerebellum",
+ "description": "A major structure of the brain located near the brainstem. It plays a key role in motor control, coordination, precision, with contributions to different cognitive functions.",
+ "parent": "Brain-region",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013202"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013202"
+ }
+ },
+ "Frontal-lobe": {
+ "short_form": "Frontal-lobe",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Brain-region/Frontal-lobe",
+ "description": null,
+ "parent": "Brain-region",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012178"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012178"
+ }
+ },
+ "Occipital-lobe": {
+ "short_form": "Occipital-lobe",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Brain-region/Occipital-lobe",
+ "description": null,
+ "parent": "Brain-region",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012179"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012179"
+ }
+ },
+ "Parietal-lobe": {
+ "short_form": "Parietal-lobe",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Brain-region/Parietal-lobe",
+ "description": null,
+ "parent": "Brain-region",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012180"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012180"
+ }
+ },
+ "Temporal-lobe": {
+ "short_form": "Temporal-lobe",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Brain-region/Temporal-lobe",
+ "description": null,
+ "parent": "Brain-region",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012181"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012181"
+ }
+ },
+ "Ear": {
+ "short_form": "Ear",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Ear",
+ "description": "A sense organ needed for the detection of sound and for establishing balance.",
+ "parent": "Head-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012182"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012182"
+ }
+ },
+ "Face": {
+ "short_form": "Face",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Face",
+ "description": "The anterior portion of the head extending from the forehead to the chin and ear to ear. The facial structures contain the eyes, nose and mouth, cheeks and jaws.",
+ "parent": "Head-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012183"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012183"
+ }
+ },
+ "Face-part": {
+ "short_form": "Face-part",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Face-part",
+ "description": "A part of the face.",
+ "parent": "Head-part",
+ "children": [
+ "Cheek",
+ "Chin",
+ "Eye",
+ "Eyebrow",
+ "Eyelid",
+ "Forehead",
+ "Lip",
+ "Mouth",
+ "Mouth-part",
+ "Nose"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013203"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013203"
+ }
+ },
+ "Cheek": {
+ "short_form": "Cheek",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Face-part/Cheek",
+ "description": "The fleshy part of the face bounded by the eyes, nose, ear, and jawline.",
+ "parent": "Face-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012184"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012184"
+ }
+ },
+ "Chin": {
+ "short_form": "Chin",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Face-part/Chin",
+ "description": "The part of the face below the lower lip and including the protruding part of the lower jaw.",
+ "parent": "Face-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012185"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012185"
+ }
+ },
+ "Eye": {
+ "short_form": "Eye",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Face-part/Eye",
+ "description": "The organ of sight or vision.",
+ "parent": "Face-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012186"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012186"
+ }
+ },
+ "Eyebrow": {
+ "short_form": "Eyebrow",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Face-part/Eyebrow",
+ "description": "The arched strip of hair on the bony ridge above each eye socket.",
+ "parent": "Face-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012187"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012187"
+ }
+ },
+ "Eyelid": {
+ "short_form": "Eyelid",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Face-part/Eyelid",
+ "description": "The folds of the skin that cover the eye when closed.",
+ "parent": "Face-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012188"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012188"
+ }
+ },
+ "Forehead": {
+ "short_form": "Forehead",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Face-part/Forehead",
+ "description": "The part of the face between the eyebrows and the normal hairline.",
+ "parent": "Face-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012189"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012189"
+ }
+ },
+ "Lip": {
+ "short_form": "Lip",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Face-part/Lip",
+ "description": "Fleshy fold which surrounds the opening of the mouth.",
+ "parent": "Face-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012190"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012190"
+ }
+ },
+ "Mouth": {
+ "short_form": "Mouth",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Face-part/Mouth",
+ "description": "The proximal portion of the digestive tract, containing the oral cavity and bounded by the oral opening.",
+ "parent": "Face-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012191"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012191"
+ }
+ },
+ "Mouth-part": {
+ "short_form": "Mouth-part",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Face-part/Mouth-part",
+ "description": "A part of the mouth.",
+ "parent": "Face-part",
+ "children": [
+ "Teeth",
+ "Tongue"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013204"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013204"
+ }
+ },
+ "Teeth": {
+ "short_form": "Teeth",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Face-part/Mouth-part/Teeth",
+ "description": "The hard bone-like structures in the jaws. A collection of teeth arranged in some pattern in the mouth or other part of the body.",
+ "parent": "Mouth-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012193"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012193"
+ }
+ },
+ "Tongue": {
+ "short_form": "Tongue",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Face-part/Mouth-part/Tongue",
+ "description": "A muscular organ in the mouth with significant role in mastication, swallowing, speech, and taste.",
+ "parent": "Mouth-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013205"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013205"
+ }
+ },
+ "Nose": {
+ "short_form": "Nose",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Face-part/Nose",
+ "description": "A structure of special sense serving as an organ of the sense of smell and as an entrance to the respiratory tract.",
+ "parent": "Face-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012192"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012192"
+ }
+ },
+ "Hair": {
+ "short_form": "Hair",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Head-part/Hair",
+ "description": "The filamentous outgrowth of the epidermis.",
+ "parent": "Head-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012194"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012194"
+ }
+ },
+ "Lower-extremity": {
+ "short_form": "Lower-extremity",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Lower-extremity",
+ "description": "Refers to the whole inferior limb (leg and/or foot).",
+ "parent": "Body-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012195"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012195"
+ }
+ },
+ "Lower-extremity-part": {
+ "short_form": "Lower-extremity-part",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Lower-extremity-part",
+ "description": "A part of the lower extremity.",
+ "parent": "Body-part",
+ "children": [
+ "Ankle",
+ "Foot",
+ "Foot-part",
+ "Knee",
+ "Lower-leg",
+ "Lower-leg-part",
+ "Upper-leg",
+ "Upper-leg-part"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013206"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013206"
+ }
+ },
+ "Ankle": {
+ "short_form": "Ankle",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Lower-extremity-part/Ankle",
+ "description": "A gliding joint between the distal ends of the tibia and fibula and the proximal end of the talus.",
+ "parent": "Lower-extremity-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012196"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012196"
+ }
+ },
+ "Foot": {
+ "short_form": "Foot",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Lower-extremity-part/Foot",
+ "description": "The structure found below the ankle joint required for locomotion.",
+ "parent": "Lower-extremity-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012198"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012198"
+ }
+ },
+ "Foot-part": {
+ "short_form": "Foot-part",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Lower-extremity-part/Foot-part",
+ "description": "A part of the foot.",
+ "parent": "Lower-extremity-part",
+ "children": [
+ "Heel",
+ "Instep",
+ "Toe",
+ "Toes"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013207"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013207"
+ }
+ },
+ "Heel": {
+ "short_form": "Heel",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Lower-extremity-part/Foot-part/Heel",
+ "description": "The back of the foot below the ankle.",
+ "parent": "Foot-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012200"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012200"
+ }
+ },
+ "Instep": {
+ "short_form": "Instep",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Lower-extremity-part/Foot-part/Instep",
+ "description": "The part of the foot between the ball and the heel on the inner side.",
+ "parent": "Foot-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012201"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012201"
+ }
+ },
+ "Toe": {
+ "short_form": "Toe",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Lower-extremity-part/Foot-part/Toe",
+ "description": "A digit of the foot.",
+ "parent": "Foot-part",
+ "children": [
+ "Big-toe",
+ "Little-toe"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013208"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013208"
+ }
+ },
+ "Big-toe": {
+ "short_form": "Big-toe",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Lower-extremity-part/Foot-part/Toe/Big-toe",
+ "description": "The largest toe on the inner side of the foot.",
+ "parent": "Toe",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012199"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012199"
+ }
+ },
+ "Little-toe": {
+ "short_form": "Little-toe",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Lower-extremity-part/Foot-part/Toe/Little-toe",
+ "description": "The smallest toe located on the outer side of the foot.",
+ "parent": "Toe",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012202"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012202"
+ }
+ },
+ "Toes": {
+ "short_form": "Toes",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Lower-extremity-part/Foot-part/Toes",
+ "description": "The terminal digits of the foot. Used to describe collective attributes of all toes, such as bending all toes",
+ "parent": "Foot-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Toe"
+ ],
+ "hedId": "HED_0012203"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Toe"
+ ],
+ "hedId": "HED_0012203"
+ }
+ },
+ "Knee": {
+ "short_form": "Knee",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Lower-extremity-part/Knee",
+ "description": "A joint connecting the lower part of the femur with the upper part of the tibia.",
+ "parent": "Lower-extremity-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012204"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012204"
+ }
+ },
+ "Lower-leg": {
+ "short_form": "Lower-leg",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Lower-extremity-part/Lower-leg",
+ "description": "The part of the leg between the knee and the ankle.",
+ "parent": "Lower-extremity-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013209"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013209"
+ }
+ },
+ "Lower-leg-part": {
+ "short_form": "Lower-leg-part",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Lower-extremity-part/Lower-leg-part",
+ "description": "A part of the lower leg.",
+ "parent": "Lower-extremity-part",
+ "children": [
+ "Calf",
+ "Shin"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013210"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013210"
+ }
+ },
+ "Calf": {
+ "short_form": "Calf",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Lower-extremity-part/Lower-leg-part/Calf",
+ "description": "The fleshy part at the back of the leg below the knee.",
+ "parent": "Lower-leg-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012197"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012197"
+ }
+ },
+ "Shin": {
+ "short_form": "Shin",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Lower-extremity-part/Lower-leg-part/Shin",
+ "description": "Front part of the leg below the knee.",
+ "parent": "Lower-leg-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012205"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012205"
+ }
+ },
+ "Upper-leg": {
+ "short_form": "Upper-leg",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Lower-extremity-part/Upper-leg",
+ "description": "The part of the leg between the hip and the knee.",
+ "parent": "Lower-extremity-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013211"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013211"
+ }
+ },
+ "Upper-leg-part": {
+ "short_form": "Upper-leg-part",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Lower-extremity-part/Upper-leg-part",
+ "description": "A part of the upper leg.",
+ "parent": "Lower-extremity-part",
+ "children": [
+ "Thigh"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013212"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013212"
+ }
+ },
+ "Thigh": {
+ "short_form": "Thigh",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Lower-extremity-part/Upper-leg-part/Thigh",
+ "description": "Upper part of the leg between hip and knee.",
+ "parent": "Upper-leg-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012206"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012206"
+ }
+ },
+ "Neck": {
+ "short_form": "Neck",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Neck",
+ "description": "The part of the body connecting the head to the torso, containing the cervical spine and vital pathways of nerves, blood vessels, and the airway.",
+ "parent": "Body-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013213"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013213"
+ }
+ },
+ "Torso": {
+ "short_form": "Torso",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Torso",
+ "description": "The body excluding the head and neck and limbs.",
+ "parent": "Body-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012207"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012207"
+ }
+ },
+ "Torso-part": {
+ "short_form": "Torso-part",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Torso-part",
+ "description": "A part of the torso.",
+ "parent": "Body-part",
+ "children": [
+ "Abdomen",
+ "Navel",
+ "Pelvis",
+ "Pelvis-part",
+ "Torso-back",
+ "Torso-chest",
+ "Viscera",
+ "Waist"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013214"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013214"
+ }
+ },
+ "Abdomen": {
+ "short_form": "Abdomen",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Torso-part/Abdomen",
+ "description": "The part of the body between the thorax and the pelvis.",
+ "parent": "Torso-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013215"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013215"
+ }
+ },
+ "Navel": {
+ "short_form": "Navel",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Torso-part/Navel",
+ "description": "The central mark on the abdomen created by the detachment of the umbilical cord after birth.",
+ "parent": "Torso-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013216"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013216"
+ }
+ },
+ "Pelvis": {
+ "short_form": "Pelvis",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Torso-part/Pelvis",
+ "description": "The bony structure at the base of the spine supporting the legs.",
+ "parent": "Torso-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013217"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013217"
+ }
+ },
+ "Pelvis-part": {
+ "short_form": "Pelvis-part",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Torso-part/Pelvis-part",
+ "description": "A part of the pelvis.",
+ "parent": "Torso-part",
+ "children": [
+ "Buttocks",
+ "Genitalia",
+ "Gentalia",
+ "Hip"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013218"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013218"
+ }
+ },
+ "Buttocks": {
+ "short_form": "Buttocks",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Torso-part/Pelvis-part/Buttocks",
+ "description": "The round fleshy parts that form the lower rear area of a human trunk.",
+ "parent": "Pelvis-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012208"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012208"
+ }
+ },
+ "Genitalia": {
+ "short_form": "Genitalia",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Torso-part/Pelvis-part/Genitalia",
+ "description": "The external organs of reproduction and urination, located in the pelvic region. This includes both male and female genital structures.",
+ "parent": "Pelvis-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013219"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013219"
+ }
+ },
+ "Gentalia": {
+ "short_form": "Gentalia",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Torso-part/Pelvis-part/Gentalia",
+ "description": "The external organs of reproduction. Deprecated due to spelling error. Use Genitalia.",
+ "parent": "Pelvis-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012209",
+ "deprecatedFrom": "8.1.0"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012209",
+ "deprecatedFrom": "8.1.0"
+ }
+ },
+ "Hip": {
+ "short_form": "Hip",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Torso-part/Pelvis-part/Hip",
+ "description": "The lateral prominence of the pelvis from the waist to the thigh.",
+ "parent": "Pelvis-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012210"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012210"
+ }
+ },
+ "Torso-back": {
+ "short_form": "Torso-back",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Torso-part/Torso-back",
+ "description": "The rear surface of the human body from the shoulders to the hips.",
+ "parent": "Torso-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012211"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012211"
+ }
+ },
+ "Torso-chest": {
+ "short_form": "Torso-chest",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Torso-part/Torso-chest",
+ "description": "The anterior side of the thorax from the neck to the abdomen.",
+ "parent": "Torso-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012212"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012212"
+ }
+ },
+ "Viscera": {
+ "short_form": "Viscera",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Torso-part/Viscera",
+ "description": "Internal organs of the body.",
+ "parent": "Torso-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012213"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012213"
+ }
+ },
+ "Waist": {
+ "short_form": "Waist",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Torso-part/Waist",
+ "description": "The abdominal circumference at the navel.",
+ "parent": "Torso-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012214"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012214"
+ }
+ },
+ "Upper-extremity": {
+ "short_form": "Upper-extremity",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Upper-extremity",
+ "description": "Refers to the whole superior limb (shoulder, arm, elbow, wrist, hand).",
+ "parent": "Body-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012215"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012215"
+ }
+ },
+ "Upper-extremity-part": {
+ "short_form": "Upper-extremity-part",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Upper-extremity-part",
+ "description": "A part of the upper extremity.",
+ "parent": "Body-part",
+ "children": [
+ "Elbow",
+ "Forearm",
+ "Forearm-part",
+ "Hand",
+ "Hand-part",
+ "Shoulder",
+ "Upper-arm",
+ "Upper-arm-part",
+ "Wrist"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013220"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013220"
+ }
+ },
+ "Elbow": {
+ "short_form": "Elbow",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Upper-extremity-part/Elbow",
+ "description": "A type of hinge joint located between the forearm and upper arm.",
+ "parent": "Upper-extremity-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012216"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012216"
+ }
+ },
+ "Forearm": {
+ "short_form": "Forearm",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Upper-extremity-part/Forearm",
+ "description": "Lower part of the arm between the elbow and wrist.",
+ "parent": "Upper-extremity-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012217"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012217"
+ }
+ },
+ "Forearm-part": {
+ "short_form": "Forearm-part",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Upper-extremity-part/Forearm-part",
+ "description": "A part of the forearm.",
+ "parent": "Upper-extremity-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013221"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013221"
+ }
+ },
+ "Hand": {
+ "short_form": "Hand",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Upper-extremity-part/Hand",
+ "description": "The distal portion of the upper extremity. It consists of the carpus, metacarpus, and digits.",
+ "parent": "Upper-extremity-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012218"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012218"
+ }
+ },
+ "Hand-part": {
+ "short_form": "Hand-part",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Upper-extremity-part/Hand-part",
+ "description": "A part of the hand.",
+ "parent": "Upper-extremity-part",
+ "children": [
+ "Finger",
+ "Fingers",
+ "Knuckles",
+ "Palm"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013222"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013222"
+ }
+ },
+ "Finger": {
+ "short_form": "Finger",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Upper-extremity-part/Hand-part/Finger",
+ "description": "Any of the digits of the hand.",
+ "parent": "Hand-part",
+ "children": [
+ "Index-finger",
+ "Little-finger",
+ "Middle-finger",
+ "Ring-finger",
+ "Thumb"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012219"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012219"
+ }
+ },
+ "Index-finger": {
+ "short_form": "Index-finger",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Upper-extremity-part/Hand-part/Finger/Index-finger",
+ "description": "The second finger from the radial side of the hand, next to the thumb.",
+ "parent": "Finger",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012220"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012220"
+ }
+ },
+ "Little-finger": {
+ "short_form": "Little-finger",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Upper-extremity-part/Hand-part/Finger/Little-finger",
+ "description": "The fifth and smallest finger from the radial side of the hand.",
+ "parent": "Finger",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012221"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012221"
+ }
+ },
+ "Middle-finger": {
+ "short_form": "Middle-finger",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Upper-extremity-part/Hand-part/Finger/Middle-finger",
+ "description": "The middle or third finger from the radial side of the hand.",
+ "parent": "Finger",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012222"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012222"
+ }
+ },
+ "Ring-finger": {
+ "short_form": "Ring-finger",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Upper-extremity-part/Hand-part/Finger/Ring-finger",
+ "description": "The fourth finger from the radial side of the hand.",
+ "parent": "Finger",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012223"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012223"
+ }
+ },
+ "Thumb": {
+ "short_form": "Thumb",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Upper-extremity-part/Hand-part/Finger/Thumb",
+ "description": "The thick and short hand digit which is next to the index finger in humans.",
+ "parent": "Finger",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012224"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012224"
+ }
+ },
+ "Fingers": {
+ "short_form": "Fingers",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Upper-extremity-part/Hand-part/Fingers",
+ "description": "The terminal digits of the hand. Used to describe collective attributes of all fingers, such as bending all fingers",
+ "parent": "Hand-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Finger"
+ ],
+ "hedId": "HED_0013223"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Finger"
+ ],
+ "hedId": "HED_0013223"
+ }
+ },
+ "Knuckles": {
+ "short_form": "Knuckles",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Upper-extremity-part/Hand-part/Knuckles",
+ "description": "A part of a finger at a joint where the bone is near the surface, especially where the finger joins the hand.",
+ "parent": "Hand-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012225"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012225"
+ }
+ },
+ "Palm": {
+ "short_form": "Palm",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Upper-extremity-part/Hand-part/Palm",
+ "description": "The part of the inner surface of the hand that extends from the wrist to the bases of the fingers.",
+ "parent": "Hand-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012226"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012226"
+ }
+ },
+ "Shoulder": {
+ "short_form": "Shoulder",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Upper-extremity-part/Shoulder",
+ "description": "Joint attaching upper arm to trunk.",
+ "parent": "Upper-extremity-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012227"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012227"
+ }
+ },
+ "Upper-arm": {
+ "short_form": "Upper-arm",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Upper-extremity-part/Upper-arm",
+ "description": "Portion of arm between shoulder and elbow.",
+ "parent": "Upper-extremity-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012228"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012228"
+ }
+ },
+ "Upper-arm-part": {
+ "short_form": "Upper-arm-part",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Upper-extremity-part/Upper-arm-part",
+ "description": "A part of the upper arm.",
+ "parent": "Upper-extremity-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013224"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013224"
+ }
+ },
+ "Wrist": {
+ "short_form": "Wrist",
+ "long_form": "Item/Biological-item/Anatomical-item/Body-part/Upper-extremity-part/Wrist",
+ "description": "A joint between the distal end of the radius and the proximal row of carpal bones.",
+ "parent": "Upper-extremity-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012229"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012229"
+ }
+ },
+ "Organism": {
+ "short_form": "Organism",
+ "long_form": "Item/Biological-item/Organism",
+ "description": "A living entity, more specifically a biological entity that consists of one or more cells and is capable of genomic replication (independently or not).",
+ "parent": "Biological-item",
+ "children": [
+ "Animal",
+ "Human",
+ "Plant"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012230"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012230"
+ }
+ },
+ "Animal": {
+ "short_form": "Animal",
+ "long_form": "Item/Biological-item/Organism/Animal",
+ "description": "A living organism that has membranous cell walls, requires oxygen and organic foods, and is capable of voluntary movement.",
+ "parent": "Organism",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012231"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012231"
+ }
+ },
+ "Human": {
+ "short_form": "Human",
+ "long_form": "Item/Biological-item/Organism/Human",
+ "description": "The bipedal primate mammal Homo sapiens.",
+ "parent": "Organism",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012232"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012232"
+ }
+ },
+ "Plant": {
+ "short_form": "Plant",
+ "long_form": "Item/Biological-item/Organism/Plant",
+ "description": "Any living organism that typically synthesizes its food from inorganic substances and possesses cellulose cell walls.",
+ "parent": "Organism",
+ "children": [
+ "Fruit",
+ "Vegetable"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012233"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012233"
+ }
+ },
+ "Fruit": {
+ "short_form": "Fruit",
+ "long_form": "Item/Biological-item/Organism/Plant/Fruit",
+ "description": "Fruit stuff.",
+ "parent": "Plant",
+ "children": [
+ "Apple"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "rooted": "Plant",
+ "inLibrary": "testlib"
+ },
+ "explicitAttributes": {
+ "rooted": "Plant",
+ "inLibrary": "testlib"
+ }
+ },
+ "Apple": {
+ "short_form": "Apple",
+ "long_form": "Item/Biological-item/Organism/Plant/Fruit/Apple",
+ "description": "Apple stuff",
+ "parent": "Fruit",
+ "children": [
+ "Honey-crisp"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "inLibrary": "testlib",
+ "annotation": "foodonto:has_botanical_name"
+ },
+ "explicitAttributes": {
+ "inLibrary": "testlib",
+ "annotation": "foodonto:has_botanical_name"
+ }
+ },
+ "Honey-crisp": {
+ "short_form": "Honey-crisp",
+ "long_form": "Item/Biological-item/Organism/Plant/Fruit/Apple/Honey-crisp",
+ "description": "Type of apple",
+ "parent": "Apple",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "inLibrary": "testlib"
+ },
+ "explicitAttributes": {
+ "inLibrary": "testlib"
+ }
+ },
+ "Vegetable": {
+ "short_form": "Vegetable",
+ "long_form": "Item/Biological-item/Organism/Plant/Vegetable",
+ "description": "Vegetable stuff.",
+ "parent": "Plant",
+ "children": [
+ "Carrot"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "rooted": "Plant",
+ "inLibrary": "testlib"
+ },
+ "explicitAttributes": {
+ "rooted": "Plant",
+ "inLibrary": "testlib"
+ }
+ },
+ "Carrot": {
+ "short_form": "Carrot",
+ "long_form": "Item/Biological-item/Organism/Plant/Vegetable/Carrot",
+ "description": "Carrot stuff",
+ "parent": "Vegetable",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "inLibrary": "testlib",
+ "annotation": "foodonto:has_botanical_name"
+ },
+ "explicitAttributes": {
+ "inLibrary": "testlib",
+ "annotation": "foodonto:has_botanical_name"
+ }
+ },
+ "Language-item": {
+ "short_form": "Language-item",
+ "long_form": "Item/Language-item",
+ "description": "An entity related to a systematic means of communicating by the use of sounds, symbols, or gestures.",
+ "parent": "Item",
+ "children": [
+ "Character",
+ "Clause",
+ "Glyph",
+ "Nonword",
+ "Paragraph",
+ "Phoneme",
+ "Phrase",
+ "Pseudoword",
+ "Sentence",
+ "Syllable",
+ "Textblock",
+ "Word"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012234"
+ },
+ "explicitAttributes": {
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012234"
+ }
+ },
+ "Character": {
+ "short_form": "Character",
+ "long_form": "Item/Language-item/Character",
+ "description": "A mark or symbol used in writing.",
+ "parent": "Language-item",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012235"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012235"
+ }
+ },
+ "Clause": {
+ "short_form": "Clause",
+ "long_form": "Item/Language-item/Clause",
+ "description": "A unit of grammatical organization next below the sentence in rank, usually consisting of a subject and predicate.",
+ "parent": "Language-item",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012236"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012236"
+ }
+ },
+ "Glyph": {
+ "short_form": "Glyph",
+ "long_form": "Item/Language-item/Glyph",
+ "description": "A hieroglyphic character, symbol, or pictograph.",
+ "parent": "Language-item",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012237"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012237"
+ }
+ },
+ "Nonword": {
+ "short_form": "Nonword",
+ "long_form": "Item/Language-item/Nonword",
+ "description": "An unpronounceable group of letters or speech sounds that is surrounded by white space when written, is not accepted as a word by native speakers.",
+ "parent": "Language-item",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012238"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012238"
+ }
+ },
+ "Paragraph": {
+ "short_form": "Paragraph",
+ "long_form": "Item/Language-item/Paragraph",
+ "description": "A distinct section of a piece of writing, usually dealing with a single theme.",
+ "parent": "Language-item",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012239"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012239"
+ }
+ },
+ "Phoneme": {
+ "short_form": "Phoneme",
+ "long_form": "Item/Language-item/Phoneme",
+ "description": "Any of the minimally distinct units of sound in a specified language that distinguish one word from another.",
+ "parent": "Language-item",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012240"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012240"
+ }
+ },
+ "Phrase": {
+ "short_form": "Phrase",
+ "long_form": "Item/Language-item/Phrase",
+ "description": "A phrase is a group of words functioning as a single unit in the syntax of a sentence.",
+ "parent": "Language-item",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012241"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012241"
+ }
+ },
+ "Pseudoword": {
+ "short_form": "Pseudoword",
+ "long_form": "Item/Language-item/Pseudoword",
+ "description": "A pronounceable group of letters or speech sounds that looks or sounds like a word but that is not accepted as such by native speakers.",
+ "parent": "Language-item",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012242"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012242"
+ }
+ },
+ "Sentence": {
+ "short_form": "Sentence",
+ "long_form": "Item/Language-item/Sentence",
+ "description": "A set of words that is complete in itself, conveying a statement, question, exclamation, or command and typically containing an explicit or implied subject and a predicate containing a finite verb.",
+ "parent": "Language-item",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012243"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012243"
+ }
+ },
+ "Syllable": {
+ "short_form": "Syllable",
+ "long_form": "Item/Language-item/Syllable",
+ "description": "A unit of pronunciation having a vowel or consonant sound, with or without surrounding consonants, forming the whole or a part of a word.",
+ "parent": "Language-item",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012244"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012244"
+ }
+ },
+ "Textblock": {
+ "short_form": "Textblock",
+ "long_form": "Item/Language-item/Textblock",
+ "description": "A block of text.",
+ "parent": "Language-item",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012245"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012245"
+ }
+ },
+ "Word": {
+ "short_form": "Word",
+ "long_form": "Item/Language-item/Word",
+ "description": "A single distinct meaningful element of speech or writing, used with others (or sometimes alone) to form a sentence and typically surrounded by white space when written or printed.",
+ "parent": "Language-item",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012246"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012246"
+ }
+ },
+ "Object": {
+ "short_form": "Object",
+ "long_form": "Item/Object",
+ "description": "Something perceptible by one or more of the senses, especially by vision or touch. A material thing.",
+ "parent": "Item",
+ "children": [
+ "Geometric-object",
+ "Ingestible-object",
+ "Man-made-object",
+ "Natural-object"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012247"
+ },
+ "explicitAttributes": {
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012247"
+ }
+ },
+ "Geometric-object": {
+ "short_form": "Geometric-object",
+ "long_form": "Item/Object/Geometric-object",
+ "description": "An object or a representation that has structure and topology in space.",
+ "parent": "Object",
+ "children": [
+ "2D-shape",
+ "3D-shape",
+ "Pattern"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012248"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012248"
+ }
+ },
+ "2D-shape": {
+ "short_form": "2D-shape",
+ "long_form": "Item/Object/Geometric-object/2D-shape",
+ "description": "A planar, two-dimensional shape.",
+ "parent": "Geometric-object",
+ "children": [
+ "Arrow",
+ "Clockface",
+ "Cross",
+ "Dash",
+ "Ellipse",
+ "Rectangle",
+ "Single-point",
+ "Star",
+ "Triangle"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012249"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012249"
+ }
+ },
+ "Arrow": {
+ "short_form": "Arrow",
+ "long_form": "Item/Object/Geometric-object/2D-shape/Arrow",
+ "description": "A shape with a pointed end indicating direction.",
+ "parent": "2D-shape",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012250"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012250"
+ }
+ },
+ "Clockface": {
+ "short_form": "Clockface",
+ "long_form": "Item/Object/Geometric-object/2D-shape/Clockface",
+ "description": "The dial face of a clock. A location identifier based on clock-face-position numbering or anatomic subregion.",
+ "parent": "2D-shape",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012251"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012251"
+ }
+ },
+ "Cross": {
+ "short_form": "Cross",
+ "long_form": "Item/Object/Geometric-object/2D-shape/Cross",
+ "description": "A figure or mark formed by two intersecting lines crossing at their midpoints.",
+ "parent": "2D-shape",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012252"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012252"
+ }
+ },
+ "Dash": {
+ "short_form": "Dash",
+ "long_form": "Item/Object/Geometric-object/2D-shape/Dash",
+ "description": "A horizontal stroke in writing or printing to mark a pause or break in sense or to represent omitted letters or words.",
+ "parent": "2D-shape",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012253"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012253"
+ }
+ },
+ "Ellipse": {
+ "short_form": "Ellipse",
+ "long_form": "Item/Object/Geometric-object/2D-shape/Ellipse",
+ "description": "A closed plane curve resulting from the intersection of a circular cone and a plane cutting completely through it, especially a plane not parallel to the base.",
+ "parent": "2D-shape",
+ "children": [
+ "Circle"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012254"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012254"
+ }
+ },
+ "Circle": {
+ "short_form": "Circle",
+ "long_form": "Item/Object/Geometric-object/2D-shape/Ellipse/Circle",
+ "description": "A ring-shaped structure with every point equidistant from the center.",
+ "parent": "Ellipse",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012255"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012255"
+ }
+ },
+ "Rectangle": {
+ "short_form": "Rectangle",
+ "long_form": "Item/Object/Geometric-object/2D-shape/Rectangle",
+ "description": "A parallelogram with four right angles.",
+ "parent": "2D-shape",
+ "children": [
+ "Square"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012256"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012256"
+ }
+ },
+ "Square": {
+ "short_form": "Square",
+ "long_form": "Item/Object/Geometric-object/2D-shape/Rectangle/Square",
+ "description": "A square is a special rectangle with four equal sides.",
+ "parent": "Rectangle",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012257"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012257"
+ }
+ },
+ "Single-point": {
+ "short_form": "Single-point",
+ "long_form": "Item/Object/Geometric-object/2D-shape/Single-point",
+ "description": "A point is a geometric entity that is located in a zero-dimensional spatial region and whose position is defined by its coordinates in some coordinate system.",
+ "parent": "2D-shape",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012258"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012258"
+ }
+ },
+ "Star": {
+ "short_form": "Star",
+ "long_form": "Item/Object/Geometric-object/2D-shape/Star",
+ "description": "A conventional or stylized representation of a star, typically one having five or more points.",
+ "parent": "2D-shape",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012259"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012259"
+ }
+ },
+ "Triangle": {
+ "short_form": "Triangle",
+ "long_form": "Item/Object/Geometric-object/2D-shape/Triangle",
+ "description": "A three-sided polygon.",
+ "parent": "2D-shape",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012260"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012260"
+ }
+ },
+ "3D-shape": {
+ "short_form": "3D-shape",
+ "long_form": "Item/Object/Geometric-object/3D-shape",
+ "description": "A geometric three-dimensional shape.",
+ "parent": "Geometric-object",
+ "children": [
+ "Box",
+ "Cone",
+ "Cylinder",
+ "Ellipsoid",
+ "Pyramid"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012261"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012261"
+ }
+ },
+ "Box": {
+ "short_form": "Box",
+ "long_form": "Item/Object/Geometric-object/3D-shape/Box",
+ "description": "A square or rectangular vessel, usually made of cardboard or plastic.",
+ "parent": "3D-shape",
+ "children": [
+ "Cube"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012262"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012262"
+ }
+ },
+ "Cube": {
+ "short_form": "Cube",
+ "long_form": "Item/Object/Geometric-object/3D-shape/Box/Cube",
+ "description": "A solid or semi-solid in the shape of a three dimensional square.",
+ "parent": "Box",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012263"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012263"
+ }
+ },
+ "Cone": {
+ "short_form": "Cone",
+ "long_form": "Item/Object/Geometric-object/3D-shape/Cone",
+ "description": "A shape whose base is a circle and whose sides taper up to a point.",
+ "parent": "3D-shape",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012264"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012264"
+ }
+ },
+ "Cylinder": {
+ "short_form": "Cylinder",
+ "long_form": "Item/Object/Geometric-object/3D-shape/Cylinder",
+ "description": "A surface formed by circles of a given radius that are contained in a plane perpendicular to a given axis, whose centers align on the axis.",
+ "parent": "3D-shape",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012265"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012265"
+ }
+ },
+ "Ellipsoid": {
+ "short_form": "Ellipsoid",
+ "long_form": "Item/Object/Geometric-object/3D-shape/Ellipsoid",
+ "description": "A closed plane curve resulting from the intersection of a circular cone and a plane cutting completely through it, especially a plane not parallel to the base.",
+ "parent": "3D-shape",
+ "children": [
+ "Sphere"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012266"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012266"
+ }
+ },
+ "Sphere": {
+ "short_form": "Sphere",
+ "long_form": "Item/Object/Geometric-object/3D-shape/Ellipsoid/Sphere",
+ "description": "A solid or hollow three-dimensional object bounded by a closed surface such that every point on the surface is equidistant from the center.",
+ "parent": "Ellipsoid",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012267"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012267"
+ }
+ },
+ "Pyramid": {
+ "short_form": "Pyramid",
+ "long_form": "Item/Object/Geometric-object/3D-shape/Pyramid",
+ "description": "A polyhedron of which one face is a polygon of any number of sides, and the other faces are triangles with a common vertex.",
+ "parent": "3D-shape",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012268"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012268"
+ }
+ },
+ "Pattern": {
+ "short_form": "Pattern",
+ "long_form": "Item/Object/Geometric-object/Pattern",
+ "description": "An arrangement of objects, facts, behaviors, or other things which have scientific, mathematical, geometric, statistical, or other meaning.",
+ "parent": "Geometric-object",
+ "children": [
+ "Dots",
+ "LED-pattern"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012269"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012269"
+ }
+ },
+ "Dots": {
+ "short_form": "Dots",
+ "long_form": "Item/Object/Geometric-object/Pattern/Dots",
+ "description": "A small round mark or spot.",
+ "parent": "Pattern",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012270"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012270"
+ }
+ },
+ "LED-pattern": {
+ "short_form": "LED-pattern",
+ "long_form": "Item/Object/Geometric-object/Pattern/LED-pattern",
+ "description": "A pattern created by lighting selected members of a fixed light emitting diode array.",
+ "parent": "Pattern",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012271"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012271"
+ }
+ },
+ "Ingestible-object": {
+ "short_form": "Ingestible-object",
+ "long_form": "Item/Object/Ingestible-object",
+ "description": "Something that can be taken into the body by the mouth for digestion or absorption.",
+ "parent": "Object",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012272"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012272"
+ }
+ },
+ "Man-made-object": {
+ "short_form": "Man-made-object",
+ "long_form": "Item/Object/Man-made-object",
+ "description": "Something constructed by human means.",
+ "parent": "Object",
+ "children": [
+ "Building",
+ "Building-part",
+ "Clothing",
+ "Device",
+ "Document",
+ "Furnishing",
+ "Manufactured-material",
+ "Media",
+ "Navigational-object",
+ "Vehicle"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012273"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012273"
+ }
+ },
+ "Building": {
+ "short_form": "Building",
+ "long_form": "Item/Object/Man-made-object/Building",
+ "description": "A structure that usually has a roof and walls and stands more or less permanently in one place.",
+ "parent": "Man-made-object",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012274"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012274"
+ }
+ },
+ "Building-part": {
+ "short_form": "Building-part",
+ "long_form": "Item/Object/Man-made-object/Building-part",
+ "description": "A part of a building.",
+ "parent": "Man-made-object",
+ "children": [
+ "Attic",
+ "Basement",
+ "Door",
+ "Entrance",
+ "Roof",
+ "Room",
+ "Window"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0013231"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013231"
+ }
+ },
+ "Attic": {
+ "short_form": "Attic",
+ "long_form": "Item/Object/Man-made-object/Building-part/Attic",
+ "description": "A room or a space immediately below the roof of a building.",
+ "parent": "Building-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012275"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012275"
+ }
+ },
+ "Basement": {
+ "short_form": "Basement",
+ "long_form": "Item/Object/Man-made-object/Building-part/Basement",
+ "description": "The part of a building that is wholly or partly below ground level.",
+ "parent": "Building-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012276"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012276"
+ }
+ },
+ "Door": {
+ "short_form": "Door",
+ "long_form": "Item/Object/Man-made-object/Building-part/Door",
+ "description": "A door is a hinged or otherwise movable barrier that allows entry into and exit from an enclosed structure.",
+ "parent": "Building-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0013232"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013232"
+ }
+ },
+ "Entrance": {
+ "short_form": "Entrance",
+ "long_form": "Item/Object/Man-made-object/Building-part/Entrance",
+ "description": "The means or place of entry.",
+ "parent": "Building-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012277"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012277"
+ }
+ },
+ "Roof": {
+ "short_form": "Roof",
+ "long_form": "Item/Object/Man-made-object/Building-part/Roof",
+ "description": "A roof is the covering on the uppermost part of a building which provides protection from animals and weather, notably rain, but also heat, wind and sunlight.",
+ "parent": "Building-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012278"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012278"
+ }
+ },
+ "Room": {
+ "short_form": "Room",
+ "long_form": "Item/Object/Man-made-object/Building-part/Room",
+ "description": "An area within a building enclosed by walls and floor and ceiling.",
+ "parent": "Building-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012279"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012279"
+ }
+ },
+ "Window": {
+ "short_form": "Window",
+ "long_form": "Item/Object/Man-made-object/Building-part/Window",
+ "description": "An opening in a wall, roof, or vehicle that allows light and air to enter, typically covered by glass or other transparent material.",
+ "parent": "Building-part",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0013233"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013233"
+ }
+ },
+ "Clothing": {
+ "short_form": "Clothing",
+ "long_form": "Item/Object/Man-made-object/Clothing",
+ "description": "A covering designed to be worn on the body.",
+ "parent": "Man-made-object",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012280"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012280"
+ }
+ },
+ "Device": {
+ "short_form": "Device",
+ "long_form": "Item/Object/Man-made-object/Device",
+ "description": "An object contrived for a specific purpose.",
+ "parent": "Man-made-object",
+ "children": [
+ "Assistive-device",
+ "Computing-device",
+ "Engine",
+ "IO-device",
+ "Machine",
+ "Measurement-device",
+ "Robot",
+ "Tool"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012281"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012281"
+ }
+ },
+ "Assistive-device": {
+ "short_form": "Assistive-device",
+ "long_form": "Item/Object/Man-made-object/Device/Assistive-device",
+ "description": "A device that help an individual accomplish a task.",
+ "parent": "Device",
+ "children": [
+ "Glasses",
+ "Writing-device"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012282"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012282"
+ }
+ },
+ "Glasses": {
+ "short_form": "Glasses",
+ "long_form": "Item/Object/Man-made-object/Device/Assistive-device/Glasses",
+ "description": "Frames with lenses worn in front of the eye for vision correction, eye protection, or protection from UV rays.",
+ "parent": "Assistive-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012283"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012283"
+ }
+ },
+ "Writing-device": {
+ "short_form": "Writing-device",
+ "long_form": "Item/Object/Man-made-object/Device/Assistive-device/Writing-device",
+ "description": "A device used for writing.",
+ "parent": "Assistive-device",
+ "children": [
+ "Pen",
+ "Pencil"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012284"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012284"
+ }
+ },
+ "Pen": {
+ "short_form": "Pen",
+ "long_form": "Item/Object/Man-made-object/Device/Assistive-device/Writing-device/Pen",
+ "description": "A common writing instrument used to apply ink to a surface for writing or drawing.",
+ "parent": "Writing-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012285"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012285"
+ }
+ },
+ "Pencil": {
+ "short_form": "Pencil",
+ "long_form": "Item/Object/Man-made-object/Device/Assistive-device/Writing-device/Pencil",
+ "description": "An implement for writing or drawing that is constructed of a narrow solid pigment core in a protective casing that prevents the core from being broken or marking the hand.",
+ "parent": "Writing-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012286"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012286"
+ }
+ },
+ "Computing-device": {
+ "short_form": "Computing-device",
+ "long_form": "Item/Object/Man-made-object/Device/Computing-device",
+ "description": "An electronic device which take inputs and processes results from the inputs.",
+ "parent": "Device",
+ "children": [
+ "Cellphone",
+ "Desktop-computer",
+ "Laptop-computer",
+ "Tablet-computer"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012287"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012287"
+ }
+ },
+ "Cellphone": {
+ "short_form": "Cellphone",
+ "long_form": "Item/Object/Man-made-object/Device/Computing-device/Cellphone",
+ "description": "A telephone with access to a cellular radio system so it can be used over a wide area, without a physical connection to a network.",
+ "parent": "Computing-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012288"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012288"
+ }
+ },
+ "Desktop-computer": {
+ "short_form": "Desktop-computer",
+ "long_form": "Item/Object/Man-made-object/Device/Computing-device/Desktop-computer",
+ "description": "A computer suitable for use at an ordinary desk.",
+ "parent": "Computing-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012289"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012289"
+ }
+ },
+ "Laptop-computer": {
+ "short_form": "Laptop-computer",
+ "long_form": "Item/Object/Man-made-object/Device/Computing-device/Laptop-computer",
+ "description": "A computer that is portable and suitable for use while traveling.",
+ "parent": "Computing-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012290"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012290"
+ }
+ },
+ "Tablet-computer": {
+ "short_form": "Tablet-computer",
+ "long_form": "Item/Object/Man-made-object/Device/Computing-device/Tablet-computer",
+ "description": "A small portable computer that accepts input directly on to its screen rather than via a keyboard or mouse.",
+ "parent": "Computing-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012291"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012291"
+ }
+ },
+ "Engine": {
+ "short_form": "Engine",
+ "long_form": "Item/Object/Man-made-object/Device/Engine",
+ "description": "A motor is a machine designed to convert one or more forms of energy into mechanical energy.",
+ "parent": "Device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012292"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012292"
+ }
+ },
+ "IO-device": {
+ "short_form": "IO-device",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device",
+ "description": "Hardware used by a human (or other system) to communicate with a computer.",
+ "parent": "Device",
+ "children": [
+ "Input-device",
+ "Output-device",
+ "Recording-device",
+ "Touchscreen"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012293"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012293"
+ }
+ },
+ "Input-device": {
+ "short_form": "Input-device",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Input-device",
+ "description": "A piece of equipment used to provide data and control signals to an information processing system such as a computer or information appliance.",
+ "parent": "IO-device",
+ "children": [
+ "Computer-mouse",
+ "Joystick",
+ "Keyboard",
+ "Keypad",
+ "Microphone",
+ "Push-button"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012294"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012294"
+ }
+ },
+ "Computer-mouse": {
+ "short_form": "Computer-mouse",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse",
+ "description": "A hand-held pointing device that detects two-dimensional motion relative to a surface.",
+ "parent": "Input-device",
+ "children": [
+ "Mouse-button",
+ "Scroll-wheel"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012295"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012295"
+ }
+ },
+ "Mouse-button": {
+ "short_form": "Mouse-button",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse/Mouse-button",
+ "description": "An electric switch on a computer mouse which can be pressed or clicked to select or interact with an element of a graphical user interface.",
+ "parent": "Computer-mouse",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012296"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012296"
+ }
+ },
+ "Scroll-wheel": {
+ "short_form": "Scroll-wheel",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse/Scroll-wheel",
+ "description": "A scroll wheel or mouse wheel is a wheel used for scrolling made of hard plastic with a rubbery surface usually located between the left and right mouse buttons and is positioned perpendicular to the mouse surface.",
+ "parent": "Computer-mouse",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012297"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012297"
+ }
+ },
+ "Joystick": {
+ "short_form": "Joystick",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Input-device/Joystick",
+ "description": "A control device that uses a movable handle to create two-axis input for a computer device.",
+ "parent": "Input-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012298"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012298"
+ }
+ },
+ "Keyboard": {
+ "short_form": "Keyboard",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Input-device/Keyboard",
+ "description": "A device consisting of mechanical keys that are pressed to create input to a computer.",
+ "parent": "Input-device",
+ "children": [
+ "Keyboard-key"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012299"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012299"
+ }
+ },
+ "Keyboard-key": {
+ "short_form": "Keyboard-key",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Input-device/Keyboard/Keyboard-key",
+ "description": "A button on a keyboard usually representing letters, numbers, functions, or symbols.",
+ "parent": "Keyboard",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012300"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012300"
+ },
+ "placeholder": {
+ "description": "Value of a keyboard key.",
+ "takesValue": true,
+ "hedId": "HED_0012301"
+ }
+ },
+ "Keypad": {
+ "short_form": "Keypad",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Input-device/Keypad",
+ "description": "A device consisting of keys, usually in a block arrangement, that provides limited input to a system.",
+ "parent": "Input-device",
+ "children": [
+ "Keypad-key"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012302"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012302"
+ }
+ },
+ "Keypad-key": {
+ "short_form": "Keypad-key",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Input-device/Keypad/Keypad-key",
+ "description": "A key on a separate section of a computer keyboard that groups together numeric keys and those for mathematical or other special functions in an arrangement like that of a calculator.",
+ "parent": "Keypad",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012303"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012303"
+ },
+ "placeholder": {
+ "description": "Value of keypad key.",
+ "takesValue": true,
+ "hedId": "HED_0012304"
+ }
+ },
+ "Microphone": {
+ "short_form": "Microphone",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Input-device/Microphone",
+ "description": "A device designed to convert sound to an electrical signal.",
+ "parent": "Input-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012305"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012305"
+ }
+ },
+ "Push-button": {
+ "short_form": "Push-button",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Input-device/Push-button",
+ "description": "A switch designed to be operated by pressing a button.",
+ "parent": "Input-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012306"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012306"
+ }
+ },
+ "Output-device": {
+ "short_form": "Output-device",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Output-device",
+ "description": "Any piece of computer hardware equipment which converts information into human understandable form.",
+ "parent": "IO-device",
+ "children": [
+ "Auditory-device",
+ "Display-device"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012307"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012307"
+ }
+ },
+ "Auditory-device": {
+ "short_form": "Auditory-device",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Output-device/Auditory-device",
+ "description": "A device designed to produce sound.",
+ "parent": "Output-device",
+ "children": [
+ "Headphones",
+ "Loudspeaker"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012308"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012308"
+ }
+ },
+ "Headphones": {
+ "short_form": "Headphones",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Output-device/Auditory-device/Headphones",
+ "description": "An instrument that consists of a pair of small loudspeakers, or less commonly a single speaker, held close to ears and connected to a signal source such as an audio amplifier, radio, CD player or portable media player.",
+ "parent": "Auditory-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012309"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012309"
+ }
+ },
+ "Loudspeaker": {
+ "short_form": "Loudspeaker",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Output-device/Auditory-device/Loudspeaker",
+ "description": "A device designed to convert electrical signals to sounds that can be heard.",
+ "parent": "Auditory-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012310"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012310"
+ }
+ },
+ "Display-device": {
+ "short_form": "Display-device",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Output-device/Display-device",
+ "description": "An output device for presentation of information in visual or tactile form the latter used for example in tactile electronic displays for blind people.",
+ "parent": "Output-device",
+ "children": [
+ "Computer-screen",
+ "Head-mounted-display",
+ "LED-display",
+ "Screen-window"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012311"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012311"
+ }
+ },
+ "Computer-screen": {
+ "short_form": "Computer-screen",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Output-device/Display-device/Computer-screen",
+ "description": "An electronic device designed as a display or a physical device designed to be a protective mesh work.",
+ "parent": "Display-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012312"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012312"
+ }
+ },
+ "Head-mounted-display": {
+ "short_form": "Head-mounted-display",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Output-device/Display-device/Head-mounted-display",
+ "description": "An instrument that functions as a display device, worn on the head or as part of a helmet, that has a small display optic in front of one (monocular HMD) or each eye (binocular HMD).",
+ "parent": "Display-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012314"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012314"
+ }
+ },
+ "LED-display": {
+ "short_form": "LED-display",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Output-device/Display-device/LED-display",
+ "description": "A LED display is a flat panel display that uses an array of light-emitting diodes as pixels for a video display.",
+ "parent": "Display-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012315"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012315"
+ }
+ },
+ "Screen-window": {
+ "short_form": "Screen-window",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Output-device/Display-device/Screen-window",
+ "description": "A part of a computer screen that contains a display different from the rest of the screen.",
+ "parent": "Display-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012313"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012313"
+ }
+ },
+ "Recording-device": {
+ "short_form": "Recording-device",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Recording-device",
+ "description": "A device that copies information in a signal into a persistent information bearer.",
+ "parent": "IO-device",
+ "children": [
+ "EEG-recorder",
+ "EMG-recorder",
+ "File-storage",
+ "MEG-recorder",
+ "Motion-capture",
+ "Tape-recorder"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012316"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012316"
+ }
+ },
+ "EEG-recorder": {
+ "short_form": "EEG-recorder",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Recording-device/EEG-recorder",
+ "description": "A device for recording electric currents in the brain using electrodes applied to the scalp, to the surface of the brain, or placed within the substance of the brain.",
+ "parent": "Recording-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012317"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012317"
+ }
+ },
+ "EMG-recorder": {
+ "short_form": "EMG-recorder",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Recording-device/EMG-recorder",
+ "description": "A device for recording electrical activity of muscles using electrodes on the body surface or within the muscular mass.",
+ "parent": "Recording-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0013225"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013225"
+ }
+ },
+ "File-storage": {
+ "short_form": "File-storage",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Recording-device/File-storage",
+ "description": "A device for recording digital information to a permanent media.",
+ "parent": "Recording-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012318"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012318"
+ }
+ },
+ "MEG-recorder": {
+ "short_form": "MEG-recorder",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Recording-device/MEG-recorder",
+ "description": "A device for measuring the magnetic fields produced by electrical activity in the brain, usually conducted externally.",
+ "parent": "Recording-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012319"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012319"
+ }
+ },
+ "Motion-capture": {
+ "short_form": "Motion-capture",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Recording-device/Motion-capture",
+ "description": "A device for recording the movement of objects or people.",
+ "parent": "Recording-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012320"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012320"
+ }
+ },
+ "Tape-recorder": {
+ "short_form": "Tape-recorder",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Recording-device/Tape-recorder",
+ "description": "A device for recording and reproduction usually using magnetic tape for storage that can be saved and played back.",
+ "parent": "Recording-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012321"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012321"
+ }
+ },
+ "Touchscreen": {
+ "short_form": "Touchscreen",
+ "long_form": "Item/Object/Man-made-object/Device/IO-device/Touchscreen",
+ "description": "A control component that operates an electronic device by pressing the display on the screen.",
+ "parent": "IO-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012322"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012322"
+ }
+ },
+ "Machine": {
+ "short_form": "Machine",
+ "long_form": "Item/Object/Man-made-object/Device/Machine",
+ "description": "A human-made device that uses power to apply forces and control movement to perform an action.",
+ "parent": "Device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012323"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012323"
+ }
+ },
+ "Measurement-device": {
+ "short_form": "Measurement-device",
+ "long_form": "Item/Object/Man-made-object/Device/Measurement-device",
+ "description": "A device that measures something.",
+ "parent": "Device",
+ "children": [
+ "Clock"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012324"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012324"
+ }
+ },
+ "Clock": {
+ "short_form": "Clock",
+ "long_form": "Item/Object/Man-made-object/Device/Measurement-device/Clock",
+ "description": "A device designed to indicate the time of day or to measure the time duration of an event or action.",
+ "parent": "Measurement-device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012325"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012325"
+ }
+ },
+ "Robot": {
+ "short_form": "Robot",
+ "long_form": "Item/Object/Man-made-object/Device/Robot",
+ "description": "A mechanical device that sometimes resembles a living animal and is capable of performing a variety of often complex human tasks on command or by being programmed in advance.",
+ "parent": "Device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012327"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012327"
+ }
+ },
+ "Tool": {
+ "short_form": "Tool",
+ "long_form": "Item/Object/Man-made-object/Device/Tool",
+ "description": "A component that is not part of a device but is designed to support its assembly or operation.",
+ "parent": "Device",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012328"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012328"
+ }
+ },
+ "Document": {
+ "short_form": "Document",
+ "long_form": "Item/Object/Man-made-object/Document",
+ "description": "A physical object, or electronic counterpart, that is characterized by containing writing which is meant to be human-readable.",
+ "parent": "Man-made-object",
+ "children": [
+ "Book",
+ "Letter",
+ "Note",
+ "Notebook",
+ "Questionnaire"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012329"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012329"
+ }
+ },
+ "Book": {
+ "short_form": "Book",
+ "long_form": "Item/Object/Man-made-object/Document/Book",
+ "description": "A volume made up of pages fastened along one edge and enclosed between protective covers.",
+ "parent": "Document",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012330"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012330"
+ }
+ },
+ "Letter": {
+ "short_form": "Letter",
+ "long_form": "Item/Object/Man-made-object/Document/Letter",
+ "description": "A written message addressed to a person or organization.",
+ "parent": "Document",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012331"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012331"
+ }
+ },
+ "Note": {
+ "short_form": "Note",
+ "long_form": "Item/Object/Man-made-object/Document/Note",
+ "description": "A brief written record.",
+ "parent": "Document",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012332"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012332"
+ }
+ },
+ "Notebook": {
+ "short_form": "Notebook",
+ "long_form": "Item/Object/Man-made-object/Document/Notebook",
+ "description": "A book for notes or memoranda.",
+ "parent": "Document",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012333"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012333"
+ }
+ },
+ "Questionnaire": {
+ "short_form": "Questionnaire",
+ "long_form": "Item/Object/Man-made-object/Document/Questionnaire",
+ "description": "A document consisting of questions and possibly responses, depending on whether it has been filled out.",
+ "parent": "Document",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012334"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012334"
+ }
+ },
+ "Furnishing": {
+ "short_form": "Furnishing",
+ "long_form": "Item/Object/Man-made-object/Furnishing",
+ "description": "Furniture, fittings, and other decorative accessories, such as curtains and carpets, for a house or room.",
+ "parent": "Man-made-object",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012335"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012335"
+ }
+ },
+ "Manufactured-material": {
+ "short_form": "Manufactured-material",
+ "long_form": "Item/Object/Man-made-object/Manufactured-material",
+ "description": "Substances created or extracted from raw materials.",
+ "parent": "Man-made-object",
+ "children": [
+ "Ceramic",
+ "Glass",
+ "Paper",
+ "Plastic",
+ "Steel"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012336"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012336"
+ }
+ },
+ "Ceramic": {
+ "short_form": "Ceramic",
+ "long_form": "Item/Object/Man-made-object/Manufactured-material/Ceramic",
+ "description": "A hard, brittle, heat-resistant and corrosion-resistant material made by shaping and then firing a nonmetallic mineral, such as clay, at a high temperature.",
+ "parent": "Manufactured-material",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012337"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012337"
+ }
+ },
+ "Glass": {
+ "short_form": "Glass",
+ "long_form": "Item/Object/Man-made-object/Manufactured-material/Glass",
+ "description": "A brittle transparent solid with irregular atomic structure.",
+ "parent": "Manufactured-material",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012338"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012338"
+ }
+ },
+ "Paper": {
+ "short_form": "Paper",
+ "long_form": "Item/Object/Man-made-object/Manufactured-material/Paper",
+ "description": "A thin sheet material produced by mechanically or chemically processing cellulose fibres derived from wood, rags, grasses or other vegetable sources in water.",
+ "parent": "Manufactured-material",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012339"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012339"
+ }
+ },
+ "Plastic": {
+ "short_form": "Plastic",
+ "long_form": "Item/Object/Man-made-object/Manufactured-material/Plastic",
+ "description": "Various high-molecular-weight thermoplastic or thermo-setting polymers that are capable of being molded, extruded, drawn, or otherwise shaped and then hardened into a form.",
+ "parent": "Manufactured-material",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012340"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012340"
+ }
+ },
+ "Steel": {
+ "short_form": "Steel",
+ "long_form": "Item/Object/Man-made-object/Manufactured-material/Steel",
+ "description": "An alloy made up of iron with typically a few tenths of a percent of carbon to improve its strength and fracture resistance compared to iron.",
+ "parent": "Manufactured-material",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012341"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012341"
+ }
+ },
+ "Media": {
+ "short_form": "Media",
+ "long_form": "Item/Object/Man-made-object/Media",
+ "description": "Media are audio/visual/audiovisual modes of communicating information for mass consumption.",
+ "parent": "Man-made-object",
+ "children": [
+ "Media-clip",
+ "Visualization"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012342"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012342"
+ }
+ },
+ "Media-clip": {
+ "short_form": "Media-clip",
+ "long_form": "Item/Object/Man-made-object/Media/Media-clip",
+ "description": "A short segment of media.",
+ "parent": "Media",
+ "children": [
+ "Audio-clip",
+ "Audiovisual-clip",
+ "Video-clip"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012343"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012343"
+ }
+ },
+ "Audio-clip": {
+ "short_form": "Audio-clip",
+ "long_form": "Item/Object/Man-made-object/Media/Media-clip/Audio-clip",
+ "description": "A short segment of audio.",
+ "parent": "Media-clip",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012344"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012344"
+ }
+ },
+ "Audiovisual-clip": {
+ "short_form": "Audiovisual-clip",
+ "long_form": "Item/Object/Man-made-object/Media/Media-clip/Audiovisual-clip",
+ "description": "A short media segment containing both audio and video.",
+ "parent": "Media-clip",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012345"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012345"
+ }
+ },
+ "Video-clip": {
+ "short_form": "Video-clip",
+ "long_form": "Item/Object/Man-made-object/Media/Media-clip/Video-clip",
+ "description": "A short segment of video.",
+ "parent": "Media-clip",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012346"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012346"
+ }
+ },
+ "Visualization": {
+ "short_form": "Visualization",
+ "long_form": "Item/Object/Man-made-object/Media/Visualization",
+ "description": "An planned process that creates images, diagrams or animations from the input data.",
+ "parent": "Media",
+ "children": [
+ "Animation",
+ "Art-installation",
+ "Braille",
+ "Image",
+ "Movie",
+ "Outline-visualization",
+ "Point-light-visualization",
+ "Sculpture",
+ "Stick-figure-visualization"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012347"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012347"
+ }
+ },
+ "Animation": {
+ "short_form": "Animation",
+ "long_form": "Item/Object/Man-made-object/Media/Visualization/Animation",
+ "description": "A form of graphical illustration that changes with time to give a sense of motion or represent dynamic changes in the portrayal.",
+ "parent": "Visualization",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012348"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012348"
+ }
+ },
+ "Art-installation": {
+ "short_form": "Art-installation",
+ "long_form": "Item/Object/Man-made-object/Media/Visualization/Art-installation",
+ "description": "A large-scale, mixed-media constructions, often designed for a specific place or for a temporary period of time.",
+ "parent": "Visualization",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012349"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012349"
+ }
+ },
+ "Braille": {
+ "short_form": "Braille",
+ "long_form": "Item/Object/Man-made-object/Media/Visualization/Braille",
+ "description": "A display using a system of raised dots that can be read with the fingers by people who are blind.",
+ "parent": "Visualization",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012350"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012350"
+ }
+ },
+ "Image": {
+ "short_form": "Image",
+ "long_form": "Item/Object/Man-made-object/Media/Visualization/Image",
+ "description": "Any record of an imaging event whether physical or electronic.",
+ "parent": "Visualization",
+ "children": [
+ "Cartoon",
+ "Drawing",
+ "Icon",
+ "Painting",
+ "Photograph"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012351"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012351"
+ }
+ },
+ "Cartoon": {
+ "short_form": "Cartoon",
+ "long_form": "Item/Object/Man-made-object/Media/Visualization/Image/Cartoon",
+ "description": "A type of illustration, sometimes animated, typically in a non-realistic or semi-realistic style. The specific meaning has evolved over time, but the modern usage usually refers to either an image or series of images intended for satire, caricature, or humor. A motion picture that relies on a sequence of illustrations for its animation.",
+ "parent": "Image",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012352"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012352"
+ }
+ },
+ "Drawing": {
+ "short_form": "Drawing",
+ "long_form": "Item/Object/Man-made-object/Media/Visualization/Image/Drawing",
+ "description": "A representation of an object or outlining a figure, plan, or sketch by means of lines.",
+ "parent": "Image",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012353"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012353"
+ }
+ },
+ "Icon": {
+ "short_form": "Icon",
+ "long_form": "Item/Object/Man-made-object/Media/Visualization/Image/Icon",
+ "description": "A sign (such as a word or graphic symbol) whose form suggests its meaning.",
+ "parent": "Image",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012354"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012354"
+ }
+ },
+ "Painting": {
+ "short_form": "Painting",
+ "long_form": "Item/Object/Man-made-object/Media/Visualization/Image/Painting",
+ "description": "A work produced through the art of painting.",
+ "parent": "Image",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012355"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012355"
+ }
+ },
+ "Photograph": {
+ "short_form": "Photograph",
+ "long_form": "Item/Object/Man-made-object/Media/Visualization/Image/Photograph",
+ "description": "An image recorded by a camera.",
+ "parent": "Image",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012356"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012356"
+ }
+ },
+ "Movie": {
+ "short_form": "Movie",
+ "long_form": "Item/Object/Man-made-object/Media/Visualization/Movie",
+ "description": "A sequence of images displayed in succession giving the illusion of continuous movement.",
+ "parent": "Visualization",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012357"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012357"
+ }
+ },
+ "Outline-visualization": {
+ "short_form": "Outline-visualization",
+ "long_form": "Item/Object/Man-made-object/Media/Visualization/Outline-visualization",
+ "description": "A visualization consisting of a line or set of lines enclosing or indicating the shape of an object in a sketch or diagram.",
+ "parent": "Visualization",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012358"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012358"
+ }
+ },
+ "Point-light-visualization": {
+ "short_form": "Point-light-visualization",
+ "long_form": "Item/Object/Man-made-object/Media/Visualization/Point-light-visualization",
+ "description": "A display in which action is depicted using a few points of light, often generated from discrete sensors in motion capture.",
+ "parent": "Visualization",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012359"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012359"
+ }
+ },
+ "Sculpture": {
+ "short_form": "Sculpture",
+ "long_form": "Item/Object/Man-made-object/Media/Visualization/Sculpture",
+ "description": "A two- or three-dimensional representative or abstract forms, especially by carving stone or wood or by casting metal or plaster.",
+ "parent": "Visualization",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012360"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012360"
+ }
+ },
+ "Stick-figure-visualization": {
+ "short_form": "Stick-figure-visualization",
+ "long_form": "Item/Object/Man-made-object/Media/Visualization/Stick-figure-visualization",
+ "description": "A drawing showing the head of a human being or animal as a circle and all other parts as straight lines.",
+ "parent": "Visualization",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012361"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012361"
+ }
+ },
+ "Navigational-object": {
+ "short_form": "Navigational-object",
+ "long_form": "Item/Object/Man-made-object/Navigational-object",
+ "description": "An object whose purpose is to assist directed movement from one location to another.",
+ "parent": "Man-made-object",
+ "children": [
+ "Path",
+ "Road",
+ "Runway"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012362"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012362"
+ }
+ },
+ "Path": {
+ "short_form": "Path",
+ "long_form": "Item/Object/Man-made-object/Navigational-object/Path",
+ "description": "A trodden way. A way or track laid down for walking or made by continual treading.",
+ "parent": "Navigational-object",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012363"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012363"
+ }
+ },
+ "Road": {
+ "short_form": "Road",
+ "long_form": "Item/Object/Man-made-object/Navigational-object/Road",
+ "description": "An open way for the passage of vehicles, persons, or animals on land.",
+ "parent": "Navigational-object",
+ "children": [
+ "Lane"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012364"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012364"
+ }
+ },
+ "Lane": {
+ "short_form": "Lane",
+ "long_form": "Item/Object/Man-made-object/Navigational-object/Road/Lane",
+ "description": "A defined path with physical dimensions through which an object or substance may traverse.",
+ "parent": "Road",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012365"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012365"
+ }
+ },
+ "Runway": {
+ "short_form": "Runway",
+ "long_form": "Item/Object/Man-made-object/Navigational-object/Runway",
+ "description": "A paved strip of ground on a landing field for the landing and takeoff of aircraft.",
+ "parent": "Navigational-object",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012366"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012366"
+ }
+ },
+ "Vehicle": {
+ "short_form": "Vehicle",
+ "long_form": "Item/Object/Man-made-object/Vehicle",
+ "description": "A mobile machine which transports people or cargo.",
+ "parent": "Man-made-object",
+ "children": [
+ "Aircraft",
+ "Bicycle",
+ "Boat",
+ "Car",
+ "Cart",
+ "Tractor",
+ "Train",
+ "Truck"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012367"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012367"
+ }
+ },
+ "Aircraft": {
+ "short_form": "Aircraft",
+ "long_form": "Item/Object/Man-made-object/Vehicle/Aircraft",
+ "description": "A vehicle which is able to travel through air in an atmosphere.",
+ "parent": "Vehicle",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012368"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012368"
+ }
+ },
+ "Bicycle": {
+ "short_form": "Bicycle",
+ "long_form": "Item/Object/Man-made-object/Vehicle/Bicycle",
+ "description": "A human-powered, pedal-driven, single-track vehicle, having two wheels attached to a frame, one behind the other.",
+ "parent": "Vehicle",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012369"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012369"
+ }
+ },
+ "Boat": {
+ "short_form": "Boat",
+ "long_form": "Item/Object/Man-made-object/Vehicle/Boat",
+ "description": "A watercraft of any size which is able to float or plane on water.",
+ "parent": "Vehicle",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012370"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012370"
+ }
+ },
+ "Car": {
+ "short_form": "Car",
+ "long_form": "Item/Object/Man-made-object/Vehicle/Car",
+ "description": "A wheeled motor vehicle used primarily for the transportation of human passengers.",
+ "parent": "Vehicle",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012371"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012371"
+ }
+ },
+ "Cart": {
+ "short_form": "Cart",
+ "long_form": "Item/Object/Man-made-object/Vehicle/Cart",
+ "description": "A cart is a vehicle which has two wheels and is designed to transport human passengers or cargo.",
+ "parent": "Vehicle",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012372"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012372"
+ }
+ },
+ "Tractor": {
+ "short_form": "Tractor",
+ "long_form": "Item/Object/Man-made-object/Vehicle/Tractor",
+ "description": "A mobile machine specifically designed to deliver a high tractive effort at slow speeds, and mainly used for the purposes of hauling a trailer or machinery used in agriculture or construction.",
+ "parent": "Vehicle",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012373"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012373"
+ }
+ },
+ "Train": {
+ "short_form": "Train",
+ "long_form": "Item/Object/Man-made-object/Vehicle/Train",
+ "description": "A connected line of railroad cars with or without a locomotive.",
+ "parent": "Vehicle",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012374"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012374"
+ }
+ },
+ "Truck": {
+ "short_form": "Truck",
+ "long_form": "Item/Object/Man-made-object/Vehicle/Truck",
+ "description": "A motor vehicle which, as its primary function, transports cargo rather than human passengers.",
+ "parent": "Vehicle",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012375"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012375"
+ }
+ },
+ "Natural-object": {
+ "short_form": "Natural-object",
+ "long_form": "Item/Object/Natural-object",
+ "description": "Something that exists in or is produced by nature, and is not artificial or man-made.",
+ "parent": "Object",
+ "children": [
+ "Mineral",
+ "Natural-feature"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012376"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012376"
+ }
+ },
+ "Mineral": {
+ "short_form": "Mineral",
+ "long_form": "Item/Object/Natural-object/Mineral",
+ "description": "A solid, homogeneous, inorganic substance occurring in nature and having a definite chemical composition.",
+ "parent": "Natural-object",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012377"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012377"
+ }
+ },
+ "Natural-feature": {
+ "short_form": "Natural-feature",
+ "long_form": "Item/Object/Natural-object/Natural-feature",
+ "description": "A feature that occurs in nature. A prominent or identifiable aspect, region, or site of interest.",
+ "parent": "Natural-object",
+ "children": [
+ "Field",
+ "Hill",
+ "Mountain",
+ "River",
+ "Waterfall"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012378"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012378"
+ }
+ },
+ "Field": {
+ "short_form": "Field",
+ "long_form": "Item/Object/Natural-object/Natural-feature/Field",
+ "description": "An unbroken expanse as of ice or grassland.",
+ "parent": "Natural-feature",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012379"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012379"
+ }
+ },
+ "Hill": {
+ "short_form": "Hill",
+ "long_form": "Item/Object/Natural-object/Natural-feature/Hill",
+ "description": "A rounded elevation of limited extent rising above the surrounding land with local relief of less than 300m.",
+ "parent": "Natural-feature",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012380"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012380"
+ }
+ },
+ "Mountain": {
+ "short_form": "Mountain",
+ "long_form": "Item/Object/Natural-object/Natural-feature/Mountain",
+ "description": "A landform that extends above the surrounding terrain in a limited area.",
+ "parent": "Natural-feature",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012381"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012381"
+ }
+ },
+ "River": {
+ "short_form": "River",
+ "long_form": "Item/Object/Natural-object/Natural-feature/River",
+ "description": "A natural freshwater surface stream of considerable volume and a permanent or seasonal flow, moving in a definite channel toward a sea, lake, or another river.",
+ "parent": "Natural-feature",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012382"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012382"
+ }
+ },
+ "Waterfall": {
+ "short_form": "Waterfall",
+ "long_form": "Item/Object/Natural-object/Natural-feature/Waterfall",
+ "description": "A sudden descent of water over a step or ledge in the bed of a river.",
+ "parent": "Natural-feature",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Sensory-presentation"
+ ],
+ "hedId": "HED_0012383"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012383"
+ }
+ },
+ "Sound": {
+ "short_form": "Sound",
+ "long_form": "Item/Sound",
+ "description": "Mechanical vibrations transmitted by an elastic medium. Something that can be heard.",
+ "parent": "Item",
+ "children": [
+ "Environmental-sound",
+ "Musical-sound",
+ "Named-animal-sound",
+ "Named-object-sound"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012384"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012384"
+ }
+ },
+ "Environmental-sound": {
+ "short_form": "Environmental-sound",
+ "long_form": "Item/Sound/Environmental-sound",
+ "description": "Sounds occurring in the environment. An accumulation of noise pollution that occurs outside. This noise can be caused by transport, industrial, and recreational activities.",
+ "parent": "Sound",
+ "children": [
+ "Crowd-sound",
+ "Signal-noise"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012385"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012385"
+ }
+ },
+ "Crowd-sound": {
+ "short_form": "Crowd-sound",
+ "long_form": "Item/Sound/Environmental-sound/Crowd-sound",
+ "description": "Noise produced by a mixture of sounds from a large group of people.",
+ "parent": "Environmental-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012386"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012386"
+ }
+ },
+ "Signal-noise": {
+ "short_form": "Signal-noise",
+ "long_form": "Item/Sound/Environmental-sound/Signal-noise",
+ "description": "Any part of a signal that is not the true or original signal but is introduced by the communication mechanism.",
+ "parent": "Environmental-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012387"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012387"
+ }
+ },
+ "Musical-sound": {
+ "short_form": "Musical-sound",
+ "long_form": "Item/Sound/Musical-sound",
+ "description": "Sound produced by continuous and regular vibrations, as opposed to noise.",
+ "parent": "Sound",
+ "children": [
+ "Instrument-sound",
+ "Tone",
+ "Vocalized-sound"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012388"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012388"
+ }
+ },
+ "Instrument-sound": {
+ "short_form": "Instrument-sound",
+ "long_form": "Item/Sound/Musical-sound/Instrument-sound",
+ "description": "Sound produced by a musical instrument.",
+ "parent": "Musical-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012389"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012389"
+ }
+ },
+ "Tone": {
+ "short_form": "Tone",
+ "long_form": "Item/Sound/Musical-sound/Tone",
+ "description": "A musical note, warble, or other sound used as a particular signal on a telephone or answering machine.",
+ "parent": "Musical-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012390"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012390"
+ }
+ },
+ "Vocalized-sound": {
+ "short_form": "Vocalized-sound",
+ "long_form": "Item/Sound/Musical-sound/Vocalized-sound",
+ "description": "Musical sound produced by vocal cords in a biological agent.",
+ "parent": "Musical-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012391"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012391"
+ }
+ },
+ "Named-animal-sound": {
+ "short_form": "Named-animal-sound",
+ "long_form": "Item/Sound/Named-animal-sound",
+ "description": "A sound recognizable as being associated with particular animals.",
+ "parent": "Sound",
+ "children": [
+ "Barking",
+ "Bleating",
+ "Chirping",
+ "Crowing",
+ "Growling",
+ "Meowing",
+ "Mooing",
+ "Purring",
+ "Roaring",
+ "Squawking"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012392"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012392"
+ }
+ },
+ "Barking": {
+ "short_form": "Barking",
+ "long_form": "Item/Sound/Named-animal-sound/Barking",
+ "description": "Sharp explosive cries like sounds made by certain animals, especially a dog, fox, or seal.",
+ "parent": "Named-animal-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012393"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012393"
+ }
+ },
+ "Bleating": {
+ "short_form": "Bleating",
+ "long_form": "Item/Sound/Named-animal-sound/Bleating",
+ "description": "Wavering cries like sounds made by a sheep, goat, or calf.",
+ "parent": "Named-animal-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012394"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012394"
+ }
+ },
+ "Chirping": {
+ "short_form": "Chirping",
+ "long_form": "Item/Sound/Named-animal-sound/Chirping",
+ "description": "Short, sharp, high-pitched noises like sounds made by small birds or an insects.",
+ "parent": "Named-animal-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012395"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012395"
+ }
+ },
+ "Crowing": {
+ "short_form": "Crowing",
+ "long_form": "Item/Sound/Named-animal-sound/Crowing",
+ "description": "Loud shrill sounds characteristic of roosters.",
+ "parent": "Named-animal-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012396"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012396"
+ }
+ },
+ "Growling": {
+ "short_form": "Growling",
+ "long_form": "Item/Sound/Named-animal-sound/Growling",
+ "description": "Low guttural sounds like those that made in the throat by a hostile dog or other animal.",
+ "parent": "Named-animal-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012397"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012397"
+ }
+ },
+ "Meowing": {
+ "short_form": "Meowing",
+ "long_form": "Item/Sound/Named-animal-sound/Meowing",
+ "description": "Vocalizations like those made by as those cats. These sounds have diverse tones and are sometimes chattered, murmured or whispered. The purpose can be assertive.",
+ "parent": "Named-animal-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012398"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012398"
+ }
+ },
+ "Mooing": {
+ "short_form": "Mooing",
+ "long_form": "Item/Sound/Named-animal-sound/Mooing",
+ "description": "Deep vocal sounds like those made by a cow.",
+ "parent": "Named-animal-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012399"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012399"
+ }
+ },
+ "Purring": {
+ "short_form": "Purring",
+ "long_form": "Item/Sound/Named-animal-sound/Purring",
+ "description": "Low continuous vibratory sound such as those made by cats. The sound expresses contentment.",
+ "parent": "Named-animal-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012400"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012400"
+ }
+ },
+ "Roaring": {
+ "short_form": "Roaring",
+ "long_form": "Item/Sound/Named-animal-sound/Roaring",
+ "description": "Loud, deep, or harsh prolonged sounds such as those made by big cats and bears for long-distance communication and intimidation.",
+ "parent": "Named-animal-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012401"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012401"
+ }
+ },
+ "Squawking": {
+ "short_form": "Squawking",
+ "long_form": "Item/Sound/Named-animal-sound/Squawking",
+ "description": "Loud, harsh noises such as those made by geese.",
+ "parent": "Named-animal-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012402"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012402"
+ }
+ },
+ "Named-object-sound": {
+ "short_form": "Named-object-sound",
+ "long_form": "Item/Sound/Named-object-sound",
+ "description": "A sound identifiable as coming from a particular type of object.",
+ "parent": "Sound",
+ "children": [
+ "Alarm-sound",
+ "Beep",
+ "Buzz",
+ "Click",
+ "Ding",
+ "Horn-blow",
+ "Ka-ching",
+ "Siren"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012403"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012403"
+ }
+ },
+ "Alarm-sound": {
+ "short_form": "Alarm-sound",
+ "long_form": "Item/Sound/Named-object-sound/Alarm-sound",
+ "description": "A loud signal often loud continuous ringing to alert people to a problem or condition that requires urgent attention.",
+ "parent": "Named-object-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012404"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012404"
+ }
+ },
+ "Beep": {
+ "short_form": "Beep",
+ "long_form": "Item/Sound/Named-object-sound/Beep",
+ "description": "A short, single tone, that is typically high-pitched and generally made by a computer or other machine.",
+ "parent": "Named-object-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012405"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012405"
+ }
+ },
+ "Buzz": {
+ "short_form": "Buzz",
+ "long_form": "Item/Sound/Named-object-sound/Buzz",
+ "description": "A persistent vibratory sound often made by a buzzer device and used to indicate something incorrect.",
+ "parent": "Named-object-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012406"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012406"
+ }
+ },
+ "Click": {
+ "short_form": "Click",
+ "long_form": "Item/Sound/Named-object-sound/Click",
+ "description": "The sound made by a mechanical cash register, often to designate a reward.",
+ "parent": "Named-object-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012407"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012407"
+ }
+ },
+ "Ding": {
+ "short_form": "Ding",
+ "long_form": "Item/Sound/Named-object-sound/Ding",
+ "description": "A short ringing sound such as that made by a bell, often to indicate a correct response or the expiration of time.",
+ "parent": "Named-object-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012408"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012408"
+ }
+ },
+ "Horn-blow": {
+ "short_form": "Horn-blow",
+ "long_form": "Item/Sound/Named-object-sound/Horn-blow",
+ "description": "A loud sound made by forcing air through a sound device that funnels air to create the sound, often used to sound an alert.",
+ "parent": "Named-object-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012409"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012409"
+ }
+ },
+ "Ka-ching": {
+ "short_form": "Ka-ching",
+ "long_form": "Item/Sound/Named-object-sound/Ka-ching",
+ "description": "The sound made by a mechanical cash register, often to designate a reward.",
+ "parent": "Named-object-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012410"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012410"
+ }
+ },
+ "Siren": {
+ "short_form": "Siren",
+ "long_form": "Item/Sound/Named-object-sound/Siren",
+ "description": "A loud, continuous sound often varying in frequency designed to indicate an emergency.",
+ "parent": "Named-object-sound",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012411"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012411"
+ }
+ },
+ "Property": {
+ "short_form": "Property",
+ "long_form": "Property",
+ "description": "Something that pertains to a thing. A characteristic of some entity. A quality or feature regarded as a characteristic or inherent part of someone or something. HED attributes are adjectives or adverbs.",
+ "parent": null,
+ "children": [
+ "Agent-property",
+ "Data-property",
+ "Environmental-property",
+ "Informational-property",
+ "Organizational-property",
+ "Sensory-property",
+ "Task-property"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012412"
+ },
+ "explicitAttributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012412"
+ }
+ },
+ "Agent-property": {
+ "short_form": "Agent-property",
+ "long_form": "Property/Agent-property",
+ "description": "Something that pertains to or describes an agent.",
+ "parent": "Property",
+ "children": [
+ "Agent-state",
+ "Agent-task-role",
+ "Agent-trait"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012413"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012413"
+ }
+ },
+ "Agent-state": {
+ "short_form": "Agent-state",
+ "long_form": "Property/Agent-property/Agent-state",
+ "description": "The state of the agent.",
+ "parent": "Agent-property",
+ "children": [
+ "Agent-cognitive-state",
+ "Agent-emotional-state",
+ "Agent-physiological-state",
+ "Agent-postural-state"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012414"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012414"
+ }
+ },
+ "Agent-cognitive-state": {
+ "short_form": "Agent-cognitive-state",
+ "long_form": "Property/Agent-property/Agent-state/Agent-cognitive-state",
+ "description": "The state of the cognitive processes or state of mind of the agent.",
+ "parent": "Agent-state",
+ "children": [
+ "Alert",
+ "Anesthetized",
+ "Asleep",
+ "Attentive",
+ "Awake",
+ "Brain-dead",
+ "Comatose",
+ "Distracted",
+ "Drowsy",
+ "Intoxicated",
+ "Locked-in",
+ "Passive",
+ "Resting",
+ "Vegetative"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012415"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012415"
+ }
+ },
+ "Alert": {
+ "short_form": "Alert",
+ "long_form": "Property/Agent-property/Agent-state/Agent-cognitive-state/Alert",
+ "description": "Condition of heightened watchfulness or preparation for action.",
+ "parent": "Agent-cognitive-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012416"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012416"
+ }
+ },
+ "Anesthetized": {
+ "short_form": "Anesthetized",
+ "long_form": "Property/Agent-property/Agent-state/Agent-cognitive-state/Anesthetized",
+ "description": "Having lost sensation to pain or having senses dulled due to the effects of an anesthetic.",
+ "parent": "Agent-cognitive-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012417"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012417"
+ }
+ },
+ "Asleep": {
+ "short_form": "Asleep",
+ "long_form": "Property/Agent-property/Agent-state/Agent-cognitive-state/Asleep",
+ "description": "Having entered a periodic, readily reversible state of reduced awareness and metabolic activity, usually accompanied by physical relaxation and brain activity.",
+ "parent": "Agent-cognitive-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012418"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012418"
+ }
+ },
+ "Attentive": {
+ "short_form": "Attentive",
+ "long_form": "Property/Agent-property/Agent-state/Agent-cognitive-state/Attentive",
+ "description": "Concentrating and focusing mental energy on the task or surroundings.",
+ "parent": "Agent-cognitive-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012419"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012419"
+ }
+ },
+ "Awake": {
+ "short_form": "Awake",
+ "long_form": "Property/Agent-property/Agent-state/Agent-cognitive-state/Awake",
+ "description": "In a non sleeping state.",
+ "parent": "Agent-cognitive-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012420"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012420"
+ }
+ },
+ "Brain-dead": {
+ "short_form": "Brain-dead",
+ "long_form": "Property/Agent-property/Agent-state/Agent-cognitive-state/Brain-dead",
+ "description": "Characterized by the irreversible absence of cortical and brain stem functioning.",
+ "parent": "Agent-cognitive-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012421"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012421"
+ }
+ },
+ "Comatose": {
+ "short_form": "Comatose",
+ "long_form": "Property/Agent-property/Agent-state/Agent-cognitive-state/Comatose",
+ "description": "In a state of profound unconsciousness associated with markedly depressed cerebral activity.",
+ "parent": "Agent-cognitive-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012422"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012422"
+ }
+ },
+ "Distracted": {
+ "short_form": "Distracted",
+ "long_form": "Property/Agent-property/Agent-state/Agent-cognitive-state/Distracted",
+ "description": "Lacking in concentration because of being preoccupied.",
+ "parent": "Agent-cognitive-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012423"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012423"
+ }
+ },
+ "Drowsy": {
+ "short_form": "Drowsy",
+ "long_form": "Property/Agent-property/Agent-state/Agent-cognitive-state/Drowsy",
+ "description": "In a state of near-sleep, a strong desire for sleep, or sleeping for unusually long periods.",
+ "parent": "Agent-cognitive-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012424"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012424"
+ }
+ },
+ "Intoxicated": {
+ "short_form": "Intoxicated",
+ "long_form": "Property/Agent-property/Agent-state/Agent-cognitive-state/Intoxicated",
+ "description": "In a state with disturbed psychophysiological functions and responses as a result of administration or ingestion of a psychoactive substance.",
+ "parent": "Agent-cognitive-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012425"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012425"
+ }
+ },
+ "Locked-in": {
+ "short_form": "Locked-in",
+ "long_form": "Property/Agent-property/Agent-state/Agent-cognitive-state/Locked-in",
+ "description": "In a state of complete paralysis of all voluntary muscles except for the ones that control the movements of the eyes.",
+ "parent": "Agent-cognitive-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012426"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012426"
+ }
+ },
+ "Passive": {
+ "short_form": "Passive",
+ "long_form": "Property/Agent-property/Agent-state/Agent-cognitive-state/Passive",
+ "description": "Not responding or initiating an action in response to a stimulus.",
+ "parent": "Agent-cognitive-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012427"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012427"
+ }
+ },
+ "Resting": {
+ "short_form": "Resting",
+ "long_form": "Property/Agent-property/Agent-state/Agent-cognitive-state/Resting",
+ "description": "A state in which the agent is not exhibiting any physical exertion.",
+ "parent": "Agent-cognitive-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012428"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012428"
+ }
+ },
+ "Vegetative": {
+ "short_form": "Vegetative",
+ "long_form": "Property/Agent-property/Agent-state/Agent-cognitive-state/Vegetative",
+ "description": "A state of wakefulness and conscience, but (in contrast to coma) with involuntary opening of the eyes and movements (such as teeth grinding, yawning, or thrashing of the extremities).",
+ "parent": "Agent-cognitive-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012429"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012429"
+ }
+ },
+ "Agent-emotional-state": {
+ "short_form": "Agent-emotional-state",
+ "long_form": "Property/Agent-property/Agent-state/Agent-emotional-state",
+ "description": "The status of the general temperament and outlook of an agent.",
+ "parent": "Agent-state",
+ "children": [
+ "Angry",
+ "Aroused",
+ "Awed",
+ "Compassionate",
+ "Content",
+ "Disgusted",
+ "Emotionally-neutral",
+ "Empathetic",
+ "Excited",
+ "Fearful",
+ "Frustrated",
+ "Grieving",
+ "Happy",
+ "Jealous",
+ "Joyful",
+ "Loving",
+ "Relieved",
+ "Sad",
+ "Stressed"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012430"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012430"
+ }
+ },
+ "Angry": {
+ "short_form": "Angry",
+ "long_form": "Property/Agent-property/Agent-state/Agent-emotional-state/Angry",
+ "description": "Experiencing emotions characterized by marked annoyance or hostility.",
+ "parent": "Agent-emotional-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012431"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012431"
+ }
+ },
+ "Aroused": {
+ "short_form": "Aroused",
+ "long_form": "Property/Agent-property/Agent-state/Agent-emotional-state/Aroused",
+ "description": "In a state reactive to stimuli leading to increased heart rate and blood pressure, sensory alertness, mobility and readiness to respond.",
+ "parent": "Agent-emotional-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012432"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012432"
+ }
+ },
+ "Awed": {
+ "short_form": "Awed",
+ "long_form": "Property/Agent-property/Agent-state/Agent-emotional-state/Awed",
+ "description": "Filled with wonder. Feeling grand, sublime or powerful emotions characterized by a combination of joy, fear, admiration, reverence, and/or respect.",
+ "parent": "Agent-emotional-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012433"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012433"
+ }
+ },
+ "Compassionate": {
+ "short_form": "Compassionate",
+ "long_form": "Property/Agent-property/Agent-state/Agent-emotional-state/Compassionate",
+ "description": "Feeling or showing sympathy and concern for others often evoked for a person who is in distress and associated with altruistic motivation.",
+ "parent": "Agent-emotional-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012434"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012434"
+ }
+ },
+ "Content": {
+ "short_form": "Content",
+ "long_form": "Property/Agent-property/Agent-state/Agent-emotional-state/Content",
+ "description": "Feeling satisfaction with things as they are.",
+ "parent": "Agent-emotional-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012435"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012435"
+ }
+ },
+ "Disgusted": {
+ "short_form": "Disgusted",
+ "long_form": "Property/Agent-property/Agent-state/Agent-emotional-state/Disgusted",
+ "description": "Feeling revulsion or profound disapproval aroused by something unpleasant or offensive.",
+ "parent": "Agent-emotional-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012436"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012436"
+ }
+ },
+ "Emotionally-neutral": {
+ "short_form": "Emotionally-neutral",
+ "long_form": "Property/Agent-property/Agent-state/Agent-emotional-state/Emotionally-neutral",
+ "description": "Feeling neither satisfied nor dissatisfied.",
+ "parent": "Agent-emotional-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012437"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012437"
+ }
+ },
+ "Empathetic": {
+ "short_form": "Empathetic",
+ "long_form": "Property/Agent-property/Agent-state/Agent-emotional-state/Empathetic",
+ "description": "Understanding and sharing the feelings of another. Being aware of, being sensitive to, and vicariously experiencing the feelings, thoughts, and experience of another.",
+ "parent": "Agent-emotional-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012438"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012438"
+ }
+ },
+ "Excited": {
+ "short_form": "Excited",
+ "long_form": "Property/Agent-property/Agent-state/Agent-emotional-state/Excited",
+ "description": "Feeling great enthusiasm and eagerness.",
+ "parent": "Agent-emotional-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012439"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012439"
+ }
+ },
+ "Fearful": {
+ "short_form": "Fearful",
+ "long_form": "Property/Agent-property/Agent-state/Agent-emotional-state/Fearful",
+ "description": "Feeling apprehension that one may be in danger.",
+ "parent": "Agent-emotional-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012440"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012440"
+ }
+ },
+ "Frustrated": {
+ "short_form": "Frustrated",
+ "long_form": "Property/Agent-property/Agent-state/Agent-emotional-state/Frustrated",
+ "description": "Feeling annoyed as a result of being blocked, thwarted, disappointed or defeated.",
+ "parent": "Agent-emotional-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012441"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012441"
+ }
+ },
+ "Grieving": {
+ "short_form": "Grieving",
+ "long_form": "Property/Agent-property/Agent-state/Agent-emotional-state/Grieving",
+ "description": "Feeling sorrow in response to loss, whether physical or abstract.",
+ "parent": "Agent-emotional-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012442"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012442"
+ }
+ },
+ "Happy": {
+ "short_form": "Happy",
+ "long_form": "Property/Agent-property/Agent-state/Agent-emotional-state/Happy",
+ "description": "Feeling pleased and content.",
+ "parent": "Agent-emotional-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012443"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012443"
+ }
+ },
+ "Jealous": {
+ "short_form": "Jealous",
+ "long_form": "Property/Agent-property/Agent-state/Agent-emotional-state/Jealous",
+ "description": "Feeling threatened by a rival in a relationship with another individual, in particular an intimate partner, usually involves feelings of threat, fear, suspicion, distrust, anxiety, anger, betrayal, and rejection.",
+ "parent": "Agent-emotional-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012444"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012444"
+ }
+ },
+ "Joyful": {
+ "short_form": "Joyful",
+ "long_form": "Property/Agent-property/Agent-state/Agent-emotional-state/Joyful",
+ "description": "Feeling delight or intense happiness.",
+ "parent": "Agent-emotional-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012445"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012445"
+ }
+ },
+ "Loving": {
+ "short_form": "Loving",
+ "long_form": "Property/Agent-property/Agent-state/Agent-emotional-state/Loving",
+ "description": "Feeling a strong positive emotion of affection and attraction.",
+ "parent": "Agent-emotional-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012446"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012446"
+ }
+ },
+ "Relieved": {
+ "short_form": "Relieved",
+ "long_form": "Property/Agent-property/Agent-state/Agent-emotional-state/Relieved",
+ "description": "No longer feeling pain, distress,anxiety, or reassured.",
+ "parent": "Agent-emotional-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012447"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012447"
+ }
+ },
+ "Sad": {
+ "short_form": "Sad",
+ "long_form": "Property/Agent-property/Agent-state/Agent-emotional-state/Sad",
+ "description": "Feeling grief or unhappiness.",
+ "parent": "Agent-emotional-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012448"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012448"
+ }
+ },
+ "Stressed": {
+ "short_form": "Stressed",
+ "long_form": "Property/Agent-property/Agent-state/Agent-emotional-state/Stressed",
+ "description": "Experiencing mental or emotional strain or tension.",
+ "parent": "Agent-emotional-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012449"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012449"
+ }
+ },
+ "Agent-physiological-state": {
+ "short_form": "Agent-physiological-state",
+ "long_form": "Property/Agent-property/Agent-state/Agent-physiological-state",
+ "description": "Having to do with the mechanical, physical, or biochemical function of an agent.",
+ "parent": "Agent-state",
+ "children": [
+ "Catamenial",
+ "Fever",
+ "Healthy",
+ "Hungry",
+ "Rested",
+ "Sated",
+ "Sick",
+ "Thirsty",
+ "Tired"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012450"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012450"
+ }
+ },
+ "Catamenial": {
+ "short_form": "Catamenial",
+ "long_form": "Property/Agent-property/Agent-state/Agent-physiological-state/Catamenial",
+ "description": "Related to menstruation.",
+ "parent": "Agent-physiological-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013226"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013226"
+ }
+ },
+ "Fever": {
+ "short_form": "Fever",
+ "long_form": "Property/Agent-property/Agent-state/Agent-physiological-state/Fever",
+ "description": "Body temperature above the normal range.",
+ "parent": "Agent-physiological-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Sick"
+ ],
+ "hedId": "HED_0013227"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Sick"
+ ],
+ "hedId": "HED_0013227"
+ }
+ },
+ "Healthy": {
+ "short_form": "Healthy",
+ "long_form": "Property/Agent-property/Agent-state/Agent-physiological-state/Healthy",
+ "description": "Having no significant health-related issues.",
+ "parent": "Agent-physiological-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Sick"
+ ],
+ "hedId": "HED_0012451"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Sick"
+ ],
+ "hedId": "HED_0012451"
+ }
+ },
+ "Hungry": {
+ "short_form": "Hungry",
+ "long_form": "Property/Agent-property/Agent-state/Agent-physiological-state/Hungry",
+ "description": "Being in a state of craving or desiring food.",
+ "parent": "Agent-physiological-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Sated",
+ "Thirsty"
+ ],
+ "hedId": "HED_0012452"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Sated",
+ "Thirsty"
+ ],
+ "hedId": "HED_0012452"
+ }
+ },
+ "Rested": {
+ "short_form": "Rested",
+ "long_form": "Property/Agent-property/Agent-state/Agent-physiological-state/Rested",
+ "description": "Feeling refreshed and relaxed.",
+ "parent": "Agent-physiological-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Tired"
+ ],
+ "hedId": "HED_0012453"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Tired"
+ ],
+ "hedId": "HED_0012453"
+ }
+ },
+ "Sated": {
+ "short_form": "Sated",
+ "long_form": "Property/Agent-property/Agent-state/Agent-physiological-state/Sated",
+ "description": "Feeling full.",
+ "parent": "Agent-physiological-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Hungry"
+ ],
+ "hedId": "HED_0012454"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Hungry"
+ ],
+ "hedId": "HED_0012454"
+ }
+ },
+ "Sick": {
+ "short_form": "Sick",
+ "long_form": "Property/Agent-property/Agent-state/Agent-physiological-state/Sick",
+ "description": "Being in a state of ill health, bodily malfunction, or discomfort.",
+ "parent": "Agent-physiological-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Healthy"
+ ],
+ "hedId": "HED_0012455"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Healthy"
+ ],
+ "hedId": "HED_0012455"
+ }
+ },
+ "Thirsty": {
+ "short_form": "Thirsty",
+ "long_form": "Property/Agent-property/Agent-state/Agent-physiological-state/Thirsty",
+ "description": "Feeling a need to drink.",
+ "parent": "Agent-physiological-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Hungry"
+ ],
+ "hedId": "HED_0012456"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Hungry"
+ ],
+ "hedId": "HED_0012456"
+ }
+ },
+ "Tired": {
+ "short_form": "Tired",
+ "long_form": "Property/Agent-property/Agent-state/Agent-physiological-state/Tired",
+ "description": "Feeling in need of sleep or rest.",
+ "parent": "Agent-physiological-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Rested"
+ ],
+ "hedId": "HED_0012457"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Rested"
+ ],
+ "hedId": "HED_0012457"
+ }
+ },
+ "Agent-postural-state": {
+ "short_form": "Agent-postural-state",
+ "long_form": "Property/Agent-property/Agent-state/Agent-postural-state",
+ "description": "Pertaining to the position in which agent holds their body.",
+ "parent": "Agent-state",
+ "children": [
+ "Crouching",
+ "Eyes-closed",
+ "Eyes-open",
+ "Kneeling",
+ "On-treadmill",
+ "Prone",
+ "Seated-with-chin-rest",
+ "Sitting",
+ "Standing"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012458"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012458"
+ }
+ },
+ "Crouching": {
+ "short_form": "Crouching",
+ "long_form": "Property/Agent-property/Agent-state/Agent-postural-state/Crouching",
+ "description": "Adopting a position where the knees are bent and the upper body is brought forward and down, sometimes to avoid detection or to defend oneself.",
+ "parent": "Agent-postural-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012459"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012459"
+ }
+ },
+ "Eyes-closed": {
+ "short_form": "Eyes-closed",
+ "long_form": "Property/Agent-property/Agent-state/Agent-postural-state/Eyes-closed",
+ "description": "Keeping eyes closed with no blinking.",
+ "parent": "Agent-postural-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012460"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012460"
+ }
+ },
+ "Eyes-open": {
+ "short_form": "Eyes-open",
+ "long_form": "Property/Agent-property/Agent-state/Agent-postural-state/Eyes-open",
+ "description": "Keeping eyes open with occasional blinking.",
+ "parent": "Agent-postural-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012461"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012461"
+ }
+ },
+ "Kneeling": {
+ "short_form": "Kneeling",
+ "long_form": "Property/Agent-property/Agent-state/Agent-postural-state/Kneeling",
+ "description": "Positioned where one or both knees are on the ground.",
+ "parent": "Agent-postural-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012462"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012462"
+ }
+ },
+ "On-treadmill": {
+ "short_form": "On-treadmill",
+ "long_form": "Property/Agent-property/Agent-state/Agent-postural-state/On-treadmill",
+ "description": "Ambulation on an exercise apparatus with an endless moving belt to support moving in place.",
+ "parent": "Agent-postural-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012463"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012463"
+ }
+ },
+ "Prone": {
+ "short_form": "Prone",
+ "long_form": "Property/Agent-property/Agent-state/Agent-postural-state/Prone",
+ "description": "Positioned in a recumbent body position whereby the person lies on its stomach and faces downward.",
+ "parent": "Agent-postural-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012464"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012464"
+ }
+ },
+ "Seated-with-chin-rest": {
+ "short_form": "Seated-with-chin-rest",
+ "long_form": "Property/Agent-property/Agent-state/Agent-postural-state/Seated-with-chin-rest",
+ "description": "Using a device that supports the chin and head.",
+ "parent": "Agent-postural-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012465"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012465"
+ }
+ },
+ "Sitting": {
+ "short_form": "Sitting",
+ "long_form": "Property/Agent-property/Agent-state/Agent-postural-state/Sitting",
+ "description": "In a seated position.",
+ "parent": "Agent-postural-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012466"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012466"
+ }
+ },
+ "Standing": {
+ "short_form": "Standing",
+ "long_form": "Property/Agent-property/Agent-state/Agent-postural-state/Standing",
+ "description": "Assuming or maintaining an erect upright position.",
+ "parent": "Agent-postural-state",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012467"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012467"
+ }
+ },
+ "Agent-task-role": {
+ "short_form": "Agent-task-role",
+ "long_form": "Property/Agent-property/Agent-task-role",
+ "description": "The function or part that is ascribed to an agent in performing the task.",
+ "parent": "Agent-property",
+ "children": [
+ "Experiment-actor",
+ "Experiment-controller",
+ "Experiment-participant",
+ "Experimenter"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012468"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012468"
+ }
+ },
+ "Experiment-actor": {
+ "short_form": "Experiment-actor",
+ "long_form": "Property/Agent-property/Agent-task-role/Experiment-actor",
+ "description": "An agent who plays a predetermined role to create the experiment scenario.",
+ "parent": "Agent-task-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012469"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012469"
+ }
+ },
+ "Experiment-controller": {
+ "short_form": "Experiment-controller",
+ "long_form": "Property/Agent-property/Agent-task-role/Experiment-controller",
+ "description": "An agent exerting control over some aspect of the experiment.",
+ "parent": "Agent-task-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012470"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012470"
+ }
+ },
+ "Experiment-participant": {
+ "short_form": "Experiment-participant",
+ "long_form": "Property/Agent-property/Agent-task-role/Experiment-participant",
+ "description": "Someone who takes part in an activity related to an experiment.",
+ "parent": "Agent-task-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012471"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012471"
+ }
+ },
+ "Experimenter": {
+ "short_form": "Experimenter",
+ "long_form": "Property/Agent-property/Agent-task-role/Experimenter",
+ "description": "Person who is the owner of the experiment and has its responsibility.",
+ "parent": "Agent-task-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012472"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012472"
+ }
+ },
+ "Agent-trait": {
+ "short_form": "Agent-trait",
+ "long_form": "Property/Agent-property/Agent-trait",
+ "description": "A genetically, environmentally, or socially determined characteristic of an agent.",
+ "parent": "Agent-property",
+ "children": [
+ "Age",
+ "Agent-experience-level",
+ "Ethnicity",
+ "Gender",
+ "Handedness",
+ "Race",
+ "Sex"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012473"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012473"
+ }
+ },
+ "Age": {
+ "short_form": "Age",
+ "long_form": "Property/Agent-property/Agent-trait/Age",
+ "description": "Length of time elapsed time since birth of the agent.",
+ "parent": "Agent-trait",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012474"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012474"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "timeUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012475"
+ }
+ },
+ "Agent-experience-level": {
+ "short_form": "Agent-experience-level",
+ "long_form": "Property/Agent-property/Agent-trait/Agent-experience-level",
+ "description": "Amount of skill or knowledge that the agent has as pertains to the task.",
+ "parent": "Agent-trait",
+ "children": [
+ "Expert-level",
+ "Intermediate-experience-level",
+ "Novice-level"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012476"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012476"
+ }
+ },
+ "Expert-level": {
+ "short_form": "Expert-level",
+ "long_form": "Property/Agent-property/Agent-trait/Agent-experience-level/Expert-level",
+ "description": "Having comprehensive and authoritative knowledge of or skill in a particular area related to the task.",
+ "parent": "Agent-experience-level",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Intermediate-experience-level",
+ "Novice-level"
+ ],
+ "hedId": "HED_0012477"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Intermediate-experience-level",
+ "Novice-level"
+ ],
+ "hedId": "HED_0012477"
+ }
+ },
+ "Intermediate-experience-level": {
+ "short_form": "Intermediate-experience-level",
+ "long_form": "Property/Agent-property/Agent-trait/Agent-experience-level/Intermediate-experience-level",
+ "description": "Having a moderate amount of knowledge or skill related to the task.",
+ "parent": "Agent-experience-level",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Expert-level",
+ "Novice-level"
+ ],
+ "hedId": "HED_0012478"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Expert-level",
+ "Novice-level"
+ ],
+ "hedId": "HED_0012478"
+ }
+ },
+ "Novice-level": {
+ "short_form": "Novice-level",
+ "long_form": "Property/Agent-property/Agent-trait/Agent-experience-level/Novice-level",
+ "description": "Being inexperienced in a field or situation related to the task.",
+ "parent": "Agent-experience-level",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Expert-level",
+ "Intermediate-experience-level"
+ ],
+ "hedId": "HED_0012479"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Expert-level",
+ "Intermediate-experience-level"
+ ],
+ "hedId": "HED_0012479"
+ }
+ },
+ "Ethnicity": {
+ "short_form": "Ethnicity",
+ "long_form": "Property/Agent-property/Agent-trait/Ethnicity",
+ "description": "Belong to a social group that has a common national or cultural tradition. Use with Label to avoid extension.",
+ "parent": "Agent-trait",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012480"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012480"
+ }
+ },
+ "Gender": {
+ "short_form": "Gender",
+ "long_form": "Property/Agent-property/Agent-trait/Gender",
+ "description": "Characteristics that are socially constructed, including norms, behaviors, and roles based on sex.",
+ "parent": "Agent-trait",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012481"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012481"
+ }
+ },
+ "Handedness": {
+ "short_form": "Handedness",
+ "long_form": "Property/Agent-property/Agent-trait/Handedness",
+ "description": "Individual preference for use of a hand, known as the dominant hand.",
+ "parent": "Agent-trait",
+ "children": [
+ "Ambidextrous",
+ "Left-handed",
+ "Right-handed"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012482"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012482"
+ }
+ },
+ "Ambidextrous": {
+ "short_form": "Ambidextrous",
+ "long_form": "Property/Agent-property/Agent-trait/Handedness/Ambidextrous",
+ "description": "Having no overall dominance in the use of right or left hand or foot in the performance of tasks that require one hand or foot.",
+ "parent": "Handedness",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012483"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012483"
+ }
+ },
+ "Left-handed": {
+ "short_form": "Left-handed",
+ "long_form": "Property/Agent-property/Agent-trait/Handedness/Left-handed",
+ "description": "Preference for using the left hand or foot for tasks requiring the use of a single hand or foot.",
+ "parent": "Handedness",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012484"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012484"
+ }
+ },
+ "Right-handed": {
+ "short_form": "Right-handed",
+ "long_form": "Property/Agent-property/Agent-trait/Handedness/Right-handed",
+ "description": "Preference for using the right hand or foot for tasks requiring the use of a single hand or foot.",
+ "parent": "Handedness",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012485"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012485"
+ }
+ },
+ "Race": {
+ "short_form": "Race",
+ "long_form": "Property/Agent-property/Agent-trait/Race",
+ "description": "Belonging to a group sharing physical or social qualities as defined within a specified society. Use with Label to avoid extension.",
+ "parent": "Agent-trait",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012486"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012486"
+ }
+ },
+ "Sex": {
+ "short_form": "Sex",
+ "long_form": "Property/Agent-property/Agent-trait/Sex",
+ "description": "Physical properties or qualities by which male is distinguished from female.",
+ "parent": "Agent-trait",
+ "children": [
+ "Female",
+ "Intersex",
+ "Male",
+ "Other-sex"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012487"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012487"
+ }
+ },
+ "Female": {
+ "short_form": "Female",
+ "long_form": "Property/Agent-property/Agent-trait/Sex/Female",
+ "description": "Biological sex of an individual with female sexual organs such ova.",
+ "parent": "Sex",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012488"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012488"
+ }
+ },
+ "Intersex": {
+ "short_form": "Intersex",
+ "long_form": "Property/Agent-property/Agent-trait/Sex/Intersex",
+ "description": "Having genitalia and/or secondary sexual characteristics of indeterminate sex.",
+ "parent": "Sex",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012489"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012489"
+ }
+ },
+ "Male": {
+ "short_form": "Male",
+ "long_form": "Property/Agent-property/Agent-trait/Sex/Male",
+ "description": "Biological sex of an individual with male sexual organs producing sperm.",
+ "parent": "Sex",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012490"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012490"
+ }
+ },
+ "Other-sex": {
+ "short_form": "Other-sex",
+ "long_form": "Property/Agent-property/Agent-trait/Sex/Other-sex",
+ "description": "A non-specific designation of sexual traits.",
+ "parent": "Sex",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012491"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012491"
+ }
+ },
+ "Data-property": {
+ "short_form": "Data-property",
+ "long_form": "Property/Data-property",
+ "description": "Something that pertains to data or information.",
+ "parent": "Property",
+ "children": [
+ "Data-artifact",
+ "Data-marker",
+ "Data-resolution",
+ "Data-source-type",
+ "Data-value",
+ "Data-variability-attribute"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012492"
+ },
+ "explicitAttributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012492"
+ }
+ },
+ "Data-artifact": {
+ "short_form": "Data-artifact",
+ "long_form": "Property/Data-property/Data-artifact",
+ "description": "An anomalous, interfering, or distorting signal originating from a source other than the item being studied.",
+ "parent": "Data-property",
+ "children": [
+ "Biological-artifact",
+ "Nonbiological-artifact"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012493"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012493"
+ }
+ },
+ "Biological-artifact": {
+ "short_form": "Biological-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Biological-artifact",
+ "description": "A data artifact arising from a biological entity being measured.",
+ "parent": "Data-artifact",
+ "children": [
+ "Chewing-artifact",
+ "ECG-artifact",
+ "EMG-artifact",
+ "Eye-artifact",
+ "Movement-artifact",
+ "Pulse-artifact",
+ "Respiration-artifact",
+ "Rocking-patting-artifact",
+ "Sucking-artifact",
+ "Sweat-artifact",
+ "Tongue-movement-artifact"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012494"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012494"
+ }
+ },
+ "Chewing-artifact": {
+ "short_form": "Chewing-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Biological-artifact/Chewing-artifact",
+ "description": "Artifact from moving the jaw in a chewing motion.",
+ "parent": "Biological-artifact",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012495"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012495"
+ }
+ },
+ "ECG-artifact": {
+ "short_form": "ECG-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Biological-artifact/ECG-artifact",
+ "description": "An electrical artifact from the far-field potential from pulsation of the heart, time locked to QRS complex.",
+ "parent": "Biological-artifact",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012496"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012496"
+ }
+ },
+ "EMG-artifact": {
+ "short_form": "EMG-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Biological-artifact/EMG-artifact",
+ "description": "Artifact from muscle activity and myogenic potentials at the measurements site. In EEG, myogenic potentials are the most common artifacts. Frontalis and temporalis muscles (e.g. clenching of jaw muscles) are common causes. Generally, the potentials generated in the muscles are of shorter duration than those generated in the brain. The frequency components are usually beyond 30-50 Hz, and the bursts are arrhythmic.",
+ "parent": "Biological-artifact",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012497"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012497"
+ }
+ },
+ "Eye-artifact": {
+ "short_form": "Eye-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Biological-artifact/Eye-artifact",
+ "description": "Ocular movements and blinks can result in artifacts in different types of data. In electrophysiology data, these can result transients and offsets the signal.",
+ "parent": "Biological-artifact",
+ "children": [
+ "Eye-blink-artifact",
+ "Eye-movement-artifact"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012498"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012498"
+ }
+ },
+ "Eye-blink-artifact": {
+ "short_form": "Eye-blink-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Biological-artifact/Eye-artifact/Eye-blink-artifact",
+ "description": "Artifact from eye blinking. In EEG, Fp1/Fp2 electrodes become electro-positive with eye closure because the cornea is positively charged causing a negative deflection in Fp1/Fp2. If the eye blink is unilateral, consider prosthetic eye.",
+ "parent": "Eye-artifact",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012499"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012499"
+ }
+ },
+ "Eye-movement-artifact": {
+ "short_form": "Eye-movement-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Biological-artifact/Eye-artifact/Eye-movement-artifact",
+ "description": "Eye movements can cause artifacts on recordings. The charge of the eye can especially cause artifacts in electrophysiology data.",
+ "parent": "Eye-artifact",
+ "children": [
+ "Horizontal-eye-movement-artifact",
+ "Nystagmus-artifact",
+ "Slow-eye-movement-artifact",
+ "Vertical-eye-movement-artifact"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012500"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012500"
+ }
+ },
+ "Horizontal-eye-movement-artifact": {
+ "short_form": "Horizontal-eye-movement-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Biological-artifact/Eye-artifact/Eye-movement-artifact/Horizontal-eye-movement-artifact",
+ "description": "Artifact from moving eyes left-to-right and right-to-left. In EEG, there is an upward deflection in the Fp2-F8 derivation, when the eyes move to the right side. In this case F8 becomes more positive and therefore. When the eyes move to the left, F7 becomes more positive and there is an upward deflection in the Fp1-F7 derivation.",
+ "parent": "Eye-movement-artifact",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012501"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012501"
+ }
+ },
+ "Nystagmus-artifact": {
+ "short_form": "Nystagmus-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Biological-artifact/Eye-artifact/Eye-movement-artifact/Nystagmus-artifact",
+ "description": "Artifact from nystagmus (a vision condition in which the eyes make repetitive, uncontrolled movements).",
+ "parent": "Eye-movement-artifact",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012502"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012502"
+ }
+ },
+ "Slow-eye-movement-artifact": {
+ "short_form": "Slow-eye-movement-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Biological-artifact/Eye-artifact/Eye-movement-artifact/Slow-eye-movement-artifact",
+ "description": "Artifacts originating from slow, rolling eye-movements, seen during drowsiness.",
+ "parent": "Eye-movement-artifact",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012503"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012503"
+ }
+ },
+ "Vertical-eye-movement-artifact": {
+ "short_form": "Vertical-eye-movement-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Biological-artifact/Eye-artifact/Eye-movement-artifact/Vertical-eye-movement-artifact",
+ "description": "Artifact from moving eyes up and down. In EEG, this causes positive potentials (50-100 micro V) with bi-frontal distribution, maximum at Fp1 and Fp2, when the eyeball rotates upward. The downward rotation of the eyeball is associated with the negative deflection. The time course of the deflections is similar to the time course of the eyeball movement.",
+ "parent": "Eye-movement-artifact",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012504"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012504"
+ }
+ },
+ "Movement-artifact": {
+ "short_form": "Movement-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Biological-artifact/Movement-artifact",
+ "description": "Artifact in the measured data generated by motion of the subject.",
+ "parent": "Biological-artifact",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012505"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012505"
+ }
+ },
+ "Pulse-artifact": {
+ "short_form": "Pulse-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Biological-artifact/Pulse-artifact",
+ "description": "A mechanical artifact from a pulsating blood vessel near a measurement site, cardio-ballistic artifact.",
+ "parent": "Biological-artifact",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012506"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012506"
+ }
+ },
+ "Respiration-artifact": {
+ "short_form": "Respiration-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Biological-artifact/Respiration-artifact",
+ "description": "Artifact from breathing.",
+ "parent": "Biological-artifact",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012507"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012507"
+ }
+ },
+ "Rocking-patting-artifact": {
+ "short_form": "Rocking-patting-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Biological-artifact/Rocking-patting-artifact",
+ "description": "Quasi-rhythmical artifacts in recordings most commonly seen in infants. Typically caused by a caregiver rocking or patting the infant.",
+ "parent": "Biological-artifact",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012508"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012508"
+ }
+ },
+ "Sucking-artifact": {
+ "short_form": "Sucking-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Biological-artifact/Sucking-artifact",
+ "description": "Artifact from sucking, typically seen in very young cases.",
+ "parent": "Biological-artifact",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012509"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012509"
+ }
+ },
+ "Sweat-artifact": {
+ "short_form": "Sweat-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Biological-artifact/Sweat-artifact",
+ "description": "Artifact from sweating. In EEG, this is a low amplitude undulating waveform that is usually greater than 2 seconds and may appear to be an unstable baseline.",
+ "parent": "Biological-artifact",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012510"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012510"
+ }
+ },
+ "Tongue-movement-artifact": {
+ "short_form": "Tongue-movement-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Biological-artifact/Tongue-movement-artifact",
+ "description": "Artifact from tongue movement (Glossokinetic). The tongue functions as a dipole, with the tip negative with respect to the base. In EEG, the artifact produced by the tongue has a broad potential field that drops from frontal to occipital areas, although it is less steep than that produced by eye movement artifacts. The amplitude of the potentials is greater inferiorly than in parasagittal regions; the frequency is variable but usually in the delta range. Chewing and sucking can produce similar artifacts.",
+ "parent": "Biological-artifact",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012511"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012511"
+ }
+ },
+ "Nonbiological-artifact": {
+ "short_form": "Nonbiological-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Nonbiological-artifact",
+ "description": "A data artifact arising from a non-biological source.",
+ "parent": "Data-artifact",
+ "children": [
+ "Artificial-ventilation-artifact",
+ "Dialysis-artifact",
+ "Electrode-movement-artifact",
+ "Electrode-pops-artifact",
+ "Induction-artifact",
+ "Line-noise-artifact",
+ "Salt-bridge-artifact"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012512"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012512"
+ }
+ },
+ "Artificial-ventilation-artifact": {
+ "short_form": "Artificial-ventilation-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Nonbiological-artifact/Artificial-ventilation-artifact",
+ "description": "Artifact stemming from mechanical ventilation. These can occur at the same rate as the ventilator, but also have other patterns.",
+ "parent": "Nonbiological-artifact",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012513"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012513"
+ }
+ },
+ "Dialysis-artifact": {
+ "short_form": "Dialysis-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Nonbiological-artifact/Dialysis-artifact",
+ "description": "Artifacts seen in recordings during continuous renal replacement therapy (dialysis).",
+ "parent": "Nonbiological-artifact",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012514"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012514"
+ }
+ },
+ "Electrode-movement-artifact": {
+ "short_form": "Electrode-movement-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Nonbiological-artifact/Electrode-movement-artifact",
+ "description": "Artifact from electrode movement.",
+ "parent": "Nonbiological-artifact",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012515"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012515"
+ }
+ },
+ "Electrode-pops-artifact": {
+ "short_form": "Electrode-pops-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Nonbiological-artifact/Electrode-pops-artifact",
+ "description": "Brief artifact with a steep rise and slow fall of an electrophysiological signal, most often caused by a loose electrode.",
+ "parent": "Nonbiological-artifact",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012516"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012516"
+ }
+ },
+ "Induction-artifact": {
+ "short_form": "Induction-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Nonbiological-artifact/Induction-artifact",
+ "description": "Artifacts induced by nearby equipment. In EEG, these are usually of high frequency.",
+ "parent": "Nonbiological-artifact",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012517"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012517"
+ }
+ },
+ "Line-noise-artifact": {
+ "short_form": "Line-noise-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Nonbiological-artifact/Line-noise-artifact",
+ "description": "Power line noise at 50 Hz or 60 Hz.",
+ "parent": "Nonbiological-artifact",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012518"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012518"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "frequencyUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012519"
+ }
+ },
+ "Salt-bridge-artifact": {
+ "short_form": "Salt-bridge-artifact",
+ "long_form": "Property/Data-property/Data-artifact/Nonbiological-artifact/Salt-bridge-artifact",
+ "description": "Artifact from salt-bridge between EEG electrodes.",
+ "parent": "Nonbiological-artifact",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012520"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012520"
+ }
+ },
+ "Data-marker": {
+ "short_form": "Data-marker",
+ "long_form": "Property/Data-property/Data-marker",
+ "description": "An indicator placed to mark something.",
+ "parent": "Data-property",
+ "children": [
+ "Data-break-marker",
+ "Temporal-marker"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012521"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012521"
+ }
+ },
+ "Data-break-marker": {
+ "short_form": "Data-break-marker",
+ "long_form": "Property/Data-property/Data-marker/Data-break-marker",
+ "description": "An indicator place to indicate a gap in the data.",
+ "parent": "Data-marker",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012522"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012522"
+ }
+ },
+ "Temporal-marker": {
+ "short_form": "Temporal-marker",
+ "long_form": "Property/Data-property/Data-marker/Temporal-marker",
+ "description": "An indicator placed at a particular time in the data.",
+ "parent": "Data-marker",
+ "children": [
+ "Inset",
+ "Offset",
+ "Onset",
+ "Pause",
+ "Time-out",
+ "Time-sync"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012523"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012523"
+ }
+ },
+ "Inset": {
+ "short_form": "Inset",
+ "long_form": "Property/Data-property/Data-marker/Temporal-marker/Inset",
+ "description": "Marks an intermediate point in an ongoing event of temporal extent.",
+ "parent": "Temporal-marker",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "reserved": true,
+ "topLevelTagGroup": true,
+ "relatedTag": [
+ "Onset",
+ "Offset"
+ ],
+ "hedId": "HED_0012524"
+ },
+ "explicitAttributes": {
+ "reserved": true,
+ "topLevelTagGroup": true,
+ "relatedTag": [
+ "Onset",
+ "Offset"
+ ],
+ "hedId": "HED_0012524"
+ }
+ },
+ "Offset": {
+ "short_form": "Offset",
+ "long_form": "Property/Data-property/Data-marker/Temporal-marker/Offset",
+ "description": "Marks the end of an event of temporal extent.",
+ "parent": "Temporal-marker",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "reserved": true,
+ "topLevelTagGroup": true,
+ "relatedTag": [
+ "Onset",
+ "Inset"
+ ],
+ "hedId": "HED_0012525"
+ },
+ "explicitAttributes": {
+ "reserved": true,
+ "topLevelTagGroup": true,
+ "relatedTag": [
+ "Onset",
+ "Inset"
+ ],
+ "hedId": "HED_0012525"
+ }
+ },
+ "Onset": {
+ "short_form": "Onset",
+ "long_form": "Property/Data-property/Data-marker/Temporal-marker/Onset",
+ "description": "Marks the start of an ongoing event of temporal extent.",
+ "parent": "Temporal-marker",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "reserved": true,
+ "topLevelTagGroup": true,
+ "relatedTag": [
+ "Inset",
+ "Offset"
+ ],
+ "hedId": "HED_0012526"
+ },
+ "explicitAttributes": {
+ "reserved": true,
+ "topLevelTagGroup": true,
+ "relatedTag": [
+ "Inset",
+ "Offset"
+ ],
+ "hedId": "HED_0012526"
+ }
+ },
+ "Pause": {
+ "short_form": "Pause",
+ "long_form": "Property/Data-property/Data-marker/Temporal-marker/Pause",
+ "description": "Indicates the temporary interruption of the operation of a process and subsequently a wait for a signal to continue.",
+ "parent": "Temporal-marker",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012527"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012527"
+ }
+ },
+ "Time-out": {
+ "short_form": "Time-out",
+ "long_form": "Property/Data-property/Data-marker/Temporal-marker/Time-out",
+ "description": "A cancellation or cessation that automatically occurs when a predefined interval of time has passed without a certain event occurring.",
+ "parent": "Temporal-marker",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012528"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012528"
+ }
+ },
+ "Time-sync": {
+ "short_form": "Time-sync",
+ "long_form": "Property/Data-property/Data-marker/Temporal-marker/Time-sync",
+ "description": "A synchronization signal whose purpose is to help synchronize different signals or processes. Often used to indicate a marker inserted into the recorded data to allow post hoc synchronization of concurrently recorded data streams.",
+ "parent": "Temporal-marker",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012529"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012529"
+ }
+ },
+ "Data-resolution": {
+ "short_form": "Data-resolution",
+ "long_form": "Property/Data-property/Data-resolution",
+ "description": "Smallest change in a quality being measured by an sensor that causes a perceptible change.",
+ "parent": "Data-property",
+ "children": [
+ "Printer-resolution",
+ "Screen-resolution",
+ "Sensory-resolution",
+ "Spatial-resolution",
+ "Spectral-resolution",
+ "Temporal-resolution"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012530"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012530"
+ }
+ },
+ "Printer-resolution": {
+ "short_form": "Printer-resolution",
+ "long_form": "Property/Data-property/Data-resolution/Printer-resolution",
+ "description": "Resolution of a printer, usually expressed as the number of dots-per-inch for a printer.",
+ "parent": "Data-resolution",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012531"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012531"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012532"
+ }
+ },
+ "Screen-resolution": {
+ "short_form": "Screen-resolution",
+ "long_form": "Property/Data-property/Data-resolution/Screen-resolution",
+ "description": "Resolution of a screen, usually expressed as the of pixels in a dimension for a digital display device.",
+ "parent": "Data-resolution",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012533"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012533"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012534"
+ }
+ },
+ "Sensory-resolution": {
+ "short_form": "Sensory-resolution",
+ "long_form": "Property/Data-property/Data-resolution/Sensory-resolution",
+ "description": "Resolution of measurements by a sensing device.",
+ "parent": "Data-resolution",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012535"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012535"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012536"
+ }
+ },
+ "Spatial-resolution": {
+ "short_form": "Spatial-resolution",
+ "long_form": "Property/Data-property/Data-resolution/Spatial-resolution",
+ "description": "Linear spacing of a spatial measurement.",
+ "parent": "Data-resolution",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012537"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012537"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012538"
+ }
+ },
+ "Spectral-resolution": {
+ "short_form": "Spectral-resolution",
+ "long_form": "Property/Data-property/Data-resolution/Spectral-resolution",
+ "description": "Measures the ability of a sensor to resolve features in the electromagnetic spectrum.",
+ "parent": "Data-resolution",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012539"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012539"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012540"
+ }
+ },
+ "Temporal-resolution": {
+ "short_form": "Temporal-resolution",
+ "long_form": "Property/Data-property/Data-resolution/Temporal-resolution",
+ "description": "Measures the ability of a sensor to resolve features in time.",
+ "parent": "Data-resolution",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012541"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012541"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012542"
+ }
+ },
+ "Data-source-type": {
+ "short_form": "Data-source-type",
+ "long_form": "Property/Data-property/Data-source-type",
+ "description": "The type of place, person, or thing from which the data comes or can be obtained.",
+ "parent": "Data-property",
+ "children": [
+ "Computed-feature",
+ "Computed-prediction",
+ "Expert-annotation",
+ "Instrument-measurement",
+ "Observation"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012543"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012543"
+ }
+ },
+ "Computed-feature": {
+ "short_form": "Computed-feature",
+ "long_form": "Property/Data-property/Data-source-type/Computed-feature",
+ "description": "A feature computed from the data by a tool. This tag should be grouped with a label of the form Toolname_propertyName.",
+ "parent": "Data-source-type",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012544"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012544"
+ }
+ },
+ "Computed-prediction": {
+ "short_form": "Computed-prediction",
+ "long_form": "Property/Data-property/Data-source-type/Computed-prediction",
+ "description": "A computed extrapolation of known data.",
+ "parent": "Data-source-type",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012545"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012545"
+ }
+ },
+ "Expert-annotation": {
+ "short_form": "Expert-annotation",
+ "long_form": "Property/Data-property/Data-source-type/Expert-annotation",
+ "description": "An explanatory or critical comment or other in-context information provided by an authority.",
+ "parent": "Data-source-type",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012546"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012546"
+ }
+ },
+ "Instrument-measurement": {
+ "short_form": "Instrument-measurement",
+ "long_form": "Property/Data-property/Data-source-type/Instrument-measurement",
+ "description": "Information obtained from a device that is used to measure material properties or make other observations.",
+ "parent": "Data-source-type",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012547"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012547"
+ }
+ },
+ "Observation": {
+ "short_form": "Observation",
+ "long_form": "Property/Data-property/Data-source-type/Observation",
+ "description": "Active acquisition of information from a primary source. Should be grouped with a label of the form AgentID_featureName.",
+ "parent": "Data-source-type",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012548"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012548"
+ }
+ },
+ "Data-value": {
+ "short_form": "Data-value",
+ "long_form": "Property/Data-property/Data-value",
+ "description": "Designation of the type of a data item.",
+ "parent": "Data-property",
+ "children": [
+ "Categorical-value",
+ "Physical-value",
+ "Quantitative-value",
+ "Spatiotemporal-value",
+ "Statistical-value"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012549"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012549"
+ }
+ },
+ "Categorical-value": {
+ "short_form": "Categorical-value",
+ "long_form": "Property/Data-property/Data-value/Categorical-value",
+ "description": "Indicates that something can take on a limited and usually fixed number of possible values.",
+ "parent": "Data-value",
+ "children": [
+ "Categorical-class-value",
+ "Categorical-judgment-value",
+ "Categorical-level-value",
+ "Categorical-location-value",
+ "Categorical-orientation-value"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012550"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012550"
+ }
+ },
+ "Categorical-class-value": {
+ "short_form": "Categorical-class-value",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-class-value",
+ "description": "Categorical values that fall into discrete classes such as true or false. The grouping is absolute in the sense that it is the same for all participants.",
+ "parent": "Categorical-value",
+ "children": [
+ "All",
+ "Correct",
+ "Explicit",
+ "False",
+ "Implicit",
+ "Invalid",
+ "None",
+ "Some",
+ "True",
+ "Unknown",
+ "Valid",
+ "Wrong"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012551"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012551"
+ }
+ },
+ "All": {
+ "short_form": "All",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-class-value/All",
+ "description": "To a complete degree or to the full or entire extent.",
+ "parent": "Categorical-class-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Some",
+ "None"
+ ],
+ "hedId": "HED_0012552"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Some",
+ "None"
+ ],
+ "hedId": "HED_0012552"
+ }
+ },
+ "Correct": {
+ "short_form": "Correct",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-class-value/Correct",
+ "description": "Free from error. Especially conforming to fact or truth.",
+ "parent": "Categorical-class-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Wrong"
+ ],
+ "hedId": "HED_0012553"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Wrong"
+ ],
+ "hedId": "HED_0012553"
+ }
+ },
+ "Explicit": {
+ "short_form": "Explicit",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-class-value/Explicit",
+ "description": "Stated clearly and in detail, leaving no room for confusion or doubt.",
+ "parent": "Categorical-class-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Implicit"
+ ],
+ "hedId": "HED_0012554"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Implicit"
+ ],
+ "hedId": "HED_0012554"
+ }
+ },
+ "False": {
+ "short_form": "False",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-class-value/False",
+ "description": "Not in accordance with facts, reality or definitive criteria.",
+ "parent": "Categorical-class-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "True"
+ ],
+ "hedId": "HED_0012555"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "True"
+ ],
+ "hedId": "HED_0012555"
+ }
+ },
+ "Implicit": {
+ "short_form": "Implicit",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-class-value/Implicit",
+ "description": "Implied though not plainly expressed.",
+ "parent": "Categorical-class-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Explicit"
+ ],
+ "hedId": "HED_0012556"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Explicit"
+ ],
+ "hedId": "HED_0012556"
+ }
+ },
+ "Invalid": {
+ "short_form": "Invalid",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-class-value/Invalid",
+ "description": "Not allowed or not conforming to the correct format or specifications.",
+ "parent": "Categorical-class-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Valid"
+ ],
+ "hedId": "HED_0012557"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Valid"
+ ],
+ "hedId": "HED_0012557"
+ }
+ },
+ "None": {
+ "short_form": "None",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-class-value/None",
+ "description": "No person or thing, nobody, not any.",
+ "parent": "Categorical-class-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "All",
+ "Some"
+ ],
+ "hedId": "HED_0012558"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "All",
+ "Some"
+ ],
+ "hedId": "HED_0012558"
+ }
+ },
+ "Some": {
+ "short_form": "Some",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-class-value/Some",
+ "description": "At least a small amount or number of, but not a large amount of, or often.",
+ "parent": "Categorical-class-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "All",
+ "None"
+ ],
+ "hedId": "HED_0012559"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "All",
+ "None"
+ ],
+ "hedId": "HED_0012559"
+ }
+ },
+ "True": {
+ "short_form": "True",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-class-value/True",
+ "description": "Conforming to facts, reality or definitive criteria.",
+ "parent": "Categorical-class-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "False"
+ ],
+ "hedId": "HED_0012560"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "False"
+ ],
+ "hedId": "HED_0012560"
+ }
+ },
+ "Unknown": {
+ "short_form": "Unknown",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-class-value/Unknown",
+ "description": "The information has not been provided.",
+ "parent": "Categorical-class-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Invalid"
+ ],
+ "hedId": "HED_0012561"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Invalid"
+ ],
+ "hedId": "HED_0012561"
+ }
+ },
+ "Valid": {
+ "short_form": "Valid",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-class-value/Valid",
+ "description": "Allowable, usable, or acceptable.",
+ "parent": "Categorical-class-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Invalid"
+ ],
+ "hedId": "HED_0012562"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Invalid"
+ ],
+ "hedId": "HED_0012562"
+ }
+ },
+ "Wrong": {
+ "short_form": "Wrong",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-class-value/Wrong",
+ "description": "Inaccurate or not correct.",
+ "parent": "Categorical-class-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Correct"
+ ],
+ "hedId": "HED_0012563"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Correct"
+ ],
+ "hedId": "HED_0012563"
+ }
+ },
+ "Categorical-judgment-value": {
+ "short_form": "Categorical-judgment-value",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value",
+ "description": "Categorical values that are based on the judgment or perception of the participant such familiar and famous.",
+ "parent": "Categorical-value",
+ "children": [
+ "Abnormal",
+ "Asymmetrical",
+ "Audible",
+ "Complex",
+ "Congruent",
+ "Constrained",
+ "Disordered",
+ "Familiar",
+ "Famous",
+ "Inaudible",
+ "Incongruent",
+ "Involuntary",
+ "Masked",
+ "Normal",
+ "Ordered",
+ "Simple",
+ "Symmetrical",
+ "Unconstrained",
+ "Unfamiliar",
+ "Unmasked",
+ "Voluntary"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012564"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012564"
+ }
+ },
+ "Abnormal": {
+ "short_form": "Abnormal",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Abnormal",
+ "description": "Deviating in any way from the state, position, structure, condition, behavior, or rule which is considered a norm.",
+ "parent": "Categorical-judgment-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Normal"
+ ],
+ "hedId": "HED_0012565"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Normal"
+ ],
+ "hedId": "HED_0012565"
+ }
+ },
+ "Asymmetrical": {
+ "short_form": "Asymmetrical",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Asymmetrical",
+ "description": "Lacking symmetry or having parts that fail to correspond to one another in shape, size, or arrangement.",
+ "parent": "Categorical-judgment-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Symmetrical"
+ ],
+ "hedId": "HED_0012566"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Symmetrical"
+ ],
+ "hedId": "HED_0012566"
+ }
+ },
+ "Audible": {
+ "short_form": "Audible",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Audible",
+ "description": "A sound that can be perceived by the participant.",
+ "parent": "Categorical-judgment-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Inaudible"
+ ],
+ "hedId": "HED_0012567"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Inaudible"
+ ],
+ "hedId": "HED_0012567"
+ }
+ },
+ "Complex": {
+ "short_form": "Complex",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Complex",
+ "description": "Hard, involved or complicated, elaborate, having many parts.",
+ "parent": "Categorical-judgment-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Simple"
+ ],
+ "hedId": "HED_0012568"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Simple"
+ ],
+ "hedId": "HED_0012568"
+ }
+ },
+ "Congruent": {
+ "short_form": "Congruent",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Congruent",
+ "description": "Concordance of multiple evidence lines. In agreement or harmony.",
+ "parent": "Categorical-judgment-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Incongruent"
+ ],
+ "hedId": "HED_0012569"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Incongruent"
+ ],
+ "hedId": "HED_0012569"
+ }
+ },
+ "Constrained": {
+ "short_form": "Constrained",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Constrained",
+ "description": "Keeping something within particular limits or bounds.",
+ "parent": "Categorical-judgment-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Unconstrained"
+ ],
+ "hedId": "HED_0012570"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Unconstrained"
+ ],
+ "hedId": "HED_0012570"
+ }
+ },
+ "Disordered": {
+ "short_form": "Disordered",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Disordered",
+ "description": "Not neatly arranged. Confused and untidy. A structural quality in which the parts of an object are non-rigid.",
+ "parent": "Categorical-judgment-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Ordered"
+ ],
+ "hedId": "HED_0012571"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Ordered"
+ ],
+ "hedId": "HED_0012571"
+ }
+ },
+ "Familiar": {
+ "short_form": "Familiar",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Familiar",
+ "description": "Recognized, familiar, or within the scope of knowledge.",
+ "parent": "Categorical-judgment-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Unfamiliar",
+ "Famous"
+ ],
+ "hedId": "HED_0012572"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Unfamiliar",
+ "Famous"
+ ],
+ "hedId": "HED_0012572"
+ }
+ },
+ "Famous": {
+ "short_form": "Famous",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Famous",
+ "description": "A person who has a high degree of recognition by the general population for his or her success or accomplishments. A famous person.",
+ "parent": "Categorical-judgment-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Familiar",
+ "Unfamiliar"
+ ],
+ "hedId": "HED_0012573"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Familiar",
+ "Unfamiliar"
+ ],
+ "hedId": "HED_0012573"
+ }
+ },
+ "Inaudible": {
+ "short_form": "Inaudible",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Inaudible",
+ "description": "A sound below the threshold of perception of the participant.",
+ "parent": "Categorical-judgment-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Audible"
+ ],
+ "hedId": "HED_0012574"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Audible"
+ ],
+ "hedId": "HED_0012574"
+ }
+ },
+ "Incongruent": {
+ "short_form": "Incongruent",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Incongruent",
+ "description": "Not in agreement or harmony.",
+ "parent": "Categorical-judgment-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Congruent"
+ ],
+ "hedId": "HED_0012575"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Congruent"
+ ],
+ "hedId": "HED_0012575"
+ }
+ },
+ "Involuntary": {
+ "short_form": "Involuntary",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Involuntary",
+ "description": "An action that is not made by choice. In the body, involuntary actions (such as blushing) occur automatically, and cannot be controlled by choice.",
+ "parent": "Categorical-judgment-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Voluntary"
+ ],
+ "hedId": "HED_0012576"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Voluntary"
+ ],
+ "hedId": "HED_0012576"
+ }
+ },
+ "Masked": {
+ "short_form": "Masked",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Masked",
+ "description": "Information exists but is not provided or is partially obscured due to security,privacy, or other concerns.",
+ "parent": "Categorical-judgment-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Unmasked"
+ ],
+ "hedId": "HED_0012577"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Unmasked"
+ ],
+ "hedId": "HED_0012577"
+ }
+ },
+ "Normal": {
+ "short_form": "Normal",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Normal",
+ "description": "Being approximately average or within certain limits. Conforming with or constituting a norm or standard or level or type or social norm.",
+ "parent": "Categorical-judgment-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Abnormal"
+ ],
+ "hedId": "HED_0012578"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Abnormal"
+ ],
+ "hedId": "HED_0012578"
+ }
+ },
+ "Ordered": {
+ "short_form": "Ordered",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Ordered",
+ "description": "Conforming to a logical or comprehensible arrangement of separate elements.",
+ "parent": "Categorical-judgment-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Disordered"
+ ],
+ "hedId": "HED_0012579"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Disordered"
+ ],
+ "hedId": "HED_0012579"
+ }
+ },
+ "Simple": {
+ "short_form": "Simple",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Simple",
+ "description": "Easily understood or presenting no difficulties.",
+ "parent": "Categorical-judgment-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Complex"
+ ],
+ "hedId": "HED_0012580"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Complex"
+ ],
+ "hedId": "HED_0012580"
+ }
+ },
+ "Symmetrical": {
+ "short_form": "Symmetrical",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Symmetrical",
+ "description": "Made up of exactly similar parts facing each other or around an axis. Showing aspects of symmetry.",
+ "parent": "Categorical-judgment-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Asymmetrical"
+ ],
+ "hedId": "HED_0012581"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Asymmetrical"
+ ],
+ "hedId": "HED_0012581"
+ }
+ },
+ "Unconstrained": {
+ "short_form": "Unconstrained",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Unconstrained",
+ "description": "Moving without restriction.",
+ "parent": "Categorical-judgment-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Constrained"
+ ],
+ "hedId": "HED_0012582"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Constrained"
+ ],
+ "hedId": "HED_0012582"
+ }
+ },
+ "Unfamiliar": {
+ "short_form": "Unfamiliar",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Unfamiliar",
+ "description": "Not having knowledge or experience of.",
+ "parent": "Categorical-judgment-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Familiar",
+ "Famous"
+ ],
+ "hedId": "HED_0012583"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Familiar",
+ "Famous"
+ ],
+ "hedId": "HED_0012583"
+ }
+ },
+ "Unmasked": {
+ "short_form": "Unmasked",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Unmasked",
+ "description": "Information is revealed.",
+ "parent": "Categorical-judgment-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Masked"
+ ],
+ "hedId": "HED_0012584"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Masked"
+ ],
+ "hedId": "HED_0012584"
+ }
+ },
+ "Voluntary": {
+ "short_form": "Voluntary",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Voluntary",
+ "description": "Using free will or design; not forced or compelled; controlled by individual volition.",
+ "parent": "Categorical-judgment-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Involuntary"
+ ],
+ "hedId": "HED_0012585"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Involuntary"
+ ],
+ "hedId": "HED_0012585"
+ }
+ },
+ "Categorical-level-value": {
+ "short_form": "Categorical-level-value",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-level-value",
+ "description": "Categorical values based on dividing a continuous variable into levels such as high and low.",
+ "parent": "Categorical-value",
+ "children": [
+ "Cold",
+ "Deep",
+ "High",
+ "Hot",
+ "Large",
+ "Liminal",
+ "Loud",
+ "Low",
+ "Medium",
+ "Negative",
+ "Positive",
+ "Quiet",
+ "Rough",
+ "Shallow",
+ "Small",
+ "Smooth",
+ "Subliminal",
+ "Supraliminal",
+ "Thick",
+ "Thin"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012586"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012586"
+ }
+ },
+ "Cold": {
+ "short_form": "Cold",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Cold",
+ "description": "Having an absence of heat.",
+ "parent": "Categorical-level-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Hot"
+ ],
+ "hedId": "HED_0012587"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Hot"
+ ],
+ "hedId": "HED_0012587"
+ }
+ },
+ "Deep": {
+ "short_form": "Deep",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Deep",
+ "description": "Extending relatively far inward or downward.",
+ "parent": "Categorical-level-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Shallow"
+ ],
+ "hedId": "HED_0012588"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Shallow"
+ ],
+ "hedId": "HED_0012588"
+ }
+ },
+ "High": {
+ "short_form": "High",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High",
+ "description": "Having a greater than normal degree, intensity, or amount.",
+ "parent": "Categorical-level-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Low",
+ "Medium"
+ ],
+ "hedId": "HED_0012589"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Low",
+ "Medium"
+ ],
+ "hedId": "HED_0012589"
+ }
+ },
+ "Hot": {
+ "short_form": "Hot",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Hot",
+ "description": "Having an excess of heat.",
+ "parent": "Categorical-level-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Cold"
+ ],
+ "hedId": "HED_0012590"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Cold"
+ ],
+ "hedId": "HED_0012590"
+ }
+ },
+ "Large": {
+ "short_form": "Large",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Large",
+ "description": "Having a great extent such as in physical dimensions, period of time, amplitude or frequency.",
+ "parent": "Categorical-level-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Small"
+ ],
+ "hedId": "HED_0012591"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Small"
+ ],
+ "hedId": "HED_0012591"
+ }
+ },
+ "Liminal": {
+ "short_form": "Liminal",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Liminal",
+ "description": "Situated at a sensory threshold that is barely perceptible or capable of eliciting a response.",
+ "parent": "Categorical-level-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Subliminal",
+ "Supraliminal"
+ ],
+ "hedId": "HED_0012592"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Subliminal",
+ "Supraliminal"
+ ],
+ "hedId": "HED_0012592"
+ }
+ },
+ "Loud": {
+ "short_form": "Loud",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Loud",
+ "description": "Having a perceived high intensity of sound.",
+ "parent": "Categorical-level-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Quiet"
+ ],
+ "hedId": "HED_0012593"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Quiet"
+ ],
+ "hedId": "HED_0012593"
+ }
+ },
+ "Low": {
+ "short_form": "Low",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Low",
+ "description": "Less than normal in degree, intensity or amount.",
+ "parent": "Categorical-level-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "High"
+ ],
+ "hedId": "HED_0012594"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "High"
+ ],
+ "hedId": "HED_0012594"
+ }
+ },
+ "Medium": {
+ "short_form": "Medium",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Medium",
+ "description": "Mid-way between small and large in number, quantity, magnitude or extent.",
+ "parent": "Categorical-level-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Low",
+ "High"
+ ],
+ "hedId": "HED_0012595"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Low",
+ "High"
+ ],
+ "hedId": "HED_0012595"
+ }
+ },
+ "Negative": {
+ "short_form": "Negative",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Negative",
+ "description": "Involving disadvantage or harm.",
+ "parent": "Categorical-level-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Positive"
+ ],
+ "hedId": "HED_0012596"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Positive"
+ ],
+ "hedId": "HED_0012596"
+ }
+ },
+ "Positive": {
+ "short_form": "Positive",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Positive",
+ "description": "Involving advantage or good.",
+ "parent": "Categorical-level-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Negative"
+ ],
+ "hedId": "HED_0012597"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Negative"
+ ],
+ "hedId": "HED_0012597"
+ }
+ },
+ "Quiet": {
+ "short_form": "Quiet",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Quiet",
+ "description": "Characterizing a perceived low intensity of sound.",
+ "parent": "Categorical-level-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Loud"
+ ],
+ "hedId": "HED_0012598"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Loud"
+ ],
+ "hedId": "HED_0012598"
+ }
+ },
+ "Rough": {
+ "short_form": "Rough",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Rough",
+ "description": "Having a surface with perceptible bumps, ridges, or irregularities.",
+ "parent": "Categorical-level-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Smooth"
+ ],
+ "hedId": "HED_0012599"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Smooth"
+ ],
+ "hedId": "HED_0012599"
+ }
+ },
+ "Shallow": {
+ "short_form": "Shallow",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Shallow",
+ "description": "Having a depth which is relatively low.",
+ "parent": "Categorical-level-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Deep"
+ ],
+ "hedId": "HED_0012600"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Deep"
+ ],
+ "hedId": "HED_0012600"
+ }
+ },
+ "Small": {
+ "short_form": "Small",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Small",
+ "description": "Having a small extent such as in physical dimensions, period of time, amplitude or frequency.",
+ "parent": "Categorical-level-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Large"
+ ],
+ "hedId": "HED_0012601"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Large"
+ ],
+ "hedId": "HED_0012601"
+ }
+ },
+ "Smooth": {
+ "short_form": "Smooth",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Smooth",
+ "description": "Having a surface free from bumps, ridges, or irregularities.",
+ "parent": "Categorical-level-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Rough"
+ ],
+ "hedId": "HED_0012602"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Rough"
+ ],
+ "hedId": "HED_0012602"
+ }
+ },
+ "Subliminal": {
+ "short_form": "Subliminal",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Subliminal",
+ "description": "Situated below a sensory threshold that is imperceptible or not capable of eliciting a response.",
+ "parent": "Categorical-level-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Liminal",
+ "Supraliminal"
+ ],
+ "hedId": "HED_0012603"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Liminal",
+ "Supraliminal"
+ ],
+ "hedId": "HED_0012603"
+ }
+ },
+ "Supraliminal": {
+ "short_form": "Supraliminal",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Supraliminal",
+ "description": "Situated above a sensory threshold that is perceptible or capable of eliciting a response.",
+ "parent": "Categorical-level-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Liminal",
+ "Subliminal"
+ ],
+ "hedId": "HED_0012604"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Liminal",
+ "Subliminal"
+ ],
+ "hedId": "HED_0012604"
+ }
+ },
+ "Thick": {
+ "short_form": "Thick",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Thick",
+ "description": "Wide in width, extent or cross-section.",
+ "parent": "Categorical-level-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Thin"
+ ],
+ "hedId": "HED_0012605"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Thin"
+ ],
+ "hedId": "HED_0012605"
+ }
+ },
+ "Thin": {
+ "short_form": "Thin",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Thin",
+ "description": "Narrow in width, extent or cross-section.",
+ "parent": "Categorical-level-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Thick"
+ ],
+ "hedId": "HED_0012606"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Thick"
+ ],
+ "hedId": "HED_0012606"
+ }
+ },
+ "Categorical-location-value": {
+ "short_form": "Categorical-location-value",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-location-value",
+ "description": "Value indicating the location of something, primarily as an identifier rather than an expression of where the item is relative to something else.",
+ "parent": "Categorical-value",
+ "children": [
+ "Anterior",
+ "Lateral",
+ "Left",
+ "Medial",
+ "Posterior",
+ "Right"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012607"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012607"
+ }
+ },
+ "Anterior": {
+ "short_form": "Anterior",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-location-value/Anterior",
+ "description": "Relating to an item on the front of an agent body (from the point of view of the agent) or on the front of an object from the point of view of an agent. This pertains to the identity of an agent or a thing.",
+ "parent": "Categorical-location-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012608"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012608"
+ }
+ },
+ "Lateral": {
+ "short_form": "Lateral",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-location-value/Lateral",
+ "description": "Identifying the portion of an object away from the midline, particularly applied to the (anterior-posterior, superior-inferior) surface of a brain.",
+ "parent": "Categorical-location-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012609"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012609"
+ }
+ },
+ "Left": {
+ "short_form": "Left",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-location-value/Left",
+ "description": "Relating to an item on the left side of an agent body (from the point of view of the agent) or the left side of an object from the point of view of an agent. This pertains to the identity of an agent or a thing, for example (Left, Hand) as an identifier for the left hand. HED spatial relations should be used for relative positions such as (Hand, (Left-side-of, Keyboard)), which denotes the hand placed on the left side of the keyboard, which could be either the identified left hand or right hand.",
+ "parent": "Categorical-location-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012610"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012610"
+ }
+ },
+ "Medial": {
+ "short_form": "Medial",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-location-value/Medial",
+ "description": "Identifying the portion of an object towards the center, particularly applied to the (anterior-posterior, superior-inferior) surface of a brain.",
+ "parent": "Categorical-location-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012611"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012611"
+ }
+ },
+ "Posterior": {
+ "short_form": "Posterior",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-location-value/Posterior",
+ "description": "Relating to an item on the back of an agent body (from the point of view of the agent) or on the back of an object from the point of view of an agent. This pertains to the identity of an agent or a thing.",
+ "parent": "Categorical-location-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012612"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012612"
+ }
+ },
+ "Right": {
+ "short_form": "Right",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-location-value/Right",
+ "description": "Relating to an item on the right side of an agent body (from the point of view of the agent) or the right side of an object from the point of view of an agent. This pertains to the identity of an agent or a thing, for example (Right, Hand) as an identifier for the right hand. HED spatial relations should be used for relative positions such as (Hand, (Right-side-of, Keyboard)), which denotes the hand placed on the right side of the keyboard, which could be either the identified left hand or right hand.",
+ "parent": "Categorical-location-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012613"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012613"
+ }
+ },
+ "Categorical-orientation-value": {
+ "short_form": "Categorical-orientation-value",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-orientation-value",
+ "description": "Value indicating the orientation or direction of something.",
+ "parent": "Categorical-value",
+ "children": [
+ "Backward",
+ "Downward",
+ "Forward",
+ "Horizontally-oriented",
+ "Leftward",
+ "Oblique",
+ "Rightward",
+ "Rotated",
+ "Upward",
+ "Vertically-oriented"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012614"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012614"
+ }
+ },
+ "Backward": {
+ "short_form": "Backward",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-orientation-value/Backward",
+ "description": "Directed behind or to the rear.",
+ "parent": "Categorical-orientation-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Forward"
+ ],
+ "hedId": "HED_0012615"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Forward"
+ ],
+ "hedId": "HED_0012615"
+ }
+ },
+ "Downward": {
+ "short_form": "Downward",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-orientation-value/Downward",
+ "description": "Moving or leading toward a lower place or level.",
+ "parent": "Categorical-orientation-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Leftward",
+ "Rightward",
+ "Upward"
+ ],
+ "hedId": "HED_0012616"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Leftward",
+ "Rightward",
+ "Upward"
+ ],
+ "hedId": "HED_0012616"
+ }
+ },
+ "Forward": {
+ "short_form": "Forward",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-orientation-value/Forward",
+ "description": "At or near or directed toward the front.",
+ "parent": "Categorical-orientation-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Backward"
+ ],
+ "hedId": "HED_0012617"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Backward"
+ ],
+ "hedId": "HED_0012617"
+ }
+ },
+ "Horizontally-oriented": {
+ "short_form": "Horizontally-oriented",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-orientation-value/Horizontally-oriented",
+ "description": "Oriented parallel to or in the plane of the horizon.",
+ "parent": "Categorical-orientation-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Vertically-oriented"
+ ],
+ "hedId": "HED_0012618"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Vertically-oriented"
+ ],
+ "hedId": "HED_0012618"
+ }
+ },
+ "Leftward": {
+ "short_form": "Leftward",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-orientation-value/Leftward",
+ "description": "Going toward or facing the left.",
+ "parent": "Categorical-orientation-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Downward",
+ "Rightward",
+ "Upward"
+ ],
+ "hedId": "HED_0012619"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Downward",
+ "Rightward",
+ "Upward"
+ ],
+ "hedId": "HED_0012619"
+ }
+ },
+ "Oblique": {
+ "short_form": "Oblique",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-orientation-value/Oblique",
+ "description": "Slanting or inclined in direction, course, or position that is neither parallel nor perpendicular nor right-angular.",
+ "parent": "Categorical-orientation-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Rotated"
+ ],
+ "hedId": "HED_0012620"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Rotated"
+ ],
+ "hedId": "HED_0012620"
+ }
+ },
+ "Rightward": {
+ "short_form": "Rightward",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-orientation-value/Rightward",
+ "description": "Going toward or situated on the right.",
+ "parent": "Categorical-orientation-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Downward",
+ "Leftward",
+ "Upward"
+ ],
+ "hedId": "HED_0012621"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Downward",
+ "Leftward",
+ "Upward"
+ ],
+ "hedId": "HED_0012621"
+ }
+ },
+ "Rotated": {
+ "short_form": "Rotated",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-orientation-value/Rotated",
+ "description": "Positioned offset around an axis or center.",
+ "parent": "Categorical-orientation-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012622"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012622"
+ }
+ },
+ "Upward": {
+ "short_form": "Upward",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-orientation-value/Upward",
+ "description": "Moving, pointing, or leading to a higher place, point, or level.",
+ "parent": "Categorical-orientation-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Downward",
+ "Leftward",
+ "Rightward"
+ ],
+ "hedId": "HED_0012623"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Downward",
+ "Leftward",
+ "Rightward"
+ ],
+ "hedId": "HED_0012623"
+ }
+ },
+ "Vertically-oriented": {
+ "short_form": "Vertically-oriented",
+ "long_form": "Property/Data-property/Data-value/Categorical-value/Categorical-orientation-value/Vertically-oriented",
+ "description": "Oriented perpendicular to the plane of the horizon.",
+ "parent": "Categorical-orientation-value",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Horizontally-oriented"
+ ],
+ "hedId": "HED_0012624"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Horizontally-oriented"
+ ],
+ "hedId": "HED_0012624"
+ }
+ },
+ "Physical-value": {
+ "short_form": "Physical-value",
+ "long_form": "Property/Data-property/Data-value/Physical-value",
+ "description": "The value of some physical property of something.",
+ "parent": "Data-value",
+ "children": [
+ "Temperature",
+ "Weight"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012625"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012625"
+ }
+ },
+ "Temperature": {
+ "short_form": "Temperature",
+ "long_form": "Property/Data-property/Data-value/Physical-value/Temperature",
+ "description": "A measure of hot or cold based on the average kinetic energy of the atoms or molecules in the system.",
+ "parent": "Physical-value",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012626"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012626"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "temperatureUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012627"
+ }
+ },
+ "Weight": {
+ "short_form": "Weight",
+ "long_form": "Property/Data-property/Data-value/Physical-value/Weight",
+ "description": "The relative mass or the quantity of matter contained by something.",
+ "parent": "Physical-value",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012628"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012628"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "weightUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012629"
+ }
+ },
+ "Quantitative-value": {
+ "short_form": "Quantitative-value",
+ "long_form": "Property/Data-property/Data-value/Quantitative-value",
+ "description": "Something capable of being estimated or expressed with numeric values.",
+ "parent": "Data-value",
+ "children": [
+ "Fraction",
+ "Item-count",
+ "Item-index",
+ "Item-interval",
+ "Percentage",
+ "Ratio"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012630"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012630"
+ }
+ },
+ "Fraction": {
+ "short_form": "Fraction",
+ "long_form": "Property/Data-property/Data-value/Quantitative-value/Fraction",
+ "description": "A numerical value between 0 and 1.",
+ "parent": "Quantitative-value",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012631"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012631"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012632"
+ }
+ },
+ "Item-count": {
+ "short_form": "Item-count",
+ "long_form": "Property/Data-property/Data-value/Quantitative-value/Item-count",
+ "description": "The integer count of something which is usually grouped with the entity it is counting. (Item-count/3, A) indicates that 3 of A have occurred up to this point.",
+ "parent": "Quantitative-value",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012633"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012633"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012634"
+ }
+ },
+ "Item-index": {
+ "short_form": "Item-index",
+ "long_form": "Property/Data-property/Data-value/Quantitative-value/Item-index",
+ "description": "The index of an item in a collection, sequence or other structure. (A (Item-index/3, B)) means that A is item number 3 in B.",
+ "parent": "Quantitative-value",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012635"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012635"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012636"
+ }
+ },
+ "Item-interval": {
+ "short_form": "Item-interval",
+ "long_form": "Property/Data-property/Data-value/Quantitative-value/Item-interval",
+ "description": "An integer indicating how many items or entities have passed since the last one of these. An item interval of 0 indicates the current item.",
+ "parent": "Quantitative-value",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012637"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012637"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012638"
+ }
+ },
+ "Percentage": {
+ "short_form": "Percentage",
+ "long_form": "Property/Data-property/Data-value/Quantitative-value/Percentage",
+ "description": "A fraction or ratio with 100 understood as the denominator.",
+ "parent": "Quantitative-value",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012639"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012639"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012640"
+ }
+ },
+ "Ratio": {
+ "short_form": "Ratio",
+ "long_form": "Property/Data-property/Data-value/Quantitative-value/Ratio",
+ "description": "A quotient of quantities of the same kind for different components within the same system.",
+ "parent": "Quantitative-value",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012641"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012641"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012642"
+ }
+ },
+ "Spatiotemporal-value": {
+ "short_form": "Spatiotemporal-value",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value",
+ "description": "A property relating to space and/or time.",
+ "parent": "Data-value",
+ "children": [
+ "Rate-of-change",
+ "Spatial-value",
+ "Temporal-value"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012643"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012643"
+ }
+ },
+ "Rate-of-change": {
+ "short_form": "Rate-of-change",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Rate-of-change",
+ "description": "The amount of change accumulated per unit time.",
+ "parent": "Spatiotemporal-value",
+ "children": [
+ "Acceleration",
+ "Frequency",
+ "Jerk-rate",
+ "Refresh-rate",
+ "Sampling-rate",
+ "Speed",
+ "Temporal-rate"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012644"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012644"
+ }
+ },
+ "Acceleration": {
+ "short_form": "Acceleration",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Rate-of-change/Acceleration",
+ "description": "Magnitude of the rate of change in either speed or direction. The direction of change should be given separately.",
+ "parent": "Rate-of-change",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012645"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012645"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "accelerationUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012646"
+ }
+ },
+ "Frequency": {
+ "short_form": "Frequency",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Rate-of-change/Frequency",
+ "description": "Frequency is the number of occurrences of a repeating event per unit time.",
+ "parent": "Rate-of-change",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012647"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012647"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "frequencyUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012648"
+ }
+ },
+ "Jerk-rate": {
+ "short_form": "Jerk-rate",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Rate-of-change/Jerk-rate",
+ "description": "Magnitude of the rate at which the acceleration of an object changes with respect to time. The direction of change should be given separately.",
+ "parent": "Rate-of-change",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012649"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012649"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "jerkUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012650"
+ }
+ },
+ "Refresh-rate": {
+ "short_form": "Refresh-rate",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Rate-of-change/Refresh-rate",
+ "description": "The frequency with which the image on a computer monitor or similar electronic display screen is refreshed, usually expressed in hertz.",
+ "parent": "Rate-of-change",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012651"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012651"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012652"
+ }
+ },
+ "Sampling-rate": {
+ "short_form": "Sampling-rate",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Rate-of-change/Sampling-rate",
+ "description": "The number of digital samples taken or recorded per unit of time.",
+ "parent": "Rate-of-change",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012653"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012653"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "frequencyUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012654"
+ }
+ },
+ "Speed": {
+ "short_form": "Speed",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Rate-of-change/Speed",
+ "description": "A scalar measure of the rate of movement of the object expressed either as the distance traveled divided by the time taken (average speed) or the rate of change of position with respect to time at a particular point (instantaneous speed). The direction of change should be given separately.",
+ "parent": "Rate-of-change",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012655"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012655"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "speedUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012656"
+ }
+ },
+ "Temporal-rate": {
+ "short_form": "Temporal-rate",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Rate-of-change/Temporal-rate",
+ "description": "The number of items per unit of time.",
+ "parent": "Rate-of-change",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012657"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012657"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "frequencyUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012658"
+ }
+ },
+ "Spatial-value": {
+ "short_form": "Spatial-value",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value",
+ "description": "Value of an item involving space.",
+ "parent": "Spatiotemporal-value",
+ "children": [
+ "Angle",
+ "Distance",
+ "Position",
+ "Size"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012659"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012659"
+ }
+ },
+ "Angle": {
+ "short_form": "Angle",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Angle",
+ "description": "The amount of inclination of one line to another or the plane of one object to another.",
+ "parent": "Spatial-value",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012660"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012660"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "angleUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012661"
+ }
+ },
+ "Distance": {
+ "short_form": "Distance",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Distance",
+ "description": "A measure of the space separating two objects or points.",
+ "parent": "Spatial-value",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012662"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012662"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "physicalLengthUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012663"
+ }
+ },
+ "Position": {
+ "short_form": "Position",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Position",
+ "description": "A reference to the alignment of an object, a particular situation or view of a situation, or the location of an object. Coordinates with respect a specified frame of reference or the default Screen-frame if no frame is given.",
+ "parent": "Spatial-value",
+ "children": [
+ "Clock-face",
+ "Clock-face-position",
+ "X-position",
+ "Y-position",
+ "Z-position"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012664"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012664"
+ }
+ },
+ "Clock-face": {
+ "short_form": "Clock-face",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Position/Clock-face",
+ "description": "A location identifier based on clock-face numbering or anatomic subregion. Use Clock-face-position.",
+ "parent": "Position",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012326",
+ "deprecatedFrom": "8.2.0"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012326",
+ "deprecatedFrom": "8.2.0"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0013228",
+ "deprecatedFrom": "8.2.0"
+ }
+ },
+ "Clock-face-position": {
+ "short_form": "Clock-face-position",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Position/Clock-face-position",
+ "description": "A location identifier based on clock-face numbering or anatomic subregion. As an object, just use the tag Clock.",
+ "parent": "Position",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0013229"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013229"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0013230"
+ }
+ },
+ "X-position": {
+ "short_form": "X-position",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Position/X-position",
+ "description": "The position along the x-axis of the frame of reference.",
+ "parent": "Position",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012665"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012665"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "physicalLengthUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012666"
+ }
+ },
+ "Y-position": {
+ "short_form": "Y-position",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Position/Y-position",
+ "description": "The position along the y-axis of the frame of reference.",
+ "parent": "Position",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012667"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012667"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "physicalLengthUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012668"
+ }
+ },
+ "Z-position": {
+ "short_form": "Z-position",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Position/Z-position",
+ "description": "The position along the z-axis of the frame of reference.",
+ "parent": "Position",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012669"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012669"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "physicalLengthUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012670"
+ }
+ },
+ "Size": {
+ "short_form": "Size",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Size",
+ "description": "The physical magnitude of something.",
+ "parent": "Spatial-value",
+ "children": [
+ "Area",
+ "Depth",
+ "Height",
+ "Length",
+ "Perimeter",
+ "Radius",
+ "Volume",
+ "Width"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012671"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012671"
+ }
+ },
+ "Area": {
+ "short_form": "Area",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Size/Area",
+ "description": "The extent of a 2-dimensional surface enclosed within a boundary.",
+ "parent": "Size",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012672"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012672"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "areaUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012673"
+ }
+ },
+ "Depth": {
+ "short_form": "Depth",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Size/Depth",
+ "description": "The distance from the surface of something especially from the perspective of looking from the front.",
+ "parent": "Size",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012674"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012674"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "physicalLengthUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012675"
+ }
+ },
+ "Height": {
+ "short_form": "Height",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Size/Height",
+ "description": "The vertical measurement or distance from the base to the top of an object.",
+ "parent": "Size",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012676"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012676"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "physicalLengthUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012677"
+ }
+ },
+ "Length": {
+ "short_form": "Length",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Size/Length",
+ "description": "The linear extent in space from one end of something to the other end, or the extent of something from beginning to end.",
+ "parent": "Size",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012678"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012678"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "physicalLengthUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012679"
+ }
+ },
+ "Perimeter": {
+ "short_form": "Perimeter",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Size/Perimeter",
+ "description": "The minimum length of paths enclosing a 2D shape.",
+ "parent": "Size",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012680"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012680"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "physicalLengthUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012681"
+ }
+ },
+ "Radius": {
+ "short_form": "Radius",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Size/Radius",
+ "description": "The distance of the line from the center of a circle or a sphere to its perimeter or outer surface, respectively.",
+ "parent": "Size",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012682"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012682"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "physicalLengthUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012683"
+ }
+ },
+ "Volume": {
+ "short_form": "Volume",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Size/Volume",
+ "description": "The amount of three dimensional space occupied by an object or the capacity of a space or container.",
+ "parent": "Size",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012684"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012684"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "volumeUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012685"
+ }
+ },
+ "Width": {
+ "short_form": "Width",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Size/Width",
+ "description": "The extent or measurement of something from side to side.",
+ "parent": "Size",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012686"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012686"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "physicalLengthUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012687"
+ }
+ },
+ "Temporal-value": {
+ "short_form": "Temporal-value",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Temporal-value",
+ "description": "A characteristic of or relating to time or limited by time.",
+ "parent": "Spatiotemporal-value",
+ "children": [
+ "Delay",
+ "Duration",
+ "Time-interval",
+ "Time-value"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012688"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012688"
+ }
+ },
+ "Delay": {
+ "short_form": "Delay",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Temporal-value/Delay",
+ "description": "The time at which an event start time is delayed from the current onset time. This tag defines the start time of an event of temporal extent and may be used with the Duration tag.",
+ "parent": "Temporal-value",
+ "children": [],
+ "attributes": {
+ "requireChild": true,
+ "reserved": true,
+ "topLevelTagGroup": true,
+ "relatedTag": [
+ "Duration"
+ ],
+ "hedId": "HED_0012689"
+ },
+ "explicitAttributes": {
+ "requireChild": true,
+ "reserved": true,
+ "topLevelTagGroup": true,
+ "relatedTag": [
+ "Duration"
+ ],
+ "hedId": "HED_0012689"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "timeUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012690"
+ }
+ },
+ "Duration": {
+ "short_form": "Duration",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Temporal-value/Duration",
+ "description": "The period of time during which an event occurs. This tag defines the end time of an event of temporal extent and may be used with the Delay tag.",
+ "parent": "Temporal-value",
+ "children": [],
+ "attributes": {
+ "requireChild": true,
+ "reserved": true,
+ "topLevelTagGroup": true,
+ "relatedTag": [
+ "Delay"
+ ],
+ "hedId": "HED_0012691"
+ },
+ "explicitAttributes": {
+ "requireChild": true,
+ "reserved": true,
+ "topLevelTagGroup": true,
+ "relatedTag": [
+ "Delay"
+ ],
+ "hedId": "HED_0012691"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "timeUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012692"
+ }
+ },
+ "Time-interval": {
+ "short_form": "Time-interval",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Temporal-value/Time-interval",
+ "description": "The period of time separating two instances, events, or occurrences.",
+ "parent": "Temporal-value",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012693"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012693"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "timeUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012694"
+ }
+ },
+ "Time-value": {
+ "short_form": "Time-value",
+ "long_form": "Property/Data-property/Data-value/Spatiotemporal-value/Temporal-value/Time-value",
+ "description": "A value with units of time. Usually grouped with tags identifying what the value represents.",
+ "parent": "Temporal-value",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012695"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012695"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "timeUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012696"
+ }
+ },
+ "Statistical-value": {
+ "short_form": "Statistical-value",
+ "long_form": "Property/Data-property/Data-value/Statistical-value",
+ "description": "A value based on or employing the principles of statistics.",
+ "parent": "Data-value",
+ "children": [
+ "Data-maximum",
+ "Data-mean",
+ "Data-median",
+ "Data-minimum",
+ "Probability",
+ "Standard-deviation",
+ "Statistical-accuracy",
+ "Statistical-precision",
+ "Statistical-recall",
+ "Statistical-uncertainty"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012697"
+ },
+ "explicitAttributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012697"
+ }
+ },
+ "Data-maximum": {
+ "short_form": "Data-maximum",
+ "long_form": "Property/Data-property/Data-value/Statistical-value/Data-maximum",
+ "description": "The largest possible quantity or degree.",
+ "parent": "Statistical-value",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012698"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012698"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012699"
+ }
+ },
+ "Data-mean": {
+ "short_form": "Data-mean",
+ "long_form": "Property/Data-property/Data-value/Statistical-value/Data-mean",
+ "description": "The sum of a set of values divided by the number of values in the set.",
+ "parent": "Statistical-value",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012700"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012700"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012701"
+ }
+ },
+ "Data-median": {
+ "short_form": "Data-median",
+ "long_form": "Property/Data-property/Data-value/Statistical-value/Data-median",
+ "description": "The value which has an equal number of values greater and less than it.",
+ "parent": "Statistical-value",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012702"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012702"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012703"
+ }
+ },
+ "Data-minimum": {
+ "short_form": "Data-minimum",
+ "long_form": "Property/Data-property/Data-value/Statistical-value/Data-minimum",
+ "description": "The smallest possible quantity.",
+ "parent": "Statistical-value",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012704"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012704"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012705"
+ }
+ },
+ "Probability": {
+ "short_form": "Probability",
+ "long_form": "Property/Data-property/Data-value/Statistical-value/Probability",
+ "description": "A measure of the expectation of the occurrence of a particular event.",
+ "parent": "Statistical-value",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012706"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012706"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012707"
+ }
+ },
+ "Standard-deviation": {
+ "short_form": "Standard-deviation",
+ "long_form": "Property/Data-property/Data-value/Statistical-value/Standard-deviation",
+ "description": "A measure of the range of values in a set of numbers. Standard deviation is a statistic used as a measure of the dispersion or variation in a distribution, equal to the square root of the arithmetic mean of the squares of the deviations from the arithmetic mean.",
+ "parent": "Statistical-value",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012708"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012708"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012709"
+ }
+ },
+ "Statistical-accuracy": {
+ "short_form": "Statistical-accuracy",
+ "long_form": "Property/Data-property/Data-value/Statistical-value/Statistical-accuracy",
+ "description": "A measure of closeness to true value expressed as a number between 0 and 1.",
+ "parent": "Statistical-value",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012710"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012710"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012711"
+ }
+ },
+ "Statistical-precision": {
+ "short_form": "Statistical-precision",
+ "long_form": "Property/Data-property/Data-value/Statistical-value/Statistical-precision",
+ "description": "A quantitative representation of the degree of accuracy necessary for or associated with a particular action.",
+ "parent": "Statistical-value",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012712"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012712"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012713"
+ }
+ },
+ "Statistical-recall": {
+ "short_form": "Statistical-recall",
+ "long_form": "Property/Data-property/Data-value/Statistical-value/Statistical-recall",
+ "description": "Sensitivity is a measurement datum qualifying a binary classification test and is computed by subtracting the false negative rate to the integral numeral 1.",
+ "parent": "Statistical-value",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012714"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012714"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012715"
+ }
+ },
+ "Statistical-uncertainty": {
+ "short_form": "Statistical-uncertainty",
+ "long_form": "Property/Data-property/Data-value/Statistical-value/Statistical-uncertainty",
+ "description": "A measure of the inherent variability of repeated observation measurements of a quantity including quantities evaluated by statistical methods and by other means.",
+ "parent": "Statistical-value",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012716"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012716"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012717"
+ }
+ },
+ "Data-variability-attribute": {
+ "short_form": "Data-variability-attribute",
+ "long_form": "Property/Data-property/Data-variability-attribute",
+ "description": "An attribute describing how something changes or varies.",
+ "parent": "Data-property",
+ "children": [
+ "Abrupt",
+ "Constant",
+ "Continuous",
+ "Decreasing",
+ "Deterministic",
+ "Discontinuous",
+ "Discrete",
+ "Estimated-value",
+ "Exact-value",
+ "Flickering",
+ "Fractal",
+ "Increasing",
+ "Random",
+ "Repetitive",
+ "Stochastic",
+ "Varying"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012718"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012718"
+ }
+ },
+ "Abrupt": {
+ "short_form": "Abrupt",
+ "long_form": "Property/Data-property/Data-variability-attribute/Abrupt",
+ "description": "Marked by sudden change.",
+ "parent": "Data-variability-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012719"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012719"
+ }
+ },
+ "Constant": {
+ "short_form": "Constant",
+ "long_form": "Property/Data-property/Data-variability-attribute/Constant",
+ "description": "Continually recurring or continuing without interruption. Not changing in time or space.",
+ "parent": "Data-variability-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012720"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012720"
+ }
+ },
+ "Continuous": {
+ "short_form": "Continuous",
+ "long_form": "Property/Data-property/Data-variability-attribute/Continuous",
+ "description": "Uninterrupted in time, sequence, substance, or extent.",
+ "parent": "Data-variability-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Discrete",
+ "Discontinuous"
+ ],
+ "hedId": "HED_0012721"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Discrete",
+ "Discontinuous"
+ ],
+ "hedId": "HED_0012721"
+ }
+ },
+ "Decreasing": {
+ "short_form": "Decreasing",
+ "long_form": "Property/Data-property/Data-variability-attribute/Decreasing",
+ "description": "Becoming smaller or fewer in size, amount, intensity, or degree.",
+ "parent": "Data-variability-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Increasing"
+ ],
+ "hedId": "HED_0012722"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Increasing"
+ ],
+ "hedId": "HED_0012722"
+ }
+ },
+ "Deterministic": {
+ "short_form": "Deterministic",
+ "long_form": "Property/Data-property/Data-variability-attribute/Deterministic",
+ "description": "No randomness is involved in the development of the future states of the element.",
+ "parent": "Data-variability-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Random",
+ "Stochastic"
+ ],
+ "hedId": "HED_0012723"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Random",
+ "Stochastic"
+ ],
+ "hedId": "HED_0012723"
+ }
+ },
+ "Discontinuous": {
+ "short_form": "Discontinuous",
+ "long_form": "Property/Data-property/Data-variability-attribute/Discontinuous",
+ "description": "Having a gap in time, sequence, substance, or extent.",
+ "parent": "Data-variability-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Continuous"
+ ],
+ "hedId": "HED_0012724"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Continuous"
+ ],
+ "hedId": "HED_0012724"
+ }
+ },
+ "Discrete": {
+ "short_form": "Discrete",
+ "long_form": "Property/Data-property/Data-variability-attribute/Discrete",
+ "description": "Constituting a separate entities or parts.",
+ "parent": "Data-variability-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Continuous",
+ "Discontinuous"
+ ],
+ "hedId": "HED_0012725"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Continuous",
+ "Discontinuous"
+ ],
+ "hedId": "HED_0012725"
+ }
+ },
+ "Estimated-value": {
+ "short_form": "Estimated-value",
+ "long_form": "Property/Data-property/Data-variability-attribute/Estimated-value",
+ "description": "Something that has been calculated or measured approximately.",
+ "parent": "Data-variability-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012726"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012726"
+ }
+ },
+ "Exact-value": {
+ "short_form": "Exact-value",
+ "long_form": "Property/Data-property/Data-variability-attribute/Exact-value",
+ "description": "A value that is viewed to the true value according to some standard.",
+ "parent": "Data-variability-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012727"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012727"
+ }
+ },
+ "Flickering": {
+ "short_form": "Flickering",
+ "long_form": "Property/Data-property/Data-variability-attribute/Flickering",
+ "description": "Moving irregularly or unsteadily or burning or shining fitfully or with a fluctuating light.",
+ "parent": "Data-variability-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012728"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012728"
+ }
+ },
+ "Fractal": {
+ "short_form": "Fractal",
+ "long_form": "Property/Data-property/Data-variability-attribute/Fractal",
+ "description": "Having extremely irregular curves or shapes for which any suitably chosen part is similar in shape to a given larger or smaller part when magnified or reduced to the same size.",
+ "parent": "Data-variability-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012729"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012729"
+ }
+ },
+ "Increasing": {
+ "short_form": "Increasing",
+ "long_form": "Property/Data-property/Data-variability-attribute/Increasing",
+ "description": "Becoming greater in size, amount, or degree.",
+ "parent": "Data-variability-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Decreasing"
+ ],
+ "hedId": "HED_0012730"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Decreasing"
+ ],
+ "hedId": "HED_0012730"
+ }
+ },
+ "Random": {
+ "short_form": "Random",
+ "long_form": "Property/Data-property/Data-variability-attribute/Random",
+ "description": "Governed by or depending on chance. Lacking any definite plan or order or purpose.",
+ "parent": "Data-variability-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Deterministic",
+ "Stochastic"
+ ],
+ "hedId": "HED_0012731"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Deterministic",
+ "Stochastic"
+ ],
+ "hedId": "HED_0012731"
+ }
+ },
+ "Repetitive": {
+ "short_form": "Repetitive",
+ "long_form": "Property/Data-property/Data-variability-attribute/Repetitive",
+ "description": "A recurring action that is often non-purposeful.",
+ "parent": "Data-variability-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012732"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012732"
+ }
+ },
+ "Stochastic": {
+ "short_form": "Stochastic",
+ "long_form": "Property/Data-property/Data-variability-attribute/Stochastic",
+ "description": "Uses a random probability distribution or pattern that may be analyzed statistically but may not be predicted precisely to determine future states.",
+ "parent": "Data-variability-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Deterministic",
+ "Random"
+ ],
+ "hedId": "HED_0012733"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Deterministic",
+ "Random"
+ ],
+ "hedId": "HED_0012733"
+ }
+ },
+ "Varying": {
+ "short_form": "Varying",
+ "long_form": "Property/Data-property/Data-variability-attribute/Varying",
+ "description": "Differing in size, amount, degree, or nature.",
+ "parent": "Data-variability-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012734"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012734"
+ }
+ },
+ "Environmental-property": {
+ "short_form": "Environmental-property",
+ "long_form": "Property/Environmental-property",
+ "description": "Relating to or arising from the surroundings of an agent.",
+ "parent": "Property",
+ "children": [
+ "Augmented-reality",
+ "Indoors",
+ "Motion-platform",
+ "Outdoors",
+ "Real-world",
+ "Rural",
+ "Terrain",
+ "Urban",
+ "Virtual-world"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012735"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012735"
+ }
+ },
+ "Augmented-reality": {
+ "short_form": "Augmented-reality",
+ "long_form": "Property/Environmental-property/Augmented-reality",
+ "description": "Using technology that enhances real-world experiences with computer-derived digital overlays to change some aspects of perception of the natural environment. The digital content is shown to the user through a smart device or glasses and responds to changes in the environment.",
+ "parent": "Environmental-property",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012736"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012736"
+ }
+ },
+ "Indoors": {
+ "short_form": "Indoors",
+ "long_form": "Property/Environmental-property/Indoors",
+ "description": "Located inside a building or enclosure.",
+ "parent": "Environmental-property",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012737"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012737"
+ }
+ },
+ "Motion-platform": {
+ "short_form": "Motion-platform",
+ "long_form": "Property/Environmental-property/Motion-platform",
+ "description": "A mechanism that creates the feelings of being in a real motion environment.",
+ "parent": "Environmental-property",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012738"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012738"
+ }
+ },
+ "Outdoors": {
+ "short_form": "Outdoors",
+ "long_form": "Property/Environmental-property/Outdoors",
+ "description": "Any area outside a building or shelter.",
+ "parent": "Environmental-property",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012739"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012739"
+ }
+ },
+ "Real-world": {
+ "short_form": "Real-world",
+ "long_form": "Property/Environmental-property/Real-world",
+ "description": "Located in a place that exists in real space and time under realistic conditions.",
+ "parent": "Environmental-property",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012740"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012740"
+ }
+ },
+ "Rural": {
+ "short_form": "Rural",
+ "long_form": "Property/Environmental-property/Rural",
+ "description": "Of or pertaining to the country as opposed to the city.",
+ "parent": "Environmental-property",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012741"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012741"
+ }
+ },
+ "Terrain": {
+ "short_form": "Terrain",
+ "long_form": "Property/Environmental-property/Terrain",
+ "description": "Characterization of the physical features of a tract of land.",
+ "parent": "Environmental-property",
+ "children": [
+ "Composite-terrain",
+ "Dirt-terrain",
+ "Grassy-terrain",
+ "Gravel-terrain",
+ "Leaf-covered-terrain",
+ "Muddy-terrain",
+ "Paved-terrain",
+ "Rocky-terrain",
+ "Sloped-terrain",
+ "Uneven-terrain"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012742"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012742"
+ }
+ },
+ "Composite-terrain": {
+ "short_form": "Composite-terrain",
+ "long_form": "Property/Environmental-property/Terrain/Composite-terrain",
+ "description": "Tracts of land characterized by a mixture of physical features.",
+ "parent": "Terrain",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012743"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012743"
+ }
+ },
+ "Dirt-terrain": {
+ "short_form": "Dirt-terrain",
+ "long_form": "Property/Environmental-property/Terrain/Dirt-terrain",
+ "description": "Tracts of land characterized by a soil surface and lack of vegetation.",
+ "parent": "Terrain",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012744"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012744"
+ }
+ },
+ "Grassy-terrain": {
+ "short_form": "Grassy-terrain",
+ "long_form": "Property/Environmental-property/Terrain/Grassy-terrain",
+ "description": "Tracts of land covered by grass.",
+ "parent": "Terrain",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012745"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012745"
+ }
+ },
+ "Gravel-terrain": {
+ "short_form": "Gravel-terrain",
+ "long_form": "Property/Environmental-property/Terrain/Gravel-terrain",
+ "description": "Tracts of land covered by a surface consisting a loose aggregation of small water-worn or pounded stones.",
+ "parent": "Terrain",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012746"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012746"
+ }
+ },
+ "Leaf-covered-terrain": {
+ "short_form": "Leaf-covered-terrain",
+ "long_form": "Property/Environmental-property/Terrain/Leaf-covered-terrain",
+ "description": "Tracts of land covered by leaves and composited organic material.",
+ "parent": "Terrain",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012747"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012747"
+ }
+ },
+ "Muddy-terrain": {
+ "short_form": "Muddy-terrain",
+ "long_form": "Property/Environmental-property/Terrain/Muddy-terrain",
+ "description": "Tracts of land covered by a liquid or semi-liquid mixture of water and some combination of soil, silt, and clay.",
+ "parent": "Terrain",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012748"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012748"
+ }
+ },
+ "Paved-terrain": {
+ "short_form": "Paved-terrain",
+ "long_form": "Property/Environmental-property/Terrain/Paved-terrain",
+ "description": "Tracts of land covered with concrete, asphalt, stones, or bricks.",
+ "parent": "Terrain",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012749"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012749"
+ }
+ },
+ "Rocky-terrain": {
+ "short_form": "Rocky-terrain",
+ "long_form": "Property/Environmental-property/Terrain/Rocky-terrain",
+ "description": "Tracts of land consisting or full of rock or rocks.",
+ "parent": "Terrain",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012750"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012750"
+ }
+ },
+ "Sloped-terrain": {
+ "short_form": "Sloped-terrain",
+ "long_form": "Property/Environmental-property/Terrain/Sloped-terrain",
+ "description": "Tracts of land arranged in a sloping or inclined position.",
+ "parent": "Terrain",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012751"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012751"
+ }
+ },
+ "Uneven-terrain": {
+ "short_form": "Uneven-terrain",
+ "long_form": "Property/Environmental-property/Terrain/Uneven-terrain",
+ "description": "Tracts of land that are not level, smooth, or regular.",
+ "parent": "Terrain",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012752"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012752"
+ }
+ },
+ "Urban": {
+ "short_form": "Urban",
+ "long_form": "Property/Environmental-property/Urban",
+ "description": "Relating to, located in, or characteristic of a city or densely populated area.",
+ "parent": "Environmental-property",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012753"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012753"
+ }
+ },
+ "Virtual-world": {
+ "short_form": "Virtual-world",
+ "long_form": "Property/Environmental-property/Virtual-world",
+ "description": "Using technology that creates immersive, computer-generated experiences that a person can interact with and navigate through. The digital content is generally delivered to the user through some type of headset and responds to changes in head position or through interaction with other types of sensors. Existing in a virtual setting such as a simulation or game environment.",
+ "parent": "Environmental-property",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012754"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012754"
+ }
+ },
+ "Informational-property": {
+ "short_form": "Informational-property",
+ "long_form": "Property/Informational-property",
+ "description": "Something that pertains to a task.",
+ "parent": "Property",
+ "children": [
+ "Description",
+ "ID",
+ "Label",
+ "Metadata",
+ "Parameter"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012755"
+ },
+ "explicitAttributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012755"
+ }
+ },
+ "Description": {
+ "short_form": "Description",
+ "long_form": "Property/Informational-property/Description",
+ "description": "An explanation of what the tag group it is in means. If the description is at the top-level of an event string, the description applies to the event.",
+ "parent": "Informational-property",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012756"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012756"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "textClass"
+ ],
+ "hedId": "HED_0012757"
+ }
+ },
+ "ID": {
+ "short_form": "ID",
+ "long_form": "Property/Informational-property/ID",
+ "description": "An alphanumeric name that identifies either a unique object or a unique class of objects. Here the object or class may be an idea, physical countable object (or class), or physical uncountable substance (or class).",
+ "parent": "Informational-property",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012758"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012758"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "textClass"
+ ],
+ "hedId": "HED_0012759"
+ }
+ },
+ "Label": {
+ "short_form": "Label",
+ "long_form": "Property/Informational-property/Label",
+ "description": "A string of 20 or fewer characters identifying something. Labels usually refer to general classes of things while IDs refer to specific instances. A term that is associated with some entity. A brief description given for purposes of identification. An identifying or descriptive marker that is attached to an object.",
+ "parent": "Informational-property",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012760"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012760"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "nameClass"
+ ],
+ "hedId": "HED_0012761"
+ }
+ },
+ "Metadata": {
+ "short_form": "Metadata",
+ "long_form": "Property/Informational-property/Metadata",
+ "description": "Data about data. Information that describes another set of data.",
+ "parent": "Informational-property",
+ "children": [
+ "Creation-date",
+ "Experimental-note",
+ "Library-name",
+ "Metadata-identifier",
+ "Modified-date",
+ "Pathname",
+ "URL"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012762"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012762"
+ }
+ },
+ "Creation-date": {
+ "short_form": "Creation-date",
+ "long_form": "Property/Informational-property/Metadata/Creation-date",
+ "description": "The date on which the creation of this item began.",
+ "parent": "Metadata",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012763"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012763"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "dateTimeClass"
+ ],
+ "hedId": "HED_0012764"
+ }
+ },
+ "Experimental-note": {
+ "short_form": "Experimental-note",
+ "long_form": "Property/Informational-property/Metadata/Experimental-note",
+ "description": "A brief written record about the experiment.",
+ "parent": "Metadata",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012765"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012765"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "textClass"
+ ],
+ "hedId": "HED_0012766"
+ }
+ },
+ "Library-name": {
+ "short_form": "Library-name",
+ "long_form": "Property/Informational-property/Metadata/Library-name",
+ "description": "Official name of a HED library.",
+ "parent": "Metadata",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012767"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012767"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "nameClass"
+ ],
+ "hedId": "HED_0012768"
+ }
+ },
+ "Metadata-identifier": {
+ "short_form": "Metadata-identifier",
+ "long_form": "Property/Informational-property/Metadata/Metadata-identifier",
+ "description": "Identifier (usually unique) from another metadata source.",
+ "parent": "Metadata",
+ "children": [
+ "CogAtlas",
+ "CogPo",
+ "DOI",
+ "OBO-identifier",
+ "Species-identifier",
+ "Subject-identifier",
+ "UUID",
+ "Version-identifier"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012769"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012769"
+ }
+ },
+ "CogAtlas": {
+ "short_form": "CogAtlas",
+ "long_form": "Property/Informational-property/Metadata/Metadata-identifier/CogAtlas",
+ "description": "The Cognitive Atlas ID number of something.",
+ "parent": "Metadata-identifier",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012770"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012770"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "hedId": "HED_0012771"
+ }
+ },
+ "CogPo": {
+ "short_form": "CogPo",
+ "long_form": "Property/Informational-property/Metadata/Metadata-identifier/CogPo",
+ "description": "The CogPO ID number of something.",
+ "parent": "Metadata-identifier",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012772"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012772"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "hedId": "HED_0012773"
+ }
+ },
+ "DOI": {
+ "short_form": "DOI",
+ "long_form": "Property/Informational-property/Metadata/Metadata-identifier/DOI",
+ "description": "Digital object identifier for an object.",
+ "parent": "Metadata-identifier",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012774"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012774"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "hedId": "HED_0012775"
+ }
+ },
+ "OBO-identifier": {
+ "short_form": "OBO-identifier",
+ "long_form": "Property/Informational-property/Metadata/Metadata-identifier/OBO-identifier",
+ "description": "The identifier of a term in some Open Biology Ontology (OBO) ontology.",
+ "parent": "Metadata-identifier",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012776"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012776"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "nameClass"
+ ],
+ "hedId": "HED_0012777"
+ }
+ },
+ "Species-identifier": {
+ "short_form": "Species-identifier",
+ "long_form": "Property/Informational-property/Metadata/Metadata-identifier/Species-identifier",
+ "description": "A binomial species name from the NCBI Taxonomy, for example, homo sapiens, mus musculus, or rattus norvegicus.",
+ "parent": "Metadata-identifier",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012778"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012778"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "hedId": "HED_0012779"
+ }
+ },
+ "Subject-identifier": {
+ "short_form": "Subject-identifier",
+ "long_form": "Property/Informational-property/Metadata/Metadata-identifier/Subject-identifier",
+ "description": "A sequence of characters used to identify, name, or characterize a trial or study subject.",
+ "parent": "Metadata-identifier",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012780"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012780"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "hedId": "HED_0012781"
+ }
+ },
+ "UUID": {
+ "short_form": "UUID",
+ "long_form": "Property/Informational-property/Metadata/Metadata-identifier/UUID",
+ "description": "A unique universal identifier.",
+ "parent": "Metadata-identifier",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012782"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012782"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "hedId": "HED_0012783"
+ }
+ },
+ "Version-identifier": {
+ "short_form": "Version-identifier",
+ "long_form": "Property/Informational-property/Metadata/Metadata-identifier/Version-identifier",
+ "description": "An alphanumeric character string that identifies a form or variant of a type or original.",
+ "parent": "Metadata-identifier",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012784"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012784"
+ },
+ "placeholder": {
+ "description": "Usually is a semantic version.",
+ "takesValue": true,
+ "hedId": "HED_0012785"
+ }
+ },
+ "Modified-date": {
+ "short_form": "Modified-date",
+ "long_form": "Property/Informational-property/Metadata/Modified-date",
+ "description": "The date on which the item was modified (usually the last-modified data unless a complete record of dated modifications is kept.",
+ "parent": "Metadata",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012786"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012786"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "dateTimeClass"
+ ],
+ "hedId": "HED_0012787"
+ }
+ },
+ "Pathname": {
+ "short_form": "Pathname",
+ "long_form": "Property/Informational-property/Metadata/Pathname",
+ "description": "The specification of a node (file or directory) in a hierarchical file system, usually specified by listing the nodes top-down.",
+ "parent": "Metadata",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012788"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012788"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "hedId": "HED_0012789"
+ }
+ },
+ "URL": {
+ "short_form": "URL",
+ "long_form": "Property/Informational-property/Metadata/URL",
+ "description": "A valid URL.",
+ "parent": "Metadata",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012790"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012790"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "hedId": "HED_0012791"
+ }
+ },
+ "Parameter": {
+ "short_form": "Parameter",
+ "long_form": "Property/Informational-property/Parameter",
+ "description": "Something user-defined for this experiment.",
+ "parent": "Informational-property",
+ "children": [
+ "Parameter-label",
+ "Parameter-value"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012792"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012792"
+ }
+ },
+ "Parameter-label": {
+ "short_form": "Parameter-label",
+ "long_form": "Property/Informational-property/Parameter/Parameter-label",
+ "description": "The name of the parameter.",
+ "parent": "Parameter",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012793"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012793"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "nameClass"
+ ],
+ "hedId": "HED_0012794"
+ }
+ },
+ "Parameter-value": {
+ "short_form": "Parameter-value",
+ "long_form": "Property/Informational-property/Parameter/Parameter-value",
+ "description": "The value of the parameter.",
+ "parent": "Parameter",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012795"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012795"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "textClass"
+ ],
+ "hedId": "HED_0012796"
+ }
+ },
+ "Organizational-property": {
+ "short_form": "Organizational-property",
+ "long_form": "Property/Organizational-property",
+ "description": "Relating to an organization or the action of organizing something.",
+ "parent": "Property",
+ "children": [
+ "Collection",
+ "Condition-variable",
+ "Control-variable",
+ "Def",
+ "Def-expand",
+ "Definition",
+ "Event-context",
+ "Event-stream",
+ "Experimental-intertrial",
+ "Experimental-trial",
+ "Indicator-variable",
+ "Recording",
+ "Task",
+ "Time-block"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012797"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012797"
+ }
+ },
+ "Collection": {
+ "short_form": "Collection",
+ "long_form": "Property/Organizational-property/Collection",
+ "description": "A tag designating a grouping of items such as in a set or list.",
+ "parent": "Organizational-property",
+ "children": [],
+ "attributes": {
+ "reserved": true,
+ "hedId": "HED_0012798"
+ },
+ "explicitAttributes": {
+ "reserved": true,
+ "hedId": "HED_0012798"
+ },
+ "placeholder": {
+ "description": "Name of the collection.",
+ "takesValue": true,
+ "valueClass": [
+ "nameClass"
+ ],
+ "hedId": "HED_0012799"
+ }
+ },
+ "Condition-variable": {
+ "short_form": "Condition-variable",
+ "long_form": "Property/Organizational-property/Condition-variable",
+ "description": "An aspect of the experiment or task that is to be varied during the experiment. Task-conditions are sometimes called independent variables or contrasts.",
+ "parent": "Organizational-property",
+ "children": [],
+ "attributes": {
+ "reserved": true,
+ "hedId": "HED_0012800"
+ },
+ "explicitAttributes": {
+ "reserved": true,
+ "hedId": "HED_0012800"
+ },
+ "placeholder": {
+ "description": "Name of the condition variable.",
+ "takesValue": true,
+ "valueClass": [
+ "nameClass"
+ ],
+ "hedId": "HED_0012801"
+ }
+ },
+ "Control-variable": {
+ "short_form": "Control-variable",
+ "long_form": "Property/Organizational-property/Control-variable",
+ "description": "An aspect of the experiment that is fixed throughout the study and usually is explicitly controlled.",
+ "parent": "Organizational-property",
+ "children": [],
+ "attributes": {
+ "reserved": true,
+ "hedId": "HED_0012802"
+ },
+ "explicitAttributes": {
+ "reserved": true,
+ "hedId": "HED_0012802"
+ },
+ "placeholder": {
+ "description": "Name of the control variable.",
+ "takesValue": true,
+ "valueClass": [
+ "nameClass"
+ ],
+ "hedId": "HED_0012803"
+ }
+ },
+ "Def": {
+ "short_form": "Def",
+ "long_form": "Property/Organizational-property/Def",
+ "description": "A HED-specific utility tag used with a defined name to represent the tags associated with that definition.",
+ "parent": "Organizational-property",
+ "children": [],
+ "attributes": {
+ "requireChild": true,
+ "reserved": true,
+ "hedId": "HED_0012804"
+ },
+ "explicitAttributes": {
+ "requireChild": true,
+ "reserved": true,
+ "hedId": "HED_0012804"
+ },
+ "placeholder": {
+ "description": "Name of the definition.",
+ "takesValue": true,
+ "valueClass": [
+ "nameClass"
+ ],
+ "hedId": "HED_0012805"
+ }
+ },
+ "Def-expand": {
+ "short_form": "Def-expand",
+ "long_form": "Property/Organizational-property/Def-expand",
+ "description": "A HED specific utility tag that is grouped with an expanded definition. The child value of the Def-expand is the name of the expanded definition.",
+ "parent": "Organizational-property",
+ "children": [],
+ "attributes": {
+ "requireChild": true,
+ "reserved": true,
+ "tagGroup": true,
+ "hedId": "HED_0012806"
+ },
+ "explicitAttributes": {
+ "requireChild": true,
+ "reserved": true,
+ "tagGroup": true,
+ "hedId": "HED_0012806"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "nameClass"
+ ],
+ "hedId": "HED_0012807"
+ }
+ },
+ "Definition": {
+ "short_form": "Definition",
+ "long_form": "Property/Organizational-property/Definition",
+ "description": "A HED-specific utility tag whose child value is the name of the concept and the tag group associated with the tag is an English language explanation of a concept.",
+ "parent": "Organizational-property",
+ "children": [],
+ "attributes": {
+ "requireChild": true,
+ "reserved": true,
+ "topLevelTagGroup": true,
+ "hedId": "HED_0012808"
+ },
+ "explicitAttributes": {
+ "requireChild": true,
+ "reserved": true,
+ "topLevelTagGroup": true,
+ "hedId": "HED_0012808"
+ },
+ "placeholder": {
+ "description": "Name of the definition.",
+ "takesValue": true,
+ "valueClass": [
+ "nameClass"
+ ],
+ "hedId": "HED_0012809"
+ }
+ },
+ "Event-context": {
+ "short_form": "Event-context",
+ "long_form": "Property/Organizational-property/Event-context",
+ "description": "A special HED tag inserted as part of a top-level tag group to contain information about the interrelated conditions under which the event occurs. The event context includes information about other events that are ongoing when this event happens.",
+ "parent": "Organizational-property",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "unique": true,
+ "reserved": true,
+ "topLevelTagGroup": true,
+ "hedId": "HED_0012810"
+ },
+ "explicitAttributes": {
+ "unique": true,
+ "reserved": true,
+ "topLevelTagGroup": true,
+ "hedId": "HED_0012810"
+ }
+ },
+ "Event-stream": {
+ "short_form": "Event-stream",
+ "long_form": "Property/Organizational-property/Event-stream",
+ "description": "A special HED tag indicating that this event is a member of an ordered succession of events.",
+ "parent": "Organizational-property",
+ "children": [],
+ "attributes": {
+ "reserved": true,
+ "hedId": "HED_0012811"
+ },
+ "explicitAttributes": {
+ "reserved": true,
+ "hedId": "HED_0012811"
+ },
+ "placeholder": {
+ "description": "Name of the event stream.",
+ "takesValue": true,
+ "valueClass": [
+ "nameClass"
+ ],
+ "hedId": "HED_0012812"
+ }
+ },
+ "Experimental-intertrial": {
+ "short_form": "Experimental-intertrial",
+ "long_form": "Property/Organizational-property/Experimental-intertrial",
+ "description": "A tag used to indicate a part of the experiment between trials usually where nothing is happening.",
+ "parent": "Organizational-property",
+ "children": [],
+ "attributes": {
+ "reserved": true,
+ "hedId": "HED_0012813"
+ },
+ "explicitAttributes": {
+ "reserved": true,
+ "hedId": "HED_0012813"
+ },
+ "placeholder": {
+ "description": "Optional label for the intertrial block.",
+ "takesValue": true,
+ "valueClass": [
+ "nameClass"
+ ],
+ "hedId": "HED_0012814"
+ }
+ },
+ "Experimental-trial": {
+ "short_form": "Experimental-trial",
+ "long_form": "Property/Organizational-property/Experimental-trial",
+ "description": "Designates a run or execution of an activity, for example, one execution of a script. A tag used to indicate a particular organizational part in the experimental design often containing a stimulus-response pair or stimulus-response-feedback triad.",
+ "parent": "Organizational-property",
+ "children": [],
+ "attributes": {
+ "reserved": true,
+ "hedId": "HED_0012815"
+ },
+ "explicitAttributes": {
+ "reserved": true,
+ "hedId": "HED_0012815"
+ },
+ "placeholder": {
+ "description": "Optional label for the trial (often a numerical string).",
+ "takesValue": true,
+ "valueClass": [
+ "nameClass"
+ ],
+ "hedId": "HED_0012816"
+ }
+ },
+ "Indicator-variable": {
+ "short_form": "Indicator-variable",
+ "long_form": "Property/Organizational-property/Indicator-variable",
+ "description": "An aspect of the experiment or task that is measured as task conditions are varied during the experiment. Experiment indicators are sometimes called dependent variables.",
+ "parent": "Organizational-property",
+ "children": [],
+ "attributes": {
+ "reserved": true,
+ "hedId": "HED_0012817"
+ },
+ "explicitAttributes": {
+ "reserved": true,
+ "hedId": "HED_0012817"
+ },
+ "placeholder": {
+ "description": "Name of the indicator variable.",
+ "takesValue": true,
+ "valueClass": [
+ "nameClass"
+ ],
+ "hedId": "HED_0012818"
+ }
+ },
+ "Recording": {
+ "short_form": "Recording",
+ "long_form": "Property/Organizational-property/Recording",
+ "description": "A tag designating the data recording. Recording tags are usually have temporal scope which is the entire recording.",
+ "parent": "Organizational-property",
+ "children": [],
+ "attributes": {
+ "reserved": true,
+ "hedId": "HED_0012819"
+ },
+ "explicitAttributes": {
+ "reserved": true,
+ "hedId": "HED_0012819"
+ },
+ "placeholder": {
+ "description": "Optional label for the recording.",
+ "takesValue": true,
+ "valueClass": [
+ "nameClass"
+ ],
+ "hedId": "HED_0012820"
+ }
+ },
+ "Task": {
+ "short_form": "Task",
+ "long_form": "Property/Organizational-property/Task",
+ "description": "An assigned piece of work, usually with a time allotment. A tag used to indicate a linkage the structured activities performed as part of the experiment.",
+ "parent": "Organizational-property",
+ "children": [],
+ "attributes": {
+ "reserved": true,
+ "hedId": "HED_0012821"
+ },
+ "explicitAttributes": {
+ "reserved": true,
+ "hedId": "HED_0012821"
+ },
+ "placeholder": {
+ "description": "Optional label for the task block.",
+ "takesValue": true,
+ "valueClass": [
+ "nameClass"
+ ],
+ "hedId": "HED_0012822"
+ }
+ },
+ "Time-block": {
+ "short_form": "Time-block",
+ "long_form": "Property/Organizational-property/Time-block",
+ "description": "A tag used to indicate a contiguous time block in the experiment during which something is fixed or noted.",
+ "parent": "Organizational-property",
+ "children": [],
+ "attributes": {
+ "reserved": true,
+ "hedId": "HED_0012823"
+ },
+ "explicitAttributes": {
+ "reserved": true,
+ "hedId": "HED_0012823"
+ },
+ "placeholder": {
+ "description": "Optional label for the task block.",
+ "takesValue": true,
+ "valueClass": [
+ "nameClass"
+ ],
+ "hedId": "HED_0012824"
+ }
+ },
+ "Sensory-property": {
+ "short_form": "Sensory-property",
+ "long_form": "Property/Sensory-property",
+ "description": "Relating to sensation or the physical senses.",
+ "parent": "Property",
+ "children": [
+ "Sensory-attribute",
+ "Sensory-presentation"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012825"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012825"
+ }
+ },
+ "Sensory-attribute": {
+ "short_form": "Sensory-attribute",
+ "long_form": "Property/Sensory-property/Sensory-attribute",
+ "description": "A sensory characteristic associated with another entity.",
+ "parent": "Sensory-property",
+ "children": [
+ "Auditory-attribute",
+ "Gustatory-attribute",
+ "Olfactory-attribute",
+ "Somatic-attribute",
+ "Tactile-attribute",
+ "Vestibular-attribute",
+ "Visual-attribute"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012826"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012826"
+ }
+ },
+ "Auditory-attribute": {
+ "short_form": "Auditory-attribute",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Auditory-attribute",
+ "description": "Pertaining to the sense of hearing.",
+ "parent": "Sensory-attribute",
+ "children": [
+ "Loudness",
+ "Pitch",
+ "Sound-envelope",
+ "Sound-volume",
+ "Timbre"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012827"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012827"
+ }
+ },
+ "Loudness": {
+ "short_form": "Loudness",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Auditory-attribute/Loudness",
+ "description": "Perceived intensity of a sound.",
+ "parent": "Auditory-attribute",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012828"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012828"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass",
+ "nameClass"
+ ],
+ "hedId": "HED_0012829"
+ }
+ },
+ "Pitch": {
+ "short_form": "Pitch",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Auditory-attribute/Pitch",
+ "description": "A perceptual property that allows the user to order sounds on a frequency scale.",
+ "parent": "Auditory-attribute",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012830"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012830"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "frequencyUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012831"
+ }
+ },
+ "Sound-envelope": {
+ "short_form": "Sound-envelope",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Auditory-attribute/Sound-envelope",
+ "description": "Description of how a sound changes over time.",
+ "parent": "Auditory-attribute",
+ "children": [
+ "Sound-envelope-attack",
+ "Sound-envelope-decay",
+ "Sound-envelope-release",
+ "Sound-envelope-sustain"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012832"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012832"
+ }
+ },
+ "Sound-envelope-attack": {
+ "short_form": "Sound-envelope-attack",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Auditory-attribute/Sound-envelope/Sound-envelope-attack",
+ "description": "The time taken for initial run-up of level from nil to peak usually beginning when the key on a musical instrument is pressed.",
+ "parent": "Sound-envelope",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012833"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012833"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "timeUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012834"
+ }
+ },
+ "Sound-envelope-decay": {
+ "short_form": "Sound-envelope-decay",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Auditory-attribute/Sound-envelope/Sound-envelope-decay",
+ "description": "The time taken for the subsequent run down from the attack level to the designated sustain level.",
+ "parent": "Sound-envelope",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012835"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012835"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "timeUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012836"
+ }
+ },
+ "Sound-envelope-release": {
+ "short_form": "Sound-envelope-release",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Auditory-attribute/Sound-envelope/Sound-envelope-release",
+ "description": "The time taken for the level to decay from the sustain level to zero after the key is released.",
+ "parent": "Sound-envelope",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012837"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012837"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "timeUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012838"
+ }
+ },
+ "Sound-envelope-sustain": {
+ "short_form": "Sound-envelope-sustain",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Auditory-attribute/Sound-envelope/Sound-envelope-sustain",
+ "description": "The time taken for the main sequence of the sound duration, until the key is released.",
+ "parent": "Sound-envelope",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012839"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012839"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "timeUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012840"
+ }
+ },
+ "Sound-volume": {
+ "short_form": "Sound-volume",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Auditory-attribute/Sound-volume",
+ "description": "The sound pressure level (SPL) usually the ratio to a reference signal estimated as the lower bound of hearing.",
+ "parent": "Auditory-attribute",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012841"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012841"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "unitClass": [
+ "intensityUnits"
+ ],
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0012842"
+ }
+ },
+ "Timbre": {
+ "short_form": "Timbre",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Auditory-attribute/Timbre",
+ "description": "The perceived sound quality of a singing voice or musical instrument.",
+ "parent": "Auditory-attribute",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0012843"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012843"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "nameClass"
+ ],
+ "hedId": "HED_0012844"
+ }
+ },
+ "Gustatory-attribute": {
+ "short_form": "Gustatory-attribute",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Gustatory-attribute",
+ "description": "Pertaining to the sense of taste.",
+ "parent": "Sensory-attribute",
+ "children": [
+ "Bitter",
+ "Salty",
+ "Savory",
+ "Sour",
+ "Sweet"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012845"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012845"
+ }
+ },
+ "Bitter": {
+ "short_form": "Bitter",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Gustatory-attribute/Bitter",
+ "description": "Having a sharp, pungent taste.",
+ "parent": "Gustatory-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012846"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012846"
+ }
+ },
+ "Salty": {
+ "short_form": "Salty",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Gustatory-attribute/Salty",
+ "description": "Tasting of or like salt.",
+ "parent": "Gustatory-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012847"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012847"
+ }
+ },
+ "Savory": {
+ "short_form": "Savory",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Gustatory-attribute/Savory",
+ "description": "Belonging to a taste that is salty or spicy rather than sweet.",
+ "parent": "Gustatory-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012848"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012848"
+ }
+ },
+ "Sour": {
+ "short_form": "Sour",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Gustatory-attribute/Sour",
+ "description": "Having a sharp, acidic taste.",
+ "parent": "Gustatory-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012849"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012849"
+ }
+ },
+ "Sweet": {
+ "short_form": "Sweet",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Gustatory-attribute/Sweet",
+ "description": "Having or resembling the taste of sugar.",
+ "parent": "Gustatory-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012850"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012850"
+ }
+ },
+ "Olfactory-attribute": {
+ "short_form": "Olfactory-attribute",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Olfactory-attribute",
+ "description": "Having a smell.",
+ "parent": "Sensory-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012851"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012851"
+ }
+ },
+ "Somatic-attribute": {
+ "short_form": "Somatic-attribute",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Somatic-attribute",
+ "description": "Pertaining to the feelings in the body or of the nervous system.",
+ "parent": "Sensory-attribute",
+ "children": [
+ "Pain",
+ "Stress"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012852"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012852"
+ }
+ },
+ "Pain": {
+ "short_form": "Pain",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Somatic-attribute/Pain",
+ "description": "The sensation of discomfort, distress, or agony, resulting from the stimulation of specialized nerve endings.",
+ "parent": "Somatic-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012853"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012853"
+ }
+ },
+ "Stress": {
+ "short_form": "Stress",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Somatic-attribute/Stress",
+ "description": "The negative mental, emotional, and physical reactions that occur when environmental stressors are perceived as exceeding the adaptive capacities of the individual.",
+ "parent": "Somatic-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012854"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012854"
+ }
+ },
+ "Tactile-attribute": {
+ "short_form": "Tactile-attribute",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Tactile-attribute",
+ "description": "Pertaining to the sense of touch.",
+ "parent": "Sensory-attribute",
+ "children": [
+ "Tactile-pressure",
+ "Tactile-temperature",
+ "Tactile-texture",
+ "Tactile-vibration"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012855"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012855"
+ }
+ },
+ "Tactile-pressure": {
+ "short_form": "Tactile-pressure",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Tactile-attribute/Tactile-pressure",
+ "description": "Having a feeling of heaviness.",
+ "parent": "Tactile-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012856"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012856"
+ }
+ },
+ "Tactile-temperature": {
+ "short_form": "Tactile-temperature",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Tactile-attribute/Tactile-temperature",
+ "description": "Having a feeling of hotness or coldness.",
+ "parent": "Tactile-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012857"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012857"
+ }
+ },
+ "Tactile-texture": {
+ "short_form": "Tactile-texture",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Tactile-attribute/Tactile-texture",
+ "description": "Having a feeling of roughness.",
+ "parent": "Tactile-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012858"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012858"
+ }
+ },
+ "Tactile-vibration": {
+ "short_form": "Tactile-vibration",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Tactile-attribute/Tactile-vibration",
+ "description": "Having a feeling of mechanical oscillation.",
+ "parent": "Tactile-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012859"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012859"
+ }
+ },
+ "Vestibular-attribute": {
+ "short_form": "Vestibular-attribute",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Vestibular-attribute",
+ "description": "Pertaining to the sense of balance or body position.",
+ "parent": "Sensory-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012860"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012860"
+ }
+ },
+ "Visual-attribute": {
+ "short_form": "Visual-attribute",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute",
+ "description": "Pertaining to the sense of sight.",
+ "parent": "Sensory-attribute",
+ "children": [
+ "Color",
+ "Luminance",
+ "Luminance-contrast",
+ "Opacity"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012861"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012861"
+ }
+ },
+ "Color": {
+ "short_form": "Color",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color",
+ "description": "The appearance of objects (or light sources) described in terms of perception of their hue and lightness (or brightness) and saturation.",
+ "parent": "Visual-attribute",
+ "children": [
+ "CSS-color",
+ "Color-shade",
+ "Grayscale",
+ "HSV-color",
+ "RGB-color"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012862"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012862"
+ }
+ },
+ "CSS-color": {
+ "short_form": "CSS-color",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color",
+ "description": "One of 140 colors supported by all browsers. For more details such as the color RGB or HEX values,check:https://www.w3schools.com/colors/colors_groups.asp.",
+ "parent": "Color",
+ "children": [
+ "Blue-color",
+ "Brown-color",
+ "Cyan-color",
+ "Gray-color",
+ "Green-color",
+ "Orange-color",
+ "Pink-color",
+ "Purple-color",
+ "Red-color",
+ "White-color",
+ "Yellow-color"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012863"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012863"
+ }
+ },
+ "Blue-color": {
+ "short_form": "Blue-color",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color",
+ "description": "CSS color group.",
+ "parent": "CSS-color",
+ "children": [
+ "Blue",
+ "CadetBlue",
+ "CornflowerBlue",
+ "DarkBlue",
+ "DeepSkyBlue",
+ "DodgerBlue",
+ "LightBlue",
+ "LightSkyBlue",
+ "LightSteelBlue",
+ "MediumBlue",
+ "MidnightBlue",
+ "Navy",
+ "PowderBlue",
+ "RoyalBlue",
+ "SkyBlue",
+ "SteelBlue"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012864"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012864"
+ }
+ },
+ "Blue": {
+ "short_form": "Blue",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/Blue",
+ "description": "CSS-color 0x0000FF.",
+ "parent": "Blue-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012865"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012865"
+ }
+ },
+ "CadetBlue": {
+ "short_form": "CadetBlue",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/CadetBlue",
+ "description": "CSS-color 0x5F9EA0.",
+ "parent": "Blue-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012866"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012866"
+ }
+ },
+ "CornflowerBlue": {
+ "short_form": "CornflowerBlue",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/CornflowerBlue",
+ "description": "CSS-color 0x6495ED.",
+ "parent": "Blue-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012867"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012867"
+ }
+ },
+ "DarkBlue": {
+ "short_form": "DarkBlue",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/DarkBlue",
+ "description": "CSS-color 0x00008B.",
+ "parent": "Blue-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012868"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012868"
+ }
+ },
+ "DeepSkyBlue": {
+ "short_form": "DeepSkyBlue",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/DeepSkyBlue",
+ "description": "CSS-color 0x00BFFF.",
+ "parent": "Blue-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012869"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012869"
+ }
+ },
+ "DodgerBlue": {
+ "short_form": "DodgerBlue",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/DodgerBlue",
+ "description": "CSS-color 0x1E90FF.",
+ "parent": "Blue-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012870"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012870"
+ }
+ },
+ "LightBlue": {
+ "short_form": "LightBlue",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/LightBlue",
+ "description": "CSS-color 0xADD8E6.",
+ "parent": "Blue-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012871"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012871"
+ }
+ },
+ "LightSkyBlue": {
+ "short_form": "LightSkyBlue",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/LightSkyBlue",
+ "description": "CSS-color 0x87CEFA.",
+ "parent": "Blue-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012872"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012872"
+ }
+ },
+ "LightSteelBlue": {
+ "short_form": "LightSteelBlue",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/LightSteelBlue",
+ "description": "CSS-color 0xB0C4DE.",
+ "parent": "Blue-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012873"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012873"
+ }
+ },
+ "MediumBlue": {
+ "short_form": "MediumBlue",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/MediumBlue",
+ "description": "CSS-color 0x0000CD.",
+ "parent": "Blue-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012874"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012874"
+ }
+ },
+ "MidnightBlue": {
+ "short_form": "MidnightBlue",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/MidnightBlue",
+ "description": "CSS-color 0x191970.",
+ "parent": "Blue-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012875"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012875"
+ }
+ },
+ "Navy": {
+ "short_form": "Navy",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/Navy",
+ "description": "CSS-color 0x000080.",
+ "parent": "Blue-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012876"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012876"
+ }
+ },
+ "PowderBlue": {
+ "short_form": "PowderBlue",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/PowderBlue",
+ "description": "CSS-color 0xB0E0E6.",
+ "parent": "Blue-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012877"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012877"
+ }
+ },
+ "RoyalBlue": {
+ "short_form": "RoyalBlue",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/RoyalBlue",
+ "description": "CSS-color 0x4169E1.",
+ "parent": "Blue-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012878"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012878"
+ }
+ },
+ "SkyBlue": {
+ "short_form": "SkyBlue",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/SkyBlue",
+ "description": "CSS-color 0x87CEEB.",
+ "parent": "Blue-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012879"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012879"
+ }
+ },
+ "SteelBlue": {
+ "short_form": "SteelBlue",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/SteelBlue",
+ "description": "CSS-color 0x4682B4.",
+ "parent": "Blue-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012880"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012880"
+ }
+ },
+ "Brown-color": {
+ "short_form": "Brown-color",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color",
+ "description": "CSS color group.",
+ "parent": "CSS-color",
+ "children": [
+ "Bisque",
+ "BlanchedAlmond",
+ "Brown",
+ "BurlyWood",
+ "Chocolate",
+ "Cornsilk",
+ "DarkGoldenRod",
+ "GoldenRod",
+ "Maroon",
+ "NavajoWhite",
+ "Olive",
+ "Peru",
+ "RosyBrown",
+ "SaddleBrown",
+ "SandyBrown",
+ "Sienna",
+ "Tan",
+ "Wheat"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012881"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012881"
+ }
+ },
+ "Bisque": {
+ "short_form": "Bisque",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/Bisque",
+ "description": "CSS-color 0xFFE4C4.",
+ "parent": "Brown-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012882"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012882"
+ }
+ },
+ "BlanchedAlmond": {
+ "short_form": "BlanchedAlmond",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/BlanchedAlmond",
+ "description": "CSS-color 0xFFEBCD.",
+ "parent": "Brown-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012883"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012883"
+ }
+ },
+ "Brown": {
+ "short_form": "Brown",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/Brown",
+ "description": "CSS-color 0xA52A2A.",
+ "parent": "Brown-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012884"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012884"
+ }
+ },
+ "BurlyWood": {
+ "short_form": "BurlyWood",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/BurlyWood",
+ "description": "CSS-color 0xDEB887.",
+ "parent": "Brown-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012885"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012885"
+ }
+ },
+ "Chocolate": {
+ "short_form": "Chocolate",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/Chocolate",
+ "description": "CSS-color 0xD2691E.",
+ "parent": "Brown-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012886"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012886"
+ }
+ },
+ "Cornsilk": {
+ "short_form": "Cornsilk",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/Cornsilk",
+ "description": "CSS-color 0xFFF8DC.",
+ "parent": "Brown-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012887"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012887"
+ }
+ },
+ "DarkGoldenRod": {
+ "short_form": "DarkGoldenRod",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/DarkGoldenRod",
+ "description": "CSS-color 0xB8860B.",
+ "parent": "Brown-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012888"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012888"
+ }
+ },
+ "GoldenRod": {
+ "short_form": "GoldenRod",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/GoldenRod",
+ "description": "CSS-color 0xDAA520.",
+ "parent": "Brown-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012889"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012889"
+ }
+ },
+ "Maroon": {
+ "short_form": "Maroon",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/Maroon",
+ "description": "CSS-color 0x800000.",
+ "parent": "Brown-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012890"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012890"
+ }
+ },
+ "NavajoWhite": {
+ "short_form": "NavajoWhite",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/NavajoWhite",
+ "description": "CSS-color 0xFFDEAD.",
+ "parent": "Brown-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012891"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012891"
+ }
+ },
+ "Olive": {
+ "short_form": "Olive",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/Olive",
+ "description": "CSS-color 0x808000.",
+ "parent": "Brown-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012892"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012892"
+ }
+ },
+ "Peru": {
+ "short_form": "Peru",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/Peru",
+ "description": "CSS-color 0xCD853F.",
+ "parent": "Brown-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012893"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012893"
+ }
+ },
+ "RosyBrown": {
+ "short_form": "RosyBrown",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/RosyBrown",
+ "description": "CSS-color 0xBC8F8F.",
+ "parent": "Brown-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012894"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012894"
+ }
+ },
+ "SaddleBrown": {
+ "short_form": "SaddleBrown",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/SaddleBrown",
+ "description": "CSS-color 0x8B4513.",
+ "parent": "Brown-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012895"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012895"
+ }
+ },
+ "SandyBrown": {
+ "short_form": "SandyBrown",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/SandyBrown",
+ "description": "CSS-color 0xF4A460.",
+ "parent": "Brown-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012896"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012896"
+ }
+ },
+ "Sienna": {
+ "short_form": "Sienna",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/Sienna",
+ "description": "CSS-color 0xA0522D.",
+ "parent": "Brown-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012897"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012897"
+ }
+ },
+ "Tan": {
+ "short_form": "Tan",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/Tan",
+ "description": "CSS-color 0xD2B48C.",
+ "parent": "Brown-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012898"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012898"
+ }
+ },
+ "Wheat": {
+ "short_form": "Wheat",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/Wheat",
+ "description": "CSS-color 0xF5DEB3.",
+ "parent": "Brown-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012899"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012899"
+ }
+ },
+ "Cyan-color": {
+ "short_form": "Cyan-color",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Cyan-color",
+ "description": "CSS color group.",
+ "parent": "CSS-color",
+ "children": [
+ "Aqua",
+ "Aquamarine",
+ "Cyan",
+ "DarkTurquoise",
+ "LightCyan",
+ "MediumTurquoise",
+ "PaleTurquoise",
+ "Turquoise"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012900"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012900"
+ }
+ },
+ "Aqua": {
+ "short_form": "Aqua",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Cyan-color/Aqua",
+ "description": "CSS-color 0x00FFFF.",
+ "parent": "Cyan-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012901"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012901"
+ }
+ },
+ "Aquamarine": {
+ "short_form": "Aquamarine",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Cyan-color/Aquamarine",
+ "description": "CSS-color 0x7FFFD4.",
+ "parent": "Cyan-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012902"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012902"
+ }
+ },
+ "Cyan": {
+ "short_form": "Cyan",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Cyan-color/Cyan",
+ "description": "CSS-color 0x00FFFF.",
+ "parent": "Cyan-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012903"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012903"
+ }
+ },
+ "DarkTurquoise": {
+ "short_form": "DarkTurquoise",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Cyan-color/DarkTurquoise",
+ "description": "CSS-color 0x00CED1.",
+ "parent": "Cyan-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012904"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012904"
+ }
+ },
+ "LightCyan": {
+ "short_form": "LightCyan",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Cyan-color/LightCyan",
+ "description": "CSS-color 0xE0FFFF.",
+ "parent": "Cyan-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012905"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012905"
+ }
+ },
+ "MediumTurquoise": {
+ "short_form": "MediumTurquoise",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Cyan-color/MediumTurquoise",
+ "description": "CSS-color 0x48D1CC.",
+ "parent": "Cyan-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012906"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012906"
+ }
+ },
+ "PaleTurquoise": {
+ "short_form": "PaleTurquoise",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Cyan-color/PaleTurquoise",
+ "description": "CSS-color 0xAFEEEE.",
+ "parent": "Cyan-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012907"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012907"
+ }
+ },
+ "Turquoise": {
+ "short_form": "Turquoise",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Cyan-color/Turquoise",
+ "description": "CSS-color 0x40E0D0.",
+ "parent": "Cyan-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012908"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012908"
+ }
+ },
+ "Gray-color": {
+ "short_form": "Gray-color",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Gray-color",
+ "description": "CSS color group.",
+ "parent": "CSS-color",
+ "children": [
+ "Black",
+ "DarkGray",
+ "DarkSlateGray",
+ "DimGray",
+ "Gainsboro",
+ "Gray",
+ "LightGray",
+ "LightSlateGray",
+ "Silver",
+ "SlateGray"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012909"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012909"
+ }
+ },
+ "Black": {
+ "short_form": "Black",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Gray-color/Black",
+ "description": "CSS-color 0x000000.",
+ "parent": "Gray-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012910"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012910"
+ }
+ },
+ "DarkGray": {
+ "short_form": "DarkGray",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Gray-color/DarkGray",
+ "description": "CSS-color 0xA9A9A9.",
+ "parent": "Gray-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012911"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012911"
+ }
+ },
+ "DarkSlateGray": {
+ "short_form": "DarkSlateGray",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Gray-color/DarkSlateGray",
+ "description": "CSS-color 0x2F4F4F.",
+ "parent": "Gray-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012912"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012912"
+ }
+ },
+ "DimGray": {
+ "short_form": "DimGray",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Gray-color/DimGray",
+ "description": "CSS-color 0x696969.",
+ "parent": "Gray-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012913"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012913"
+ }
+ },
+ "Gainsboro": {
+ "short_form": "Gainsboro",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Gray-color/Gainsboro",
+ "description": "CSS-color 0xDCDCDC.",
+ "parent": "Gray-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012914"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012914"
+ }
+ },
+ "Gray": {
+ "short_form": "Gray",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Gray-color/Gray",
+ "description": "CSS-color 0x808080.",
+ "parent": "Gray-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012915"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012915"
+ }
+ },
+ "LightGray": {
+ "short_form": "LightGray",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Gray-color/LightGray",
+ "description": "CSS-color 0xD3D3D3.",
+ "parent": "Gray-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012916"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012916"
+ }
+ },
+ "LightSlateGray": {
+ "short_form": "LightSlateGray",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Gray-color/LightSlateGray",
+ "description": "CSS-color 0x778899.",
+ "parent": "Gray-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012917"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012917"
+ }
+ },
+ "Silver": {
+ "short_form": "Silver",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Gray-color/Silver",
+ "description": "CSS-color 0xC0C0C0.",
+ "parent": "Gray-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012918"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012918"
+ }
+ },
+ "SlateGray": {
+ "short_form": "SlateGray",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Gray-color/SlateGray",
+ "description": "CSS-color 0x708090.",
+ "parent": "Gray-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012919"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012919"
+ }
+ },
+ "Green-color": {
+ "short_form": "Green-color",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color",
+ "description": "CSS color group.",
+ "parent": "CSS-color",
+ "children": [
+ "Chartreuse",
+ "DarkCyan",
+ "DarkGreen",
+ "DarkOliveGreen",
+ "DarkSeaGreen",
+ "ForestGreen",
+ "Green",
+ "GreenYellow",
+ "LawnGreen",
+ "LightGreen",
+ "LightSeaGreen",
+ "Lime",
+ "LimeGreen",
+ "MediumAquaMarine",
+ "MediumSeaGreen",
+ "MediumSpringGreen",
+ "OliveDrab",
+ "PaleGreen",
+ "SeaGreen",
+ "SpringGreen",
+ "Teal",
+ "YellowGreen"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012920"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012920"
+ }
+ },
+ "Chartreuse": {
+ "short_form": "Chartreuse",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/Chartreuse",
+ "description": "CSS-color 0x7FFF00.",
+ "parent": "Green-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012921"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012921"
+ }
+ },
+ "DarkCyan": {
+ "short_form": "DarkCyan",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/DarkCyan",
+ "description": "CSS-color 0x008B8B.",
+ "parent": "Green-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012922"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012922"
+ }
+ },
+ "DarkGreen": {
+ "short_form": "DarkGreen",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/DarkGreen",
+ "description": "CSS-color 0x006400.",
+ "parent": "Green-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012923"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012923"
+ }
+ },
+ "DarkOliveGreen": {
+ "short_form": "DarkOliveGreen",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/DarkOliveGreen",
+ "description": "CSS-color 0x556B2F.",
+ "parent": "Green-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012924"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012924"
+ }
+ },
+ "DarkSeaGreen": {
+ "short_form": "DarkSeaGreen",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/DarkSeaGreen",
+ "description": "CSS-color 0x8FBC8F.",
+ "parent": "Green-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012925"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012925"
+ }
+ },
+ "ForestGreen": {
+ "short_form": "ForestGreen",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/ForestGreen",
+ "description": "CSS-color 0x228B22.",
+ "parent": "Green-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012926"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012926"
+ }
+ },
+ "Green": {
+ "short_form": "Green",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/Green",
+ "description": "CSS-color 0x008000.",
+ "parent": "Green-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012927"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012927"
+ }
+ },
+ "GreenYellow": {
+ "short_form": "GreenYellow",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/GreenYellow",
+ "description": "CSS-color 0xADFF2F.",
+ "parent": "Green-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012928"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012928"
+ }
+ },
+ "LawnGreen": {
+ "short_form": "LawnGreen",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/LawnGreen",
+ "description": "CSS-color 0x7CFC00.",
+ "parent": "Green-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012929"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012929"
+ }
+ },
+ "LightGreen": {
+ "short_form": "LightGreen",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/LightGreen",
+ "description": "CSS-color 0x90EE90.",
+ "parent": "Green-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012930"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012930"
+ }
+ },
+ "LightSeaGreen": {
+ "short_form": "LightSeaGreen",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/LightSeaGreen",
+ "description": "CSS-color 0x20B2AA.",
+ "parent": "Green-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012931"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012931"
+ }
+ },
+ "Lime": {
+ "short_form": "Lime",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/Lime",
+ "description": "CSS-color 0x00FF00.",
+ "parent": "Green-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012932"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012932"
+ }
+ },
+ "LimeGreen": {
+ "short_form": "LimeGreen",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/LimeGreen",
+ "description": "CSS-color 0x32CD32.",
+ "parent": "Green-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012933"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012933"
+ }
+ },
+ "MediumAquaMarine": {
+ "short_form": "MediumAquaMarine",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/MediumAquaMarine",
+ "description": "CSS-color 0x66CDAA.",
+ "parent": "Green-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012934"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012934"
+ }
+ },
+ "MediumSeaGreen": {
+ "short_form": "MediumSeaGreen",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/MediumSeaGreen",
+ "description": "CSS-color 0x3CB371.",
+ "parent": "Green-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012935"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012935"
+ }
+ },
+ "MediumSpringGreen": {
+ "short_form": "MediumSpringGreen",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/MediumSpringGreen",
+ "description": "CSS-color 0x00FA9A.",
+ "parent": "Green-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012936"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012936"
+ }
+ },
+ "OliveDrab": {
+ "short_form": "OliveDrab",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/OliveDrab",
+ "description": "CSS-color 0x6B8E23.",
+ "parent": "Green-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012937"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012937"
+ }
+ },
+ "PaleGreen": {
+ "short_form": "PaleGreen",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/PaleGreen",
+ "description": "CSS-color 0x98FB98.",
+ "parent": "Green-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012938"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012938"
+ }
+ },
+ "SeaGreen": {
+ "short_form": "SeaGreen",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/SeaGreen",
+ "description": "CSS-color 0x2E8B57.",
+ "parent": "Green-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012939"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012939"
+ }
+ },
+ "SpringGreen": {
+ "short_form": "SpringGreen",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/SpringGreen",
+ "description": "CSS-color 0x00FF7F.",
+ "parent": "Green-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012940"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012940"
+ }
+ },
+ "Teal": {
+ "short_form": "Teal",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/Teal",
+ "description": "CSS-color 0x008080.",
+ "parent": "Green-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012941"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012941"
+ }
+ },
+ "YellowGreen": {
+ "short_form": "YellowGreen",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/YellowGreen",
+ "description": "CSS-color 0x9ACD32.",
+ "parent": "Green-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012942"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012942"
+ }
+ },
+ "Orange-color": {
+ "short_form": "Orange-color",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Orange-color",
+ "description": "CSS color group.",
+ "parent": "CSS-color",
+ "children": [
+ "Coral",
+ "DarkOrange",
+ "Orange",
+ "OrangeRed",
+ "Tomato"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012943"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012943"
+ }
+ },
+ "Coral": {
+ "short_form": "Coral",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Orange-color/Coral",
+ "description": "CSS-color 0xFF7F50.",
+ "parent": "Orange-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012944"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012944"
+ }
+ },
+ "DarkOrange": {
+ "short_form": "DarkOrange",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Orange-color/DarkOrange",
+ "description": "CSS-color 0xFF8C00.",
+ "parent": "Orange-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012945"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012945"
+ }
+ },
+ "Orange": {
+ "short_form": "Orange",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Orange-color/Orange",
+ "description": "CSS-color 0xFFA500.",
+ "parent": "Orange-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012946"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012946"
+ }
+ },
+ "OrangeRed": {
+ "short_form": "OrangeRed",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Orange-color/OrangeRed",
+ "description": "CSS-color 0xFF4500.",
+ "parent": "Orange-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012947"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012947"
+ }
+ },
+ "Tomato": {
+ "short_form": "Tomato",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Orange-color/Tomato",
+ "description": "CSS-color 0xFF6347.",
+ "parent": "Orange-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012948"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012948"
+ }
+ },
+ "Pink-color": {
+ "short_form": "Pink-color",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Pink-color",
+ "description": "CSS color group.",
+ "parent": "CSS-color",
+ "children": [
+ "DeepPink",
+ "HotPink",
+ "LightPink",
+ "MediumVioletRed",
+ "PaleVioletRed",
+ "Pink"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012949"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012949"
+ }
+ },
+ "DeepPink": {
+ "short_form": "DeepPink",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Pink-color/DeepPink",
+ "description": "CSS-color 0xFF1493.",
+ "parent": "Pink-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012950"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012950"
+ }
+ },
+ "HotPink": {
+ "short_form": "HotPink",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Pink-color/HotPink",
+ "description": "CSS-color 0xFF69B4.",
+ "parent": "Pink-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012951"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012951"
+ }
+ },
+ "LightPink": {
+ "short_form": "LightPink",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Pink-color/LightPink",
+ "description": "CSS-color 0xFFB6C1.",
+ "parent": "Pink-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012952"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012952"
+ }
+ },
+ "MediumVioletRed": {
+ "short_form": "MediumVioletRed",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Pink-color/MediumVioletRed",
+ "description": "CSS-color 0xC71585.",
+ "parent": "Pink-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012953"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012953"
+ }
+ },
+ "PaleVioletRed": {
+ "short_form": "PaleVioletRed",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Pink-color/PaleVioletRed",
+ "description": "CSS-color 0xDB7093.",
+ "parent": "Pink-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012954"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012954"
+ }
+ },
+ "Pink": {
+ "short_form": "Pink",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Pink-color/Pink",
+ "description": "CSS-color 0xFFC0CB.",
+ "parent": "Pink-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012955"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012955"
+ }
+ },
+ "Purple-color": {
+ "short_form": "Purple-color",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color",
+ "description": "CSS color group.",
+ "parent": "CSS-color",
+ "children": [
+ "BlueViolet",
+ "DarkMagenta",
+ "DarkOrchid",
+ "DarkSlateBlue",
+ "DarkViolet",
+ "Fuchsia",
+ "Indigo",
+ "Lavender",
+ "Magenta",
+ "MediumOrchid",
+ "MediumPurple",
+ "MediumSlateBlue",
+ "Orchid",
+ "Plum",
+ "Purple",
+ "RebeccaPurple",
+ "SlateBlue",
+ "Thistle",
+ "Violet"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012956"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012956"
+ }
+ },
+ "BlueViolet": {
+ "short_form": "BlueViolet",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/BlueViolet",
+ "description": "CSS-color 0x8A2BE2.",
+ "parent": "Purple-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012957"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012957"
+ }
+ },
+ "DarkMagenta": {
+ "short_form": "DarkMagenta",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/DarkMagenta",
+ "description": "CSS-color 0x8B008B.",
+ "parent": "Purple-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012958"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012958"
+ }
+ },
+ "DarkOrchid": {
+ "short_form": "DarkOrchid",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/DarkOrchid",
+ "description": "CSS-color 0x9932CC.",
+ "parent": "Purple-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012959"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012959"
+ }
+ },
+ "DarkSlateBlue": {
+ "short_form": "DarkSlateBlue",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/DarkSlateBlue",
+ "description": "CSS-color 0x483D8B.",
+ "parent": "Purple-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012960"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012960"
+ }
+ },
+ "DarkViolet": {
+ "short_form": "DarkViolet",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/DarkViolet",
+ "description": "CSS-color 0x9400D3.",
+ "parent": "Purple-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012961"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012961"
+ }
+ },
+ "Fuchsia": {
+ "short_form": "Fuchsia",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/Fuchsia",
+ "description": "CSS-color 0xFF00FF.",
+ "parent": "Purple-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012962"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012962"
+ }
+ },
+ "Indigo": {
+ "short_form": "Indigo",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/Indigo",
+ "description": "CSS-color 0x4B0082.",
+ "parent": "Purple-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012963"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012963"
+ }
+ },
+ "Lavender": {
+ "short_form": "Lavender",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/Lavender",
+ "description": "CSS-color 0xE6E6FA.",
+ "parent": "Purple-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012964"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012964"
+ }
+ },
+ "Magenta": {
+ "short_form": "Magenta",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/Magenta",
+ "description": "CSS-color 0xFF00FF.",
+ "parent": "Purple-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012965"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012965"
+ }
+ },
+ "MediumOrchid": {
+ "short_form": "MediumOrchid",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/MediumOrchid",
+ "description": "CSS-color 0xBA55D3.",
+ "parent": "Purple-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012966"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012966"
+ }
+ },
+ "MediumPurple": {
+ "short_form": "MediumPurple",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/MediumPurple",
+ "description": "CSS-color 0x9370DB.",
+ "parent": "Purple-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012967"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012967"
+ }
+ },
+ "MediumSlateBlue": {
+ "short_form": "MediumSlateBlue",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/MediumSlateBlue",
+ "description": "CSS-color 0x7B68EE.",
+ "parent": "Purple-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012968"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012968"
+ }
+ },
+ "Orchid": {
+ "short_form": "Orchid",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/Orchid",
+ "description": "CSS-color 0xDA70D6.",
+ "parent": "Purple-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012969"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012969"
+ }
+ },
+ "Plum": {
+ "short_form": "Plum",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/Plum",
+ "description": "CSS-color 0xDDA0DD.",
+ "parent": "Purple-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012970"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012970"
+ }
+ },
+ "Purple": {
+ "short_form": "Purple",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/Purple",
+ "description": "CSS-color 0x800080.",
+ "parent": "Purple-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012971"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012971"
+ }
+ },
+ "RebeccaPurple": {
+ "short_form": "RebeccaPurple",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/RebeccaPurple",
+ "description": "CSS-color 0x663399.",
+ "parent": "Purple-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012972"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012972"
+ }
+ },
+ "SlateBlue": {
+ "short_form": "SlateBlue",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/SlateBlue",
+ "description": "CSS-color 0x6A5ACD.",
+ "parent": "Purple-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012973"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012973"
+ }
+ },
+ "Thistle": {
+ "short_form": "Thistle",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/Thistle",
+ "description": "CSS-color 0xD8BFD8.",
+ "parent": "Purple-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012974"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012974"
+ }
+ },
+ "Violet": {
+ "short_form": "Violet",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/Violet",
+ "description": "CSS-color 0xEE82EE.",
+ "parent": "Purple-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012975"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012975"
+ }
+ },
+ "Red-color": {
+ "short_form": "Red-color",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Red-color",
+ "description": "CSS color group.",
+ "parent": "CSS-color",
+ "children": [
+ "Crimson",
+ "DarkRed",
+ "DarkSalmon",
+ "FireBrick",
+ "IndianRed",
+ "LightCoral",
+ "LightSalmon",
+ "Red",
+ "Salmon"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012976"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012976"
+ }
+ },
+ "Crimson": {
+ "short_form": "Crimson",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Red-color/Crimson",
+ "description": "CSS-color 0xDC143C.",
+ "parent": "Red-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012977"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012977"
+ }
+ },
+ "DarkRed": {
+ "short_form": "DarkRed",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Red-color/DarkRed",
+ "description": "CSS-color 0x8B0000.",
+ "parent": "Red-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012978"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012978"
+ }
+ },
+ "DarkSalmon": {
+ "short_form": "DarkSalmon",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Red-color/DarkSalmon",
+ "description": "CSS-color 0xE9967A.",
+ "parent": "Red-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012979"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012979"
+ }
+ },
+ "FireBrick": {
+ "short_form": "FireBrick",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Red-color/FireBrick",
+ "description": "CSS-color 0xB22222.",
+ "parent": "Red-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012980"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012980"
+ }
+ },
+ "IndianRed": {
+ "short_form": "IndianRed",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Red-color/IndianRed",
+ "description": "CSS-color 0xCD5C5C.",
+ "parent": "Red-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012981"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012981"
+ }
+ },
+ "LightCoral": {
+ "short_form": "LightCoral",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Red-color/LightCoral",
+ "description": "CSS-color 0xF08080.",
+ "parent": "Red-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012982"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012982"
+ }
+ },
+ "LightSalmon": {
+ "short_form": "LightSalmon",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Red-color/LightSalmon",
+ "description": "CSS-color 0xFFA07A.",
+ "parent": "Red-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012983"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012983"
+ }
+ },
+ "Red": {
+ "short_form": "Red",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Red-color/Red",
+ "description": "CSS-color 0xFF0000.",
+ "parent": "Red-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012984"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012984"
+ }
+ },
+ "Salmon": {
+ "short_form": "Salmon",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Red-color/Salmon",
+ "description": "CSS-color 0xFA8072.",
+ "parent": "Red-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012985"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012985"
+ }
+ },
+ "White-color": {
+ "short_form": "White-color",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color",
+ "description": "CSS color group.",
+ "parent": "CSS-color",
+ "children": [
+ "AliceBlue",
+ "AntiqueWhite",
+ "Azure",
+ "Beige",
+ "FloralWhite",
+ "GhostWhite",
+ "HoneyDew",
+ "Ivory",
+ "LavenderBlush",
+ "Linen",
+ "MintCream",
+ "MistyRose",
+ "OldLace",
+ "SeaShell",
+ "Snow",
+ "White",
+ "WhiteSmoke"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012986"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012986"
+ }
+ },
+ "AliceBlue": {
+ "short_form": "AliceBlue",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/AliceBlue",
+ "description": "CSS-color 0xF0F8FF.",
+ "parent": "White-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012987"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012987"
+ }
+ },
+ "AntiqueWhite": {
+ "short_form": "AntiqueWhite",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/AntiqueWhite",
+ "description": "CSS-color 0xFAEBD7.",
+ "parent": "White-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012988"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012988"
+ }
+ },
+ "Azure": {
+ "short_form": "Azure",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/Azure",
+ "description": "CSS-color 0xF0FFFF.",
+ "parent": "White-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012989"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012989"
+ }
+ },
+ "Beige": {
+ "short_form": "Beige",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/Beige",
+ "description": "CSS-color 0xF5F5DC.",
+ "parent": "White-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012990"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012990"
+ }
+ },
+ "FloralWhite": {
+ "short_form": "FloralWhite",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/FloralWhite",
+ "description": "CSS-color 0xFFFAF0.",
+ "parent": "White-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012991"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012991"
+ }
+ },
+ "GhostWhite": {
+ "short_form": "GhostWhite",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/GhostWhite",
+ "description": "CSS-color 0xF8F8FF.",
+ "parent": "White-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012992"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012992"
+ }
+ },
+ "HoneyDew": {
+ "short_form": "HoneyDew",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/HoneyDew",
+ "description": "CSS-color 0xF0FFF0.",
+ "parent": "White-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012993"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012993"
+ }
+ },
+ "Ivory": {
+ "short_form": "Ivory",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/Ivory",
+ "description": "CSS-color 0xFFFFF0.",
+ "parent": "White-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012994"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012994"
+ }
+ },
+ "LavenderBlush": {
+ "short_form": "LavenderBlush",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/LavenderBlush",
+ "description": "CSS-color 0xFFF0F5.",
+ "parent": "White-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012995"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012995"
+ }
+ },
+ "Linen": {
+ "short_form": "Linen",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/Linen",
+ "description": "CSS-color 0xFAF0E6.",
+ "parent": "White-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012996"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012996"
+ }
+ },
+ "MintCream": {
+ "short_form": "MintCream",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/MintCream",
+ "description": "CSS-color 0xF5FFFA.",
+ "parent": "White-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012997"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012997"
+ }
+ },
+ "MistyRose": {
+ "short_form": "MistyRose",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/MistyRose",
+ "description": "CSS-color 0xFFE4E1.",
+ "parent": "White-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012998"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012998"
+ }
+ },
+ "OldLace": {
+ "short_form": "OldLace",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/OldLace",
+ "description": "CSS-color 0xFDF5E6.",
+ "parent": "White-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0012999"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0012999"
+ }
+ },
+ "SeaShell": {
+ "short_form": "SeaShell",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/SeaShell",
+ "description": "CSS-color 0xFFF5EE.",
+ "parent": "White-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013000"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013000"
+ }
+ },
+ "Snow": {
+ "short_form": "Snow",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/Snow",
+ "description": "CSS-color 0xFFFAFA.",
+ "parent": "White-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013001"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013001"
+ }
+ },
+ "White": {
+ "short_form": "White",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/White",
+ "description": "CSS-color 0xFFFFFF.",
+ "parent": "White-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013002"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013002"
+ }
+ },
+ "WhiteSmoke": {
+ "short_form": "WhiteSmoke",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/WhiteSmoke",
+ "description": "CSS-color 0xF5F5F5.",
+ "parent": "White-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013003"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013003"
+ }
+ },
+ "Yellow-color": {
+ "short_form": "Yellow-color",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color",
+ "description": "CSS color group.",
+ "parent": "CSS-color",
+ "children": [
+ "DarkKhaki",
+ "Gold",
+ "Khaki",
+ "LemonChiffon",
+ "LightGoldenRodYellow",
+ "LightYellow",
+ "Moccasin",
+ "PaleGoldenRod",
+ "PapayaWhip",
+ "PeachPuff",
+ "Yellow"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013004"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013004"
+ }
+ },
+ "DarkKhaki": {
+ "short_form": "DarkKhaki",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color/DarkKhaki",
+ "description": "CSS-color 0xBDB76B.",
+ "parent": "Yellow-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013005"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013005"
+ }
+ },
+ "Gold": {
+ "short_form": "Gold",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color/Gold",
+ "description": "CSS-color 0xFFD700.",
+ "parent": "Yellow-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013006"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013006"
+ }
+ },
+ "Khaki": {
+ "short_form": "Khaki",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color/Khaki",
+ "description": "CSS-color 0xF0E68C.",
+ "parent": "Yellow-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013007"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013007"
+ }
+ },
+ "LemonChiffon": {
+ "short_form": "LemonChiffon",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color/LemonChiffon",
+ "description": "CSS-color 0xFFFACD.",
+ "parent": "Yellow-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013008"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013008"
+ }
+ },
+ "LightGoldenRodYellow": {
+ "short_form": "LightGoldenRodYellow",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color/LightGoldenRodYellow",
+ "description": "CSS-color 0xFAFAD2.",
+ "parent": "Yellow-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013009"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013009"
+ }
+ },
+ "LightYellow": {
+ "short_form": "LightYellow",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color/LightYellow",
+ "description": "CSS-color 0xFFFFE0.",
+ "parent": "Yellow-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013010"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013010"
+ }
+ },
+ "Moccasin": {
+ "short_form": "Moccasin",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color/Moccasin",
+ "description": "CSS-color 0xFFE4B5.",
+ "parent": "Yellow-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013011"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013011"
+ }
+ },
+ "PaleGoldenRod": {
+ "short_form": "PaleGoldenRod",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color/PaleGoldenRod",
+ "description": "CSS-color 0xEEE8AA.",
+ "parent": "Yellow-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013012"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013012"
+ }
+ },
+ "PapayaWhip": {
+ "short_form": "PapayaWhip",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color/PapayaWhip",
+ "description": "CSS-color 0xFFEFD5.",
+ "parent": "Yellow-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013013"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013013"
+ }
+ },
+ "PeachPuff": {
+ "short_form": "PeachPuff",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color/PeachPuff",
+ "description": "CSS-color 0xFFDAB9.",
+ "parent": "Yellow-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013014"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013014"
+ }
+ },
+ "Yellow": {
+ "short_form": "Yellow",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color/Yellow",
+ "description": "CSS-color 0xFFFF00.",
+ "parent": "Yellow-color",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013015"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013015"
+ }
+ },
+ "Color-shade": {
+ "short_form": "Color-shade",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/Color-shade",
+ "description": "A slight degree of difference between colors, especially with regard to how light or dark it is or as distinguished from one nearly like it.",
+ "parent": "Color",
+ "children": [
+ "Dark-shade",
+ "Light-shade"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013016"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013016"
+ }
+ },
+ "Dark-shade": {
+ "short_form": "Dark-shade",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/Color-shade/Dark-shade",
+ "description": "A color tone not reflecting much light.",
+ "parent": "Color-shade",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013017"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013017"
+ }
+ },
+ "Light-shade": {
+ "short_form": "Light-shade",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/Color-shade/Light-shade",
+ "description": "A color tone reflecting more light.",
+ "parent": "Color-shade",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013018"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013018"
+ }
+ },
+ "Grayscale": {
+ "short_form": "Grayscale",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/Grayscale",
+ "description": "Using a color map composed of shades of gray, varying from black at the weakest intensity to white at the strongest.",
+ "parent": "Color",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0013019"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013019"
+ },
+ "placeholder": {
+ "description": "White intensity between 0 and 1.",
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0013020"
+ }
+ },
+ "HSV-color": {
+ "short_form": "HSV-color",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/HSV-color",
+ "description": "A color representation that models how colors appear under light.",
+ "parent": "Color",
+ "children": [
+ "HSV-value",
+ "Hue",
+ "Saturation"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013021"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013021"
+ }
+ },
+ "HSV-value": {
+ "short_form": "HSV-value",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/HSV-color/HSV-value",
+ "description": "An attribute of a visual sensation according to which an area appears to emit more or less light.",
+ "parent": "HSV-color",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0013022"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013022"
+ },
+ "placeholder": {
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0013023"
+ }
+ },
+ "Hue": {
+ "short_form": "Hue",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/HSV-color/Hue",
+ "description": "Attribute of a visual sensation according to which an area appears to be similar to one of the perceived colors.",
+ "parent": "HSV-color",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0013024"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013024"
+ },
+ "placeholder": {
+ "description": "Angular value between 0 and 360.",
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0013025"
+ }
+ },
+ "Saturation": {
+ "short_form": "Saturation",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/HSV-color/Saturation",
+ "description": "Colorfulness of a stimulus relative to its own brightness.",
+ "parent": "HSV-color",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0013026"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013026"
+ },
+ "placeholder": {
+ "description": "B value of RGB between 0 and 1.",
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0013027"
+ }
+ },
+ "RGB-color": {
+ "short_form": "RGB-color",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/RGB-color",
+ "description": "A color from the RGB schema.",
+ "parent": "Color",
+ "children": [
+ "RGB-blue",
+ "RGB-green",
+ "RGB-red"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013028"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013028"
+ }
+ },
+ "RGB-blue": {
+ "short_form": "RGB-blue",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/RGB-color/RGB-blue",
+ "description": "The blue component.",
+ "parent": "RGB-color",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0013029"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013029"
+ },
+ "placeholder": {
+ "description": "B value of RGB between 0 and 1.",
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0013030"
+ }
+ },
+ "RGB-green": {
+ "short_form": "RGB-green",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/RGB-color/RGB-green",
+ "description": "The green component.",
+ "parent": "RGB-color",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0013031"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013031"
+ },
+ "placeholder": {
+ "description": "G value of RGB between 0 and 1.",
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0013032"
+ }
+ },
+ "RGB-red": {
+ "short_form": "RGB-red",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/RGB-color/RGB-red",
+ "description": "The red component.",
+ "parent": "RGB-color",
+ "children": [],
+ "attributes": {
+ "hedId": "HED_0013033"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013033"
+ },
+ "placeholder": {
+ "description": "R value of RGB between 0 and 1.",
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0013034"
+ }
+ },
+ "Luminance": {
+ "short_form": "Luminance",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Luminance",
+ "description": "A quality that exists by virtue of the luminous intensity per unit area projected in a given direction.",
+ "parent": "Visual-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013035"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013035"
+ }
+ },
+ "Luminance-contrast": {
+ "short_form": "Luminance-contrast",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Luminance-contrast",
+ "description": "The difference in luminance in specific portions of a scene or image.",
+ "parent": "Visual-attribute",
+ "children": [],
+ "attributes": {
+ "suggestedTag": [
+ "Percentage",
+ "Ratio"
+ ],
+ "hedId": "HED_0013036"
+ },
+ "explicitAttributes": {
+ "suggestedTag": [
+ "Percentage",
+ "Ratio"
+ ],
+ "hedId": "HED_0013036"
+ },
+ "placeholder": {
+ "description": "A non-negative value, usually in the range 0 to 1 or alternative 0 to 100, if representing a percentage.",
+ "takesValue": true,
+ "valueClass": [
+ "numericClass"
+ ],
+ "hedId": "HED_0013037"
+ }
+ },
+ "Opacity": {
+ "short_form": "Opacity",
+ "long_form": "Property/Sensory-property/Sensory-attribute/Visual-attribute/Opacity",
+ "description": "A measure of impenetrability to light.",
+ "parent": "Visual-attribute",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013038"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013038"
+ }
+ },
+ "Sensory-presentation": {
+ "short_form": "Sensory-presentation",
+ "long_form": "Property/Sensory-property/Sensory-presentation",
+ "description": "The entity has a sensory manifestation.",
+ "parent": "Sensory-property",
+ "children": [
+ "Auditory-presentation",
+ "Gustatory-presentation",
+ "Olfactory-presentation",
+ "Somatic-presentation",
+ "Tactile-presentation",
+ "Vestibular-presentation",
+ "Visual-presentation"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013039"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013039"
+ }
+ },
+ "Auditory-presentation": {
+ "short_form": "Auditory-presentation",
+ "long_form": "Property/Sensory-property/Sensory-presentation/Auditory-presentation",
+ "description": "The sense of hearing is used in the presentation to the user.",
+ "parent": "Sensory-presentation",
+ "children": [
+ "Loudspeaker-separation",
+ "Monophonic",
+ "Silent",
+ "Stereophonic"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013040"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013040"
+ }
+ },
+ "Loudspeaker-separation": {
+ "short_form": "Loudspeaker-separation",
+ "long_form": "Property/Sensory-property/Sensory-presentation/Auditory-presentation/Loudspeaker-separation",
+ "description": "The distance between two loudspeakers. Grouped with the Distance tag.",
+ "parent": "Auditory-presentation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Distance"
+ ],
+ "hedId": "HED_0013041"
+ },
+ "explicitAttributes": {
+ "suggestedTag": [
+ "Distance"
+ ],
+ "hedId": "HED_0013041"
+ }
+ },
+ "Monophonic": {
+ "short_form": "Monophonic",
+ "long_form": "Property/Sensory-property/Sensory-presentation/Auditory-presentation/Monophonic",
+ "description": "Relating to sound transmission, recording, or reproduction involving a single transmission path.",
+ "parent": "Auditory-presentation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013042"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013042"
+ }
+ },
+ "Silent": {
+ "short_form": "Silent",
+ "long_form": "Property/Sensory-property/Sensory-presentation/Auditory-presentation/Silent",
+ "description": "The absence of ambient audible sound or the state of having ceased to produce sounds.",
+ "parent": "Auditory-presentation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013043"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013043"
+ }
+ },
+ "Stereophonic": {
+ "short_form": "Stereophonic",
+ "long_form": "Property/Sensory-property/Sensory-presentation/Auditory-presentation/Stereophonic",
+ "description": "Relating to, or constituting sound reproduction involving the use of separated microphones and two transmission channels to achieve the sound separation of a live hearing.",
+ "parent": "Auditory-presentation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013044"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013044"
+ }
+ },
+ "Gustatory-presentation": {
+ "short_form": "Gustatory-presentation",
+ "long_form": "Property/Sensory-property/Sensory-presentation/Gustatory-presentation",
+ "description": "The sense of taste used in the presentation to the user.",
+ "parent": "Sensory-presentation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013045"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013045"
+ }
+ },
+ "Olfactory-presentation": {
+ "short_form": "Olfactory-presentation",
+ "long_form": "Property/Sensory-property/Sensory-presentation/Olfactory-presentation",
+ "description": "The sense of smell used in the presentation to the user.",
+ "parent": "Sensory-presentation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013046"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013046"
+ }
+ },
+ "Somatic-presentation": {
+ "short_form": "Somatic-presentation",
+ "long_form": "Property/Sensory-property/Sensory-presentation/Somatic-presentation",
+ "description": "The nervous system is used in the presentation to the user.",
+ "parent": "Sensory-presentation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013047"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013047"
+ }
+ },
+ "Tactile-presentation": {
+ "short_form": "Tactile-presentation",
+ "long_form": "Property/Sensory-property/Sensory-presentation/Tactile-presentation",
+ "description": "The sense of touch used in the presentation to the user.",
+ "parent": "Sensory-presentation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013048"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013048"
+ }
+ },
+ "Vestibular-presentation": {
+ "short_form": "Vestibular-presentation",
+ "long_form": "Property/Sensory-property/Sensory-presentation/Vestibular-presentation",
+ "description": "The sense balance used in the presentation to the user.",
+ "parent": "Sensory-presentation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013049"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013049"
+ }
+ },
+ "Visual-presentation": {
+ "short_form": "Visual-presentation",
+ "long_form": "Property/Sensory-property/Sensory-presentation/Visual-presentation",
+ "description": "The sense of sight used in the presentation to the user.",
+ "parent": "Sensory-presentation",
+ "children": [
+ "2D-view",
+ "3D-view",
+ "Background-view",
+ "Bistable-view",
+ "Foreground-view",
+ "Foveal-view",
+ "Map-view",
+ "Peripheral-view"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013050"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013050"
+ }
+ },
+ "2D-view": {
+ "short_form": "2D-view",
+ "long_form": "Property/Sensory-property/Sensory-presentation/Visual-presentation/2D-view",
+ "description": "A view showing only two dimensions.",
+ "parent": "Visual-presentation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013051"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013051"
+ }
+ },
+ "3D-view": {
+ "short_form": "3D-view",
+ "long_form": "Property/Sensory-property/Sensory-presentation/Visual-presentation/3D-view",
+ "description": "A view showing three dimensions.",
+ "parent": "Visual-presentation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013052"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013052"
+ }
+ },
+ "Background-view": {
+ "short_form": "Background-view",
+ "long_form": "Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view",
+ "description": "Parts of the view that are farthest from the viewer and usually the not part of the visual focus.",
+ "parent": "Visual-presentation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013053"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013053"
+ }
+ },
+ "Bistable-view": {
+ "short_form": "Bistable-view",
+ "long_form": "Property/Sensory-property/Sensory-presentation/Visual-presentation/Bistable-view",
+ "description": "Something having two stable visual forms that have two distinguishable stable forms as in optical illusions.",
+ "parent": "Visual-presentation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013054"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013054"
+ }
+ },
+ "Foreground-view": {
+ "short_form": "Foreground-view",
+ "long_form": "Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view",
+ "description": "Parts of the view that are closest to the viewer and usually the most important part of the visual focus.",
+ "parent": "Visual-presentation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013055"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013055"
+ }
+ },
+ "Foveal-view": {
+ "short_form": "Foveal-view",
+ "long_form": "Property/Sensory-property/Sensory-presentation/Visual-presentation/Foveal-view",
+ "description": "Visual presentation directly on the fovea. A view projected on the small depression in the retina containing only cones and where vision is most acute.",
+ "parent": "Visual-presentation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013056"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013056"
+ }
+ },
+ "Map-view": {
+ "short_form": "Map-view",
+ "long_form": "Property/Sensory-property/Sensory-presentation/Visual-presentation/Map-view",
+ "description": "A diagrammatic representation of an area of land or sea showing physical features, cities, roads.",
+ "parent": "Visual-presentation",
+ "children": [
+ "Aerial-view",
+ "Satellite-view",
+ "Street-view"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013057"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013057"
+ }
+ },
+ "Aerial-view": {
+ "short_form": "Aerial-view",
+ "long_form": "Property/Sensory-property/Sensory-presentation/Visual-presentation/Map-view/Aerial-view",
+ "description": "Elevated view of an object from above, with a perspective as though the observer were a bird.",
+ "parent": "Map-view",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013058"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013058"
+ }
+ },
+ "Satellite-view": {
+ "short_form": "Satellite-view",
+ "long_form": "Property/Sensory-property/Sensory-presentation/Visual-presentation/Map-view/Satellite-view",
+ "description": "A representation as captured by technology such as a satellite.",
+ "parent": "Map-view",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013059"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013059"
+ }
+ },
+ "Street-view": {
+ "short_form": "Street-view",
+ "long_form": "Property/Sensory-property/Sensory-presentation/Visual-presentation/Map-view/Street-view",
+ "description": "A 360-degrees panoramic view from a position on the ground.",
+ "parent": "Map-view",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013060"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013060"
+ }
+ },
+ "Peripheral-view": {
+ "short_form": "Peripheral-view",
+ "long_form": "Property/Sensory-property/Sensory-presentation/Visual-presentation/Peripheral-view",
+ "description": "Indirect vision as it occurs outside the point of fixation.",
+ "parent": "Visual-presentation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013061"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013061"
+ }
+ },
+ "Task-property": {
+ "short_form": "Task-property",
+ "long_form": "Property/Task-property",
+ "description": "Something that pertains to a task.",
+ "parent": "Property",
+ "children": [
+ "Task-action-type",
+ "Task-attentional-demand",
+ "Task-effect-evidence",
+ "Task-event-role",
+ "Task-relationship",
+ "Task-stimulus-role"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013062"
+ },
+ "explicitAttributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013062"
+ }
+ },
+ "Task-action-type": {
+ "short_form": "Task-action-type",
+ "long_form": "Property/Task-property/Task-action-type",
+ "description": "How an agent action should be interpreted in terms of the task specification.",
+ "parent": "Task-property",
+ "children": [
+ "Appropriate-action",
+ "Correct-action",
+ "Correction",
+ "Done-indication",
+ "Imagined-action",
+ "Inappropriate-action",
+ "Incorrect-action",
+ "Indeterminate-action",
+ "Miss",
+ "Near-miss",
+ "Omitted-action",
+ "Ready-indication"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013063"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013063"
+ }
+ },
+ "Appropriate-action": {
+ "short_form": "Appropriate-action",
+ "long_form": "Property/Task-property/Task-action-type/Appropriate-action",
+ "description": "An action suitable or proper in the circumstances.",
+ "parent": "Task-action-type",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Inappropriate-action"
+ ],
+ "hedId": "HED_0013064"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Inappropriate-action"
+ ],
+ "hedId": "HED_0013064"
+ }
+ },
+ "Correct-action": {
+ "short_form": "Correct-action",
+ "long_form": "Property/Task-property/Task-action-type/Correct-action",
+ "description": "An action that was a correct response in the context of the task.",
+ "parent": "Task-action-type",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Incorrect-action",
+ "Indeterminate-action"
+ ],
+ "hedId": "HED_0013065"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Incorrect-action",
+ "Indeterminate-action"
+ ],
+ "hedId": "HED_0013065"
+ }
+ },
+ "Correction": {
+ "short_form": "Correction",
+ "long_form": "Property/Task-property/Task-action-type/Correction",
+ "description": "An action offering an improvement to replace a mistake or error.",
+ "parent": "Task-action-type",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013066"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013066"
+ }
+ },
+ "Done-indication": {
+ "short_form": "Done-indication",
+ "long_form": "Property/Task-property/Task-action-type/Done-indication",
+ "description": "An action that indicates that the participant has completed this step in the task.",
+ "parent": "Task-action-type",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Ready-indication"
+ ],
+ "hedId": "HED_0013067"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Ready-indication"
+ ],
+ "hedId": "HED_0013067"
+ }
+ },
+ "Imagined-action": {
+ "short_form": "Imagined-action",
+ "long_form": "Property/Task-property/Task-action-type/Imagined-action",
+ "description": "Form a mental image or concept of something. This is used to identity something that only happened in the imagination of the participant as in imagined movements in motor imagery paradigms.",
+ "parent": "Task-action-type",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013068"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013068"
+ }
+ },
+ "Inappropriate-action": {
+ "short_form": "Inappropriate-action",
+ "long_form": "Property/Task-property/Task-action-type/Inappropriate-action",
+ "description": "An action not in keeping with what is correct or proper for the task.",
+ "parent": "Task-action-type",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Appropriate-action"
+ ],
+ "hedId": "HED_0013069"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Appropriate-action"
+ ],
+ "hedId": "HED_0013069"
+ }
+ },
+ "Incorrect-action": {
+ "short_form": "Incorrect-action",
+ "long_form": "Property/Task-property/Task-action-type/Incorrect-action",
+ "description": "An action considered wrong or incorrect in the context of the task.",
+ "parent": "Task-action-type",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Correct-action",
+ "Indeterminate-action"
+ ],
+ "hedId": "HED_0013070"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Correct-action",
+ "Indeterminate-action"
+ ],
+ "hedId": "HED_0013070"
+ }
+ },
+ "Indeterminate-action": {
+ "short_form": "Indeterminate-action",
+ "long_form": "Property/Task-property/Task-action-type/Indeterminate-action",
+ "description": "An action that cannot be distinguished between two or more possibilities in the current context. This tag might be applied when an outside evaluator or a classification algorithm cannot determine a definitive result.",
+ "parent": "Task-action-type",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Correct-action",
+ "Incorrect-action",
+ "Miss",
+ "Near-miss"
+ ],
+ "hedId": "HED_0013071"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Correct-action",
+ "Incorrect-action",
+ "Miss",
+ "Near-miss"
+ ],
+ "hedId": "HED_0013071"
+ }
+ },
+ "Miss": {
+ "short_form": "Miss",
+ "long_form": "Property/Task-property/Task-action-type/Miss",
+ "description": "An action considered to be a failure in the context of the task. For example, if the agent is supposed to try to hit a target and misses.",
+ "parent": "Task-action-type",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Near-miss"
+ ],
+ "hedId": "HED_0013072"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Near-miss"
+ ],
+ "hedId": "HED_0013072"
+ }
+ },
+ "Near-miss": {
+ "short_form": "Near-miss",
+ "long_form": "Property/Task-property/Task-action-type/Near-miss",
+ "description": "An action barely satisfied the requirements of the task. In a driving experiment for example this could pertain to a narrowly avoided collision or other accident.",
+ "parent": "Task-action-type",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Miss"
+ ],
+ "hedId": "HED_0013073"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Miss"
+ ],
+ "hedId": "HED_0013073"
+ }
+ },
+ "Omitted-action": {
+ "short_form": "Omitted-action",
+ "long_form": "Property/Task-property/Task-action-type/Omitted-action",
+ "description": "An expected response was skipped.",
+ "parent": "Task-action-type",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013074"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013074"
+ }
+ },
+ "Ready-indication": {
+ "short_form": "Ready-indication",
+ "long_form": "Property/Task-property/Task-action-type/Ready-indication",
+ "description": "An action that indicates that the participant is ready to perform the next step in the task.",
+ "parent": "Task-action-type",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Done-indication"
+ ],
+ "hedId": "HED_0013075"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Done-indication"
+ ],
+ "hedId": "HED_0013075"
+ }
+ },
+ "Task-attentional-demand": {
+ "short_form": "Task-attentional-demand",
+ "long_form": "Property/Task-property/Task-attentional-demand",
+ "description": "Strategy for allocating attention toward goal-relevant information.",
+ "parent": "Task-property",
+ "children": [
+ "Bottom-up-attention",
+ "Covert-attention",
+ "Divided-attention",
+ "Focused-attention",
+ "Orienting-attention",
+ "Overt-attention",
+ "Selective-attention",
+ "Sustained-attention",
+ "Switched-attention",
+ "Top-down-attention"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013076"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013076"
+ }
+ },
+ "Bottom-up-attention": {
+ "short_form": "Bottom-up-attention",
+ "long_form": "Property/Task-property/Task-attentional-demand/Bottom-up-attention",
+ "description": "Attentional guidance purely by externally driven factors to stimuli that are salient because of their inherent properties relative to the background. Sometimes this is referred to as stimulus driven.",
+ "parent": "Task-attentional-demand",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Top-down-attention"
+ ],
+ "hedId": "HED_0013077"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Top-down-attention"
+ ],
+ "hedId": "HED_0013077"
+ }
+ },
+ "Covert-attention": {
+ "short_form": "Covert-attention",
+ "long_form": "Property/Task-property/Task-attentional-demand/Covert-attention",
+ "description": "Paying attention without moving the eyes.",
+ "parent": "Task-attentional-demand",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Overt-attention"
+ ],
+ "hedId": "HED_0013078"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Overt-attention"
+ ],
+ "hedId": "HED_0013078"
+ }
+ },
+ "Divided-attention": {
+ "short_form": "Divided-attention",
+ "long_form": "Property/Task-property/Task-attentional-demand/Divided-attention",
+ "description": "Integrating parallel multiple stimuli. Behavior involving responding simultaneously to multiple tasks or multiple task demands.",
+ "parent": "Task-attentional-demand",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Focused-attention"
+ ],
+ "hedId": "HED_0013079"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Focused-attention"
+ ],
+ "hedId": "HED_0013079"
+ }
+ },
+ "Focused-attention": {
+ "short_form": "Focused-attention",
+ "long_form": "Property/Task-property/Task-attentional-demand/Focused-attention",
+ "description": "Responding discretely to specific visual, auditory, or tactile stimuli.",
+ "parent": "Task-attentional-demand",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Divided-attention"
+ ],
+ "hedId": "HED_0013080"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Divided-attention"
+ ],
+ "hedId": "HED_0013080"
+ }
+ },
+ "Orienting-attention": {
+ "short_form": "Orienting-attention",
+ "long_form": "Property/Task-property/Task-attentional-demand/Orienting-attention",
+ "description": "Directing attention to a target stimulus.",
+ "parent": "Task-attentional-demand",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013081"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013081"
+ }
+ },
+ "Overt-attention": {
+ "short_form": "Overt-attention",
+ "long_form": "Property/Task-property/Task-attentional-demand/Overt-attention",
+ "description": "Selectively processing one location over others by moving the eyes to point at that location.",
+ "parent": "Task-attentional-demand",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Covert-attention"
+ ],
+ "hedId": "HED_0013082"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Covert-attention"
+ ],
+ "hedId": "HED_0013082"
+ }
+ },
+ "Selective-attention": {
+ "short_form": "Selective-attention",
+ "long_form": "Property/Task-property/Task-attentional-demand/Selective-attention",
+ "description": "Maintaining a behavioral or cognitive set in the face of distracting or competing stimuli. Ability to pay attention to a limited array of all available sensory information.",
+ "parent": "Task-attentional-demand",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013083"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013083"
+ }
+ },
+ "Sustained-attention": {
+ "short_form": "Sustained-attention",
+ "long_form": "Property/Task-property/Task-attentional-demand/Sustained-attention",
+ "description": "Maintaining a consistent behavioral response during continuous and repetitive activity.",
+ "parent": "Task-attentional-demand",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013084"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013084"
+ }
+ },
+ "Switched-attention": {
+ "short_form": "Switched-attention",
+ "long_form": "Property/Task-property/Task-attentional-demand/Switched-attention",
+ "description": "Having to switch attention between two or more modalities of presentation.",
+ "parent": "Task-attentional-demand",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013085"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013085"
+ }
+ },
+ "Top-down-attention": {
+ "short_form": "Top-down-attention",
+ "long_form": "Property/Task-property/Task-attentional-demand/Top-down-attention",
+ "description": "Voluntary allocation of attention to certain features. Sometimes this is referred to goal-oriented attention.",
+ "parent": "Task-attentional-demand",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Bottom-up-attention"
+ ],
+ "hedId": "HED_0013086"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Bottom-up-attention"
+ ],
+ "hedId": "HED_0013086"
+ }
+ },
+ "Task-effect-evidence": {
+ "short_form": "Task-effect-evidence",
+ "long_form": "Property/Task-property/Task-effect-evidence",
+ "description": "The evidence supporting the conclusion that the event had the specified effect.",
+ "parent": "Task-property",
+ "children": [
+ "Behavioral-evidence",
+ "Computational-evidence",
+ "External-evidence",
+ "Intended-effect"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013087"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013087"
+ }
+ },
+ "Behavioral-evidence": {
+ "short_form": "Behavioral-evidence",
+ "long_form": "Property/Task-property/Task-effect-evidence/Behavioral-evidence",
+ "description": "An indication or conclusion based on the behavior of an agent.",
+ "parent": "Task-effect-evidence",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013088"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013088"
+ }
+ },
+ "Computational-evidence": {
+ "short_form": "Computational-evidence",
+ "long_form": "Property/Task-property/Task-effect-evidence/Computational-evidence",
+ "description": "A type of evidence in which data are produced, and/or generated, and/or analyzed on a computer.",
+ "parent": "Task-effect-evidence",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013089"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013089"
+ }
+ },
+ "External-evidence": {
+ "short_form": "External-evidence",
+ "long_form": "Property/Task-property/Task-effect-evidence/External-evidence",
+ "description": "A phenomenon that follows and is caused by some previous phenomenon.",
+ "parent": "Task-effect-evidence",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013090"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013090"
+ }
+ },
+ "Intended-effect": {
+ "short_form": "Intended-effect",
+ "long_form": "Property/Task-property/Task-effect-evidence/Intended-effect",
+ "description": "A phenomenon that is intended to follow and be caused by some previous phenomenon.",
+ "parent": "Task-effect-evidence",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013091"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013091"
+ }
+ },
+ "Task-event-role": {
+ "short_form": "Task-event-role",
+ "long_form": "Property/Task-property/Task-event-role",
+ "description": "The purpose of an event with respect to the task.",
+ "parent": "Task-property",
+ "children": [
+ "Cue",
+ "Experimental-stimulus",
+ "Feedback",
+ "Incidental",
+ "Instructional",
+ "Mishap",
+ "Participant-response",
+ "Task-activity",
+ "Warning"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013092"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013092"
+ }
+ },
+ "Cue": {
+ "short_form": "Cue",
+ "long_form": "Property/Task-property/Task-event-role/Cue",
+ "description": "A signal for an action usually indicating a particular response.",
+ "parent": "Task-event-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013104"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013104"
+ }
+ },
+ "Experimental-stimulus": {
+ "short_form": "Experimental-stimulus",
+ "long_form": "Property/Task-property/Task-event-role/Experimental-stimulus",
+ "description": "Part of something designed to elicit a response in the experiment.",
+ "parent": "Task-event-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013093"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013093"
+ }
+ },
+ "Feedback": {
+ "short_form": "Feedback",
+ "long_form": "Property/Task-property/Task-event-role/Feedback",
+ "description": "An evaluative response to an inquiry, process, event, or activity.",
+ "parent": "Task-event-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013108"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013108"
+ }
+ },
+ "Incidental": {
+ "short_form": "Incidental",
+ "long_form": "Property/Task-property/Task-event-role/Incidental",
+ "description": "A sensory or other type of event that is unrelated to the task or experiment.",
+ "parent": "Task-event-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013094"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013094"
+ }
+ },
+ "Instructional": {
+ "short_form": "Instructional",
+ "long_form": "Property/Task-property/Task-event-role/Instructional",
+ "description": "Usually associated with a sensory event intended to give instructions to the participant about the task or behavior.",
+ "parent": "Task-event-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013095"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013095"
+ }
+ },
+ "Mishap": {
+ "short_form": "Mishap",
+ "long_form": "Property/Task-property/Task-event-role/Mishap",
+ "description": "Unplanned disruption such as an equipment or experiment control abnormality or experimenter error.",
+ "parent": "Task-event-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013096"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013096"
+ }
+ },
+ "Participant-response": {
+ "short_form": "Participant-response",
+ "long_form": "Property/Task-property/Task-event-role/Participant-response",
+ "description": "Something related to a participant actions in performing the task.",
+ "parent": "Task-event-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013097"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013097"
+ }
+ },
+ "Task-activity": {
+ "short_form": "Task-activity",
+ "long_form": "Property/Task-property/Task-event-role/Task-activity",
+ "description": "Something that is part of the overall task or is necessary to the overall experiment but is not directly part of a stimulus-response cycle. Examples would be taking a survey or provided providing a silva sample.",
+ "parent": "Task-event-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013098"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013098"
+ }
+ },
+ "Warning": {
+ "short_form": "Warning",
+ "long_form": "Property/Task-property/Task-event-role/Warning",
+ "description": "Something that should warn the participant that the parameters of the task have been or are about to be exceeded such as a warning message about getting too close to the shoulder of the road in a driving task.",
+ "parent": "Task-event-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013099"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013099"
+ }
+ },
+ "Task-relationship": {
+ "short_form": "Task-relationship",
+ "long_form": "Property/Task-property/Task-relationship",
+ "description": "Specifying organizational importance of sub-tasks.",
+ "parent": "Task-property",
+ "children": [
+ "Background-subtask",
+ "Primary-subtask"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013100"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013100"
+ }
+ },
+ "Background-subtask": {
+ "short_form": "Background-subtask",
+ "long_form": "Property/Task-property/Task-relationship/Background-subtask",
+ "description": "A part of the task which should be performed in the background as for example inhibiting blinks due to instruction while performing the primary task.",
+ "parent": "Task-relationship",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013101"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013101"
+ }
+ },
+ "Primary-subtask": {
+ "short_form": "Primary-subtask",
+ "long_form": "Property/Task-property/Task-relationship/Primary-subtask",
+ "description": "A part of the task which should be the primary focus of the participant.",
+ "parent": "Task-relationship",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013102"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013102"
+ }
+ },
+ "Task-stimulus-role": {
+ "short_form": "Task-stimulus-role",
+ "long_form": "Property/Task-property/Task-stimulus-role",
+ "description": "The role the stimulus or other type of sensory event, such as feedback, plays in the task.",
+ "parent": "Task-property",
+ "children": [
+ "Distractor",
+ "Expected",
+ "Extraneous",
+ "Go-signal",
+ "Meaningful",
+ "Newly-learned",
+ "Non-informative",
+ "Non-target",
+ "Not-meaningful",
+ "Novel",
+ "Oddball",
+ "Penalty",
+ "Planned",
+ "Priming",
+ "Query",
+ "Reward",
+ "Stop-signal",
+ "Target",
+ "Threat",
+ "Timed",
+ "Unexpected",
+ "Unplanned"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013103"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013103"
+ }
+ },
+ "Distractor": {
+ "short_form": "Distractor",
+ "long_form": "Property/Task-property/Task-stimulus-role/Distractor",
+ "description": "A person or thing that distracts or a plausible but incorrect option in a multiple-choice question. In psychological studies this is sometimes referred to as a foil.",
+ "parent": "Task-stimulus-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013105"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013105"
+ }
+ },
+ "Expected": {
+ "short_form": "Expected",
+ "long_form": "Property/Task-property/Task-stimulus-role/Expected",
+ "description": "Considered likely, probable or anticipated. Something of low information value as in frequent non-targets in an RSVP paradigm.",
+ "parent": "Task-stimulus-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Target"
+ ],
+ "relatedTag": [
+ "Unexpected"
+ ],
+ "hedId": "HED_0013106"
+ },
+ "explicitAttributes": {
+ "suggestedTag": [
+ "Target"
+ ],
+ "relatedTag": [
+ "Unexpected"
+ ],
+ "hedId": "HED_0013106"
+ }
+ },
+ "Extraneous": {
+ "short_form": "Extraneous",
+ "long_form": "Property/Task-property/Task-stimulus-role/Extraneous",
+ "description": "Irrelevant or unrelated to the subject being dealt with.",
+ "parent": "Task-stimulus-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013107"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013107"
+ }
+ },
+ "Go-signal": {
+ "short_form": "Go-signal",
+ "long_form": "Property/Task-property/Task-stimulus-role/Go-signal",
+ "description": "An indicator to proceed with a planned action.",
+ "parent": "Task-stimulus-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Stop-signal"
+ ],
+ "hedId": "HED_0013109"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Stop-signal"
+ ],
+ "hedId": "HED_0013109"
+ }
+ },
+ "Meaningful": {
+ "short_form": "Meaningful",
+ "long_form": "Property/Task-property/Task-stimulus-role/Meaningful",
+ "description": "Conveying significant or relevant information.",
+ "parent": "Task-stimulus-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013110"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013110"
+ }
+ },
+ "Newly-learned": {
+ "short_form": "Newly-learned",
+ "long_form": "Property/Task-property/Task-stimulus-role/Newly-learned",
+ "description": "Representing recently acquired information or understanding.",
+ "parent": "Task-stimulus-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013111"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013111"
+ }
+ },
+ "Non-informative": {
+ "short_form": "Non-informative",
+ "long_form": "Property/Task-property/Task-stimulus-role/Non-informative",
+ "description": "Something that is not useful in forming an opinion or judging an outcome.",
+ "parent": "Task-stimulus-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013112"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013112"
+ }
+ },
+ "Non-target": {
+ "short_form": "Non-target",
+ "long_form": "Property/Task-property/Task-stimulus-role/Non-target",
+ "description": "Something other than that done or looked for. Also tag Expected if the Non-target is frequent.",
+ "parent": "Task-stimulus-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Target"
+ ],
+ "hedId": "HED_0013113"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Target"
+ ],
+ "hedId": "HED_0013113"
+ }
+ },
+ "Not-meaningful": {
+ "short_form": "Not-meaningful",
+ "long_form": "Property/Task-property/Task-stimulus-role/Not-meaningful",
+ "description": "Not having a serious, important, or useful quality or purpose.",
+ "parent": "Task-stimulus-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013114"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013114"
+ }
+ },
+ "Novel": {
+ "short_form": "Novel",
+ "long_form": "Property/Task-property/Task-stimulus-role/Novel",
+ "description": "Having no previous example or precedent or parallel.",
+ "parent": "Task-stimulus-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013115"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013115"
+ }
+ },
+ "Oddball": {
+ "short_form": "Oddball",
+ "long_form": "Property/Task-property/Task-stimulus-role/Oddball",
+ "description": "Something unusual, or infrequent.",
+ "parent": "Task-stimulus-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "suggestedTag": [
+ "Target"
+ ],
+ "relatedTag": [
+ "Unexpected"
+ ],
+ "hedId": "HED_0013116"
+ },
+ "explicitAttributes": {
+ "suggestedTag": [
+ "Target"
+ ],
+ "relatedTag": [
+ "Unexpected"
+ ],
+ "hedId": "HED_0013116"
+ }
+ },
+ "Penalty": {
+ "short_form": "Penalty",
+ "long_form": "Property/Task-property/Task-stimulus-role/Penalty",
+ "description": "A disadvantage, loss, or hardship due to some action.",
+ "parent": "Task-stimulus-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013117"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013117"
+ }
+ },
+ "Planned": {
+ "short_form": "Planned",
+ "long_form": "Property/Task-property/Task-stimulus-role/Planned",
+ "description": "Something that was decided on or arranged in advance.",
+ "parent": "Task-stimulus-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Unplanned"
+ ],
+ "hedId": "HED_0013118"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Unplanned"
+ ],
+ "hedId": "HED_0013118"
+ }
+ },
+ "Priming": {
+ "short_form": "Priming",
+ "long_form": "Property/Task-property/Task-stimulus-role/Priming",
+ "description": "An implicit memory effect in which exposure to a stimulus influences response to a later stimulus.",
+ "parent": "Task-stimulus-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013119"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013119"
+ }
+ },
+ "Query": {
+ "short_form": "Query",
+ "long_form": "Property/Task-property/Task-stimulus-role/Query",
+ "description": "A sentence of inquiry that asks for a reply.",
+ "parent": "Task-stimulus-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013120"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013120"
+ }
+ },
+ "Reward": {
+ "short_form": "Reward",
+ "long_form": "Property/Task-property/Task-stimulus-role/Reward",
+ "description": "A positive reinforcement for a desired action, behavior or response.",
+ "parent": "Task-stimulus-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013121"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013121"
+ }
+ },
+ "Stop-signal": {
+ "short_form": "Stop-signal",
+ "long_form": "Property/Task-property/Task-stimulus-role/Stop-signal",
+ "description": "An indicator that the agent should stop the current activity.",
+ "parent": "Task-stimulus-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Go-signal"
+ ],
+ "hedId": "HED_0013122"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Go-signal"
+ ],
+ "hedId": "HED_0013122"
+ }
+ },
+ "Target": {
+ "short_form": "Target",
+ "long_form": "Property/Task-property/Task-stimulus-role/Target",
+ "description": "Something fixed as a goal, destination, or point of examination.",
+ "parent": "Task-stimulus-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013123"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013123"
+ }
+ },
+ "Threat": {
+ "short_form": "Threat",
+ "long_form": "Property/Task-property/Task-stimulus-role/Threat",
+ "description": "An indicator that signifies hostility and predicts an increased probability of attack.",
+ "parent": "Task-stimulus-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013124"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013124"
+ }
+ },
+ "Timed": {
+ "short_form": "Timed",
+ "long_form": "Property/Task-property/Task-stimulus-role/Timed",
+ "description": "Something planned or scheduled to be done at a particular time or lasting for a specified amount of time.",
+ "parent": "Task-stimulus-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013125"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013125"
+ }
+ },
+ "Unexpected": {
+ "short_form": "Unexpected",
+ "long_form": "Property/Task-property/Task-stimulus-role/Unexpected",
+ "description": "Something that is not anticipated.",
+ "parent": "Task-stimulus-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Expected"
+ ],
+ "hedId": "HED_0013126"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Expected"
+ ],
+ "hedId": "HED_0013126"
+ }
+ },
+ "Unplanned": {
+ "short_form": "Unplanned",
+ "long_form": "Property/Task-property/Task-stimulus-role/Unplanned",
+ "description": "Something that has not been planned as part of the task.",
+ "parent": "Task-stimulus-role",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Planned"
+ ],
+ "hedId": "HED_0013127"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Planned"
+ ],
+ "hedId": "HED_0013127"
+ }
+ },
+ "Relation": {
+ "short_form": "Relation",
+ "long_form": "Relation",
+ "description": "Concerns the way in which two or more people or things are connected.",
+ "parent": null,
+ "children": [
+ "Comparative-relation",
+ "Connective-relation",
+ "Directional-relation",
+ "Logical-relation",
+ "Spatial-relation",
+ "Temporal-relation"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013128"
+ },
+ "explicitAttributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013128"
+ }
+ },
+ "Comparative-relation": {
+ "short_form": "Comparative-relation",
+ "long_form": "Relation/Comparative-relation",
+ "description": "Something considered in comparison to something else. The first entity is the focus.",
+ "parent": "Relation",
+ "children": [
+ "Approximately-equal-to",
+ "Equal-to",
+ "Greater-than",
+ "Greater-than-or-equal-to",
+ "Less-than",
+ "Less-than-or-equal-to",
+ "Not-equal-to"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013129"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013129"
+ }
+ },
+ "Approximately-equal-to": {
+ "short_form": "Approximately-equal-to",
+ "long_form": "Relation/Comparative-relation/Approximately-equal-to",
+ "description": "(A, (Approximately-equal-to, B)) indicates that A and B have almost the same value. Here A and B could refer to sizes, orders, positions or other quantities.",
+ "parent": "Comparative-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013130"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013130"
+ }
+ },
+ "Equal-to": {
+ "short_form": "Equal-to",
+ "long_form": "Relation/Comparative-relation/Equal-to",
+ "description": "(A, (Equal-to, B)) indicates that the size or order of A is the same as that of B.",
+ "parent": "Comparative-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013131"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013131"
+ }
+ },
+ "Greater-than": {
+ "short_form": "Greater-than",
+ "long_form": "Relation/Comparative-relation/Greater-than",
+ "description": "(A, (Greater-than, B)) indicates that the relative size or order of A is bigger than that of B.",
+ "parent": "Comparative-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013132"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013132"
+ }
+ },
+ "Greater-than-or-equal-to": {
+ "short_form": "Greater-than-or-equal-to",
+ "long_form": "Relation/Comparative-relation/Greater-than-or-equal-to",
+ "description": "(A, (Greater-than-or-equal-to, B)) indicates that the relative size or order of A is bigger than or the same as that of B.",
+ "parent": "Comparative-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013133"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013133"
+ }
+ },
+ "Less-than": {
+ "short_form": "Less-than",
+ "long_form": "Relation/Comparative-relation/Less-than",
+ "description": "(A, (Less-than, B)) indicates that A is smaller than B. Here A and B could refer to sizes, orders, positions or other quantities.",
+ "parent": "Comparative-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013134"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013134"
+ }
+ },
+ "Less-than-or-equal-to": {
+ "short_form": "Less-than-or-equal-to",
+ "long_form": "Relation/Comparative-relation/Less-than-or-equal-to",
+ "description": "(A, (Less-than-or-equal-to, B)) indicates that the relative size or order of A is smaller than or equal to B.",
+ "parent": "Comparative-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013135"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013135"
+ }
+ },
+ "Not-equal-to": {
+ "short_form": "Not-equal-to",
+ "long_form": "Relation/Comparative-relation/Not-equal-to",
+ "description": "(A, (Not-equal-to, B)) indicates that the size or order of A is not the same as that of B.",
+ "parent": "Comparative-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013136"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013136"
+ }
+ },
+ "Connective-relation": {
+ "short_form": "Connective-relation",
+ "long_form": "Relation/Connective-relation",
+ "description": "Indicates two entities are related in some way. The first entity is the focus.",
+ "parent": "Relation",
+ "children": [
+ "Belongs-to",
+ "Connected-to",
+ "Contained-in",
+ "Described-by",
+ "From-to",
+ "Group-of",
+ "Implied-by",
+ "Includes",
+ "Interacts-with",
+ "Member-of",
+ "Part-of",
+ "Performed-by",
+ "Performed-using",
+ "Related-to",
+ "Unrelated-to"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013137"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013137"
+ }
+ },
+ "Belongs-to": {
+ "short_form": "Belongs-to",
+ "long_form": "Relation/Connective-relation/Belongs-to",
+ "description": "(A, (Belongs-to, B)) indicates that A is a member of B.",
+ "parent": "Connective-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013138"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013138"
+ }
+ },
+ "Connected-to": {
+ "short_form": "Connected-to",
+ "long_form": "Relation/Connective-relation/Connected-to",
+ "description": "(A, (Connected-to, B)) indicates that A is related to B in some respect, usually through a direct link.",
+ "parent": "Connective-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013139"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013139"
+ }
+ },
+ "Contained-in": {
+ "short_form": "Contained-in",
+ "long_form": "Relation/Connective-relation/Contained-in",
+ "description": "(A, (Contained-in, B)) indicates that A is completely inside of B.",
+ "parent": "Connective-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013140"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013140"
+ }
+ },
+ "Described-by": {
+ "short_form": "Described-by",
+ "long_form": "Relation/Connective-relation/Described-by",
+ "description": "(A, (Described-by, B)) indicates that B provides information about A.",
+ "parent": "Connective-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013141"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013141"
+ }
+ },
+ "From-to": {
+ "short_form": "From-to",
+ "long_form": "Relation/Connective-relation/From-to",
+ "description": "(A, (From-to, B)) indicates a directional relation from A to B. A is considered the source.",
+ "parent": "Connective-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013142"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013142"
+ }
+ },
+ "Group-of": {
+ "short_form": "Group-of",
+ "long_form": "Relation/Connective-relation/Group-of",
+ "description": "(A, (Group-of, B)) indicates A is a group of items of type B.",
+ "parent": "Connective-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013143"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013143"
+ }
+ },
+ "Implied-by": {
+ "short_form": "Implied-by",
+ "long_form": "Relation/Connective-relation/Implied-by",
+ "description": "(A, (Implied-by, B)) indicates B is suggested by A.",
+ "parent": "Connective-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013144"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013144"
+ }
+ },
+ "Includes": {
+ "short_form": "Includes",
+ "long_form": "Relation/Connective-relation/Includes",
+ "description": "(A, (Includes, B)) indicates that A has B as a member or part.",
+ "parent": "Connective-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013145"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013145"
+ }
+ },
+ "Interacts-with": {
+ "short_form": "Interacts-with",
+ "long_form": "Relation/Connective-relation/Interacts-with",
+ "description": "(A, (Interacts-with, B)) indicates A and B interact, possibly reciprocally.",
+ "parent": "Connective-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013146"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013146"
+ }
+ },
+ "Member-of": {
+ "short_form": "Member-of",
+ "long_form": "Relation/Connective-relation/Member-of",
+ "description": "(A, (Member-of, B)) indicates A is a member of group B.",
+ "parent": "Connective-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013147"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013147"
+ }
+ },
+ "Part-of": {
+ "short_form": "Part-of",
+ "long_form": "Relation/Connective-relation/Part-of",
+ "description": "(A, (Part-of, B)) indicates A is a part of the whole B.",
+ "parent": "Connective-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013148"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013148"
+ }
+ },
+ "Performed-by": {
+ "short_form": "Performed-by",
+ "long_form": "Relation/Connective-relation/Performed-by",
+ "description": "(A, (Performed-by, B)) indicates that the action or procedure A was carried out by agent B.",
+ "parent": "Connective-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013149"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013149"
+ }
+ },
+ "Performed-using": {
+ "short_form": "Performed-using",
+ "long_form": "Relation/Connective-relation/Performed-using",
+ "description": "(A, (Performed-using, B)) indicates that the action or procedure A was accomplished using B.",
+ "parent": "Connective-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013150"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013150"
+ }
+ },
+ "Related-to": {
+ "short_form": "Related-to",
+ "long_form": "Relation/Connective-relation/Related-to",
+ "description": "(A, (Related-to, B)) indicates A has some relationship to B.",
+ "parent": "Connective-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013151"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013151"
+ }
+ },
+ "Unrelated-to": {
+ "short_form": "Unrelated-to",
+ "long_form": "Relation/Connective-relation/Unrelated-to",
+ "description": "(A, (Unrelated-to, B)) indicates that A is not related to B.For example, A is not related to Task.",
+ "parent": "Connective-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013152"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013152"
+ }
+ },
+ "Directional-relation": {
+ "short_form": "Directional-relation",
+ "long_form": "Relation/Directional-relation",
+ "description": "A relationship indicating direction of change of one entity relative to another. The first entity is the focus.",
+ "parent": "Relation",
+ "children": [
+ "Away-from",
+ "Towards"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013153"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013153"
+ }
+ },
+ "Away-from": {
+ "short_form": "Away-from",
+ "long_form": "Relation/Directional-relation/Away-from",
+ "description": "(A, (Away-from, B)) indicates that A is going or has moved away from B. The meaning depends on A and B.",
+ "parent": "Directional-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013154"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013154"
+ }
+ },
+ "Towards": {
+ "short_form": "Towards",
+ "long_form": "Relation/Directional-relation/Towards",
+ "description": "(A, (Towards, B)) indicates that A is going to or has moved to B. The meaning depends on A and B.",
+ "parent": "Directional-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013155"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013155"
+ }
+ },
+ "Logical-relation": {
+ "short_form": "Logical-relation",
+ "long_form": "Relation/Logical-relation",
+ "description": "Indicating a logical relationship between entities. The first entity is usually the focus.",
+ "parent": "Relation",
+ "children": [
+ "And",
+ "Or"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013156"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013156"
+ }
+ },
+ "And": {
+ "short_form": "And",
+ "long_form": "Relation/Logical-relation/And",
+ "description": "(A, (And, B)) means A and B are both in effect.",
+ "parent": "Logical-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013157"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013157"
+ }
+ },
+ "Or": {
+ "short_form": "Or",
+ "long_form": "Relation/Logical-relation/Or",
+ "description": "(A, (Or, B)) means at least one of A and B are in effect.",
+ "parent": "Logical-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013158"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013158"
+ }
+ },
+ "Spatial-relation": {
+ "short_form": "Spatial-relation",
+ "long_form": "Relation/Spatial-relation",
+ "description": "Indicating a relationship about position between entities.",
+ "parent": "Relation",
+ "children": [
+ "Above",
+ "Across-from",
+ "Adjacent-to",
+ "Ahead-of",
+ "Around",
+ "Behind",
+ "Below",
+ "Between",
+ "Bilateral-to",
+ "Bottom-edge-of",
+ "Boundary-of",
+ "Center-of",
+ "Close-to",
+ "Far-from",
+ "In-front-of",
+ "Left-edge-of",
+ "Left-side-of",
+ "Lower-center-of",
+ "Lower-left-of",
+ "Lower-right-of",
+ "Outside-of",
+ "Over",
+ "Right-edge-of",
+ "Right-side-of",
+ "To-left-of",
+ "To-right-of",
+ "Top-edge-of",
+ "Top-of",
+ "Underneath",
+ "Upper-center-of",
+ "Upper-left-of",
+ "Upper-right-of",
+ "Within"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013159"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013159"
+ }
+ },
+ "Above": {
+ "short_form": "Above",
+ "long_form": "Relation/Spatial-relation/Above",
+ "description": "(A, (Above, B)) means A is in a place or position that is higher than B.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013160"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013160"
+ }
+ },
+ "Across-from": {
+ "short_form": "Across-from",
+ "long_form": "Relation/Spatial-relation/Across-from",
+ "description": "(A, (Across-from, B)) means A is on the opposite side of something from B.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013161"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013161"
+ }
+ },
+ "Adjacent-to": {
+ "short_form": "Adjacent-to",
+ "long_form": "Relation/Spatial-relation/Adjacent-to",
+ "description": "(A, (Adjacent-to, B)) indicates that A is next to B in time or space.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013162"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013162"
+ }
+ },
+ "Ahead-of": {
+ "short_form": "Ahead-of",
+ "long_form": "Relation/Spatial-relation/Ahead-of",
+ "description": "(A, (Ahead-of, B)) indicates that A is further forward in time or space in B.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013163"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013163"
+ }
+ },
+ "Around": {
+ "short_form": "Around",
+ "long_form": "Relation/Spatial-relation/Around",
+ "description": "(A, (Around, B)) means A is in or near the present place or situation of B.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013164"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013164"
+ }
+ },
+ "Behind": {
+ "short_form": "Behind",
+ "long_form": "Relation/Spatial-relation/Behind",
+ "description": "(A, (Behind, B)) means A is at or to the far side of B, typically so as to be hidden by it.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013165"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013165"
+ }
+ },
+ "Below": {
+ "short_form": "Below",
+ "long_form": "Relation/Spatial-relation/Below",
+ "description": "(A, (Below, B)) means A is in a place or position that is lower than the position of B.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013166"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013166"
+ }
+ },
+ "Between": {
+ "short_form": "Between",
+ "long_form": "Relation/Spatial-relation/Between",
+ "description": "(A, (Between, (B, C))) means A is in the space or interval separating B and C.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013167"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013167"
+ }
+ },
+ "Bilateral-to": {
+ "short_form": "Bilateral-to",
+ "long_form": "Relation/Spatial-relation/Bilateral-to",
+ "description": "(A, (Bilateral, B)) means A is on both sides of B or affects both sides of B.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013168"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013168"
+ }
+ },
+ "Bottom-edge-of": {
+ "short_form": "Bottom-edge-of",
+ "long_form": "Relation/Spatial-relation/Bottom-edge-of",
+ "description": "(A, (Bottom-edge-of, B)) means A is on the bottom most part or or near the boundary of B.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Left-edge-of",
+ "Right-edge-of",
+ "Top-edge-of"
+ ],
+ "hedId": "HED_0013169"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Left-edge-of",
+ "Right-edge-of",
+ "Top-edge-of"
+ ],
+ "hedId": "HED_0013169"
+ }
+ },
+ "Boundary-of": {
+ "short_form": "Boundary-of",
+ "long_form": "Relation/Spatial-relation/Boundary-of",
+ "description": "(A, (Boundary-of, B)) means A is on or part of the edge or boundary of B.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013170"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013170"
+ }
+ },
+ "Center-of": {
+ "short_form": "Center-of",
+ "long_form": "Relation/Spatial-relation/Center-of",
+ "description": "(A, (Center-of, B)) means A is at a point or or in an area that is approximately central within B.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013171"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013171"
+ }
+ },
+ "Close-to": {
+ "short_form": "Close-to",
+ "long_form": "Relation/Spatial-relation/Close-to",
+ "description": "(A, (Close-to, B)) means A is at a small distance from or is located near in space to B.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013172"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013172"
+ }
+ },
+ "Far-from": {
+ "short_form": "Far-from",
+ "long_form": "Relation/Spatial-relation/Far-from",
+ "description": "(A, (Far-from, B)) means A is at a large distance from or is not located near in space to B.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013173"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013173"
+ }
+ },
+ "In-front-of": {
+ "short_form": "In-front-of",
+ "long_form": "Relation/Spatial-relation/In-front-of",
+ "description": "(A, (In-front-of, B)) means A is in a position just ahead or at the front part of B, potentially partially blocking B from view.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013174"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013174"
+ }
+ },
+ "Left-edge-of": {
+ "short_form": "Left-edge-of",
+ "long_form": "Relation/Spatial-relation/Left-edge-of",
+ "description": "(A, (Left-edge-of, B)) means A is located on the left side of B on or near the boundary of B.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Bottom-edge-of",
+ "Right-edge-of",
+ "Top-edge-of"
+ ],
+ "hedId": "HED_0013175"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Bottom-edge-of",
+ "Right-edge-of",
+ "Top-edge-of"
+ ],
+ "hedId": "HED_0013175"
+ }
+ },
+ "Left-side-of": {
+ "short_form": "Left-side-of",
+ "long_form": "Relation/Spatial-relation/Left-side-of",
+ "description": "(A, (Left-side-of, B)) means A is located on the left side of B usually as part of B.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Right-side-of"
+ ],
+ "hedId": "HED_0013176"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Right-side-of"
+ ],
+ "hedId": "HED_0013176"
+ }
+ },
+ "Lower-center-of": {
+ "short_form": "Lower-center-of",
+ "long_form": "Relation/Spatial-relation/Lower-center-of",
+ "description": "(A, (Lower-center-of, B)) means A is situated on the lower center part of B (due south). This relation is often used to specify qualitative information about screen position.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Center-of",
+ "Lower-left-of",
+ "Lower-right-of",
+ "Upper-center-of",
+ "Upper-right-of"
+ ],
+ "hedId": "HED_0013177"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Center-of",
+ "Lower-left-of",
+ "Lower-right-of",
+ "Upper-center-of",
+ "Upper-right-of"
+ ],
+ "hedId": "HED_0013177"
+ }
+ },
+ "Lower-left-of": {
+ "short_form": "Lower-left-of",
+ "long_form": "Relation/Spatial-relation/Lower-left-of",
+ "description": "(A, (Lower-left-of, B)) means A is situated on the lower left part of B. This relation is often used to specify qualitative information about screen position.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Center-of",
+ "Lower-center-of",
+ "Lower-right-of",
+ "Upper-center-of",
+ "Upper-left-of",
+ "Upper-right-of"
+ ],
+ "hedId": "HED_0013178"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Center-of",
+ "Lower-center-of",
+ "Lower-right-of",
+ "Upper-center-of",
+ "Upper-left-of",
+ "Upper-right-of"
+ ],
+ "hedId": "HED_0013178"
+ }
+ },
+ "Lower-right-of": {
+ "short_form": "Lower-right-of",
+ "long_form": "Relation/Spatial-relation/Lower-right-of",
+ "description": "(A, (Lower-right-of, B)) means A is situated on the lower right part of B. This relation is often used to specify qualitative information about screen position.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Center-of",
+ "Lower-center-of",
+ "Lower-left-of",
+ "Upper-left-of",
+ "Upper-center-of",
+ "Upper-left-of",
+ "Lower-right-of"
+ ],
+ "hedId": "HED_0013179"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Center-of",
+ "Lower-center-of",
+ "Lower-left-of",
+ "Upper-left-of",
+ "Upper-center-of",
+ "Upper-left-of",
+ "Lower-right-of"
+ ],
+ "hedId": "HED_0013179"
+ }
+ },
+ "Outside-of": {
+ "short_form": "Outside-of",
+ "long_form": "Relation/Spatial-relation/Outside-of",
+ "description": "(A, (Outside-of, B)) means A is located in the space around but not including B.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013180"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013180"
+ }
+ },
+ "Over": {
+ "short_form": "Over",
+ "long_form": "Relation/Spatial-relation/Over",
+ "description": "(A, (Over, B)) means A above is above B so as to cover or protect or A extends over the a general area as from a from a vantage point.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013181"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013181"
+ }
+ },
+ "Right-edge-of": {
+ "short_form": "Right-edge-of",
+ "long_form": "Relation/Spatial-relation/Right-edge-of",
+ "description": "(A, (Right-edge-of, B)) means A is located on the right side of B on or near the boundary of B.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Bottom-edge-of",
+ "Left-edge-of",
+ "Top-edge-of"
+ ],
+ "hedId": "HED_0013182"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Bottom-edge-of",
+ "Left-edge-of",
+ "Top-edge-of"
+ ],
+ "hedId": "HED_0013182"
+ }
+ },
+ "Right-side-of": {
+ "short_form": "Right-side-of",
+ "long_form": "Relation/Spatial-relation/Right-side-of",
+ "description": "(A, (Right-side-of, B)) means A is located on the right side of B usually as part of B.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Left-side-of"
+ ],
+ "hedId": "HED_0013183"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Left-side-of"
+ ],
+ "hedId": "HED_0013183"
+ }
+ },
+ "To-left-of": {
+ "short_form": "To-left-of",
+ "long_form": "Relation/Spatial-relation/To-left-of",
+ "description": "(A, (To-left-of, B)) means A is located on or directed toward the side to the west of B when B is facing north. This term is used when A is not part of B.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013184"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013184"
+ }
+ },
+ "To-right-of": {
+ "short_form": "To-right-of",
+ "long_form": "Relation/Spatial-relation/To-right-of",
+ "description": "(A, (To-right-of, B)) means A is located on or directed toward the side to the east of B when B is facing north. This term is used when A is not part of B.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013185"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013185"
+ }
+ },
+ "Top-edge-of": {
+ "short_form": "Top-edge-of",
+ "long_form": "Relation/Spatial-relation/Top-edge-of",
+ "description": "(A, (Top-edge-of, B)) means A is on the uppermost part or or near the boundary of B.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Left-edge-of",
+ "Right-edge-of",
+ "Bottom-edge-of"
+ ],
+ "hedId": "HED_0013186"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Left-edge-of",
+ "Right-edge-of",
+ "Bottom-edge-of"
+ ],
+ "hedId": "HED_0013186"
+ }
+ },
+ "Top-of": {
+ "short_form": "Top-of",
+ "long_form": "Relation/Spatial-relation/Top-of",
+ "description": "(A, (Top-of, B)) means A is on the uppermost part, side, or surface of B.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013187"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013187"
+ }
+ },
+ "Underneath": {
+ "short_form": "Underneath",
+ "long_form": "Relation/Spatial-relation/Underneath",
+ "description": "(A, (Underneath, B)) means A is situated directly below and may be concealed by B.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013188"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013188"
+ }
+ },
+ "Upper-center-of": {
+ "short_form": "Upper-center-of",
+ "long_form": "Relation/Spatial-relation/Upper-center-of",
+ "description": "(A, (Upper-center-of, B)) means A is situated on the upper center part of B (due north). This relation is often used to specify qualitative information about screen position.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Center-of",
+ "Lower-center-of",
+ "Lower-left-of",
+ "Lower-right-of",
+ "Upper-center-of",
+ "Upper-right-of"
+ ],
+ "hedId": "HED_0013189"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Center-of",
+ "Lower-center-of",
+ "Lower-left-of",
+ "Lower-right-of",
+ "Upper-center-of",
+ "Upper-right-of"
+ ],
+ "hedId": "HED_0013189"
+ }
+ },
+ "Upper-left-of": {
+ "short_form": "Upper-left-of",
+ "long_form": "Relation/Spatial-relation/Upper-left-of",
+ "description": "(A, (Upper-left-of, B)) means A is situated on the upper left part of B. This relation is often used to specify qualitative information about screen position.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Center-of",
+ "Lower-center-of",
+ "Lower-left-of",
+ "Lower-right-of",
+ "Upper-center-of",
+ "Upper-right-of"
+ ],
+ "hedId": "HED_0013190"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Center-of",
+ "Lower-center-of",
+ "Lower-left-of",
+ "Lower-right-of",
+ "Upper-center-of",
+ "Upper-right-of"
+ ],
+ "hedId": "HED_0013190"
+ }
+ },
+ "Upper-right-of": {
+ "short_form": "Upper-right-of",
+ "long_form": "Relation/Spatial-relation/Upper-right-of",
+ "description": "(A, (Upper-right-of, B)) means A is situated on the upper right part of B. This relation is often used to specify qualitative information about screen position.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "relatedTag": [
+ "Center-of",
+ "Lower-center-of",
+ "Lower-left-of",
+ "Upper-left-of",
+ "Upper-center-of",
+ "Lower-right-of"
+ ],
+ "hedId": "HED_0013191"
+ },
+ "explicitAttributes": {
+ "relatedTag": [
+ "Center-of",
+ "Lower-center-of",
+ "Lower-left-of",
+ "Upper-left-of",
+ "Upper-center-of",
+ "Lower-right-of"
+ ],
+ "hedId": "HED_0013191"
+ }
+ },
+ "Within": {
+ "short_form": "Within",
+ "long_form": "Relation/Spatial-relation/Within",
+ "description": "(A, (Within, B)) means A is on the inside of or contained in B.",
+ "parent": "Spatial-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013192"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013192"
+ }
+ },
+ "Temporal-relation": {
+ "short_form": "Temporal-relation",
+ "long_form": "Relation/Temporal-relation",
+ "description": "A relationship that includes a temporal or time-based component.",
+ "parent": "Relation",
+ "children": [
+ "After",
+ "Asynchronous-with",
+ "Before",
+ "During",
+ "Synchronous-with",
+ "Waiting-for"
+ ],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013193"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013193"
+ }
+ },
+ "After": {
+ "short_form": "After",
+ "long_form": "Relation/Temporal-relation/After",
+ "description": "(A, (After, B)) means A happens at a time subsequent to a reference time related to B.",
+ "parent": "Temporal-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013194"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013194"
+ }
+ },
+ "Asynchronous-with": {
+ "short_form": "Asynchronous-with",
+ "long_form": "Relation/Temporal-relation/Asynchronous-with",
+ "description": "(A, (Asynchronous-with, B)) means A happens at times not occurring at the same time or having the same period or phase as B.",
+ "parent": "Temporal-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013195"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013195"
+ }
+ },
+ "Before": {
+ "short_form": "Before",
+ "long_form": "Relation/Temporal-relation/Before",
+ "description": "(A, (Before, B)) means A happens at a time earlier in time or order than B.",
+ "parent": "Temporal-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013196"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013196"
+ }
+ },
+ "During": {
+ "short_form": "During",
+ "long_form": "Relation/Temporal-relation/During",
+ "description": "(A, (During, B)) means A happens at some point in a given period of time in which B is ongoing.",
+ "parent": "Temporal-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013197"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013197"
+ }
+ },
+ "Synchronous-with": {
+ "short_form": "Synchronous-with",
+ "long_form": "Relation/Temporal-relation/Synchronous-with",
+ "description": "(A, (Synchronous-with, B)) means A happens at occurs at the same time or rate as B.",
+ "parent": "Temporal-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013198"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013198"
+ }
+ },
+ "Waiting-for": {
+ "short_form": "Waiting-for",
+ "long_form": "Relation/Temporal-relation/Waiting-for",
+ "description": "(A, (Waiting-for, B)) means A pauses for something to happen in B.",
+ "parent": "Temporal-relation",
+ "children": [],
+ "attributes": {
+ "extensionAllowed": true,
+ "hedId": "HED_0013199"
+ },
+ "explicitAttributes": {
+ "hedId": "HED_0013199"
+ }
+ }
+ },
+ "units": {
+ "m-per-s^2": {
+ "description": null,
+ "SIUnit": true,
+ "unitSymbol": true,
+ "conversionFactor": "1.0",
+ "allowedCharacter": "caret",
+ "hedId": "HED_0011600"
+ },
+ "radian": {
+ "description": null,
+ "SIUnit": true,
+ "conversionFactor": "1.0",
+ "hedId": "HED_0011601"
+ },
+ "rad": {
+ "description": null,
+ "SIUnit": true,
+ "unitSymbol": true,
+ "conversionFactor": "1.0",
+ "hedId": "HED_0011602"
+ },
+ "degree": {
+ "description": null,
+ "conversionFactor": "0.0174533",
+ "hedId": "HED_0011603"
+ },
+ "m^2": {
+ "description": null,
+ "SIUnit": true,
+ "unitSymbol": true,
+ "conversionFactor": "1.0",
+ "allowedCharacter": "caret",
+ "hedId": "HED_0011604"
+ },
+ "dollar": {
+ "description": null,
+ "conversionFactor": "1.0",
+ "hedId": "HED_0011605"
+ },
+ "$": {
+ "description": null,
+ "unitPrefix": true,
+ "unitSymbol": true,
+ "conversionFactor": "1.0",
+ "allowedCharacter": "dollar",
+ "hedId": "HED_0011606"
+ },
+ "euro": {
+ "description": "The official currency of a large subset of member countries of the European Union.",
+ "hedId": "HED_0011607"
+ },
+ "point": {
+ "description": "An arbitrary unit of value, usually an integer indicating reward or penalty.",
+ "hedId": "HED_0011608"
+ },
+ "V": {
+ "description": null,
+ "SIUnit": true,
+ "unitSymbol": true,
+ "conversionFactor": "0.000001",
+ "hedId": "HED_0011609"
+ },
+ "uV": {
+ "description": "Added as a direct unit because it is the default unit.",
+ "conversionFactor": "1.0",
+ "hedId": "HED_0011644"
+ },
+ "volt": {
+ "description": null,
+ "SIUnit": true,
+ "conversionFactor": "0.000001",
+ "hedId": "HED_0011610"
+ },
+ "hertz": {
+ "description": null,
+ "SIUnit": true,
+ "conversionFactor": "1.0",
+ "hedId": "HED_0011611"
+ },
+ "Hz": {
+ "description": null,
+ "SIUnit": true,
+ "unitSymbol": true,
+ "conversionFactor": "1.0",
+ "hedId": "HED_0011612"
+ },
+ "dB": {
+ "description": "Intensity expressed as ratio to a threshold. May be used for sound intensity.",
+ "unitSymbol": true,
+ "conversionFactor": "1.0",
+ "hedId": "HED_0011613"
+ },
+ "candela": {
+ "description": "Units used to express light intensity.",
+ "SIUnit": true,
+ "hedId": "HED_0011614"
+ },
+ "cd": {
+ "description": "Units used to express light intensity.",
+ "SIUnit": true,
+ "unitSymbol": true,
+ "hedId": "HED_0011615"
+ },
+ "m-per-s^3": {
+ "description": null,
+ "unitSymbol": true,
+ "conversionFactor": "1.0",
+ "allowedCharacter": "caret",
+ "hedId": "HED_0011616"
+ },
+ "tesla": {
+ "description": null,
+ "SIUnit": true,
+ "conversionFactor": "10e-15",
+ "hedId": "HED_0011617"
+ },
+ "T": {
+ "description": null,
+ "SIUnit": true,
+ "unitSymbol": true,
+ "conversionFactor": "10e-15",
+ "hedId": "HED_0011618"
+ },
+ "byte": {
+ "description": null,
+ "SIUnit": true,
+ "conversionFactor": "1.0",
+ "hedId": "HED_0011619"
+ },
+ "B": {
+ "description": null,
+ "SIUnit": true,
+ "unitSymbol": true,
+ "conversionFactor": "1.0",
+ "hedId": "HED_0011620"
+ },
+ "foot": {
+ "description": null,
+ "conversionFactor": "0.3048",
+ "hedId": "HED_0011621"
+ },
+ "inch": {
+ "description": null,
+ "conversionFactor": "0.0254",
+ "hedId": "HED_0011622"
+ },
+ "meter": {
+ "description": null,
+ "SIUnit": true,
+ "conversionFactor": "1.0",
+ "hedId": "HED_0011623"
+ },
+ "metre": {
+ "description": null,
+ "SIUnit": true,
+ "conversionFactor": "1.0",
+ "hedId": "HED_0011624"
+ },
+ "m": {
+ "description": null,
+ "SIUnit": true,
+ "unitSymbol": true,
+ "conversionFactor": "1.0",
+ "hedId": "HED_0011625"
+ },
+ "mile": {
+ "description": null,
+ "conversionFactor": "1609.34",
+ "hedId": "HED_0011626"
+ },
+ "m-per-s": {
+ "description": null,
+ "SIUnit": true,
+ "unitSymbol": true,
+ "conversionFactor": "1.0",
+ "hedId": "HED_0011627"
+ },
+ "mph": {
+ "description": null,
+ "unitSymbol": true,
+ "conversionFactor": "0.44704",
+ "hedId": "HED_0011628"
+ },
+ "kph": {
+ "description": null,
+ "unitSymbol": true,
+ "conversionFactor": "0.277778",
+ "hedId": "HED_0011629"
+ },
+ "degree-Celsius": {
+ "description": null,
+ "SIUnit": true,
+ "conversionFactor": "1.0",
+ "hedId": "HED_0011630"
+ },
+ "degree Celsius": {
+ "description": "Units are not allowed to have spaces. Use degree-Celsius or oC.",
+ "deprecatedFrom": "8.2.0",
+ "SIUnit": true,
+ "conversionFactor": "1.0",
+ "hedId": "HED_0011631"
+ },
+ "oC": {
+ "description": null,
+ "SIUnit": true,
+ "unitSymbol": true,
+ "conversionFactor": "1.0",
+ "hedId": "HED_0011632"
+ },
+ "second": {
+ "description": null,
+ "SIUnit": true,
+ "conversionFactor": "1.0",
+ "hedId": "HED_0011633"
+ },
+ "s": {
+ "description": null,
+ "SIUnit": true,
+ "unitSymbol": true,
+ "conversionFactor": "1.0",
+ "hedId": "HED_0011634"
+ },
+ "day": {
+ "description": null,
+ "conversionFactor": "86400",
+ "hedId": "HED_0011635"
+ },
+ "month": {
+ "description": null,
+ "hedId": "HED_0011645"
+ },
+ "minute": {
+ "description": null,
+ "conversionFactor": "60",
+ "hedId": "HED_0011636"
+ },
+ "hour": {
+ "description": "Should be in 24-hour format.",
+ "conversionFactor": "3600",
+ "hedId": "HED_0011637"
+ },
+ "year": {
+ "description": "Years do not have a constant conversion factor to seconds.",
+ "hedId": "HED_0011638"
+ },
+ "m^3": {
+ "description": null,
+ "SIUnit": true,
+ "unitSymbol": true,
+ "conversionFactor": "1.0",
+ "allowedCharacter": "caret",
+ "hedId": "HED_0011639"
+ },
+ "g": {
+ "description": null,
+ "SIUnit": true,
+ "unitSymbol": true,
+ "conversionFactor": "1.0",
+ "hedId": "HED_0011640"
+ },
+ "gram": {
+ "description": null,
+ "SIUnit": true,
+ "conversionFactor": "1.0",
+ "hedId": "HED_0011641"
+ },
+ "pound": {
+ "description": null,
+ "conversionFactor": "453.592",
+ "hedId": "HED_0011642"
+ },
+ "lb": {
+ "description": null,
+ "conversionFactor": "453.592",
+ "hedId": "HED_0011643"
+ }
+ },
+ "unit_classes": {
+ "accelerationUnits": {
+ "description": null,
+ "hedId": "HED_0011500",
+ "units": [
+ "m-per-s^2"
+ ],
+ "default_units": "m-per-s^2"
+ },
+ "angleUnits": {
+ "description": null,
+ "hedId": "HED_0011501",
+ "units": [
+ "radian",
+ "rad",
+ "degree"
+ ],
+ "default_units": "radian"
+ },
+ "areaUnits": {
+ "description": null,
+ "hedId": "HED_0011502",
+ "units": [
+ "m^2"
+ ],
+ "default_units": "m^2"
+ },
+ "currencyUnits": {
+ "description": "Units indicating the worth of something.",
+ "hedId": "HED_0011503",
+ "units": [
+ "dollar",
+ "$",
+ "euro",
+ "point"
+ ],
+ "default_units": "$"
+ },
+ "electricPotentialUnits": {
+ "description": null,
+ "hedId": "HED_0011504",
+ "units": [
+ "V",
+ "uV",
+ "volt"
+ ],
+ "default_units": "uV"
+ },
+ "frequencyUnits": {
+ "description": null,
+ "hedId": "HED_0011505",
+ "units": [
+ "hertz",
+ "Hz"
+ ],
+ "default_units": "Hz"
+ },
+ "intensityUnits": {
+ "description": null,
+ "hedId": "HED_0011506",
+ "units": [
+ "dB",
+ "candela",
+ "cd"
+ ],
+ "default_units": "dB"
+ },
+ "jerkUnits": {
+ "description": null,
+ "hedId": "HED_0011507",
+ "units": [
+ "m-per-s^3"
+ ],
+ "default_units": "m-per-s^3"
+ },
+ "magneticFieldUnits": {
+ "description": null,
+ "hedId": "HED_0011508",
+ "units": [
+ "tesla",
+ "T"
+ ],
+ "default_units": "T"
+ },
+ "memorySizeUnits": {
+ "description": null,
+ "hedId": "HED_0011509",
+ "units": [
+ "byte",
+ "B"
+ ],
+ "default_units": "B"
+ },
+ "physicalLengthUnits": {
+ "description": null,
+ "hedId": "HED_0011510",
+ "units": [
+ "foot",
+ "inch",
+ "meter",
+ "metre",
+ "m",
+ "mile"
+ ],
+ "default_units": "m"
+ },
+ "speedUnits": {
+ "description": null,
+ "hedId": "HED_0011511",
+ "units": [
+ "m-per-s",
+ "mph",
+ "kph"
+ ],
+ "default_units": "m-per-s"
+ },
+ "temperatureUnits": {
+ "description": null,
+ "hedId": "HED_0011512",
+ "units": [
+ "degree-Celsius",
+ "degree Celsius",
+ "oC"
+ ],
+ "default_units": "degree-Celsius"
+ },
+ "timeUnits": {
+ "description": null,
+ "hedId": "HED_0011513",
+ "units": [
+ "second",
+ "s",
+ "day",
+ "month",
+ "minute",
+ "hour",
+ "year"
+ ],
+ "default_units": "s"
+ },
+ "volumeUnits": {
+ "description": null,
+ "hedId": "HED_0011514",
+ "units": [
+ "m^3"
+ ],
+ "default_units": "m^3"
+ },
+ "weightUnits": {
+ "description": null,
+ "hedId": "HED_0011515",
+ "units": [
+ "g",
+ "gram",
+ "pound",
+ "lb"
+ ],
+ "default_units": "g"
+ }
+ },
+ "unit_modifiers": {
+ "deca": {
+ "description": "SI unit multiple representing 10e1.",
+ "hedId": "HED_0011400",
+ "conversionFactor": "10.0",
+ "SIUnitModifier": true
+ },
+ "da": {
+ "description": "SI unit multiple representing 10e1.",
+ "hedId": "HED_0011401",
+ "conversionFactor": "10.0",
+ "SIUnitSymbolModifier": true
+ },
+ "hecto": {
+ "description": "SI unit multiple representing 10e2.",
+ "hedId": "HED_0011402",
+ "conversionFactor": "100.0",
+ "SIUnitModifier": true
+ },
+ "h": {
+ "description": "SI unit multiple representing 10e2.",
+ "hedId": "HED_0011403",
+ "conversionFactor": "100.0",
+ "SIUnitSymbolModifier": true
+ },
+ "kilo": {
+ "description": "SI unit multiple representing 10e3.",
+ "hedId": "HED_0011404",
+ "conversionFactor": "1000.0",
+ "SIUnitModifier": true
+ },
+ "k": {
+ "description": "SI unit multiple representing 10e3.",
+ "hedId": "HED_0011405",
+ "conversionFactor": "1000.0",
+ "SIUnitSymbolModifier": true
+ },
+ "mega": {
+ "description": "SI unit multiple representing 10e6.",
+ "hedId": "HED_0011406",
+ "conversionFactor": "10e6",
+ "SIUnitModifier": true
+ },
+ "M": {
+ "description": "SI unit multiple representing 10e6.",
+ "hedId": "HED_0011407",
+ "conversionFactor": "10e6",
+ "SIUnitSymbolModifier": true
+ },
+ "giga": {
+ "description": "SI unit multiple representing 10e9.",
+ "hedId": "HED_0011408",
+ "conversionFactor": "10e9",
+ "SIUnitModifier": true
+ },
+ "G": {
+ "description": "SI unit multiple representing 10e9.",
+ "hedId": "HED_0011409",
+ "conversionFactor": "10e9",
+ "SIUnitSymbolModifier": true
+ },
+ "tera": {
+ "description": "SI unit multiple representing 10e12.",
+ "hedId": "HED_0011410",
+ "conversionFactor": "10e12",
+ "SIUnitModifier": true
+ },
+ "T": {
+ "description": "SI unit multiple representing 10e12.",
+ "hedId": "HED_0011411",
+ "conversionFactor": "10e12",
+ "SIUnitSymbolModifier": true
+ },
+ "peta": {
+ "description": "SI unit multiple representing 10e15.",
+ "hedId": "HED_0011412",
+ "conversionFactor": "10e15",
+ "SIUnitModifier": true
+ },
+ "P": {
+ "description": "SI unit multiple representing 10e15.",
+ "hedId": "HED_0011413",
+ "conversionFactor": "10e15",
+ "SIUnitSymbolModifier": true
+ },
+ "exa": {
+ "description": "SI unit multiple representing 10e18.",
+ "hedId": "HED_0011414",
+ "conversionFactor": "10e18",
+ "SIUnitModifier": true
+ },
+ "E": {
+ "description": "SI unit multiple representing 10e18.",
+ "hedId": "HED_0011415",
+ "conversionFactor": "10e18",
+ "SIUnitSymbolModifier": true
+ },
+ "zetta": {
+ "description": "SI unit multiple representing 10e21.",
+ "hedId": "HED_0011416",
+ "conversionFactor": "10e21",
+ "SIUnitModifier": true
+ },
+ "Z": {
+ "description": "SI unit multiple representing 10e21.",
+ "hedId": "HED_0011417",
+ "conversionFactor": "10e21",
+ "SIUnitSymbolModifier": true
+ },
+ "yotta": {
+ "description": "SI unit multiple representing 10e24.",
+ "hedId": "HED_0011418",
+ "conversionFactor": "10e24",
+ "SIUnitModifier": true
+ },
+ "Y": {
+ "description": "SI unit multiple representing 10e24.",
+ "hedId": "HED_0011419",
+ "conversionFactor": "10e24",
+ "SIUnitSymbolModifier": true
+ },
+ "deci": {
+ "description": "SI unit submultiple representing 10e-1.",
+ "hedId": "HED_0011420",
+ "conversionFactor": "0.1",
+ "SIUnitModifier": true
+ },
+ "d": {
+ "description": "SI unit submultiple representing 10e-1.",
+ "hedId": "HED_0011421",
+ "conversionFactor": "0.1",
+ "SIUnitSymbolModifier": true
+ },
+ "centi": {
+ "description": "SI unit submultiple representing 10e-2.",
+ "hedId": "HED_0011422",
+ "conversionFactor": "0.01",
+ "SIUnitModifier": true
+ },
+ "c": {
+ "description": "SI unit submultiple representing 10e-2.",
+ "hedId": "HED_0011423",
+ "conversionFactor": "0.01",
+ "SIUnitSymbolModifier": true
+ },
+ "milli": {
+ "description": "SI unit submultiple representing 10e-3.",
+ "hedId": "HED_0011424",
+ "conversionFactor": "0.001",
+ "SIUnitModifier": true
+ },
+ "m": {
+ "description": "SI unit submultiple representing 10e-3.",
+ "hedId": "HED_0011425",
+ "conversionFactor": "0.001",
+ "SIUnitSymbolModifier": true
+ },
+ "micro": {
+ "description": "SI unit submultiple representing 10e-6.",
+ "hedId": "HED_0011426",
+ "conversionFactor": "10e-6",
+ "SIUnitModifier": true
+ },
+ "u": {
+ "description": "SI unit submultiple representing 10e-6.",
+ "hedId": "HED_0011427",
+ "conversionFactor": "10e-6",
+ "SIUnitSymbolModifier": true
+ },
+ "nano": {
+ "description": "SI unit submultiple representing 10e-9.",
+ "hedId": "HED_0011428",
+ "conversionFactor": "10e-9",
+ "SIUnitModifier": true
+ },
+ "n": {
+ "description": "SI unit submultiple representing 10e-9.",
+ "hedId": "HED_0011429",
+ "conversionFactor": "10e-9",
+ "SIUnitSymbolModifier": true
+ },
+ "pico": {
+ "description": "SI unit submultiple representing 10e-12.",
+ "hedId": "HED_0011430",
+ "conversionFactor": "10e-12",
+ "SIUnitModifier": true
+ },
+ "p": {
+ "description": "SI unit submultiple representing 10e-12.",
+ "hedId": "HED_0011431",
+ "conversionFactor": "10e-12",
+ "SIUnitSymbolModifier": true
+ },
+ "femto": {
+ "description": "SI unit submultiple representing 10e-15.",
+ "hedId": "HED_0011432",
+ "conversionFactor": "10e-15",
+ "SIUnitModifier": true
+ },
+ "f": {
+ "description": "SI unit submultiple representing 10e-15.",
+ "hedId": "HED_0011433",
+ "conversionFactor": "10e-15",
+ "SIUnitSymbolModifier": true
+ },
+ "atto": {
+ "description": "SI unit submultiple representing 10e-18.",
+ "hedId": "HED_0011434",
+ "conversionFactor": "10e-18",
+ "SIUnitModifier": true
+ },
+ "a": {
+ "description": "SI unit submultiple representing 10e-18.",
+ "hedId": "HED_0011435",
+ "conversionFactor": "10e-18",
+ "SIUnitSymbolModifier": true
+ },
+ "zepto": {
+ "description": "SI unit submultiple representing 10e-21.",
+ "hedId": "HED_0011436",
+ "conversionFactor": "10e-21",
+ "SIUnitModifier": true
+ },
+ "z": {
+ "description": "SI unit submultiple representing 10e-21.",
+ "hedId": "HED_0011437",
+ "conversionFactor": "10e-21",
+ "SIUnitSymbolModifier": true
+ },
+ "yocto": {
+ "description": "SI unit submultiple representing 10e-24.",
+ "hedId": "HED_0011438",
+ "conversionFactor": "10e-24",
+ "SIUnitModifier": true
+ },
+ "y": {
+ "description": "SI unit submultiple representing 10e-24.",
+ "hedId": "HED_0011439",
+ "conversionFactor": "10e-24",
+ "SIUnitSymbolModifier": true
+ }
+ },
+ "value_classes": {
+ "dateTimeClass": {
+ "description": "Date-times should conform to ISO8601 date-time format YYYY-MM-DDThh:mm:ss.000000Z (year, month, day, hour (24h), minute, second, optional fractional seconds, and optional UTC time indicator. Any variation on the full form is allowed.",
+ "hedId": "HED_0011301",
+ "allowed_characters": [
+ "digits",
+ "T",
+ "hyphen",
+ "colon"
+ ]
+ },
+ "nameClass": {
+ "description": "Value class designating values that have the characteristics of node names. The allowed characters are alphanumeric, hyphen, and underscore.",
+ "hedId": "HED_0011302",
+ "allowed_characters": [
+ "letters",
+ "digits",
+ "underscore",
+ "hyphen"
+ ]
+ },
+ "numericClass": {
+ "description": "Value must be a valid numerical value.",
+ "hedId": "HED_0011303",
+ "allowed_characters": [
+ "digits",
+ "E",
+ "e",
+ "plus",
+ "hyphen",
+ "period"
+ ]
+ },
+ "posixPath": {
+ "description": "Posix path specification.",
+ "hedId": "HED_0011304",
+ "allowed_characters": [
+ "digits",
+ "letters",
+ "slash",
+ "colon"
+ ]
+ },
+ "textClass": {
+ "description": "Values that have the characteristics of text such as in descriptions. The text characters include printable characters (32 <= ASCII< 127) excluding comma, square bracket and curly braces as well as non ASCII (ASCII codes > 127).",
+ "hedId": "HED_0011305",
+ "allowed_characters": [
+ "text"
+ ]
+ }
+ },
+ "schema_attributes": {
+ "annotation": {
+ "description": "A annotation link to an item in another ontology or item.",
+ "hedId": "HED_0010504",
+ "elementDomain": true,
+ "stringRange": true,
+ "annotationProperty": true
+ },
+ "hedId": {
+ "description": "The unique identifier of this element in the HED namespace.",
+ "hedId": "HED_0010500",
+ "elementDomain": true,
+ "stringRange": true,
+ "annotationProperty": true
+ },
+ "requireChild": {
+ "description": "This tag must have a descendent.",
+ "hedId": "HED_0010501",
+ "tagDomain": true,
+ "boolRange": true,
+ "annotationProperty": true
+ },
+ "rooted": {
+ "description": "This top-level library schema node should have a parent which is the indicated node in the partnered standard schema.",
+ "hedId": "HED_0010502",
+ "tagDomain": true,
+ "tagRange": true,
+ "annotationProperty": true
+ },
+ "takesValue": {
+ "description": "This tag is a hashtag placeholder that is expected to be replaced with a user-defined value.",
+ "hedId": "HED_0010503",
+ "tagDomain": true,
+ "boolRange": true,
+ "annotationProperty": true
+ },
+ "defaultUnits": {
+ "description": "The default units to use if the placeholder has a unit class but the substituted value has no units.",
+ "hedId": "HED_0010104",
+ "unitClassDomain": true,
+ "unitRange": true
+ },
+ "isPartOf": {
+ "description": "This tag is part of the indicated tag -- as in the nose is part of the face.",
+ "hedId": "HED_0010109",
+ "tagDomain": true,
+ "tagRange": true
+ },
+ "relatedTag": {
+ "description": "A HED tag that is closely related to this tag. This attribute is used by tagging tools.",
+ "hedId": "HED_0010105",
+ "tagDomain": true,
+ "tagRange": true
+ },
+ "suggestedTag": {
+ "description": "A tag that is often associated with this tag. This attribute is used by tagging tools to provide tagging suggestions.",
+ "hedId": "HED_0010106",
+ "tagDomain": true,
+ "tagRange": true
+ },
+ "unitClass": {
+ "description": "The unit class that the value of a placeholder node can belong to.",
+ "hedId": "HED_0010107",
+ "tagDomain": true,
+ "unitClassRange": true
+ },
+ "valueClass": {
+ "description": "Type of value taken on by the value of a placeholder node.",
+ "hedId": "HED_0010108",
+ "tagDomain": true,
+ "valueClassRange": true
+ },
+ "allowedCharacter": {
+ "description": "A special character that is allowed in expressing the value of a placeholder of a specified value class. Allowed characters may be listed individual, named individually, or named as a group as specified in Section 2.2 Character sets and restrictions of the HED specification.",
+ "hedId": "HED_0010304",
+ "unitDomain": true,
+ "unitModifierDomain": true,
+ "valueClassDomain": true,
+ "stringRange": true
+ },
+ "conversionFactor": {
+ "description": "The factor to multiply these units or unit modifiers by to convert to default units.",
+ "hedId": "HED_0010305",
+ "unitDomain": true,
+ "unitModifierDomain": true,
+ "numericRange": true
+ },
+ "deprecatedFrom": {
+ "description": "The latest schema version in which the element was not deprecated.",
+ "hedId": "HED_0010306",
+ "elementDomain": true,
+ "stringRange": true
+ },
+ "extensionAllowed": {
+ "description": "Users can add unlimited levels of child nodes under this tag. This tag is propagated to child nodes except for hashtag placeholders.",
+ "hedId": "HED_0010307",
+ "tagDomain": true,
+ "boolRange": true
+ },
+ "inLibrary": {
+ "description": "The named library schema that this schema element is from. This attribute is added by tools when a library schema is merged into its partnered standard schema.",
+ "hedId": "HED_0010309",
+ "elementDomain": true,
+ "stringRange": true
+ },
+ "reserved": {
+ "description": "This tag has special meaning and requires special handling by tools.",
+ "hedId": "HED_0010310",
+ "tagDomain": true,
+ "boolRange": true
+ },
+ "SIUnit": {
+ "description": "This unit element is an SI unit and can be modified by multiple and sub-multiple names. Note that some units such as byte are designated as SI units although they are not part of the standard.",
+ "hedId": "HED_0010311",
+ "unitDomain": true,
+ "boolRange": true
+ },
+ "SIUnitModifier": {
+ "description": "This SI unit modifier represents a multiple or sub-multiple of a base unit rather than a unit symbol.",
+ "hedId": "HED_0010312",
+ "unitModifierDomain": true,
+ "boolRange": true
+ },
+ "SIUnitSymbolModifier": {
+ "description": "This SI unit modifier represents a multiple or sub-multiple of a unit symbol rather than a base symbol.",
+ "hedId": "HED_0010313",
+ "unitModifierDomain": true,
+ "boolRange": true
+ },
+ "tagGroup": {
+ "description": "This tag can only appear inside a tag group.",
+ "hedId": "HED_0010314",
+ "tagDomain": true,
+ "boolRange": true
+ },
+ "topLevelTagGroup": {
+ "description": "This tag (or its descendants) can only appear in a top-level tag group. There are additional tag-specific restrictions on what other tags can appear in the group with this tag.",
+ "hedId": "HED_0010315",
+ "tagDomain": true,
+ "boolRange": true
+ },
+ "unique": {
+ "description": "Only one of this tag or its descendants can be used in the event-level HED string.",
+ "hedId": "HED_0010316",
+ "tagDomain": true,
+ "boolRange": true
+ },
+ "unitPrefix": {
+ "description": "This unit is a prefix unit (e.g., dollar sign in the currency units).",
+ "hedId": "HED_0010317",
+ "unitDomain": true,
+ "boolRange": true
+ },
+ "unitSymbol": {
+ "description": "This tag is an abbreviation or symbol representing a type of unit. Unit symbols represent both the singular and the plural and thus cannot be pluralized.",
+ "hedId": "HED_0010318",
+ "unitDomain": true,
+ "boolRange": true
+ }
+ },
+ "properties": {
+ "annotationProperty": {
+ "description": "The value is not inherited by child nodes.",
+ "hedId": "HED_0010701"
+ },
+ "boolRange": {
+ "description": "This schema attribute's value can be true or false. This property was formerly named boolProperty.",
+ "hedId": "HED_0010702"
+ },
+ "elementDomain": {
+ "description": "This schema attribute can apply to any type of element class (i.e., tag, unit, unit class, unit modifier, or value class). This property was formerly named elementProperty.",
+ "hedId": "HED_0010703"
+ },
+ "tagDomain": {
+ "description": "This schema attribute can apply to node (tag-term) elements. This was added so attributes could apply to multiple types of elements. This property was formerly named nodeProperty.",
+ "hedId": "HED_0010704"
+ },
+ "tagRange": {
+ "description": "This schema attribute's value can be a node. This property was formerly named nodeProperty.",
+ "hedId": "HED_0010705"
+ },
+ "numericRange": {
+ "description": "This schema attribute's value can be numeric.",
+ "hedId": "HED_0010706"
+ },
+ "stringRange": {
+ "description": "This schema attribute's value can be a string.",
+ "hedId": "HED_0010707"
+ },
+ "unitClassDomain": {
+ "description": "This schema attribute can apply to unit classes. This property was formerly named unitClassProperty.",
+ "hedId": "HED_0010708"
+ },
+ "unitClassRange": {
+ "description": "This schema attribute's value can be a unit class.",
+ "hedId": "HED_0010709"
+ },
+ "unitModifierDomain": {
+ "description": "This schema attribute can apply to unit modifiers. This property was formerly named unitModifierProperty.",
+ "hedId": "HED_0010710"
+ },
+ "unitDomain": {
+ "description": "This schema attribute can apply to units. This property was formerly named unitProperty.",
+ "hedId": "HED_0010711"
+ },
+ "unitRange": {
+ "description": "This schema attribute's value can be units.",
+ "hedId": "HED_0010712"
+ },
+ "valueClassDomain": {
+ "description": "This schema attribute can apply to value classes. This property was formerly named valueClassProperty.",
+ "hedId": "HED_0010713"
+ },
+ "valueClassRange": {
+ "description": "This schema attribute's value can be a value class.",
+ "hedId": "HED_0010714"
}
},
- "units": {
- "deg": {
- "description": null,
- "SIUnit": true,
- "conversionFactor": "1.0"
- }
- },
- "unit_classes": {
- "myAngleUnits": {
- "description": null,
- "units": [
- "deg"
- ],
- "default_units": "deg"
- }
- },
- "unit_modifiers": {},
- "value_classes": {
- "digitClass": {
- "description": "Values that can only have digits.",
- "allowed_characters": [
- "digits"
- ]
- }
- },
- "schema_attributes": {
- "myAnnotation": {
- "description": "Special annotations.",
- "elementDomain": true,
- "stringRange": true,
- "annotationProperty": true
- }
- },
- "properties": {},
"epilogue": "A final section.",
"sources": [
{
diff --git a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0.mediawiki b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0.mediawiki
index d135dd9c..95dc9867 100644
--- a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0.mediawiki
+++ b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0.mediawiki
@@ -1,38 +1,1415 @@
-HED version="4.0.0" library="testlib" withStandard="8.4.0" unmerged="True"
+HED version="4.0.0" library="testlib" withStandard="8.4.0"
'''Prologue'''
This schema is designed to be lazy partnered with prerelease 8.4.0.
!# start schema
-'''Test-some''' [Unknown stuff.]
-* Unknown1 [Unknown1 stuff]
-* Unknown2 {suggestedTag=Item} [Unknown2 stuff]
-** # {takesValue, valueClass=digitClass, unitClass=myAngleUnits} [Try this out]
+'''Test-some''' {inLibrary=testlib} [Unknown stuff.]
+* Unknown1 {inLibrary=testlib} [Unknown1 stuff]
-'''Fruit''' {rooted=Plant} [Fruit stuff.]
-* Apple {annotation=foodonto:has_botanical_name} [Apple stuff]
-** Honey-crisp [Type of apple]
+'''Event''' {suggestedTag=Task-property, annotation=ncit:C25499, annotation=rdfs:comment Should have this tag in every event process., hedId=HED_0012001} [Something that happens at a given time and (typically) place. Elements of this tag subtree designate the general category in which an event falls.]
+* Sensory-event {suggestedTag=Task-event-role, suggestedTag=Sensory-presentation, hedId=HED_0012002} [Something perceivable by the participant. An event meant to be an experimental stimulus should include the tag Task-property/Task-event-role/Experimental-stimulus.]
+* Agent-action {suggestedTag=Task-event-role, suggestedTag=Agent, hedId=HED_0012003} [Any action engaged in by an agent (see the Agent subtree for agent categories). A participant response to an experiment stimulus should include the tag Agent-property/Agent-task-role/Experiment-participant.]
+* Data-feature {suggestedTag=Data-property, hedId=HED_0012004} [An event marking the occurrence of a data feature such as an interictal spike or alpha burst that is often added post hoc to the data record.]
+* Experiment-control {hedId=HED_0012005} [An event pertaining to the physical control of the experiment during its operation.]
+* Experiment-procedure {hedId=HED_0012006} [An event indicating an experimental procedure, as in performing a saliva swab during the experiment or administering a survey.]
+* Experiment-structure {hedId=HED_0012007} [An event specifying a change-point of the structure of experiment. This event is typically used to indicate a change in experimental conditions or tasks.]
+* Measurement-event {suggestedTag=Data-property, hedId=HED_0012008} [A discrete measure returned by an instrument.]
-'''Vegetable''' {rooted=Plant} [Vegetable stuff.]
-* Carrot {annotation=foodonto:has_botanical_name} [Carrot stuff]
+'''Agent''' {suggestedTag=Agent-property, hedId=HED_0012009} [Someone or something that takes an active role or produces a specified effect.The role or effect may be implicit. Being alive or performing an activity such as a computation may qualify something to be an agent. An agent may also be something that simulates something else.]
+* Animal-agent {hedId=HED_0012010} [An agent that is an animal.]
+* Avatar-agent {hedId=HED_0012011} [An agent associated with an icon or avatar representing another agent.]
+* Controller-agent {hedId=HED_0012012} [Experiment control software or hardware.]
+* Human-agent {hedId=HED_0012013} [A person who takes an active role or produces a specified effect.]
+* Robotic-agent {hedId=HED_0012014} [An agent mechanical device capable of performing a variety of often complex tasks on command or by being programmed in advance.]
+* Software-agent {hedId=HED_0012015} [An agent computer program that interacts with the participant in an active role such as an AI advisor.]
+
+'''Action''' {extensionAllowed, hedId=HED_0012016} [Do something.]
+* Communicate {hedId=HED_0012017} [Action conveying knowledge of or about something.]
+** Communicate-gesturally {relatedTag=Move-face, relatedTag=Move-upper-extremity, hedId=HED_0012018} [Communicate non-verbally using visible bodily actions, either in place of speech or together and in parallel with spoken words. Gestures include movement of the hands, face, or other parts of the body.]
+*** Clap-hands {hedId=HED_0012019} [Strike the palms of against one another resoundingly, and usually repeatedly, especially to express approval.]
+*** Clear-throat {relatedTag=Move-face, relatedTag=Move-head, hedId=HED_0012020} [Cough slightly so as to speak more clearly, attract attention, or to express hesitancy before saying something awkward.]
+*** Frown {relatedTag=Move-face, hedId=HED_0012021} [Express disapproval, displeasure, or concentration, typically by turning down the corners of the mouth.]
+*** Grimace {relatedTag=Move-face, hedId=HED_0012022} [Make a twisted expression, typically expressing disgust, pain, or wry amusement.]
+*** Nod-head {relatedTag=Move-head, hedId=HED_0012023} [Tilt head in alternating up and down arcs along the sagittal plane. It is most commonly, but not universally, used to indicate agreement, acceptance, or acknowledgement.]
+*** Pump-fist {relatedTag=Move-upper-extremity, hedId=HED_0012024} [Raise with fist clenched in triumph or affirmation.]
+*** Raise-eyebrows {relatedTag=Move-face, relatedTag=Move-eyes, hedId=HED_0012025} [Move eyebrows upward.]
+*** Shake-fist {relatedTag=Move-upper-extremity, hedId=HED_0012026} [Clench hand into a fist and shake to demonstrate anger.]
+*** Shake-head {relatedTag=Move-head, hedId=HED_0012027} [Turn head from side to side as a way of showing disagreement or refusal.]
+*** Shhh {relatedTag=Move-upper-extremity, hedId=HED_0012028} [Place finger over lips and possibly uttering the syllable shhh to indicate the need to be quiet.]
+*** Shrug {relatedTag=Move-upper-extremity, relatedTag=Move-torso, hedId=HED_0012029} [Lift shoulders up towards head to indicate a lack of knowledge about a particular topic.]
+*** Smile {relatedTag=Move-face, hedId=HED_0012030} [Form facial features into a pleased, kind, or amused expression, typically with the corners of the mouth turned up and the front teeth exposed.]
+*** Spread-hands {relatedTag=Move-upper-extremity, hedId=HED_0012031} [Spread hands apart to indicate ignorance.]
+*** Thumb-up {relatedTag=Move-upper-extremity, hedId=HED_0012032} [Extend the thumb upward to indicate approval.]
+*** Thumbs-down {relatedTag=Move-upper-extremity, hedId=HED_0012033} [Extend the thumb downward to indicate disapproval.]
+*** Wave {relatedTag=Move-upper-extremity, hedId=HED_0012034} [Raise hand and move left and right, as a greeting or sign of departure.]
+*** Widen-eyes {relatedTag=Move-face, relatedTag=Move-eyes, hedId=HED_0012035} [Open eyes and possibly with eyebrows lifted especially to express surprise or fear.]
+*** Wink {relatedTag=Move-face, relatedTag=Move-eyes, hedId=HED_0012036} [Close and open one eye quickly, typically to indicate that something is a joke or a secret or as a signal of affection or greeting.]
+** Communicate-musically {hedId=HED_0012037} [Communicate using music.]
+*** Hum {hedId=HED_0012038} [Make a low, steady continuous sound like that of a bee. Sing with the lips closed and without uttering speech.]
+*** Play-instrument {hedId=HED_0012039} [Make musical sounds using an instrument.]
+*** Sing {hedId=HED_0012040} [Produce musical tones by means of the voice.]
+*** Vocalize {hedId=HED_0012041} [Utter vocal sounds.]
+*** Whistle {hedId=HED_0012042} [Produce a shrill clear sound by forcing breath out or air in through the puckered lips.]
+** Communicate-vocally {hedId=HED_0012043} [Communicate using mouth or vocal cords.]
+*** Cry {hedId=HED_0012044} [Shed tears associated with emotions, usually sadness but also joy or frustration.]
+*** Groan {hedId=HED_0012045} [Make a deep inarticulate sound in response to pain or despair.]
+*** Laugh {hedId=HED_0012046} [Make the spontaneous sounds and movements of the face and body that are the instinctive expressions of lively amusement and sometimes also of contempt or derision.]
+*** Scream {hedId=HED_0012047} [Make loud, vociferous cries or yells to express pain, excitement, or fear.]
+*** Shout {hedId=HED_0012048} [Say something very loudly.]
+*** Sigh {hedId=HED_0012049} [Emit a long, deep, audible breath expressing sadness, relief, tiredness, or a similar feeling.]
+*** Speak {hedId=HED_0012050} [Communicate using spoken language.]
+*** Whisper {hedId=HED_0012051} [Speak very softly using breath without vocal cords.]
+* Move {hedId=HED_0012052} [Move in a specified direction or manner. Change position or posture.]
+** Breathe {hedId=HED_0012053} [Inhale or exhale during respiration.]
+*** Blow {hedId=HED_0012054} [Expel air through pursed lips.]
+*** Cough {hedId=HED_0012055} [Suddenly and audibly expel air from the lungs through a partially closed glottis, preceded by inhalation.]
+*** Exhale {hedId=HED_0012056} [Blow out or expel breath.]
+*** Hiccup {hedId=HED_0012057} [Involuntarily spasm the diaphragm and respiratory organs, with a sudden closure of the glottis and a characteristic sound like that of a cough.]
+*** Hold-breath {hedId=HED_0012058} [Interrupt normal breathing by ceasing to inhale or exhale.]
+*** Inhale {hedId=HED_0012059} [Draw in with the breath through the nose or mouth.]
+*** Sneeze {hedId=HED_0012060} [Suddenly and violently expel breath through the nose and mouth.]
+*** Sniff {hedId=HED_0012061} [Draw in air audibly through the nose to detect a smell, to stop it from running, or to express contempt.]
+** Move-body {hedId=HED_0012062} [Move entire body.]
+*** Bend {hedId=HED_0012063} [Move body in a bowed or curved manner.]
+*** Dance {hedId=HED_0012064} [Perform a purposefully selected sequences of human movement often with aesthetic or symbolic value. Move rhythmically to music, typically following a set sequence of steps.]
+*** Fall-down {hedId=HED_0012065} [Lose balance and collapse.]
+*** Flex {hedId=HED_0012066} [Cause a muscle to stand out by contracting or tensing it. Bend a limb or joint.]
+*** Jerk {hedId=HED_0012067} [Make a quick, sharp, sudden movement.]
+*** Lie-down {hedId=HED_0012068} [Move to a horizontal or resting position.]
+*** Recover-balance {hedId=HED_0012069} [Return to a stable, upright body position.]
+*** Shudder {hedId=HED_0012070} [Tremble convulsively, sometimes as a result of fear or revulsion.]
+*** Sit-down {hedId=HED_0012071} [Move from a standing to a sitting position.]
+*** Sit-up {hedId=HED_0012072} [Move from lying down to a sitting position.]
+*** Stand-up {hedId=HED_0012073} [Move from a sitting to a standing position.]
+*** Stretch {hedId=HED_0012074} [Straighten or extend body or a part of body to its full length, typically so as to tighten muscles or in order to reach something.]
+*** Stumble {hedId=HED_0012075} [Trip or momentarily lose balance and almost fall.]
+*** Turn {hedId=HED_0012076} [Change or cause to change direction.]
+** Move-body-part {hedId=HED_0012077} [Move one part of a body.]
+*** Move-eyes {hedId=HED_0012078} [Move eyes.]
+**** Blink {hedId=HED_0012079} [Shut and open the eyes quickly.]
+**** Close-eyes {hedId=HED_0012080} [Lower and keep eyelids in a closed position.]
+**** Fixate {hedId=HED_0012081} [Direct eyes to a specific point or target.]
+**** Inhibit-blinks {hedId=HED_0012082} [Purposely prevent blinking.]
+**** Open-eyes {hedId=HED_0012083} [Raise eyelids to expose pupil.]
+**** Saccade {hedId=HED_0012084} [Move eyes rapidly between fixation points.]
+**** Squint {hedId=HED_0012085} [Squeeze one or both eyes partly closed in an attempt to see more clearly or as a reaction to strong light.]
+**** Stare {hedId=HED_0012086} [Look fixedly or vacantly at someone or something with eyes wide open.]
+*** Move-face {hedId=HED_0012087} [Move the face or jaw.]
+**** Bite {hedId=HED_0012088} [Seize with teeth or jaws an object or organism so as to grip or break the surface covering.]
+**** Burp {hedId=HED_0012089} [Noisily release air from the stomach through the mouth. Belch.]
+**** Chew {hedId=HED_0012090} [Repeatedly grinding, tearing, and or crushing with teeth or jaws.]
+**** Gurgle {hedId=HED_0012091} [Make a hollow bubbling sound like that made by water running out of a bottle.]
+**** Swallow {hedId=HED_0012092} [Cause or allow something, especially food or drink to pass down the throat.]
+***** Gulp {hedId=HED_0012093} [Swallow quickly or in large mouthfuls, often audibly, sometimes to indicate apprehension.]
+**** Yawn {hedId=HED_0012094} [Take a deep involuntary inhalation with the mouth open often as a sign of drowsiness or boredom.]
+*** Move-head {hedId=HED_0012095} [Move head.]
+**** Lift-head {hedId=HED_0012096} [Tilt head back lifting chin.]
+**** Lower-head {hedId=HED_0012097} [Move head downward so that eyes are in a lower position.]
+**** Turn-head {hedId=HED_0012098} [Rotate head horizontally to look in a different direction.]
+*** Move-lower-extremity {hedId=HED_0012099} [Move leg and/or foot.]
+**** Curl-toes {hedId=HED_0012100} [Bend toes sometimes to grip.]
+**** Hop {hedId=HED_0012101} [Jump on one foot.]
+**** Jog {hedId=HED_0012102} [Run at a trot to exercise.]
+**** Jump {hedId=HED_0012103} [Move off the ground or other surface through sudden muscular effort in the legs.]
+**** Kick {hedId=HED_0012104} [Strike out or flail with the foot or feet.Strike using the leg, in unison usually with an area of the knee or lower using the foot.]
+**** Pedal {hedId=HED_0012105} [Move by working the pedals of a bicycle or other machine.]
+**** Press-foot {hedId=HED_0012106} [Move by pressing foot.]
+**** Run {hedId=HED_0012107} [Travel on foot at a fast pace.]
+**** Step {hedId=HED_0012108} [Put one leg in front of the other and shift weight onto it.]
+***** Heel-strike {hedId=HED_0012109} [Strike the ground with the heel during a step.]
+***** Toe-off {hedId=HED_0012110} [Push with toe as part of a stride.]
+**** Trot {hedId=HED_0012111} [Run at a moderate pace, typically with short steps.]
+**** Walk {hedId=HED_0012112} [Move at a regular pace by lifting and setting down each foot in turn never having both feet off the ground at once.]
+*** Move-torso {hedId=HED_0012113} [Move body trunk.]
+*** Move-upper-extremity {hedId=HED_0012114} [Move arm, shoulder, and/or hand.]
+**** Drop {hedId=HED_0012115} [Let or cause to fall vertically.]
+**** Grab {hedId=HED_0012116} [Seize suddenly or quickly. Snatch or clutch.]
+**** Grasp {hedId=HED_0012117} [Seize and hold firmly.]
+**** Hold-down {hedId=HED_0012118} [Prevent someone or something from moving by holding them firmly.]
+**** Lift {hedId=HED_0012119} [Raising something to higher position.]
+**** Make-fist {hedId=HED_0012120} [Close hand tightly with the fingers bent against the palm.]
+**** Point {hedId=HED_0012121} [Draw attention to something by extending a finger or arm.]
+**** Press {relatedTag=Push, hedId=HED_0012122} [Apply pressure to something to flatten, shape, smooth or depress it. This action tag should be used to indicate key presses and mouse clicks.]
+**** Push {relatedTag=Press, hedId=HED_0012123} [Apply force in order to move something away. Use Press to indicate a key press or mouse click.]
+**** Reach {hedId=HED_0012124} [Stretch out your arm in order to get or touch something.]
+**** Release {hedId=HED_0012125} [Make available or set free.]
+**** Retract {hedId=HED_0012126} [Draw or pull back.]
+**** Scratch {hedId=HED_0012127} [Drag claws or nails over a surface or on skin.]
+**** Snap-fingers {hedId=HED_0012128} [Make a noise by pushing second finger hard against thumb and then releasing it suddenly so that it hits the base of the thumb.]
+**** Touch {hedId=HED_0012129} [Come into or be in contact with.]
+* Perceive {hedId=HED_0012130} [Produce an internal, conscious image through stimulating a sensory system.]
+** Hear {hedId=HED_0012131} [Give attention to a sound.]
+** See {hedId=HED_0012132} [Direct gaze toward someone or something or in a specified direction.]
+** Sense-by-touch {hedId=HED_0012133} [Sense something through receptors in the skin.]
+** Smell {hedId=HED_0012134} [Inhale in order to ascertain an odor or scent.]
+** Taste {hedId=HED_0012135} [Sense a flavor in the mouth and throat on contact with a substance.]
+* Perform {hedId=HED_0012136} [Carry out or accomplish an action, task, or function.]
+** Close {hedId=HED_0012137} [Act as to blocked against entry or passage.]
+** Collide-with {hedId=HED_0012138} [Hit with force when moving.]
+** Halt {hedId=HED_0012139} [Bring or come to an abrupt stop.]
+** Modify {hedId=HED_0012140} [Change something.]
+** Open {hedId=HED_0012141} [Widen an aperture, door, or gap, especially one allowing access to something.]
+** Operate {hedId=HED_0012142} [Control the functioning of a machine, process, or system.]
+** Play {hedId=HED_0012143} [Engage in activity for enjoyment and recreation rather than a serious or practical purpose.]
+** Read {hedId=HED_0012144} [Interpret something that is written or printed.]
+** Repeat {hedId=HED_0012145} [Make do or perform again.]
+** Rest {hedId=HED_0012146} [Be inactive in order to regain strength, health, or energy.]
+** Ride {hedId=HED_0012147} [Ride on an animal or in a vehicle. Ride conveys some notion that another agent has partial or total control of the motion.]
+** Write {hedId=HED_0012148} [Communicate or express by means of letters or symbols written or imprinted on a surface.]
+* Think {hedId=HED_0012149} [Direct the mind toward someone or something or use the mind actively to form connected ideas.]
+** Allow {hedId=HED_0012150} [Allow access to something such as allowing a car to pass.]
+** Attend-to {hedId=HED_0012151} [Focus mental experience on specific targets.]
+** Count {hedId=HED_0012152} [Tally items either silently or aloud.]
+** Deny {hedId=HED_0012153} [Refuse to give or grant something requested or desired by someone.]
+** Detect {hedId=HED_0012154} [Discover or identify the presence or existence of something.]
+** Discriminate {hedId=HED_0012155} [Recognize a distinction.]
+** Encode {hedId=HED_0012156} [Convert information or an instruction into a particular form.]
+** Evade {hedId=HED_0012157} [Escape or avoid, especially by cleverness or trickery.]
+** Generate {hedId=HED_0012158} [Cause something, especially an emotion or situation to arise or come about.]
+** Identify {hedId=HED_0012159} [Establish or indicate who or what someone or something is.]
+** Imagine {hedId=HED_0012160} [Form a mental image or concept of something.]
+** Judge {hedId=HED_0012161} [Evaluate evidence to make a decision or form a belief.]
+** Learn {hedId=HED_0012162} [Adaptively change behavior as the result of experience.]
+** Memorize {hedId=HED_0012163} [Adaptively change behavior as the result of experience.]
+** Plan {hedId=HED_0012164} [Think about the activities required to achieve a desired goal.]
+** Predict {hedId=HED_0012165} [Say or estimate that something will happen or will be a consequence of something without having exact information.]
+** Recall {hedId=HED_0012166} [Remember information by mental effort.]
+** Recognize {hedId=HED_0012167} [Identify someone or something from having encountered them before.]
+** Respond {hedId=HED_0012168} [React to something such as a treatment or a stimulus.]
+** Switch-attention {hedId=HED_0012169} [Transfer attention from one focus to another.]
+** Track {hedId=HED_0012170} [Follow a person, animal, or object through space or time.]
+
+'''Item''' {extensionAllowed, hedId=HED_0012171} [An independently existing thing (living or nonliving).]
+* Biological-item {hedId=HED_0012172} [An entity that is biological, that is related to living organisms.]
+** Anatomical-item {hedId=HED_0012173} [A biological structure, system, fluid or other substance excluding single molecular entities.]
+*** Body {hedId=HED_0012174} [The biological structure representing an organism.]
+*** Body-part {hedId=HED_0012175} [Any part of an organism.]
+**** Head {hedId=HED_0012176} [The upper part of the human body, or the front or upper part of the body of an animal, typically separated from the rest of the body by a neck, and containing the brain, mouth, and sense organs.]
+**** Head-part {hedId=HED_0013200} [A part of the head.]
+***** Brain {hedId=HED_0012177} [Organ inside the head that is made up of nerve cells and controls the body.]
+***** Brain-region {hedId=HED_0013201} [A region of the brain.]
+****** Cerebellum {hedId=HED_0013202} [A major structure of the brain located near the brainstem. It plays a key role in motor control, coordination, precision, with contributions to different cognitive functions.]
+****** Frontal-lobe {hedId=HED_0012178}
+****** Occipital-lobe {hedId=HED_0012179}
+****** Parietal-lobe {hedId=HED_0012180}
+****** Temporal-lobe {hedId=HED_0012181}
+***** Ear {hedId=HED_0012182} [A sense organ needed for the detection of sound and for establishing balance.]
+***** Face {hedId=HED_0012183} [The anterior portion of the head extending from the forehead to the chin and ear to ear. The facial structures contain the eyes, nose and mouth, cheeks and jaws.]
+***** Face-part {hedId=HED_0013203} [A part of the face.]
+****** Cheek {hedId=HED_0012184} [The fleshy part of the face bounded by the eyes, nose, ear, and jawline.]
+****** Chin {hedId=HED_0012185} [The part of the face below the lower lip and including the protruding part of the lower jaw.]
+****** Eye {hedId=HED_0012186} [The organ of sight or vision.]
+****** Eyebrow {hedId=HED_0012187} [The arched strip of hair on the bony ridge above each eye socket.]
+****** Eyelid {hedId=HED_0012188} [The folds of the skin that cover the eye when closed.]
+****** Forehead {hedId=HED_0012189} [The part of the face between the eyebrows and the normal hairline.]
+****** Lip {hedId=HED_0012190} [Fleshy fold which surrounds the opening of the mouth.]
+****** Mouth {hedId=HED_0012191} [The proximal portion of the digestive tract, containing the oral cavity and bounded by the oral opening.]
+****** Mouth-part {hedId=HED_0013204} [A part of the mouth.]
+******* Teeth {hedId=HED_0012193} [The hard bone-like structures in the jaws. A collection of teeth arranged in some pattern in the mouth or other part of the body.]
+******* Tongue {hedId=HED_0013205} [A muscular organ in the mouth with significant role in mastication, swallowing, speech, and taste.]
+****** Nose {hedId=HED_0012192} [A structure of special sense serving as an organ of the sense of smell and as an entrance to the respiratory tract.]
+***** Hair {hedId=HED_0012194} [The filamentous outgrowth of the epidermis.]
+**** Lower-extremity {hedId=HED_0012195} [Refers to the whole inferior limb (leg and/or foot).]
+**** Lower-extremity-part {hedId=HED_0013206} [A part of the lower extremity.]
+***** Ankle {hedId=HED_0012196} [A gliding joint between the distal ends of the tibia and fibula and the proximal end of the talus.]
+***** Foot {hedId=HED_0012198} [The structure found below the ankle joint required for locomotion.]
+***** Foot-part {hedId=HED_0013207} [A part of the foot.]
+****** Heel {hedId=HED_0012200} [The back of the foot below the ankle.]
+****** Instep {hedId=HED_0012201} [The part of the foot between the ball and the heel on the inner side.]
+****** Toe {hedId=HED_0013208} [A digit of the foot.]
+******* Big-toe {hedId=HED_0012199} [The largest toe on the inner side of the foot.]
+******* Little-toe {hedId=HED_0012202} [The smallest toe located on the outer side of the foot.]
+****** Toes {relatedTag=Toe, hedId=HED_0012203} [The terminal digits of the foot. Used to describe collective attributes of all toes, such as bending all toes]
+***** Knee {hedId=HED_0012204} [A joint connecting the lower part of the femur with the upper part of the tibia.]
+***** Lower-leg {hedId=HED_0013209} [The part of the leg between the knee and the ankle.]
+***** Lower-leg-part {hedId=HED_0013210} [A part of the lower leg.]
+****** Calf {hedId=HED_0012197} [The fleshy part at the back of the leg below the knee.]
+****** Shin {hedId=HED_0012205} [Front part of the leg below the knee.]
+***** Upper-leg {hedId=HED_0013211} [The part of the leg between the hip and the knee.]
+***** Upper-leg-part {hedId=HED_0013212} [A part of the upper leg.]
+****** Thigh {hedId=HED_0012206} [Upper part of the leg between hip and knee.]
+**** Neck {hedId=HED_0013213} [The part of the body connecting the head to the torso, containing the cervical spine and vital pathways of nerves, blood vessels, and the airway.]
+**** Torso {hedId=HED_0012207} [The body excluding the head and neck and limbs.]
+**** Torso-part {hedId=HED_0013214} [A part of the torso.]
+***** Abdomen {hedId=HED_0013215} [The part of the body between the thorax and the pelvis.]
+***** Navel {hedId=HED_0013216} [The central mark on the abdomen created by the detachment of the umbilical cord after birth.]
+***** Pelvis {hedId=HED_0013217} [The bony structure at the base of the spine supporting the legs.]
+***** Pelvis-part {hedId=HED_0013218} [A part of the pelvis.]
+****** Buttocks {hedId=HED_0012208} [The round fleshy parts that form the lower rear area of a human trunk.]
+****** Genitalia {hedId=HED_0013219} [The external organs of reproduction and urination, located in the pelvic region. This includes both male and female genital structures.]
+****** Gentalia {deprecatedFrom=8.1.0, hedId=HED_0012209} [The external organs of reproduction. Deprecated due to spelling error. Use Genitalia.]
+****** Hip {hedId=HED_0012210} [The lateral prominence of the pelvis from the waist to the thigh.]
+***** Torso-back {hedId=HED_0012211} [The rear surface of the human body from the shoulders to the hips.]
+***** Torso-chest {hedId=HED_0012212} [The anterior side of the thorax from the neck to the abdomen.]
+***** Viscera {hedId=HED_0012213} [Internal organs of the body.]
+***** Waist {hedId=HED_0012214} [The abdominal circumference at the navel.]
+**** Upper-extremity {hedId=HED_0012215} [Refers to the whole superior limb (shoulder, arm, elbow, wrist, hand).]
+**** Upper-extremity-part {hedId=HED_0013220} [A part of the upper extremity.]
+***** Elbow {hedId=HED_0012216} [A type of hinge joint located between the forearm and upper arm.]
+***** Forearm {hedId=HED_0012217} [Lower part of the arm between the elbow and wrist.]
+***** Forearm-part {hedId=HED_0013221} [A part of the forearm.]
+***** Hand {hedId=HED_0012218} [The distal portion of the upper extremity. It consists of the carpus, metacarpus, and digits.]
+***** Hand-part {hedId=HED_0013222} [A part of the hand.]
+****** Finger {hedId=HED_0012219} [Any of the digits of the hand.]
+******* Index-finger {hedId=HED_0012220} [The second finger from the radial side of the hand, next to the thumb.]
+******* Little-finger {hedId=HED_0012221} [The fifth and smallest finger from the radial side of the hand.]
+******* Middle-finger {hedId=HED_0012222} [The middle or third finger from the radial side of the hand.]
+******* Ring-finger {hedId=HED_0012223} [The fourth finger from the radial side of the hand.]
+******* Thumb {hedId=HED_0012224} [The thick and short hand digit which is next to the index finger in humans.]
+****** Fingers {relatedTag=Finger, hedId=HED_0013223} [The terminal digits of the hand. Used to describe collective attributes of all fingers, such as bending all fingers]
+****** Knuckles {hedId=HED_0012225} [A part of a finger at a joint where the bone is near the surface, especially where the finger joins the hand.]
+****** Palm {hedId=HED_0012226} [The part of the inner surface of the hand that extends from the wrist to the bases of the fingers.]
+***** Shoulder {hedId=HED_0012227} [Joint attaching upper arm to trunk.]
+***** Upper-arm {hedId=HED_0012228} [Portion of arm between shoulder and elbow.]
+***** Upper-arm-part {hedId=HED_0013224} [A part of the upper arm.]
+***** Wrist {hedId=HED_0012229} [A joint between the distal end of the radius and the proximal row of carpal bones.]
+** Organism {hedId=HED_0012230} [A living entity, more specifically a biological entity that consists of one or more cells and is capable of genomic replication (independently or not).]
+*** Animal {hedId=HED_0012231} [A living organism that has membranous cell walls, requires oxygen and organic foods, and is capable of voluntary movement.]
+*** Human {hedId=HED_0012232} [The bipedal primate mammal Homo sapiens.]
+*** Plant {hedId=HED_0012233} [Any living organism that typically synthesizes its food from inorganic substances and possesses cellulose cell walls.]
+**** Fruit {rooted=Plant, inLibrary=testlib} [Fruit stuff.]
+***** Apple {annotation=foodonto:has_botanical_name, inLibrary=testlib} [Apple stuff]
+****** Honey-crisp {inLibrary=testlib} [Type of apple]
+**** Vegetable {rooted=Plant, inLibrary=testlib} [Vegetable stuff.]
+***** Carrot {annotation=foodonto:has_botanical_name, inLibrary=testlib} [Carrot stuff]
+* Language-item {suggestedTag=Sensory-presentation, hedId=HED_0012234} [An entity related to a systematic means of communicating by the use of sounds, symbols, or gestures.]
+** Character {hedId=HED_0012235} [A mark or symbol used in writing.]
+** Clause {hedId=HED_0012236} [A unit of grammatical organization next below the sentence in rank, usually consisting of a subject and predicate.]
+** Glyph {hedId=HED_0012237} [A hieroglyphic character, symbol, or pictograph.]
+** Nonword {hedId=HED_0012238} [An unpronounceable group of letters or speech sounds that is surrounded by white space when written, is not accepted as a word by native speakers.]
+** Paragraph {hedId=HED_0012239} [A distinct section of a piece of writing, usually dealing with a single theme.]
+** Phoneme {hedId=HED_0012240} [Any of the minimally distinct units of sound in a specified language that distinguish one word from another.]
+** Phrase {hedId=HED_0012241} [A phrase is a group of words functioning as a single unit in the syntax of a sentence.]
+** Pseudoword {hedId=HED_0012242} [A pronounceable group of letters or speech sounds that looks or sounds like a word but that is not accepted as such by native speakers.]
+** Sentence {hedId=HED_0012243} [A set of words that is complete in itself, conveying a statement, question, exclamation, or command and typically containing an explicit or implied subject and a predicate containing a finite verb.]
+** Syllable {hedId=HED_0012244} [A unit of pronunciation having a vowel or consonant sound, with or without surrounding consonants, forming the whole or a part of a word.]
+** Textblock {hedId=HED_0012245} [A block of text.]
+** Word {hedId=HED_0012246} [A single distinct meaningful element of speech or writing, used with others (or sometimes alone) to form a sentence and typically surrounded by white space when written or printed.]
+* Object {suggestedTag=Sensory-presentation, hedId=HED_0012247} [Something perceptible by one or more of the senses, especially by vision or touch. A material thing.]
+** Geometric-object {hedId=HED_0012248} [An object or a representation that has structure and topology in space.]
+*** 2D-shape {hedId=HED_0012249} [A planar, two-dimensional shape.]
+**** Arrow {hedId=HED_0012250} [A shape with a pointed end indicating direction.]
+**** Clockface {hedId=HED_0012251} [The dial face of a clock. A location identifier based on clock-face-position numbering or anatomic subregion.]
+**** Cross {hedId=HED_0012252} [A figure or mark formed by two intersecting lines crossing at their midpoints.]
+**** Dash {hedId=HED_0012253} [A horizontal stroke in writing or printing to mark a pause or break in sense or to represent omitted letters or words.]
+**** Ellipse {hedId=HED_0012254} [A closed plane curve resulting from the intersection of a circular cone and a plane cutting completely through it, especially a plane not parallel to the base.]
+***** Circle {hedId=HED_0012255} [A ring-shaped structure with every point equidistant from the center.]
+**** Rectangle {hedId=HED_0012256} [A parallelogram with four right angles.]
+***** Square {hedId=HED_0012257} [A square is a special rectangle with four equal sides.]
+**** Single-point {hedId=HED_0012258} [A point is a geometric entity that is located in a zero-dimensional spatial region and whose position is defined by its coordinates in some coordinate system.]
+**** Star {hedId=HED_0012259} [A conventional or stylized representation of a star, typically one having five or more points.]
+**** Triangle {hedId=HED_0012260} [A three-sided polygon.]
+*** 3D-shape {hedId=HED_0012261} [A geometric three-dimensional shape.]
+**** Box {hedId=HED_0012262} [A square or rectangular vessel, usually made of cardboard or plastic.]
+***** Cube {hedId=HED_0012263} [A solid or semi-solid in the shape of a three dimensional square.]
+**** Cone {hedId=HED_0012264} [A shape whose base is a circle and whose sides taper up to a point.]
+**** Cylinder {hedId=HED_0012265} [A surface formed by circles of a given radius that are contained in a plane perpendicular to a given axis, whose centers align on the axis.]
+**** Ellipsoid {hedId=HED_0012266} [A closed plane curve resulting from the intersection of a circular cone and a plane cutting completely through it, especially a plane not parallel to the base.]
+***** Sphere {hedId=HED_0012267} [A solid or hollow three-dimensional object bounded by a closed surface such that every point on the surface is equidistant from the center.]
+**** Pyramid {hedId=HED_0012268} [A polyhedron of which one face is a polygon of any number of sides, and the other faces are triangles with a common vertex.]
+*** Pattern {hedId=HED_0012269} [An arrangement of objects, facts, behaviors, or other things which have scientific, mathematical, geometric, statistical, or other meaning.]
+**** Dots {hedId=HED_0012270} [A small round mark or spot.]
+**** LED-pattern {hedId=HED_0012271} [A pattern created by lighting selected members of a fixed light emitting diode array.]
+** Ingestible-object {hedId=HED_0012272} [Something that can be taken into the body by the mouth for digestion or absorption.]
+** Man-made-object {hedId=HED_0012273} [Something constructed by human means.]
+*** Building {hedId=HED_0012274} [A structure that usually has a roof and walls and stands more or less permanently in one place.]
+*** Building-part {hedId=HED_0013231} [A part of a building.]
+**** Attic {hedId=HED_0012275} [A room or a space immediately below the roof of a building.]
+**** Basement {hedId=HED_0012276} [The part of a building that is wholly or partly below ground level.]
+**** Door {hedId=HED_0013232} [A door is a hinged or otherwise movable barrier that allows entry into and exit from an enclosed structure.]
+**** Entrance {hedId=HED_0012277} [The means or place of entry.]
+**** Roof {hedId=HED_0012278} [A roof is the covering on the uppermost part of a building which provides protection from animals and weather, notably rain, but also heat, wind and sunlight.]
+**** Room {hedId=HED_0012279} [An area within a building enclosed by walls and floor and ceiling.]
+**** Window {hedId=HED_0013233} [An opening in a wall, roof, or vehicle that allows light and air to enter, typically covered by glass or other transparent material.]
+*** Clothing {hedId=HED_0012280} [A covering designed to be worn on the body.]
+*** Device {hedId=HED_0012281} [An object contrived for a specific purpose.]
+**** Assistive-device {hedId=HED_0012282} [A device that help an individual accomplish a task.]
+***** Glasses {hedId=HED_0012283} [Frames with lenses worn in front of the eye for vision correction, eye protection, or protection from UV rays.]
+***** Writing-device {hedId=HED_0012284} [A device used for writing.]
+****** Pen {hedId=HED_0012285} [A common writing instrument used to apply ink to a surface for writing or drawing.]
+****** Pencil {hedId=HED_0012286} [An implement for writing or drawing that is constructed of a narrow solid pigment core in a protective casing that prevents the core from being broken or marking the hand.]
+**** Computing-device {hedId=HED_0012287} [An electronic device which take inputs and processes results from the inputs.]
+***** Cellphone {hedId=HED_0012288} [A telephone with access to a cellular radio system so it can be used over a wide area, without a physical connection to a network.]
+***** Desktop-computer {hedId=HED_0012289} [A computer suitable for use at an ordinary desk.]
+***** Laptop-computer {hedId=HED_0012290} [A computer that is portable and suitable for use while traveling.]
+***** Tablet-computer {hedId=HED_0012291} [A small portable computer that accepts input directly on to its screen rather than via a keyboard or mouse.]
+**** Engine {hedId=HED_0012292} [A motor is a machine designed to convert one or more forms of energy into mechanical energy.]
+**** IO-device {hedId=HED_0012293} [Hardware used by a human (or other system) to communicate with a computer.]
+***** Input-device {hedId=HED_0012294} [A piece of equipment used to provide data and control signals to an information processing system such as a computer or information appliance.]
+****** Computer-mouse {hedId=HED_0012295} [A hand-held pointing device that detects two-dimensional motion relative to a surface.]
+******* Mouse-button {hedId=HED_0012296} [An electric switch on a computer mouse which can be pressed or clicked to select or interact with an element of a graphical user interface.]
+******* Scroll-wheel {hedId=HED_0012297} [A scroll wheel or mouse wheel is a wheel used for scrolling made of hard plastic with a rubbery surface usually located between the left and right mouse buttons and is positioned perpendicular to the mouse surface.]
+****** Joystick {hedId=HED_0012298} [A control device that uses a movable handle to create two-axis input for a computer device.]
+****** Keyboard {hedId=HED_0012299} [A device consisting of mechanical keys that are pressed to create input to a computer.]
+******* Keyboard-key {hedId=HED_0012300} [A button on a keyboard usually representing letters, numbers, functions, or symbols.]
+******** # {takesValue, hedId=HED_0012301} [Value of a keyboard key.]
+****** Keypad {hedId=HED_0012302} [A device consisting of keys, usually in a block arrangement, that provides limited input to a system.]
+******* Keypad-key {hedId=HED_0012303} [A key on a separate section of a computer keyboard that groups together numeric keys and those for mathematical or other special functions in an arrangement like that of a calculator.]
+******** # {takesValue, hedId=HED_0012304} [Value of keypad key.]
+****** Microphone {hedId=HED_0012305} [A device designed to convert sound to an electrical signal.]
+****** Push-button {hedId=HED_0012306} [A switch designed to be operated by pressing a button.]
+***** Output-device {hedId=HED_0012307} [Any piece of computer hardware equipment which converts information into human understandable form.]
+****** Auditory-device {hedId=HED_0012308} [A device designed to produce sound.]
+******* Headphones {hedId=HED_0012309} [An instrument that consists of a pair of small loudspeakers, or less commonly a single speaker, held close to ears and connected to a signal source such as an audio amplifier, radio, CD player or portable media player.]
+******* Loudspeaker {hedId=HED_0012310} [A device designed to convert electrical signals to sounds that can be heard.]
+****** Display-device {hedId=HED_0012311} [An output device for presentation of information in visual or tactile form the latter used for example in tactile electronic displays for blind people.]
+******* Computer-screen {hedId=HED_0012312} [An electronic device designed as a display or a physical device designed to be a protective mesh work.]
+******* Head-mounted-display {hedId=HED_0012314} [An instrument that functions as a display device, worn on the head or as part of a helmet, that has a small display optic in front of one (monocular HMD) or each eye (binocular HMD).]
+******* LED-display {hedId=HED_0012315} [A LED display is a flat panel display that uses an array of light-emitting diodes as pixels for a video display.]
+******* Screen-window {hedId=HED_0012313} [A part of a computer screen that contains a display different from the rest of the screen.]
+***** Recording-device {hedId=HED_0012316} [A device that copies information in a signal into a persistent information bearer.]
+****** EEG-recorder {hedId=HED_0012317} [A device for recording electric currents in the brain using electrodes applied to the scalp, to the surface of the brain, or placed within the substance of the brain.]
+****** EMG-recorder {hedId=HED_0013225} [A device for recording electrical activity of muscles using electrodes on the body surface or within the muscular mass.]
+****** File-storage {hedId=HED_0012318} [A device for recording digital information to a permanent media.]
+****** MEG-recorder {hedId=HED_0012319} [A device for measuring the magnetic fields produced by electrical activity in the brain, usually conducted externally.]
+****** Motion-capture {hedId=HED_0012320} [A device for recording the movement of objects or people.]
+****** Tape-recorder {hedId=HED_0012321} [A device for recording and reproduction usually using magnetic tape for storage that can be saved and played back.]
+***** Touchscreen {hedId=HED_0012322} [A control component that operates an electronic device by pressing the display on the screen.]
+**** Machine {hedId=HED_0012323} [A human-made device that uses power to apply forces and control movement to perform an action.]
+**** Measurement-device {hedId=HED_0012324} [A device that measures something.]
+***** Clock {hedId=HED_0012325} [A device designed to indicate the time of day or to measure the time duration of an event or action.]
+**** Robot {hedId=HED_0012327} [A mechanical device that sometimes resembles a living animal and is capable of performing a variety of often complex human tasks on command or by being programmed in advance.]
+**** Tool {hedId=HED_0012328} [A component that is not part of a device but is designed to support its assembly or operation.]
+*** Document {hedId=HED_0012329} [A physical object, or electronic counterpart, that is characterized by containing writing which is meant to be human-readable.]
+**** Book {hedId=HED_0012330} [A volume made up of pages fastened along one edge and enclosed between protective covers.]
+**** Letter {hedId=HED_0012331} [A written message addressed to a person or organization.]
+**** Note {hedId=HED_0012332} [A brief written record.]
+**** Notebook {hedId=HED_0012333} [A book for notes or memoranda.]
+**** Questionnaire {hedId=HED_0012334} [A document consisting of questions and possibly responses, depending on whether it has been filled out.]
+*** Furnishing {hedId=HED_0012335} [Furniture, fittings, and other decorative accessories, such as curtains and carpets, for a house or room.]
+*** Manufactured-material {hedId=HED_0012336} [Substances created or extracted from raw materials.]
+**** Ceramic {hedId=HED_0012337} [A hard, brittle, heat-resistant and corrosion-resistant material made by shaping and then firing a nonmetallic mineral, such as clay, at a high temperature.]
+**** Glass {hedId=HED_0012338} [A brittle transparent solid with irregular atomic structure.]
+**** Paper {hedId=HED_0012339} [A thin sheet material produced by mechanically or chemically processing cellulose fibres derived from wood, rags, grasses or other vegetable sources in water.]
+**** Plastic {hedId=HED_0012340} [Various high-molecular-weight thermoplastic or thermo-setting polymers that are capable of being molded, extruded, drawn, or otherwise shaped and then hardened into a form.]
+**** Steel {hedId=HED_0012341} [An alloy made up of iron with typically a few tenths of a percent of carbon to improve its strength and fracture resistance compared to iron.]
+*** Media {hedId=HED_0012342} [Media are audio/visual/audiovisual modes of communicating information for mass consumption.]
+**** Media-clip {hedId=HED_0012343} [A short segment of media.]
+***** Audio-clip {hedId=HED_0012344} [A short segment of audio.]
+***** Audiovisual-clip {hedId=HED_0012345} [A short media segment containing both audio and video.]
+***** Video-clip {hedId=HED_0012346} [A short segment of video.]
+**** Visualization {hedId=HED_0012347} [An planned process that creates images, diagrams or animations from the input data.]
+***** Animation {hedId=HED_0012348} [A form of graphical illustration that changes with time to give a sense of motion or represent dynamic changes in the portrayal.]
+***** Art-installation {hedId=HED_0012349} [A large-scale, mixed-media constructions, often designed for a specific place or for a temporary period of time.]
+***** Braille {hedId=HED_0012350} [A display using a system of raised dots that can be read with the fingers by people who are blind.]
+***** Image {hedId=HED_0012351} [Any record of an imaging event whether physical or electronic.]
+****** Cartoon {hedId=HED_0012352} [A type of illustration, sometimes animated, typically in a non-realistic or semi-realistic style. The specific meaning has evolved over time, but the modern usage usually refers to either an image or series of images intended for satire, caricature, or humor. A motion picture that relies on a sequence of illustrations for its animation.]
+****** Drawing {hedId=HED_0012353} [A representation of an object or outlining a figure, plan, or sketch by means of lines.]
+****** Icon {hedId=HED_0012354} [A sign (such as a word or graphic symbol) whose form suggests its meaning.]
+****** Painting {hedId=HED_0012355} [A work produced through the art of painting.]
+****** Photograph {hedId=HED_0012356} [An image recorded by a camera.]
+***** Movie {hedId=HED_0012357} [A sequence of images displayed in succession giving the illusion of continuous movement.]
+***** Outline-visualization {hedId=HED_0012358} [A visualization consisting of a line or set of lines enclosing or indicating the shape of an object in a sketch or diagram.]
+***** Point-light-visualization {hedId=HED_0012359} [A display in which action is depicted using a few points of light, often generated from discrete sensors in motion capture.]
+***** Sculpture {hedId=HED_0012360} [A two- or three-dimensional representative or abstract forms, especially by carving stone or wood or by casting metal or plaster.]
+***** Stick-figure-visualization {hedId=HED_0012361} [A drawing showing the head of a human being or animal as a circle and all other parts as straight lines.]
+*** Navigational-object {hedId=HED_0012362} [An object whose purpose is to assist directed movement from one location to another.]
+**** Path {hedId=HED_0012363} [A trodden way. A way or track laid down for walking or made by continual treading.]
+**** Road {hedId=HED_0012364} [An open way for the passage of vehicles, persons, or animals on land.]
+***** Lane {hedId=HED_0012365} [A defined path with physical dimensions through which an object or substance may traverse.]
+**** Runway {hedId=HED_0012366} [A paved strip of ground on a landing field for the landing and takeoff of aircraft.]
+*** Vehicle {hedId=HED_0012367} [A mobile machine which transports people or cargo.]
+**** Aircraft {hedId=HED_0012368} [A vehicle which is able to travel through air in an atmosphere.]
+**** Bicycle {hedId=HED_0012369} [A human-powered, pedal-driven, single-track vehicle, having two wheels attached to a frame, one behind the other.]
+**** Boat {hedId=HED_0012370} [A watercraft of any size which is able to float or plane on water.]
+**** Car {hedId=HED_0012371} [A wheeled motor vehicle used primarily for the transportation of human passengers.]
+**** Cart {hedId=HED_0012372} [A cart is a vehicle which has two wheels and is designed to transport human passengers or cargo.]
+**** Tractor {hedId=HED_0012373} [A mobile machine specifically designed to deliver a high tractive effort at slow speeds, and mainly used for the purposes of hauling a trailer or machinery used in agriculture or construction.]
+**** Train {hedId=HED_0012374} [A connected line of railroad cars with or without a locomotive.]
+**** Truck {hedId=HED_0012375} [A motor vehicle which, as its primary function, transports cargo rather than human passengers.]
+** Natural-object {hedId=HED_0012376} [Something that exists in or is produced by nature, and is not artificial or man-made.]
+*** Mineral {hedId=HED_0012377} [A solid, homogeneous, inorganic substance occurring in nature and having a definite chemical composition.]
+*** Natural-feature {hedId=HED_0012378} [A feature that occurs in nature. A prominent or identifiable aspect, region, or site of interest.]
+**** Field {hedId=HED_0012379} [An unbroken expanse as of ice or grassland.]
+**** Hill {hedId=HED_0012380} [A rounded elevation of limited extent rising above the surrounding land with local relief of less than 300m.]
+**** Mountain {hedId=HED_0012381} [A landform that extends above the surrounding terrain in a limited area.]
+**** River {hedId=HED_0012382} [A natural freshwater surface stream of considerable volume and a permanent or seasonal flow, moving in a definite channel toward a sea, lake, or another river.]
+**** Waterfall {hedId=HED_0012383} [A sudden descent of water over a step or ledge in the bed of a river.]
+* Sound {hedId=HED_0012384} [Mechanical vibrations transmitted by an elastic medium. Something that can be heard.]
+** Environmental-sound {hedId=HED_0012385} [Sounds occurring in the environment. An accumulation of noise pollution that occurs outside. This noise can be caused by transport, industrial, and recreational activities.]
+*** Crowd-sound {hedId=HED_0012386} [Noise produced by a mixture of sounds from a large group of people.]
+*** Signal-noise {hedId=HED_0012387} [Any part of a signal that is not the true or original signal but is introduced by the communication mechanism.]
+** Musical-sound {hedId=HED_0012388} [Sound produced by continuous and regular vibrations, as opposed to noise.]
+*** Instrument-sound {hedId=HED_0012389} [Sound produced by a musical instrument.]
+*** Tone {hedId=HED_0012390} [A musical note, warble, or other sound used as a particular signal on a telephone or answering machine.]
+*** Vocalized-sound {hedId=HED_0012391} [Musical sound produced by vocal cords in a biological agent.]
+** Named-animal-sound {hedId=HED_0012392} [A sound recognizable as being associated with particular animals.]
+*** Barking {hedId=HED_0012393} [Sharp explosive cries like sounds made by certain animals, especially a dog, fox, or seal.]
+*** Bleating {hedId=HED_0012394} [Wavering cries like sounds made by a sheep, goat, or calf.]
+*** Chirping {hedId=HED_0012395} [Short, sharp, high-pitched noises like sounds made by small birds or an insects.]
+*** Crowing {hedId=HED_0012396} [Loud shrill sounds characteristic of roosters.]
+*** Growling {hedId=HED_0012397} [Low guttural sounds like those that made in the throat by a hostile dog or other animal.]
+*** Meowing {hedId=HED_0012398} [Vocalizations like those made by as those cats. These sounds have diverse tones and are sometimes chattered, murmured or whispered. The purpose can be assertive.]
+*** Mooing {hedId=HED_0012399} [Deep vocal sounds like those made by a cow.]
+*** Purring {hedId=HED_0012400} [Low continuous vibratory sound such as those made by cats. The sound expresses contentment.]
+*** Roaring {hedId=HED_0012401} [Loud, deep, or harsh prolonged sounds such as those made by big cats and bears for long-distance communication and intimidation.]
+*** Squawking {hedId=HED_0012402} [Loud, harsh noises such as those made by geese.]
+** Named-object-sound {hedId=HED_0012403} [A sound identifiable as coming from a particular type of object.]
+*** Alarm-sound {hedId=HED_0012404} [A loud signal often loud continuous ringing to alert people to a problem or condition that requires urgent attention.]
+*** Beep {hedId=HED_0012405} [A short, single tone, that is typically high-pitched and generally made by a computer or other machine.]
+*** Buzz {hedId=HED_0012406} [A persistent vibratory sound often made by a buzzer device and used to indicate something incorrect.]
+*** Click {hedId=HED_0012407} [The sound made by a mechanical cash register, often to designate a reward.]
+*** Ding {hedId=HED_0012408} [A short ringing sound such as that made by a bell, often to indicate a correct response or the expiration of time.]
+*** Horn-blow {hedId=HED_0012409} [A loud sound made by forcing air through a sound device that funnels air to create the sound, often used to sound an alert.]
+*** Ka-ching {hedId=HED_0012410} [The sound made by a mechanical cash register, often to designate a reward.]
+*** Siren {hedId=HED_0012411} [A loud, continuous sound often varying in frequency designed to indicate an emergency.]
+
+'''Property''' {extensionAllowed, hedId=HED_0012412} [Something that pertains to a thing. A characteristic of some entity. A quality or feature regarded as a characteristic or inherent part of someone or something. HED attributes are adjectives or adverbs.]
+* Agent-property {hedId=HED_0012413} [Something that pertains to or describes an agent.]
+** Agent-state {hedId=HED_0012414} [The state of the agent.]
+*** Agent-cognitive-state {hedId=HED_0012415} [The state of the cognitive processes or state of mind of the agent.]
+**** Alert {hedId=HED_0012416} [Condition of heightened watchfulness or preparation for action.]
+**** Anesthetized {hedId=HED_0012417} [Having lost sensation to pain or having senses dulled due to the effects of an anesthetic.]
+**** Asleep {hedId=HED_0012418} [Having entered a periodic, readily reversible state of reduced awareness and metabolic activity, usually accompanied by physical relaxation and brain activity.]
+**** Attentive {hedId=HED_0012419} [Concentrating and focusing mental energy on the task or surroundings.]
+**** Awake {hedId=HED_0012420} [In a non sleeping state.]
+**** Brain-dead {hedId=HED_0012421} [Characterized by the irreversible absence of cortical and brain stem functioning.]
+**** Comatose {hedId=HED_0012422} [In a state of profound unconsciousness associated with markedly depressed cerebral activity.]
+**** Distracted {hedId=HED_0012423} [Lacking in concentration because of being preoccupied.]
+**** Drowsy {hedId=HED_0012424} [In a state of near-sleep, a strong desire for sleep, or sleeping for unusually long periods.]
+**** Intoxicated {hedId=HED_0012425} [In a state with disturbed psychophysiological functions and responses as a result of administration or ingestion of a psychoactive substance.]
+**** Locked-in {hedId=HED_0012426} [In a state of complete paralysis of all voluntary muscles except for the ones that control the movements of the eyes.]
+**** Passive {hedId=HED_0012427} [Not responding or initiating an action in response to a stimulus.]
+**** Resting {hedId=HED_0012428} [A state in which the agent is not exhibiting any physical exertion.]
+**** Vegetative {hedId=HED_0012429} [A state of wakefulness and conscience, but (in contrast to coma) with involuntary opening of the eyes and movements (such as teeth grinding, yawning, or thrashing of the extremities).]
+*** Agent-emotional-state {hedId=HED_0012430} [The status of the general temperament and outlook of an agent.]
+**** Angry {hedId=HED_0012431} [Experiencing emotions characterized by marked annoyance or hostility.]
+**** Aroused {hedId=HED_0012432} [In a state reactive to stimuli leading to increased heart rate and blood pressure, sensory alertness, mobility and readiness to respond.]
+**** Awed {hedId=HED_0012433} [Filled with wonder. Feeling grand, sublime or powerful emotions characterized by a combination of joy, fear, admiration, reverence, and/or respect.]
+**** Compassionate {hedId=HED_0012434} [Feeling or showing sympathy and concern for others often evoked for a person who is in distress and associated with altruistic motivation.]
+**** Content {hedId=HED_0012435} [Feeling satisfaction with things as they are.]
+**** Disgusted {hedId=HED_0012436} [Feeling revulsion or profound disapproval aroused by something unpleasant or offensive.]
+**** Emotionally-neutral {hedId=HED_0012437} [Feeling neither satisfied nor dissatisfied.]
+**** Empathetic {hedId=HED_0012438} [Understanding and sharing the feelings of another. Being aware of, being sensitive to, and vicariously experiencing the feelings, thoughts, and experience of another.]
+**** Excited {hedId=HED_0012439} [Feeling great enthusiasm and eagerness.]
+**** Fearful {hedId=HED_0012440} [Feeling apprehension that one may be in danger.]
+**** Frustrated {hedId=HED_0012441} [Feeling annoyed as a result of being blocked, thwarted, disappointed or defeated.]
+**** Grieving {hedId=HED_0012442} [Feeling sorrow in response to loss, whether physical or abstract.]
+**** Happy {hedId=HED_0012443} [Feeling pleased and content.]
+**** Jealous {hedId=HED_0012444} [Feeling threatened by a rival in a relationship with another individual, in particular an intimate partner, usually involves feelings of threat, fear, suspicion, distrust, anxiety, anger, betrayal, and rejection.]
+**** Joyful {hedId=HED_0012445} [Feeling delight or intense happiness.]
+**** Loving {hedId=HED_0012446} [Feeling a strong positive emotion of affection and attraction.]
+**** Relieved {hedId=HED_0012447} [No longer feeling pain, distress,anxiety, or reassured.]
+**** Sad {hedId=HED_0012448} [Feeling grief or unhappiness.]
+**** Stressed {hedId=HED_0012449} [Experiencing mental or emotional strain or tension.]
+*** Agent-physiological-state {hedId=HED_0012450} [Having to do with the mechanical, physical, or biochemical function of an agent.]
+**** Catamenial {hedId=HED_0013226} [Related to menstruation.]
+**** Fever {relatedTag=Sick, hedId=HED_0013227} [Body temperature above the normal range.]
+**** Healthy {relatedTag=Sick, hedId=HED_0012451} [Having no significant health-related issues.]
+**** Hungry {relatedTag=Sated, relatedTag=Thirsty, hedId=HED_0012452} [Being in a state of craving or desiring food.]
+**** Rested {relatedTag=Tired, hedId=HED_0012453} [Feeling refreshed and relaxed.]
+**** Sated {relatedTag=Hungry, hedId=HED_0012454} [Feeling full.]
+**** Sick {relatedTag=Healthy, hedId=HED_0012455} [Being in a state of ill health, bodily malfunction, or discomfort.]
+**** Thirsty {relatedTag=Hungry, hedId=HED_0012456} [Feeling a need to drink.]
+**** Tired {relatedTag=Rested, hedId=HED_0012457} [Feeling in need of sleep or rest.]
+*** Agent-postural-state {hedId=HED_0012458} [Pertaining to the position in which agent holds their body.]
+**** Crouching {hedId=HED_0012459} [Adopting a position where the knees are bent and the upper body is brought forward and down, sometimes to avoid detection or to defend oneself.]
+**** Eyes-closed {hedId=HED_0012460} [Keeping eyes closed with no blinking.]
+**** Eyes-open {hedId=HED_0012461} [Keeping eyes open with occasional blinking.]
+**** Kneeling {hedId=HED_0012462} [Positioned where one or both knees are on the ground.]
+**** On-treadmill {hedId=HED_0012463} [Ambulation on an exercise apparatus with an endless moving belt to support moving in place.]
+**** Prone {hedId=HED_0012464} [Positioned in a recumbent body position whereby the person lies on its stomach and faces downward.]
+**** Seated-with-chin-rest {hedId=HED_0012465} [Using a device that supports the chin and head.]
+**** Sitting {hedId=HED_0012466} [In a seated position.]
+**** Standing {hedId=HED_0012467} [Assuming or maintaining an erect upright position.]
+** Agent-task-role {hedId=HED_0012468} [The function or part that is ascribed to an agent in performing the task.]
+*** Experiment-actor {hedId=HED_0012469} [An agent who plays a predetermined role to create the experiment scenario.]
+*** Experiment-controller {hedId=HED_0012470} [An agent exerting control over some aspect of the experiment.]
+*** Experiment-participant {hedId=HED_0012471} [Someone who takes part in an activity related to an experiment.]
+*** Experimenter {hedId=HED_0012472} [Person who is the owner of the experiment and has its responsibility.]
+** Agent-trait {hedId=HED_0012473} [A genetically, environmentally, or socially determined characteristic of an agent.]
+*** Age {hedId=HED_0012474} [Length of time elapsed time since birth of the agent.]
+**** # {takesValue, valueClass=numericClass, unitClass=timeUnits, hedId=HED_0012475}
+*** Agent-experience-level {hedId=HED_0012476} [Amount of skill or knowledge that the agent has as pertains to the task.]
+**** Expert-level {relatedTag=Intermediate-experience-level, relatedTag=Novice-level, hedId=HED_0012477} [Having comprehensive and authoritative knowledge of or skill in a particular area related to the task.]
+**** Intermediate-experience-level {relatedTag=Expert-level, relatedTag=Novice-level, hedId=HED_0012478} [Having a moderate amount of knowledge or skill related to the task.]
+**** Novice-level {relatedTag=Expert-level, relatedTag=Intermediate-experience-level, hedId=HED_0012479} [Being inexperienced in a field or situation related to the task.]
+*** Ethnicity {hedId=HED_0012480} [Belong to a social group that has a common national or cultural tradition. Use with Label to avoid extension.]
+*** Gender {hedId=HED_0012481} [Characteristics that are socially constructed, including norms, behaviors, and roles based on sex.]
+*** Handedness {hedId=HED_0012482} [Individual preference for use of a hand, known as the dominant hand.]
+**** Ambidextrous {hedId=HED_0012483} [Having no overall dominance in the use of right or left hand or foot in the performance of tasks that require one hand or foot.]
+**** Left-handed {hedId=HED_0012484} [Preference for using the left hand or foot for tasks requiring the use of a single hand or foot.]
+**** Right-handed {hedId=HED_0012485} [Preference for using the right hand or foot for tasks requiring the use of a single hand or foot.]
+*** Race {hedId=HED_0012486} [Belonging to a group sharing physical or social qualities as defined within a specified society. Use with Label to avoid extension.]
+*** Sex {hedId=HED_0012487} [Physical properties or qualities by which male is distinguished from female.]
+**** Female {hedId=HED_0012488} [Biological sex of an individual with female sexual organs such ova.]
+**** Intersex {hedId=HED_0012489} [Having genitalia and/or secondary sexual characteristics of indeterminate sex.]
+**** Male {hedId=HED_0012490} [Biological sex of an individual with male sexual organs producing sperm.]
+**** Other-sex {hedId=HED_0012491} [A non-specific designation of sexual traits.]
+* Data-property {extensionAllowed, hedId=HED_0012492} [Something that pertains to data or information.]
+** Data-artifact {hedId=HED_0012493} [An anomalous, interfering, or distorting signal originating from a source other than the item being studied.]
+*** Biological-artifact {hedId=HED_0012494} [A data artifact arising from a biological entity being measured.]
+**** Chewing-artifact {hedId=HED_0012495} [Artifact from moving the jaw in a chewing motion.]
+**** ECG-artifact {hedId=HED_0012496} [An electrical artifact from the far-field potential from pulsation of the heart, time locked to QRS complex.]
+**** EMG-artifact {hedId=HED_0012497} [Artifact from muscle activity and myogenic potentials at the measurements site. In EEG, myogenic potentials are the most common artifacts. Frontalis and temporalis muscles (e.g. clenching of jaw muscles) are common causes. Generally, the potentials generated in the muscles are of shorter duration than those generated in the brain. The frequency components are usually beyond 30-50 Hz, and the bursts are arrhythmic.]
+**** Eye-artifact {hedId=HED_0012498} [Ocular movements and blinks can result in artifacts in different types of data. In electrophysiology data, these can result transients and offsets the signal.]
+***** Eye-blink-artifact {hedId=HED_0012499} [Artifact from eye blinking. In EEG, Fp1/Fp2 electrodes become electro-positive with eye closure because the cornea is positively charged causing a negative deflection in Fp1/Fp2. If the eye blink is unilateral, consider prosthetic eye.]
+***** Eye-movement-artifact {hedId=HED_0012500} [Eye movements can cause artifacts on recordings. The charge of the eye can especially cause artifacts in electrophysiology data.]
+****** Horizontal-eye-movement-artifact {hedId=HED_0012501} [Artifact from moving eyes left-to-right and right-to-left. In EEG, there is an upward deflection in the Fp2-F8 derivation, when the eyes move to the right side. In this case F8 becomes more positive and therefore. When the eyes move to the left, F7 becomes more positive and there is an upward deflection in the Fp1-F7 derivation.]
+****** Nystagmus-artifact {hedId=HED_0012502} [Artifact from nystagmus (a vision condition in which the eyes make repetitive, uncontrolled movements).]
+****** Slow-eye-movement-artifact {hedId=HED_0012503} [Artifacts originating from slow, rolling eye-movements, seen during drowsiness.]
+****** Vertical-eye-movement-artifact {hedId=HED_0012504} [Artifact from moving eyes up and down. In EEG, this causes positive potentials (50-100 micro V) with bi-frontal distribution, maximum at Fp1 and Fp2, when the eyeball rotates upward. The downward rotation of the eyeball is associated with the negative deflection. The time course of the deflections is similar to the time course of the eyeball movement.]
+**** Movement-artifact {hedId=HED_0012505} [Artifact in the measured data generated by motion of the subject.]
+**** Pulse-artifact {hedId=HED_0012506} [A mechanical artifact from a pulsating blood vessel near a measurement site, cardio-ballistic artifact.]
+**** Respiration-artifact {hedId=HED_0012507} [Artifact from breathing.]
+**** Rocking-patting-artifact {hedId=HED_0012508} [Quasi-rhythmical artifacts in recordings most commonly seen in infants. Typically caused by a caregiver rocking or patting the infant.]
+**** Sucking-artifact {hedId=HED_0012509} [Artifact from sucking, typically seen in very young cases.]
+**** Sweat-artifact {hedId=HED_0012510} [Artifact from sweating. In EEG, this is a low amplitude undulating waveform that is usually greater than 2 seconds and may appear to be an unstable baseline.]
+**** Tongue-movement-artifact {hedId=HED_0012511} [Artifact from tongue movement (Glossokinetic). The tongue functions as a dipole, with the tip negative with respect to the base. In EEG, the artifact produced by the tongue has a broad potential field that drops from frontal to occipital areas, although it is less steep than that produced by eye movement artifacts. The amplitude of the potentials is greater inferiorly than in parasagittal regions; the frequency is variable but usually in the delta range. Chewing and sucking can produce similar artifacts.]
+*** Nonbiological-artifact {hedId=HED_0012512} [A data artifact arising from a non-biological source.]
+**** Artificial-ventilation-artifact {hedId=HED_0012513} [Artifact stemming from mechanical ventilation. These can occur at the same rate as the ventilator, but also have other patterns.]
+**** Dialysis-artifact {hedId=HED_0012514} [Artifacts seen in recordings during continuous renal replacement therapy (dialysis).]
+**** Electrode-movement-artifact {hedId=HED_0012515} [Artifact from electrode movement.]
+**** Electrode-pops-artifact {hedId=HED_0012516} [Brief artifact with a steep rise and slow fall of an electrophysiological signal, most often caused by a loose electrode.]
+**** Induction-artifact {hedId=HED_0012517} [Artifacts induced by nearby equipment. In EEG, these are usually of high frequency.]
+**** Line-noise-artifact {hedId=HED_0012518} [Power line noise at 50 Hz or 60 Hz.]
+***** # {takesValue, valueClass=numericClass, unitClass=frequencyUnits, hedId=HED_0012519}
+**** Salt-bridge-artifact {hedId=HED_0012520} [Artifact from salt-bridge between EEG electrodes.]
+** Data-marker {hedId=HED_0012521} [An indicator placed to mark something.]
+*** Data-break-marker {hedId=HED_0012522} [An indicator place to indicate a gap in the data.]
+*** Temporal-marker {hedId=HED_0012523} [An indicator placed at a particular time in the data.]
+**** Inset {topLevelTagGroup, reserved, relatedTag=Onset, relatedTag=Offset, hedId=HED_0012524} [Marks an intermediate point in an ongoing event of temporal extent.]
+**** Offset {topLevelTagGroup, reserved, relatedTag=Onset, relatedTag=Inset, hedId=HED_0012525} [Marks the end of an event of temporal extent.]
+**** Onset {topLevelTagGroup, reserved, relatedTag=Inset, relatedTag=Offset, hedId=HED_0012526} [Marks the start of an ongoing event of temporal extent.]
+**** Pause {hedId=HED_0012527} [Indicates the temporary interruption of the operation of a process and subsequently a wait for a signal to continue.]
+**** Time-out {hedId=HED_0012528} [A cancellation or cessation that automatically occurs when a predefined interval of time has passed without a certain event occurring.]
+**** Time-sync {hedId=HED_0012529} [A synchronization signal whose purpose is to help synchronize different signals or processes. Often used to indicate a marker inserted into the recorded data to allow post hoc synchronization of concurrently recorded data streams.]
+** Data-resolution {hedId=HED_0012530} [Smallest change in a quality being measured by an sensor that causes a perceptible change.]
+*** Printer-resolution {hedId=HED_0012531} [Resolution of a printer, usually expressed as the number of dots-per-inch for a printer.]
+**** # {takesValue, valueClass=numericClass, hedId=HED_0012532}
+*** Screen-resolution {hedId=HED_0012533} [Resolution of a screen, usually expressed as the of pixels in a dimension for a digital display device.]
+**** # {takesValue, valueClass=numericClass, hedId=HED_0012534}
+*** Sensory-resolution {hedId=HED_0012535} [Resolution of measurements by a sensing device.]
+**** # {takesValue, valueClass=numericClass, hedId=HED_0012536}
+*** Spatial-resolution {hedId=HED_0012537} [Linear spacing of a spatial measurement.]
+**** # {takesValue, valueClass=numericClass, hedId=HED_0012538}
+*** Spectral-resolution {hedId=HED_0012539} [Measures the ability of a sensor to resolve features in the electromagnetic spectrum.]
+**** # {takesValue, valueClass=numericClass, hedId=HED_0012540}
+*** Temporal-resolution {hedId=HED_0012541} [Measures the ability of a sensor to resolve features in time.]
+**** # {takesValue, valueClass=numericClass, hedId=HED_0012542}
+** Data-source-type {hedId=HED_0012543} [The type of place, person, or thing from which the data comes or can be obtained.]
+*** Computed-feature {hedId=HED_0012544} [A feature computed from the data by a tool. This tag should be grouped with a label of the form Toolname_propertyName.]
+*** Computed-prediction {hedId=HED_0012545} [A computed extrapolation of known data.]
+*** Expert-annotation {hedId=HED_0012546} [An explanatory or critical comment or other in-context information provided by an authority.]
+*** Instrument-measurement {hedId=HED_0012547} [Information obtained from a device that is used to measure material properties or make other observations.]
+*** Observation {hedId=HED_0012548} [Active acquisition of information from a primary source. Should be grouped with a label of the form AgentID_featureName.]
+** Data-value {hedId=HED_0012549} [Designation of the type of a data item.]
+*** Categorical-value {hedId=HED_0012550} [Indicates that something can take on a limited and usually fixed number of possible values.]
+**** Categorical-class-value {hedId=HED_0012551} [Categorical values that fall into discrete classes such as true or false. The grouping is absolute in the sense that it is the same for all participants.]
+***** All {relatedTag=Some, relatedTag=None, hedId=HED_0012552} [To a complete degree or to the full or entire extent.]
+***** Correct {relatedTag=Wrong, hedId=HED_0012553} [Free from error. Especially conforming to fact or truth.]
+***** Explicit {relatedTag=Implicit, hedId=HED_0012554} [Stated clearly and in detail, leaving no room for confusion or doubt.]
+***** False {relatedTag=True, hedId=HED_0012555} [Not in accordance with facts, reality or definitive criteria.]
+***** Implicit {relatedTag=Explicit, hedId=HED_0012556} [Implied though not plainly expressed.]
+***** Invalid {relatedTag=Valid, hedId=HED_0012557} [Not allowed or not conforming to the correct format or specifications.]
+***** None {relatedTag=All, relatedTag=Some, hedId=HED_0012558} [No person or thing, nobody, not any.]
+***** Some {relatedTag=All, relatedTag=None, hedId=HED_0012559} [At least a small amount or number of, but not a large amount of, or often.]
+***** True {relatedTag=False, hedId=HED_0012560} [Conforming to facts, reality or definitive criteria.]
+***** Unknown {relatedTag=Invalid, hedId=HED_0012561} [The information has not been provided.]
+***** Valid {relatedTag=Invalid, hedId=HED_0012562} [Allowable, usable, or acceptable.]
+***** Wrong {relatedTag=Correct, hedId=HED_0012563} [Inaccurate or not correct.]
+**** Categorical-judgment-value {hedId=HED_0012564} [Categorical values that are based on the judgment or perception of the participant such familiar and famous.]
+***** Abnormal {relatedTag=Normal, hedId=HED_0012565} [Deviating in any way from the state, position, structure, condition, behavior, or rule which is considered a norm.]
+***** Asymmetrical {relatedTag=Symmetrical, hedId=HED_0012566} [Lacking symmetry or having parts that fail to correspond to one another in shape, size, or arrangement.]
+***** Audible {relatedTag=Inaudible, hedId=HED_0012567} [A sound that can be perceived by the participant.]
+***** Complex {relatedTag=Simple, hedId=HED_0012568} [Hard, involved or complicated, elaborate, having many parts.]
+***** Congruent {relatedTag=Incongruent, hedId=HED_0012569} [Concordance of multiple evidence lines. In agreement or harmony.]
+***** Constrained {relatedTag=Unconstrained, hedId=HED_0012570} [Keeping something within particular limits or bounds.]
+***** Disordered {relatedTag=Ordered, hedId=HED_0012571} [Not neatly arranged. Confused and untidy. A structural quality in which the parts of an object are non-rigid.]
+***** Familiar {relatedTag=Unfamiliar, relatedTag=Famous, hedId=HED_0012572} [Recognized, familiar, or within the scope of knowledge.]
+***** Famous {relatedTag=Familiar, relatedTag=Unfamiliar, hedId=HED_0012573} [A person who has a high degree of recognition by the general population for his or her success or accomplishments. A famous person.]
+***** Inaudible {relatedTag=Audible, hedId=HED_0012574} [A sound below the threshold of perception of the participant.]
+***** Incongruent {relatedTag=Congruent, hedId=HED_0012575} [Not in agreement or harmony.]
+***** Involuntary {relatedTag=Voluntary, hedId=HED_0012576} [An action that is not made by choice. In the body, involuntary actions (such as blushing) occur automatically, and cannot be controlled by choice.]
+***** Masked {relatedTag=Unmasked, hedId=HED_0012577} [Information exists but is not provided or is partially obscured due to security,privacy, or other concerns.]
+***** Normal {relatedTag=Abnormal, hedId=HED_0012578} [Being approximately average or within certain limits. Conforming with or constituting a norm or standard or level or type or social norm.]
+***** Ordered {relatedTag=Disordered, hedId=HED_0012579} [Conforming to a logical or comprehensible arrangement of separate elements.]
+***** Simple {relatedTag=Complex, hedId=HED_0012580} [Easily understood or presenting no difficulties.]
+***** Symmetrical {relatedTag=Asymmetrical, hedId=HED_0012581} [Made up of exactly similar parts facing each other or around an axis. Showing aspects of symmetry.]
+***** Unconstrained {relatedTag=Constrained, hedId=HED_0012582} [Moving without restriction.]
+***** Unfamiliar {relatedTag=Familiar, relatedTag=Famous, hedId=HED_0012583} [Not having knowledge or experience of.]
+***** Unmasked {relatedTag=Masked, hedId=HED_0012584} [Information is revealed.]
+***** Voluntary {relatedTag=Involuntary, hedId=HED_0012585} [Using free will or design; not forced or compelled; controlled by individual volition.]
+**** Categorical-level-value {hedId=HED_0012586} [Categorical values based on dividing a continuous variable into levels such as high and low.]
+***** Cold {relatedTag=Hot, hedId=HED_0012587} [Having an absence of heat.]
+***** Deep {relatedTag=Shallow, hedId=HED_0012588} [Extending relatively far inward or downward.]
+***** High {relatedTag=Low, relatedTag=Medium, hedId=HED_0012589} [Having a greater than normal degree, intensity, or amount.]
+***** Hot {relatedTag=Cold, hedId=HED_0012590} [Having an excess of heat.]
+***** Large {relatedTag=Small, hedId=HED_0012591} [Having a great extent such as in physical dimensions, period of time, amplitude or frequency.]
+***** Liminal {relatedTag=Subliminal, relatedTag=Supraliminal, hedId=HED_0012592} [Situated at a sensory threshold that is barely perceptible or capable of eliciting a response.]
+***** Loud {relatedTag=Quiet, hedId=HED_0012593} [Having a perceived high intensity of sound.]
+***** Low {relatedTag=High, hedId=HED_0012594} [Less than normal in degree, intensity or amount.]
+***** Medium {relatedTag=Low, relatedTag=High, hedId=HED_0012595} [Mid-way between small and large in number, quantity, magnitude or extent.]
+***** Negative {relatedTag=Positive, hedId=HED_0012596} [Involving disadvantage or harm.]
+***** Positive {relatedTag=Negative, hedId=HED_0012597} [Involving advantage or good.]
+***** Quiet {relatedTag=Loud, hedId=HED_0012598} [Characterizing a perceived low intensity of sound.]
+***** Rough {relatedTag=Smooth, hedId=HED_0012599} [Having a surface with perceptible bumps, ridges, or irregularities.]
+***** Shallow {relatedTag=Deep, hedId=HED_0012600} [Having a depth which is relatively low.]
+***** Small {relatedTag=Large, hedId=HED_0012601} [Having a small extent such as in physical dimensions, period of time, amplitude or frequency.]
+***** Smooth {relatedTag=Rough, hedId=HED_0012602} [Having a surface free from bumps, ridges, or irregularities.]
+***** Subliminal {relatedTag=Liminal, relatedTag=Supraliminal, hedId=HED_0012603} [Situated below a sensory threshold that is imperceptible or not capable of eliciting a response.]
+***** Supraliminal {relatedTag=Liminal, relatedTag=Subliminal, hedId=HED_0012604} [Situated above a sensory threshold that is perceptible or capable of eliciting a response.]
+***** Thick {relatedTag=Thin, hedId=HED_0012605} [Wide in width, extent or cross-section.]
+***** Thin {relatedTag=Thick, hedId=HED_0012606} [Narrow in width, extent or cross-section.]
+**** Categorical-location-value {hedId=HED_0012607} [Value indicating the location of something, primarily as an identifier rather than an expression of where the item is relative to something else.]
+***** Anterior {hedId=HED_0012608} [Relating to an item on the front of an agent body (from the point of view of the agent) or on the front of an object from the point of view of an agent. This pertains to the identity of an agent or a thing.]
+***** Lateral {hedId=HED_0012609} [Identifying the portion of an object away from the midline, particularly applied to the (anterior-posterior, superior-inferior) surface of a brain.]
+***** Left {hedId=HED_0012610} [Relating to an item on the left side of an agent body (from the point of view of the agent) or the left side of an object from the point of view of an agent. This pertains to the identity of an agent or a thing, for example (Left, Hand) as an identifier for the left hand. HED spatial relations should be used for relative positions such as (Hand, (Left-side-of, Keyboard)), which denotes the hand placed on the left side of the keyboard, which could be either the identified left hand or right hand.]
+***** Medial {hedId=HED_0012611} [Identifying the portion of an object towards the center, particularly applied to the (anterior-posterior, superior-inferior) surface of a brain.]
+***** Posterior {hedId=HED_0012612} [Relating to an item on the back of an agent body (from the point of view of the agent) or on the back of an object from the point of view of an agent. This pertains to the identity of an agent or a thing.]
+***** Right {hedId=HED_0012613} [Relating to an item on the right side of an agent body (from the point of view of the agent) or the right side of an object from the point of view of an agent. This pertains to the identity of an agent or a thing, for example (Right, Hand) as an identifier for the right hand. HED spatial relations should be used for relative positions such as (Hand, (Right-side-of, Keyboard)), which denotes the hand placed on the right side of the keyboard, which could be either the identified left hand or right hand.]
+**** Categorical-orientation-value {hedId=HED_0012614} [Value indicating the orientation or direction of something.]
+***** Backward {relatedTag=Forward, hedId=HED_0012615} [Directed behind or to the rear.]
+***** Downward {relatedTag=Leftward, relatedTag=Rightward, relatedTag=Upward, hedId=HED_0012616} [Moving or leading toward a lower place or level.]
+***** Forward {relatedTag=Backward, hedId=HED_0012617} [At or near or directed toward the front.]
+***** Horizontally-oriented {relatedTag=Vertically-oriented, hedId=HED_0012618} [Oriented parallel to or in the plane of the horizon.]
+***** Leftward {relatedTag=Downward, relatedTag=Rightward, relatedTag=Upward, hedId=HED_0012619} [Going toward or facing the left.]
+***** Oblique {relatedTag=Rotated, hedId=HED_0012620} [Slanting or inclined in direction, course, or position that is neither parallel nor perpendicular nor right-angular.]
+***** Rightward {relatedTag=Downward, relatedTag=Leftward, relatedTag=Upward, hedId=HED_0012621} [Going toward or situated on the right.]
+***** Rotated {hedId=HED_0012622} [Positioned offset around an axis or center.]
+***** Upward {relatedTag=Downward, relatedTag=Leftward, relatedTag=Rightward, hedId=HED_0012623} [Moving, pointing, or leading to a higher place, point, or level.]
+***** Vertically-oriented {relatedTag=Horizontally-oriented, hedId=HED_0012624} [Oriented perpendicular to the plane of the horizon.]
+*** Physical-value {hedId=HED_0012625} [The value of some physical property of something.]
+**** Temperature {hedId=HED_0012626} [A measure of hot or cold based on the average kinetic energy of the atoms or molecules in the system.]
+***** # {takesValue, valueClass=numericClass, unitClass=temperatureUnits, hedId=HED_0012627}
+**** Weight {hedId=HED_0012628} [The relative mass or the quantity of matter contained by something.]
+***** # {takesValue, valueClass=numericClass, unitClass=weightUnits, hedId=HED_0012629}
+*** Quantitative-value {hedId=HED_0012630} [Something capable of being estimated or expressed with numeric values.]
+**** Fraction {hedId=HED_0012631} [A numerical value between 0 and 1.]
+***** # {takesValue, valueClass=numericClass, hedId=HED_0012632}
+**** Item-count {hedId=HED_0012633} [The integer count of something which is usually grouped with the entity it is counting. (Item-count/3, A) indicates that 3 of A have occurred up to this point.]
+***** # {takesValue, valueClass=numericClass, hedId=HED_0012634}
+**** Item-index {hedId=HED_0012635} [The index of an item in a collection, sequence or other structure. (A (Item-index/3, B)) means that A is item number 3 in B.]
+***** # {takesValue, valueClass=numericClass, hedId=HED_0012636}
+**** Item-interval {hedId=HED_0012637} [An integer indicating how many items or entities have passed since the last one of these. An item interval of 0 indicates the current item.]
+***** # {takesValue, valueClass=numericClass, hedId=HED_0012638}
+**** Percentage {hedId=HED_0012639} [A fraction or ratio with 100 understood as the denominator.]
+***** # {takesValue, valueClass=numericClass, hedId=HED_0012640}
+**** Ratio {hedId=HED_0012641} [A quotient of quantities of the same kind for different components within the same system.]
+***** # {takesValue, valueClass=numericClass, hedId=HED_0012642}
+*** Spatiotemporal-value {hedId=HED_0012643} [A property relating to space and/or time.]
+**** Rate-of-change {hedId=HED_0012644} [The amount of change accumulated per unit time.]
+***** Acceleration {hedId=HED_0012645} [Magnitude of the rate of change in either speed or direction. The direction of change should be given separately.]
+****** # {takesValue, valueClass=numericClass, unitClass=accelerationUnits, hedId=HED_0012646}
+***** Frequency {hedId=HED_0012647} [Frequency is the number of occurrences of a repeating event per unit time.]
+****** # {takesValue, valueClass=numericClass, unitClass=frequencyUnits, hedId=HED_0012648}
+***** Jerk-rate {hedId=HED_0012649} [Magnitude of the rate at which the acceleration of an object changes with respect to time. The direction of change should be given separately.]
+****** # {takesValue, valueClass=numericClass, unitClass=jerkUnits, hedId=HED_0012650}
+***** Refresh-rate {hedId=HED_0012651} [The frequency with which the image on a computer monitor or similar electronic display screen is refreshed, usually expressed in hertz.]
+****** # {takesValue, valueClass=numericClass, hedId=HED_0012652}
+***** Sampling-rate {hedId=HED_0012653} [The number of digital samples taken or recorded per unit of time.]
+****** # {takesValue, valueClass=numericClass, unitClass=frequencyUnits, hedId=HED_0012654}
+***** Speed {hedId=HED_0012655} [A scalar measure of the rate of movement of the object expressed either as the distance traveled divided by the time taken (average speed) or the rate of change of position with respect to time at a particular point (instantaneous speed). The direction of change should be given separately.]
+****** # {takesValue, valueClass=numericClass, unitClass=speedUnits, hedId=HED_0012656}
+***** Temporal-rate {hedId=HED_0012657} [The number of items per unit of time.]
+****** # {takesValue, valueClass=numericClass, unitClass=frequencyUnits, hedId=HED_0012658}
+**** Spatial-value {hedId=HED_0012659} [Value of an item involving space.]
+***** Angle {hedId=HED_0012660} [The amount of inclination of one line to another or the plane of one object to another.]
+****** # {takesValue, unitClass=angleUnits, valueClass=numericClass, hedId=HED_0012661}
+***** Distance {hedId=HED_0012662} [A measure of the space separating two objects or points.]
+****** # {takesValue, valueClass=numericClass, unitClass=physicalLengthUnits, hedId=HED_0012663}
+***** Position {hedId=HED_0012664} [A reference to the alignment of an object, a particular situation or view of a situation, or the location of an object. Coordinates with respect a specified frame of reference or the default Screen-frame if no frame is given.]
+****** Clock-face {deprecatedFrom=8.2.0, hedId=HED_0012326} [A location identifier based on clock-face numbering or anatomic subregion. Use Clock-face-position.]
+******* # {deprecatedFrom=8.2.0, takesValue, valueClass=numericClass, hedId=HED_0013228}
+****** Clock-face-position {hedId=HED_0013229} [A location identifier based on clock-face numbering or anatomic subregion. As an object, just use the tag Clock.]
+******* # {takesValue, valueClass=numericClass, hedId=HED_0013230}
+****** X-position {hedId=HED_0012665} [The position along the x-axis of the frame of reference.]
+******* # {takesValue, valueClass=numericClass, unitClass=physicalLengthUnits, hedId=HED_0012666}
+****** Y-position {hedId=HED_0012667} [The position along the y-axis of the frame of reference.]
+******* # {takesValue, valueClass=numericClass, unitClass=physicalLengthUnits, hedId=HED_0012668}
+****** Z-position {hedId=HED_0012669} [The position along the z-axis of the frame of reference.]
+******* # {takesValue, valueClass=numericClass, unitClass=physicalLengthUnits, hedId=HED_0012670}
+***** Size {hedId=HED_0012671} [The physical magnitude of something.]
+****** Area {hedId=HED_0012672} [The extent of a 2-dimensional surface enclosed within a boundary.]
+******* # {takesValue, valueClass=numericClass, unitClass=areaUnits, hedId=HED_0012673}
+****** Depth {hedId=HED_0012674} [The distance from the surface of something especially from the perspective of looking from the front.]
+******* # {takesValue, valueClass=numericClass, unitClass=physicalLengthUnits, hedId=HED_0012675}
+****** Height {hedId=HED_0012676} [The vertical measurement or distance from the base to the top of an object.]
+******* # {takesValue, valueClass=numericClass, unitClass=physicalLengthUnits, hedId=HED_0012677}
+****** Length {hedId=HED_0012678} [The linear extent in space from one end of something to the other end, or the extent of something from beginning to end.]
+******* # {takesValue, valueClass=numericClass, unitClass=physicalLengthUnits, hedId=HED_0012679}
+****** Perimeter {hedId=HED_0012680} [The minimum length of paths enclosing a 2D shape.]
+******* # {takesValue, valueClass=numericClass, unitClass=physicalLengthUnits, hedId=HED_0012681}
+****** Radius {hedId=HED_0012682} [The distance of the line from the center of a circle or a sphere to its perimeter or outer surface, respectively.]
+******* # {takesValue, valueClass=numericClass, unitClass=physicalLengthUnits, hedId=HED_0012683}
+****** Volume {hedId=HED_0012684} [The amount of three dimensional space occupied by an object or the capacity of a space or container.]
+******* # {takesValue, valueClass=numericClass, unitClass=volumeUnits, hedId=HED_0012685}
+****** Width {hedId=HED_0012686} [The extent or measurement of something from side to side.]
+******* # {takesValue, valueClass=numericClass, unitClass=physicalLengthUnits, hedId=HED_0012687}
+**** Temporal-value {hedId=HED_0012688} [A characteristic of or relating to time or limited by time.]
+***** Delay {topLevelTagGroup, reserved, requireChild, relatedTag=Duration, hedId=HED_0012689} [The time at which an event start time is delayed from the current onset time. This tag defines the start time of an event of temporal extent and may be used with the Duration tag.]
+****** # {takesValue, valueClass=numericClass, unitClass=timeUnits, hedId=HED_0012690}
+***** Duration {topLevelTagGroup, reserved, requireChild, relatedTag=Delay, hedId=HED_0012691} [The period of time during which an event occurs. This tag defines the end time of an event of temporal extent and may be used with the Delay tag.]
+****** # {takesValue, valueClass=numericClass, unitClass=timeUnits, hedId=HED_0012692}
+***** Time-interval {hedId=HED_0012693} [The period of time separating two instances, events, or occurrences.]
+****** # {takesValue, valueClass=numericClass, unitClass=timeUnits, hedId=HED_0012694}
+***** Time-value {hedId=HED_0012695} [A value with units of time. Usually grouped with tags identifying what the value represents.]
+****** # {takesValue, valueClass=numericClass, unitClass=timeUnits, hedId=HED_0012696}
+*** Statistical-value {extensionAllowed, hedId=HED_0012697} [A value based on or employing the principles of statistics.]
+**** Data-maximum {hedId=HED_0012698} [The largest possible quantity or degree.]
+***** # {takesValue, valueClass=numericClass, hedId=HED_0012699}
+**** Data-mean {hedId=HED_0012700} [The sum of a set of values divided by the number of values in the set.]
+***** # {takesValue, valueClass=numericClass, hedId=HED_0012701}
+**** Data-median {hedId=HED_0012702} [The value which has an equal number of values greater and less than it.]
+***** # {takesValue, valueClass=numericClass, hedId=HED_0012703}
+**** Data-minimum {hedId=HED_0012704} [The smallest possible quantity.]
+***** # {takesValue, valueClass=numericClass, hedId=HED_0012705}
+**** Probability {hedId=HED_0012706} [A measure of the expectation of the occurrence of a particular event.]
+***** # {takesValue, valueClass=numericClass, hedId=HED_0012707}
+**** Standard-deviation {hedId=HED_0012708} [A measure of the range of values in a set of numbers. Standard deviation is a statistic used as a measure of the dispersion or variation in a distribution, equal to the square root of the arithmetic mean of the squares of the deviations from the arithmetic mean.]
+***** # {takesValue, valueClass=numericClass, hedId=HED_0012709}
+**** Statistical-accuracy {hedId=HED_0012710} [A measure of closeness to true value expressed as a number between 0 and 1.]
+***** # {takesValue, valueClass=numericClass, hedId=HED_0012711}
+**** Statistical-precision {hedId=HED_0012712} [A quantitative representation of the degree of accuracy necessary for or associated with a particular action.]
+***** # {takesValue, valueClass=numericClass, hedId=HED_0012713}
+**** Statistical-recall {hedId=HED_0012714} [Sensitivity is a measurement datum qualifying a binary classification test and is computed by subtracting the false negative rate to the integral numeral 1.]
+***** # {takesValue, valueClass=numericClass, hedId=HED_0012715}
+**** Statistical-uncertainty {hedId=HED_0012716} [A measure of the inherent variability of repeated observation measurements of a quantity including quantities evaluated by statistical methods and by other means.]
+***** # {takesValue, valueClass=numericClass, hedId=HED_0012717}
+** Data-variability-attribute {hedId=HED_0012718} [An attribute describing how something changes or varies.]
+*** Abrupt {hedId=HED_0012719} [Marked by sudden change.]
+*** Constant {hedId=HED_0012720} [Continually recurring or continuing without interruption. Not changing in time or space.]
+*** Continuous {relatedTag=Discrete, relatedTag=Discontinuous, hedId=HED_0012721} [Uninterrupted in time, sequence, substance, or extent.]
+*** Decreasing {relatedTag=Increasing, hedId=HED_0012722} [Becoming smaller or fewer in size, amount, intensity, or degree.]
+*** Deterministic {relatedTag=Random, relatedTag=Stochastic, hedId=HED_0012723} [No randomness is involved in the development of the future states of the element.]
+*** Discontinuous {relatedTag=Continuous, hedId=HED_0012724} [Having a gap in time, sequence, substance, or extent.]
+*** Discrete {relatedTag=Continuous, relatedTag=Discontinuous, hedId=HED_0012725} [Constituting a separate entities or parts.]
+*** Estimated-value {hedId=HED_0012726} [Something that has been calculated or measured approximately.]
+*** Exact-value {hedId=HED_0012727} [A value that is viewed to the true value according to some standard.]
+*** Flickering {hedId=HED_0012728} [Moving irregularly or unsteadily or burning or shining fitfully or with a fluctuating light.]
+*** Fractal {hedId=HED_0012729} [Having extremely irregular curves or shapes for which any suitably chosen part is similar in shape to a given larger or smaller part when magnified or reduced to the same size.]
+*** Increasing {relatedTag=Decreasing, hedId=HED_0012730} [Becoming greater in size, amount, or degree.]
+*** Random {relatedTag=Deterministic, relatedTag=Stochastic, hedId=HED_0012731} [Governed by or depending on chance. Lacking any definite plan or order or purpose.]
+*** Repetitive {hedId=HED_0012732} [A recurring action that is often non-purposeful.]
+*** Stochastic {relatedTag=Deterministic, relatedTag=Random, hedId=HED_0012733} [Uses a random probability distribution or pattern that may be analyzed statistically but may not be predicted precisely to determine future states.]
+*** Varying {hedId=HED_0012734} [Differing in size, amount, degree, or nature.]
+* Environmental-property {hedId=HED_0012735} [Relating to or arising from the surroundings of an agent.]
+** Augmented-reality {hedId=HED_0012736} [Using technology that enhances real-world experiences with computer-derived digital overlays to change some aspects of perception of the natural environment. The digital content is shown to the user through a smart device or glasses and responds to changes in the environment.]
+** Indoors {hedId=HED_0012737} [Located inside a building or enclosure.]
+** Motion-platform {hedId=HED_0012738} [A mechanism that creates the feelings of being in a real motion environment.]
+** Outdoors {hedId=HED_0012739} [Any area outside a building or shelter.]
+** Real-world {hedId=HED_0012740} [Located in a place that exists in real space and time under realistic conditions.]
+** Rural {hedId=HED_0012741} [Of or pertaining to the country as opposed to the city.]
+** Terrain {hedId=HED_0012742} [Characterization of the physical features of a tract of land.]
+*** Composite-terrain {hedId=HED_0012743} [Tracts of land characterized by a mixture of physical features.]
+*** Dirt-terrain {hedId=HED_0012744} [Tracts of land characterized by a soil surface and lack of vegetation.]
+*** Grassy-terrain {hedId=HED_0012745} [Tracts of land covered by grass.]
+*** Gravel-terrain {hedId=HED_0012746} [Tracts of land covered by a surface consisting a loose aggregation of small water-worn or pounded stones.]
+*** Leaf-covered-terrain {hedId=HED_0012747} [Tracts of land covered by leaves and composited organic material.]
+*** Muddy-terrain {hedId=HED_0012748} [Tracts of land covered by a liquid or semi-liquid mixture of water and some combination of soil, silt, and clay.]
+*** Paved-terrain {hedId=HED_0012749} [Tracts of land covered with concrete, asphalt, stones, or bricks.]
+*** Rocky-terrain {hedId=HED_0012750} [Tracts of land consisting or full of rock or rocks.]
+*** Sloped-terrain {hedId=HED_0012751} [Tracts of land arranged in a sloping or inclined position.]
+*** Uneven-terrain {hedId=HED_0012752} [Tracts of land that are not level, smooth, or regular.]
+** Urban {hedId=HED_0012753} [Relating to, located in, or characteristic of a city or densely populated area.]
+** Virtual-world {hedId=HED_0012754} [Using technology that creates immersive, computer-generated experiences that a person can interact with and navigate through. The digital content is generally delivered to the user through some type of headset and responds to changes in head position or through interaction with other types of sensors. Existing in a virtual setting such as a simulation or game environment.]
+* Informational-property {extensionAllowed, hedId=HED_0012755} [Something that pertains to a task.]
+** Description {hedId=HED_0012756} [An explanation of what the tag group it is in means. If the description is at the top-level of an event string, the description applies to the event.]
+*** # {takesValue, valueClass=textClass, hedId=HED_0012757}
+** ID {hedId=HED_0012758} [An alphanumeric name that identifies either a unique object or a unique class of objects. Here the object or class may be an idea, physical countable object (or class), or physical uncountable substance (or class).]
+*** # {takesValue, valueClass=textClass, hedId=HED_0012759}
+** Label {hedId=HED_0012760} [A string of 20 or fewer characters identifying something. Labels usually refer to general classes of things while IDs refer to specific instances. A term that is associated with some entity. A brief description given for purposes of identification. An identifying or descriptive marker that is attached to an object.]
+*** # {takesValue, valueClass=nameClass, hedId=HED_0012761}
+** Metadata {hedId=HED_0012762} [Data about data. Information that describes another set of data.]
+*** Creation-date {hedId=HED_0012763} [The date on which the creation of this item began.]
+**** # {takesValue, valueClass=dateTimeClass, hedId=HED_0012764}
+*** Experimental-note {hedId=HED_0012765} [A brief written record about the experiment.]
+**** # {takesValue, valueClass=textClass, hedId=HED_0012766}
+*** Library-name {hedId=HED_0012767} [Official name of a HED library.]
+**** # {takesValue, valueClass=nameClass, hedId=HED_0012768}
+*** Metadata-identifier {hedId=HED_0012769} [Identifier (usually unique) from another metadata source.]
+**** CogAtlas {hedId=HED_0012770} [The Cognitive Atlas ID number of something.]
+***** # {takesValue, hedId=HED_0012771}
+**** CogPo {hedId=HED_0012772} [The CogPO ID number of something.]
+***** # {takesValue, hedId=HED_0012773}
+**** DOI {hedId=HED_0012774} [Digital object identifier for an object.]
+***** # {takesValue, hedId=HED_0012775}
+**** OBO-identifier {hedId=HED_0012776} [The identifier of a term in some Open Biology Ontology (OBO) ontology.]
+***** # {takesValue, valueClass=nameClass, hedId=HED_0012777}
+**** Species-identifier {hedId=HED_0012778} [A binomial species name from the NCBI Taxonomy, for example, homo sapiens, mus musculus, or rattus norvegicus.]
+***** # {takesValue, hedId=HED_0012779}
+**** Subject-identifier {hedId=HED_0012780} [A sequence of characters used to identify, name, or characterize a trial or study subject.]
+***** # {takesValue, hedId=HED_0012781}
+**** UUID {hedId=HED_0012782} [A unique universal identifier.]
+***** # {takesValue, hedId=HED_0012783}
+**** Version-identifier {hedId=HED_0012784} [An alphanumeric character string that identifies a form or variant of a type or original.]
+***** # {takesValue, hedId=HED_0012785} [Usually is a semantic version.]
+*** Modified-date {hedId=HED_0012786} [The date on which the item was modified (usually the last-modified data unless a complete record of dated modifications is kept.]
+**** # {takesValue, valueClass=dateTimeClass, hedId=HED_0012787}
+*** Pathname {hedId=HED_0012788} [The specification of a node (file or directory) in a hierarchical file system, usually specified by listing the nodes top-down.]
+**** # {takesValue, hedId=HED_0012789}
+*** URL {hedId=HED_0012790} [A valid URL.]
+**** # {takesValue, hedId=HED_0012791}
+** Parameter {hedId=HED_0012792} [Something user-defined for this experiment.]
+*** Parameter-label {hedId=HED_0012793} [The name of the parameter.]
+**** # {takesValue, valueClass=nameClass, hedId=HED_0012794}
+*** Parameter-value {hedId=HED_0012795} [The value of the parameter.]
+**** # {takesValue, valueClass=textClass, hedId=HED_0012796}
+* Organizational-property {hedId=HED_0012797} [Relating to an organization or the action of organizing something.]
+** Collection {reserved, hedId=HED_0012798} [A tag designating a grouping of items such as in a set or list.]
+*** # {takesValue, valueClass=nameClass, hedId=HED_0012799} [Name of the collection.]
+** Condition-variable {reserved, hedId=HED_0012800} [An aspect of the experiment or task that is to be varied during the experiment. Task-conditions are sometimes called independent variables or contrasts.]
+*** # {takesValue, valueClass=nameClass, hedId=HED_0012801} [Name of the condition variable.]
+** Control-variable {reserved, hedId=HED_0012802} [An aspect of the experiment that is fixed throughout the study and usually is explicitly controlled.]
+*** # {takesValue, valueClass=nameClass, hedId=HED_0012803} [Name of the control variable.]
+** Def {requireChild, reserved, hedId=HED_0012804} [A HED-specific utility tag used with a defined name to represent the tags associated with that definition.]
+*** # {takesValue, valueClass=nameClass, hedId=HED_0012805} [Name of the definition.]
+** Def-expand {requireChild, reserved, tagGroup, hedId=HED_0012806} [A HED specific utility tag that is grouped with an expanded definition. The child value of the Def-expand is the name of the expanded definition.]
+*** # {takesValue, valueClass=nameClass, hedId=HED_0012807}
+** Definition {requireChild, reserved, topLevelTagGroup, hedId=HED_0012808} [A HED-specific utility tag whose child value is the name of the concept and the tag group associated with the tag is an English language explanation of a concept.]
+*** # {takesValue, valueClass=nameClass, hedId=HED_0012809} [Name of the definition.]
+** Event-context {reserved, topLevelTagGroup, unique, hedId=HED_0012810} [A special HED tag inserted as part of a top-level tag group to contain information about the interrelated conditions under which the event occurs. The event context includes information about other events that are ongoing when this event happens.]
+** Event-stream {reserved, hedId=HED_0012811} [A special HED tag indicating that this event is a member of an ordered succession of events.]
+*** # {takesValue, valueClass=nameClass, hedId=HED_0012812} [Name of the event stream.]
+** Experimental-intertrial {reserved, hedId=HED_0012813} [A tag used to indicate a part of the experiment between trials usually where nothing is happening.]
+*** # {takesValue, valueClass=nameClass, hedId=HED_0012814} [Optional label for the intertrial block.]
+** Experimental-trial {reserved, hedId=HED_0012815} [Designates a run or execution of an activity, for example, one execution of a script. A tag used to indicate a particular organizational part in the experimental design often containing a stimulus-response pair or stimulus-response-feedback triad.]
+*** # {takesValue, valueClass=nameClass, hedId=HED_0012816} [Optional label for the trial (often a numerical string).]
+** Indicator-variable {reserved, hedId=HED_0012817} [An aspect of the experiment or task that is measured as task conditions are varied during the experiment. Experiment indicators are sometimes called dependent variables.]
+*** # {takesValue, valueClass=nameClass, hedId=HED_0012818} [Name of the indicator variable.]
+** Recording {reserved, hedId=HED_0012819} [A tag designating the data recording. Recording tags are usually have temporal scope which is the entire recording.]
+*** # {takesValue, valueClass=nameClass, hedId=HED_0012820} [Optional label for the recording.]
+** Task {reserved, hedId=HED_0012821} [An assigned piece of work, usually with a time allotment. A tag used to indicate a linkage the structured activities performed as part of the experiment.]
+*** # {takesValue, valueClass=nameClass, hedId=HED_0012822} [Optional label for the task block.]
+** Time-block {reserved, hedId=HED_0012823} [A tag used to indicate a contiguous time block in the experiment during which something is fixed or noted.]
+*** # {takesValue, valueClass=nameClass, hedId=HED_0012824} [Optional label for the task block.]
+* Sensory-property {hedId=HED_0012825} [Relating to sensation or the physical senses.]
+** Sensory-attribute {hedId=HED_0012826} [A sensory characteristic associated with another entity.]
+*** Auditory-attribute {hedId=HED_0012827} [Pertaining to the sense of hearing.]
+**** Loudness {hedId=HED_0012828} [Perceived intensity of a sound.]
+***** # {takesValue, valueClass=numericClass, valueClass=nameClass, hedId=HED_0012829}
+**** Pitch {hedId=HED_0012830} [A perceptual property that allows the user to order sounds on a frequency scale.]
+***** # {takesValue, valueClass=numericClass, unitClass=frequencyUnits, hedId=HED_0012831}
+**** Sound-envelope {hedId=HED_0012832} [Description of how a sound changes over time.]
+***** Sound-envelope-attack {hedId=HED_0012833} [The time taken for initial run-up of level from nil to peak usually beginning when the key on a musical instrument is pressed.]
+****** # {takesValue, valueClass=numericClass, unitClass=timeUnits, hedId=HED_0012834}
+***** Sound-envelope-decay {hedId=HED_0012835} [The time taken for the subsequent run down from the attack level to the designated sustain level.]
+****** # {takesValue, valueClass=numericClass, unitClass=timeUnits, hedId=HED_0012836}
+***** Sound-envelope-release {hedId=HED_0012837} [The time taken for the level to decay from the sustain level to zero after the key is released.]
+****** # {takesValue, valueClass=numericClass, unitClass=timeUnits, hedId=HED_0012838}
+***** Sound-envelope-sustain {hedId=HED_0012839} [The time taken for the main sequence of the sound duration, until the key is released.]
+****** # {takesValue, valueClass=numericClass, unitClass=timeUnits, hedId=HED_0012840}
+**** Sound-volume {hedId=HED_0012841} [The sound pressure level (SPL) usually the ratio to a reference signal estimated as the lower bound of hearing.]
+***** # {takesValue, valueClass=numericClass, unitClass=intensityUnits, hedId=HED_0012842}
+**** Timbre {hedId=HED_0012843} [The perceived sound quality of a singing voice or musical instrument.]
+***** # {takesValue, valueClass=nameClass, hedId=HED_0012844}
+*** Gustatory-attribute {hedId=HED_0012845} [Pertaining to the sense of taste.]
+**** Bitter {hedId=HED_0012846} [Having a sharp, pungent taste.]
+**** Salty {hedId=HED_0012847} [Tasting of or like salt.]
+**** Savory {hedId=HED_0012848} [Belonging to a taste that is salty or spicy rather than sweet.]
+**** Sour {hedId=HED_0012849} [Having a sharp, acidic taste.]
+**** Sweet {hedId=HED_0012850} [Having or resembling the taste of sugar.]
+*** Olfactory-attribute {hedId=HED_0012851} [Having a smell.]
+*** Somatic-attribute {hedId=HED_0012852} [Pertaining to the feelings in the body or of the nervous system.]
+**** Pain {hedId=HED_0012853} [The sensation of discomfort, distress, or agony, resulting from the stimulation of specialized nerve endings.]
+**** Stress {hedId=HED_0012854} [The negative mental, emotional, and physical reactions that occur when environmental stressors are perceived as exceeding the adaptive capacities of the individual.]
+*** Tactile-attribute {hedId=HED_0012855} [Pertaining to the sense of touch.]
+**** Tactile-pressure {hedId=HED_0012856} [Having a feeling of heaviness.]
+**** Tactile-temperature {hedId=HED_0012857} [Having a feeling of hotness or coldness.]
+**** Tactile-texture {hedId=HED_0012858} [Having a feeling of roughness.]
+**** Tactile-vibration {hedId=HED_0012859} [Having a feeling of mechanical oscillation.]
+*** Vestibular-attribute {hedId=HED_0012860} [Pertaining to the sense of balance or body position.]
+*** Visual-attribute {hedId=HED_0012861} [Pertaining to the sense of sight.]
+**** Color {hedId=HED_0012862} [The appearance of objects (or light sources) described in terms of perception of their hue and lightness (or brightness) and saturation.]
+***** CSS-color {hedId=HED_0012863} [One of 140 colors supported by all browsers. For more details such as the color RGB or HEX values,check:https://www.w3schools.com/colors/colors_groups.asp.]
+****** Blue-color {hedId=HED_0012864} [CSS color group.]
+******* Blue {hedId=HED_0012865} [CSS-color 0x0000FF.]
+******* CadetBlue {hedId=HED_0012866} [CSS-color 0x5F9EA0.]
+******* CornflowerBlue {hedId=HED_0012867} [CSS-color 0x6495ED.]
+******* DarkBlue {hedId=HED_0012868} [CSS-color 0x00008B.]
+******* DeepSkyBlue {hedId=HED_0012869} [CSS-color 0x00BFFF.]
+******* DodgerBlue {hedId=HED_0012870} [CSS-color 0x1E90FF.]
+******* LightBlue {hedId=HED_0012871} [CSS-color 0xADD8E6.]
+******* LightSkyBlue {hedId=HED_0012872} [CSS-color 0x87CEFA.]
+******* LightSteelBlue {hedId=HED_0012873} [CSS-color 0xB0C4DE.]
+******* MediumBlue {hedId=HED_0012874} [CSS-color 0x0000CD.]
+******* MidnightBlue {hedId=HED_0012875} [CSS-color 0x191970.]
+******* Navy {hedId=HED_0012876} [CSS-color 0x000080.]
+******* PowderBlue {hedId=HED_0012877} [CSS-color 0xB0E0E6.]
+******* RoyalBlue {hedId=HED_0012878} [CSS-color 0x4169E1.]
+******* SkyBlue {hedId=HED_0012879} [CSS-color 0x87CEEB.]
+******* SteelBlue {hedId=HED_0012880} [CSS-color 0x4682B4.]
+****** Brown-color {hedId=HED_0012881} [CSS color group.]
+******* Bisque {hedId=HED_0012882} [CSS-color 0xFFE4C4.]
+******* BlanchedAlmond {hedId=HED_0012883} [CSS-color 0xFFEBCD.]
+******* Brown {hedId=HED_0012884} [CSS-color 0xA52A2A.]
+******* BurlyWood {hedId=HED_0012885} [CSS-color 0xDEB887.]
+******* Chocolate {hedId=HED_0012886} [CSS-color 0xD2691E.]
+******* Cornsilk {hedId=HED_0012887} [CSS-color 0xFFF8DC.]
+******* DarkGoldenRod {hedId=HED_0012888} [CSS-color 0xB8860B.]
+******* GoldenRod {hedId=HED_0012889} [CSS-color 0xDAA520.]
+******* Maroon {hedId=HED_0012890} [CSS-color 0x800000.]
+******* NavajoWhite {hedId=HED_0012891} [CSS-color 0xFFDEAD.]
+******* Olive {hedId=HED_0012892} [CSS-color 0x808000.]
+******* Peru {hedId=HED_0012893} [CSS-color 0xCD853F.]
+******* RosyBrown {hedId=HED_0012894} [CSS-color 0xBC8F8F.]
+******* SaddleBrown {hedId=HED_0012895} [CSS-color 0x8B4513.]
+******* SandyBrown {hedId=HED_0012896} [CSS-color 0xF4A460.]
+******* Sienna {hedId=HED_0012897} [CSS-color 0xA0522D.]
+******* Tan {hedId=HED_0012898} [CSS-color 0xD2B48C.]
+******* Wheat {hedId=HED_0012899} [CSS-color 0xF5DEB3.]
+****** Cyan-color {hedId=HED_0012900} [CSS color group.]
+******* Aqua {hedId=HED_0012901} [CSS-color 0x00FFFF.]
+******* Aquamarine {hedId=HED_0012902} [CSS-color 0x7FFFD4.]
+******* Cyan {hedId=HED_0012903} [CSS-color 0x00FFFF.]
+******* DarkTurquoise {hedId=HED_0012904} [CSS-color 0x00CED1.]
+******* LightCyan {hedId=HED_0012905} [CSS-color 0xE0FFFF.]
+******* MediumTurquoise {hedId=HED_0012906} [CSS-color 0x48D1CC.]
+******* PaleTurquoise {hedId=HED_0012907} [CSS-color 0xAFEEEE.]
+******* Turquoise {hedId=HED_0012908} [CSS-color 0x40E0D0.]
+****** Gray-color {hedId=HED_0012909} [CSS color group.]
+******* Black {hedId=HED_0012910} [CSS-color 0x000000.]
+******* DarkGray {hedId=HED_0012911} [CSS-color 0xA9A9A9.]
+******* DarkSlateGray {hedId=HED_0012912} [CSS-color 0x2F4F4F.]
+******* DimGray {hedId=HED_0012913} [CSS-color 0x696969.]
+******* Gainsboro {hedId=HED_0012914} [CSS-color 0xDCDCDC.]
+******* Gray {hedId=HED_0012915} [CSS-color 0x808080.]
+******* LightGray {hedId=HED_0012916} [CSS-color 0xD3D3D3.]
+******* LightSlateGray {hedId=HED_0012917} [CSS-color 0x778899.]
+******* Silver {hedId=HED_0012918} [CSS-color 0xC0C0C0.]
+******* SlateGray {hedId=HED_0012919} [CSS-color 0x708090.]
+****** Green-color {hedId=HED_0012920} [CSS color group.]
+******* Chartreuse {hedId=HED_0012921} [CSS-color 0x7FFF00.]
+******* DarkCyan {hedId=HED_0012922} [CSS-color 0x008B8B.]
+******* DarkGreen {hedId=HED_0012923} [CSS-color 0x006400.]
+******* DarkOliveGreen {hedId=HED_0012924} [CSS-color 0x556B2F.]
+******* DarkSeaGreen {hedId=HED_0012925} [CSS-color 0x8FBC8F.]
+******* ForestGreen {hedId=HED_0012926} [CSS-color 0x228B22.]
+******* Green {hedId=HED_0012927} [CSS-color 0x008000.]
+******* GreenYellow {hedId=HED_0012928} [CSS-color 0xADFF2F.]
+******* LawnGreen {hedId=HED_0012929} [CSS-color 0x7CFC00.]
+******* LightGreen {hedId=HED_0012930} [CSS-color 0x90EE90.]
+******* LightSeaGreen {hedId=HED_0012931} [CSS-color 0x20B2AA.]
+******* Lime {hedId=HED_0012932} [CSS-color 0x00FF00.]
+******* LimeGreen {hedId=HED_0012933} [CSS-color 0x32CD32.]
+******* MediumAquaMarine {hedId=HED_0012934} [CSS-color 0x66CDAA.]
+******* MediumSeaGreen {hedId=HED_0012935} [CSS-color 0x3CB371.]
+******* MediumSpringGreen {hedId=HED_0012936} [CSS-color 0x00FA9A.]
+******* OliveDrab {hedId=HED_0012937} [CSS-color 0x6B8E23.]
+******* PaleGreen {hedId=HED_0012938} [CSS-color 0x98FB98.]
+******* SeaGreen {hedId=HED_0012939} [CSS-color 0x2E8B57.]
+******* SpringGreen {hedId=HED_0012940} [CSS-color 0x00FF7F.]
+******* Teal {hedId=HED_0012941} [CSS-color 0x008080.]
+******* YellowGreen {hedId=HED_0012942} [CSS-color 0x9ACD32.]
+****** Orange-color {hedId=HED_0012943} [CSS color group.]
+******* Coral {hedId=HED_0012944} [CSS-color 0xFF7F50.]
+******* DarkOrange {hedId=HED_0012945} [CSS-color 0xFF8C00.]
+******* Orange {hedId=HED_0012946} [CSS-color 0xFFA500.]
+******* OrangeRed {hedId=HED_0012947} [CSS-color 0xFF4500.]
+******* Tomato {hedId=HED_0012948} [CSS-color 0xFF6347.]
+****** Pink-color {hedId=HED_0012949} [CSS color group.]
+******* DeepPink {hedId=HED_0012950} [CSS-color 0xFF1493.]
+******* HotPink {hedId=HED_0012951} [CSS-color 0xFF69B4.]
+******* LightPink {hedId=HED_0012952} [CSS-color 0xFFB6C1.]
+******* MediumVioletRed {hedId=HED_0012953} [CSS-color 0xC71585.]
+******* PaleVioletRed {hedId=HED_0012954} [CSS-color 0xDB7093.]
+******* Pink {hedId=HED_0012955} [CSS-color 0xFFC0CB.]
+****** Purple-color {hedId=HED_0012956} [CSS color group.]
+******* BlueViolet {hedId=HED_0012957} [CSS-color 0x8A2BE2.]
+******* DarkMagenta {hedId=HED_0012958} [CSS-color 0x8B008B.]
+******* DarkOrchid {hedId=HED_0012959} [CSS-color 0x9932CC.]
+******* DarkSlateBlue {hedId=HED_0012960} [CSS-color 0x483D8B.]
+******* DarkViolet {hedId=HED_0012961} [CSS-color 0x9400D3.]
+******* Fuchsia {hedId=HED_0012962} [CSS-color 0xFF00FF.]
+******* Indigo {hedId=HED_0012963} [CSS-color 0x4B0082.]
+******* Lavender {hedId=HED_0012964} [CSS-color 0xE6E6FA.]
+******* Magenta {hedId=HED_0012965} [CSS-color 0xFF00FF.]
+******* MediumOrchid {hedId=HED_0012966} [CSS-color 0xBA55D3.]
+******* MediumPurple {hedId=HED_0012967} [CSS-color 0x9370DB.]
+******* MediumSlateBlue {hedId=HED_0012968} [CSS-color 0x7B68EE.]
+******* Orchid {hedId=HED_0012969} [CSS-color 0xDA70D6.]
+******* Plum {hedId=HED_0012970} [CSS-color 0xDDA0DD.]
+******* Purple {hedId=HED_0012971} [CSS-color 0x800080.]
+******* RebeccaPurple {hedId=HED_0012972} [CSS-color 0x663399.]
+******* SlateBlue {hedId=HED_0012973} [CSS-color 0x6A5ACD.]
+******* Thistle {hedId=HED_0012974} [CSS-color 0xD8BFD8.]
+******* Violet {hedId=HED_0012975} [CSS-color 0xEE82EE.]
+****** Red-color {hedId=HED_0012976} [CSS color group.]
+******* Crimson {hedId=HED_0012977} [CSS-color 0xDC143C.]
+******* DarkRed {hedId=HED_0012978} [CSS-color 0x8B0000.]
+******* DarkSalmon {hedId=HED_0012979} [CSS-color 0xE9967A.]
+******* FireBrick {hedId=HED_0012980} [CSS-color 0xB22222.]
+******* IndianRed {hedId=HED_0012981} [CSS-color 0xCD5C5C.]
+******* LightCoral {hedId=HED_0012982} [CSS-color 0xF08080.]
+******* LightSalmon {hedId=HED_0012983} [CSS-color 0xFFA07A.]
+******* Red {hedId=HED_0012984} [CSS-color 0xFF0000.]
+******* Salmon {hedId=HED_0012985} [CSS-color 0xFA8072.]
+****** White-color {hedId=HED_0012986} [CSS color group.]
+******* AliceBlue {hedId=HED_0012987} [CSS-color 0xF0F8FF.]
+******* AntiqueWhite {hedId=HED_0012988} [CSS-color 0xFAEBD7.]
+******* Azure {hedId=HED_0012989} [CSS-color 0xF0FFFF.]
+******* Beige {hedId=HED_0012990} [CSS-color 0xF5F5DC.]
+******* FloralWhite {hedId=HED_0012991} [CSS-color 0xFFFAF0.]
+******* GhostWhite {hedId=HED_0012992} [CSS-color 0xF8F8FF.]
+******* HoneyDew {hedId=HED_0012993} [CSS-color 0xF0FFF0.]
+******* Ivory {hedId=HED_0012994} [CSS-color 0xFFFFF0.]
+******* LavenderBlush {hedId=HED_0012995} [CSS-color 0xFFF0F5.]
+******* Linen {hedId=HED_0012996} [CSS-color 0xFAF0E6.]
+******* MintCream {hedId=HED_0012997} [CSS-color 0xF5FFFA.]
+******* MistyRose {hedId=HED_0012998} [CSS-color 0xFFE4E1.]
+******* OldLace {hedId=HED_0012999} [CSS-color 0xFDF5E6.]
+******* SeaShell {hedId=HED_0013000} [CSS-color 0xFFF5EE.]
+******* Snow {hedId=HED_0013001} [CSS-color 0xFFFAFA.]
+******* White {hedId=HED_0013002} [CSS-color 0xFFFFFF.]
+******* WhiteSmoke {hedId=HED_0013003} [CSS-color 0xF5F5F5.]
+****** Yellow-color {hedId=HED_0013004} [CSS color group.]
+******* DarkKhaki {hedId=HED_0013005} [CSS-color 0xBDB76B.]
+******* Gold {hedId=HED_0013006} [CSS-color 0xFFD700.]
+******* Khaki {hedId=HED_0013007} [CSS-color 0xF0E68C.]
+******* LemonChiffon {hedId=HED_0013008} [CSS-color 0xFFFACD.]
+******* LightGoldenRodYellow {hedId=HED_0013009} [CSS-color 0xFAFAD2.]
+******* LightYellow {hedId=HED_0013010} [CSS-color 0xFFFFE0.]
+******* Moccasin {hedId=HED_0013011} [CSS-color 0xFFE4B5.]
+******* PaleGoldenRod {hedId=HED_0013012} [CSS-color 0xEEE8AA.]
+******* PapayaWhip {hedId=HED_0013013} [CSS-color 0xFFEFD5.]
+******* PeachPuff {hedId=HED_0013014} [CSS-color 0xFFDAB9.]
+******* Yellow {hedId=HED_0013015} [CSS-color 0xFFFF00.]
+***** Color-shade {hedId=HED_0013016} [A slight degree of difference between colors, especially with regard to how light or dark it is or as distinguished from one nearly like it.]
+****** Dark-shade {hedId=HED_0013017} [A color tone not reflecting much light.]
+****** Light-shade {hedId=HED_0013018} [A color tone reflecting more light.]
+***** Grayscale {hedId=HED_0013019} [Using a color map composed of shades of gray, varying from black at the weakest intensity to white at the strongest.]
+****** # {takesValue, valueClass=numericClass, hedId=HED_0013020} [White intensity between 0 and 1.]
+***** HSV-color {hedId=HED_0013021} [A color representation that models how colors appear under light.]
+****** HSV-value {hedId=HED_0013022} [An attribute of a visual sensation according to which an area appears to emit more or less light.]
+******* # {takesValue, valueClass=numericClass, hedId=HED_0013023}
+****** Hue {hedId=HED_0013024} [Attribute of a visual sensation according to which an area appears to be similar to one of the perceived colors.]
+******* # {takesValue, valueClass=numericClass, hedId=HED_0013025} [Angular value between 0 and 360.]
+****** Saturation {hedId=HED_0013026} [Colorfulness of a stimulus relative to its own brightness.]
+******* # {takesValue, valueClass=numericClass, hedId=HED_0013027} [B value of RGB between 0 and 1.]
+***** RGB-color {hedId=HED_0013028} [A color from the RGB schema.]
+****** RGB-blue {hedId=HED_0013029} [The blue component.]
+******* # {takesValue, valueClass=numericClass, hedId=HED_0013030} [B value of RGB between 0 and 1.]
+****** RGB-green {hedId=HED_0013031} [The green component.]
+******* # {takesValue, valueClass=numericClass, hedId=HED_0013032} [G value of RGB between 0 and 1.]
+****** RGB-red {hedId=HED_0013033} [The red component.]
+******* # {takesValue, valueClass=numericClass, hedId=HED_0013034} [R value of RGB between 0 and 1.]
+**** Luminance {hedId=HED_0013035} [A quality that exists by virtue of the luminous intensity per unit area projected in a given direction.]
+**** Luminance-contrast {suggestedTag=Percentage, suggestedTag=Ratio, hedId=HED_0013036} [The difference in luminance in specific portions of a scene or image.]
+***** # {takesValue, valueClass=numericClass, hedId=HED_0013037} [A non-negative value, usually in the range 0 to 1 or alternative 0 to 100, if representing a percentage.]
+**** Opacity {hedId=HED_0013038} [A measure of impenetrability to light.]
+** Sensory-presentation {hedId=HED_0013039} [The entity has a sensory manifestation.]
+*** Auditory-presentation {hedId=HED_0013040} [The sense of hearing is used in the presentation to the user.]
+**** Loudspeaker-separation {suggestedTag=Distance, hedId=HED_0013041} [The distance between two loudspeakers. Grouped with the Distance tag.]
+**** Monophonic {hedId=HED_0013042} [Relating to sound transmission, recording, or reproduction involving a single transmission path.]
+**** Silent {hedId=HED_0013043} [The absence of ambient audible sound or the state of having ceased to produce sounds.]
+**** Stereophonic {hedId=HED_0013044} [Relating to, or constituting sound reproduction involving the use of separated microphones and two transmission channels to achieve the sound separation of a live hearing.]
+*** Gustatory-presentation {hedId=HED_0013045} [The sense of taste used in the presentation to the user.]
+*** Olfactory-presentation {hedId=HED_0013046} [The sense of smell used in the presentation to the user.]
+*** Somatic-presentation {hedId=HED_0013047} [The nervous system is used in the presentation to the user.]
+*** Tactile-presentation {hedId=HED_0013048} [The sense of touch used in the presentation to the user.]
+*** Vestibular-presentation {hedId=HED_0013049} [The sense balance used in the presentation to the user.]
+*** Visual-presentation {hedId=HED_0013050} [The sense of sight used in the presentation to the user.]
+**** 2D-view {hedId=HED_0013051} [A view showing only two dimensions.]
+**** 3D-view {hedId=HED_0013052} [A view showing three dimensions.]
+**** Background-view {hedId=HED_0013053} [Parts of the view that are farthest from the viewer and usually the not part of the visual focus.]
+**** Bistable-view {hedId=HED_0013054} [Something having two stable visual forms that have two distinguishable stable forms as in optical illusions.]
+**** Foreground-view {hedId=HED_0013055} [Parts of the view that are closest to the viewer and usually the most important part of the visual focus.]
+**** Foveal-view {hedId=HED_0013056} [Visual presentation directly on the fovea. A view projected on the small depression in the retina containing only cones and where vision is most acute.]
+**** Map-view {hedId=HED_0013057} [A diagrammatic representation of an area of land or sea showing physical features, cities, roads.]
+***** Aerial-view {hedId=HED_0013058} [Elevated view of an object from above, with a perspective as though the observer were a bird.]
+***** Satellite-view {hedId=HED_0013059} [A representation as captured by technology such as a satellite.]
+***** Street-view {hedId=HED_0013060} [A 360-degrees panoramic view from a position on the ground.]
+**** Peripheral-view {hedId=HED_0013061} [Indirect vision as it occurs outside the point of fixation.]
+* Task-property {extensionAllowed, hedId=HED_0013062} [Something that pertains to a task.]
+** Task-action-type {hedId=HED_0013063} [How an agent action should be interpreted in terms of the task specification.]
+*** Appropriate-action {relatedTag=Inappropriate-action, hedId=HED_0013064} [An action suitable or proper in the circumstances.]
+*** Correct-action {relatedTag=Incorrect-action, relatedTag=Indeterminate-action, hedId=HED_0013065} [An action that was a correct response in the context of the task.]
+*** Correction {hedId=HED_0013066} [An action offering an improvement to replace a mistake or error.]
+*** Done-indication {relatedTag=Ready-indication, hedId=HED_0013067} [An action that indicates that the participant has completed this step in the task.]
+*** Imagined-action {hedId=HED_0013068} [Form a mental image or concept of something. This is used to identity something that only happened in the imagination of the participant as in imagined movements in motor imagery paradigms.]
+*** Inappropriate-action {relatedTag=Appropriate-action, hedId=HED_0013069} [An action not in keeping with what is correct or proper for the task.]
+*** Incorrect-action {relatedTag=Correct-action, relatedTag=Indeterminate-action, hedId=HED_0013070} [An action considered wrong or incorrect in the context of the task.]
+*** Indeterminate-action {relatedTag=Correct-action, relatedTag=Incorrect-action, relatedTag=Miss, relatedTag=Near-miss, hedId=HED_0013071} [An action that cannot be distinguished between two or more possibilities in the current context. This tag might be applied when an outside evaluator or a classification algorithm cannot determine a definitive result.]
+*** Miss {relatedTag=Near-miss, hedId=HED_0013072} [An action considered to be a failure in the context of the task. For example, if the agent is supposed to try to hit a target and misses.]
+*** Near-miss {relatedTag=Miss, hedId=HED_0013073} [An action barely satisfied the requirements of the task. In a driving experiment for example this could pertain to a narrowly avoided collision or other accident.]
+*** Omitted-action {hedId=HED_0013074} [An expected response was skipped.]
+*** Ready-indication {relatedTag=Done-indication, hedId=HED_0013075} [An action that indicates that the participant is ready to perform the next step in the task.]
+** Task-attentional-demand {hedId=HED_0013076} [Strategy for allocating attention toward goal-relevant information.]
+*** Bottom-up-attention {relatedTag=Top-down-attention, hedId=HED_0013077} [Attentional guidance purely by externally driven factors to stimuli that are salient because of their inherent properties relative to the background. Sometimes this is referred to as stimulus driven.]
+*** Covert-attention {relatedTag=Overt-attention, hedId=HED_0013078} [Paying attention without moving the eyes.]
+*** Divided-attention {relatedTag=Focused-attention, hedId=HED_0013079} [Integrating parallel multiple stimuli. Behavior involving responding simultaneously to multiple tasks or multiple task demands.]
+*** Focused-attention {relatedTag=Divided-attention, hedId=HED_0013080} [Responding discretely to specific visual, auditory, or tactile stimuli.]
+*** Orienting-attention {hedId=HED_0013081} [Directing attention to a target stimulus.]
+*** Overt-attention {relatedTag=Covert-attention, hedId=HED_0013082} [Selectively processing one location over others by moving the eyes to point at that location.]
+*** Selective-attention {hedId=HED_0013083} [Maintaining a behavioral or cognitive set in the face of distracting or competing stimuli. Ability to pay attention to a limited array of all available sensory information.]
+*** Sustained-attention {hedId=HED_0013084} [Maintaining a consistent behavioral response during continuous and repetitive activity.]
+*** Switched-attention {hedId=HED_0013085} [Having to switch attention between two or more modalities of presentation.]
+*** Top-down-attention {relatedTag=Bottom-up-attention, hedId=HED_0013086} [Voluntary allocation of attention to certain features. Sometimes this is referred to goal-oriented attention.]
+** Task-effect-evidence {hedId=HED_0013087} [The evidence supporting the conclusion that the event had the specified effect.]
+*** Behavioral-evidence {hedId=HED_0013088} [An indication or conclusion based on the behavior of an agent.]
+*** Computational-evidence {hedId=HED_0013089} [A type of evidence in which data are produced, and/or generated, and/or analyzed on a computer.]
+*** External-evidence {hedId=HED_0013090} [A phenomenon that follows and is caused by some previous phenomenon.]
+*** Intended-effect {hedId=HED_0013091} [A phenomenon that is intended to follow and be caused by some previous phenomenon.]
+** Task-event-role {hedId=HED_0013092} [The purpose of an event with respect to the task.]
+*** Cue {hedId=HED_0013104} [A signal for an action usually indicating a particular response.]
+*** Experimental-stimulus {hedId=HED_0013093} [Part of something designed to elicit a response in the experiment.]
+*** Feedback {hedId=HED_0013108} [An evaluative response to an inquiry, process, event, or activity.]
+*** Incidental {hedId=HED_0013094} [A sensory or other type of event that is unrelated to the task or experiment.]
+*** Instructional {hedId=HED_0013095} [Usually associated with a sensory event intended to give instructions to the participant about the task or behavior.]
+*** Mishap {hedId=HED_0013096} [Unplanned disruption such as an equipment or experiment control abnormality or experimenter error.]
+*** Participant-response {hedId=HED_0013097} [Something related to a participant actions in performing the task.]
+*** Task-activity {hedId=HED_0013098} [Something that is part of the overall task or is necessary to the overall experiment but is not directly part of a stimulus-response cycle. Examples would be taking a survey or provided providing a silva sample.]
+*** Warning {hedId=HED_0013099} [Something that should warn the participant that the parameters of the task have been or are about to be exceeded such as a warning message about getting too close to the shoulder of the road in a driving task.]
+** Task-relationship {hedId=HED_0013100} [Specifying organizational importance of sub-tasks.]
+*** Background-subtask {hedId=HED_0013101} [A part of the task which should be performed in the background as for example inhibiting blinks due to instruction while performing the primary task.]
+*** Primary-subtask {hedId=HED_0013102} [A part of the task which should be the primary focus of the participant.]
+** Task-stimulus-role {hedId=HED_0013103} [The role the stimulus or other type of sensory event, such as feedback, plays in the task.]
+*** Distractor {hedId=HED_0013105} [A person or thing that distracts or a plausible but incorrect option in a multiple-choice question. In psychological studies this is sometimes referred to as a foil.]
+*** Expected {relatedTag=Unexpected, suggestedTag=Target, hedId=HED_0013106} [Considered likely, probable or anticipated. Something of low information value as in frequent non-targets in an RSVP paradigm.]
+*** Extraneous {hedId=HED_0013107} [Irrelevant or unrelated to the subject being dealt with.]
+*** Go-signal {relatedTag=Stop-signal, hedId=HED_0013109} [An indicator to proceed with a planned action.]
+*** Meaningful {hedId=HED_0013110} [Conveying significant or relevant information.]
+*** Newly-learned {hedId=HED_0013111} [Representing recently acquired information or understanding.]
+*** Non-informative {hedId=HED_0013112} [Something that is not useful in forming an opinion or judging an outcome.]
+*** Non-target {relatedTag=Target, hedId=HED_0013113} [Something other than that done or looked for. Also tag Expected if the Non-target is frequent.]
+*** Not-meaningful {hedId=HED_0013114} [Not having a serious, important, or useful quality or purpose.]
+*** Novel {hedId=HED_0013115} [Having no previous example or precedent or parallel.]
+*** Oddball {relatedTag=Unexpected, suggestedTag=Target, hedId=HED_0013116} [Something unusual, or infrequent.]
+*** Penalty {hedId=HED_0013117} [A disadvantage, loss, or hardship due to some action.]
+*** Planned {relatedTag=Unplanned, hedId=HED_0013118} [Something that was decided on or arranged in advance.]
+*** Priming {hedId=HED_0013119} [An implicit memory effect in which exposure to a stimulus influences response to a later stimulus.]
+*** Query {hedId=HED_0013120} [A sentence of inquiry that asks for a reply.]
+*** Reward {hedId=HED_0013121} [A positive reinforcement for a desired action, behavior or response.]
+*** Stop-signal {relatedTag=Go-signal, hedId=HED_0013122} [An indicator that the agent should stop the current activity.]
+*** Target {hedId=HED_0013123} [Something fixed as a goal, destination, or point of examination.]
+*** Threat {hedId=HED_0013124} [An indicator that signifies hostility and predicts an increased probability of attack.]
+*** Timed {hedId=HED_0013125} [Something planned or scheduled to be done at a particular time or lasting for a specified amount of time.]
+*** Unexpected {relatedTag=Expected, hedId=HED_0013126} [Something that is not anticipated.]
+*** Unplanned {relatedTag=Planned, hedId=HED_0013127} [Something that has not been planned as part of the task.]
+
+'''Relation''' {extensionAllowed, hedId=HED_0013128} [Concerns the way in which two or more people or things are connected.]
+* Comparative-relation {hedId=HED_0013129} [Something considered in comparison to something else. The first entity is the focus.]
+** Approximately-equal-to {hedId=HED_0013130} [(A, (Approximately-equal-to, B)) indicates that A and B have almost the same value. Here A and B could refer to sizes, orders, positions or other quantities.]
+** Equal-to {hedId=HED_0013131} [(A, (Equal-to, B)) indicates that the size or order of A is the same as that of B.]
+** Greater-than {hedId=HED_0013132} [(A, (Greater-than, B)) indicates that the relative size or order of A is bigger than that of B.]
+** Greater-than-or-equal-to {hedId=HED_0013133} [(A, (Greater-than-or-equal-to, B)) indicates that the relative size or order of A is bigger than or the same as that of B.]
+** Less-than {hedId=HED_0013134} [(A, (Less-than, B)) indicates that A is smaller than B. Here A and B could refer to sizes, orders, positions or other quantities.]
+** Less-than-or-equal-to {hedId=HED_0013135} [(A, (Less-than-or-equal-to, B)) indicates that the relative size or order of A is smaller than or equal to B.]
+** Not-equal-to {hedId=HED_0013136} [(A, (Not-equal-to, B)) indicates that the size or order of A is not the same as that of B.]
+* Connective-relation {hedId=HED_0013137} [Indicates two entities are related in some way. The first entity is the focus.]
+** Belongs-to {hedId=HED_0013138} [(A, (Belongs-to, B)) indicates that A is a member of B.]
+** Connected-to {hedId=HED_0013139} [(A, (Connected-to, B)) indicates that A is related to B in some respect, usually through a direct link.]
+** Contained-in {hedId=HED_0013140} [(A, (Contained-in, B)) indicates that A is completely inside of B.]
+** Described-by {hedId=HED_0013141} [(A, (Described-by, B)) indicates that B provides information about A.]
+** From-to {hedId=HED_0013142} [(A, (From-to, B)) indicates a directional relation from A to B. A is considered the source.]
+** Group-of {hedId=HED_0013143} [(A, (Group-of, B)) indicates A is a group of items of type B.]
+** Implied-by {hedId=HED_0013144} [(A, (Implied-by, B)) indicates B is suggested by A.]
+** Includes {hedId=HED_0013145} [(A, (Includes, B)) indicates that A has B as a member or part.]
+** Interacts-with {hedId=HED_0013146} [(A, (Interacts-with, B)) indicates A and B interact, possibly reciprocally.]
+** Member-of {hedId=HED_0013147} [(A, (Member-of, B)) indicates A is a member of group B.]
+** Part-of {hedId=HED_0013148} [(A, (Part-of, B)) indicates A is a part of the whole B.]
+** Performed-by {hedId=HED_0013149} [(A, (Performed-by, B)) indicates that the action or procedure A was carried out by agent B.]
+** Performed-using {hedId=HED_0013150} [(A, (Performed-using, B)) indicates that the action or procedure A was accomplished using B.]
+** Related-to {hedId=HED_0013151} [(A, (Related-to, B)) indicates A has some relationship to B.]
+** Unrelated-to {hedId=HED_0013152} [(A, (Unrelated-to, B)) indicates that A is not related to B.For example, A is not related to Task.]
+* Directional-relation {hedId=HED_0013153} [A relationship indicating direction of change of one entity relative to another. The first entity is the focus.]
+** Away-from {hedId=HED_0013154} [(A, (Away-from, B)) indicates that A is going or has moved away from B. The meaning depends on A and B.]
+** Towards {hedId=HED_0013155} [(A, (Towards, B)) indicates that A is going to or has moved to B. The meaning depends on A and B.]
+* Logical-relation {hedId=HED_0013156} [Indicating a logical relationship between entities. The first entity is usually the focus.]
+** And {hedId=HED_0013157} [(A, (And, B)) means A and B are both in effect.]
+** Or {hedId=HED_0013158} [(A, (Or, B)) means at least one of A and B are in effect.]
+* Spatial-relation {hedId=HED_0013159} [Indicating a relationship about position between entities.]
+** Above {hedId=HED_0013160} [(A, (Above, B)) means A is in a place or position that is higher than B.]
+** Across-from {hedId=HED_0013161} [(A, (Across-from, B)) means A is on the opposite side of something from B.]
+** Adjacent-to {hedId=HED_0013162} [(A, (Adjacent-to, B)) indicates that A is next to B in time or space.]
+** Ahead-of {hedId=HED_0013163} [(A, (Ahead-of, B)) indicates that A is further forward in time or space in B.]
+** Around {hedId=HED_0013164} [(A, (Around, B)) means A is in or near the present place or situation of B.]
+** Behind {hedId=HED_0013165} [(A, (Behind, B)) means A is at or to the far side of B, typically so as to be hidden by it.]
+** Below {hedId=HED_0013166} [(A, (Below, B)) means A is in a place or position that is lower than the position of B.]
+** Between {hedId=HED_0013167} [(A, (Between, (B, C))) means A is in the space or interval separating B and C.]
+** Bilateral-to {hedId=HED_0013168} [(A, (Bilateral, B)) means A is on both sides of B or affects both sides of B.]
+** Bottom-edge-of {relatedTag=Left-edge-of, relatedTag=Right-edge-of, relatedTag=Top-edge-of, hedId=HED_0013169} [(A, (Bottom-edge-of, B)) means A is on the bottom most part or or near the boundary of B.]
+** Boundary-of {hedId=HED_0013170} [(A, (Boundary-of, B)) means A is on or part of the edge or boundary of B.]
+** Center-of {hedId=HED_0013171} [(A, (Center-of, B)) means A is at a point or or in an area that is approximately central within B.]
+** Close-to {hedId=HED_0013172} [(A, (Close-to, B)) means A is at a small distance from or is located near in space to B.]
+** Far-from {hedId=HED_0013173} [(A, (Far-from, B)) means A is at a large distance from or is not located near in space to B.]
+** In-front-of {hedId=HED_0013174} [(A, (In-front-of, B)) means A is in a position just ahead or at the front part of B, potentially partially blocking B from view.]
+** Left-edge-of {relatedTag=Bottom-edge-of, relatedTag=Right-edge-of, relatedTag=Top-edge-of, hedId=HED_0013175} [(A, (Left-edge-of, B)) means A is located on the left side of B on or near the boundary of B.]
+** Left-side-of {relatedTag=Right-side-of, hedId=HED_0013176} [(A, (Left-side-of, B)) means A is located on the left side of B usually as part of B.]
+** Lower-center-of {relatedTag=Center-of, relatedTag=Lower-left-of, relatedTag=Lower-right-of, relatedTag=Upper-center-of, relatedTag=Upper-right-of, hedId=HED_0013177} [(A, (Lower-center-of, B)) means A is situated on the lower center part of B (due south). This relation is often used to specify qualitative information about screen position.]
+** Lower-left-of {relatedTag=Center-of, relatedTag=Lower-center-of, relatedTag=Lower-right-of, relatedTag=Upper-center-of, relatedTag=Upper-left-of, relatedTag=Upper-right-of, hedId=HED_0013178} [(A, (Lower-left-of, B)) means A is situated on the lower left part of B. This relation is often used to specify qualitative information about screen position.]
+** Lower-right-of {relatedTag=Center-of, relatedTag=Lower-center-of, relatedTag=Lower-left-of, relatedTag=Upper-left-of, relatedTag=Upper-center-of, relatedTag=Upper-left-of, relatedTag=Lower-right-of, hedId=HED_0013179} [(A, (Lower-right-of, B)) means A is situated on the lower right part of B. This relation is often used to specify qualitative information about screen position.]
+** Outside-of {hedId=HED_0013180} [(A, (Outside-of, B)) means A is located in the space around but not including B.]
+** Over {hedId=HED_0013181} [(A, (Over, B)) means A above is above B so as to cover or protect or A extends over the a general area as from a from a vantage point.]
+** Right-edge-of {relatedTag=Bottom-edge-of, relatedTag=Left-edge-of, relatedTag=Top-edge-of, hedId=HED_0013182} [(A, (Right-edge-of, B)) means A is located on the right side of B on or near the boundary of B.]
+** Right-side-of {relatedTag=Left-side-of, hedId=HED_0013183} [(A, (Right-side-of, B)) means A is located on the right side of B usually as part of B.]
+** To-left-of {hedId=HED_0013184} [(A, (To-left-of, B)) means A is located on or directed toward the side to the west of B when B is facing north. This term is used when A is not part of B.]
+** To-right-of {hedId=HED_0013185} [(A, (To-right-of, B)) means A is located on or directed toward the side to the east of B when B is facing north. This term is used when A is not part of B.]
+** Top-edge-of {relatedTag=Left-edge-of, relatedTag=Right-edge-of, relatedTag=Bottom-edge-of, hedId=HED_0013186} [(A, (Top-edge-of, B)) means A is on the uppermost part or or near the boundary of B.]
+** Top-of {hedId=HED_0013187} [(A, (Top-of, B)) means A is on the uppermost part, side, or surface of B.]
+** Underneath {hedId=HED_0013188} [(A, (Underneath, B)) means A is situated directly below and may be concealed by B.]
+** Upper-center-of {relatedTag=Center-of, relatedTag=Lower-center-of, relatedTag=Lower-left-of, relatedTag=Lower-right-of, relatedTag=Upper-center-of, relatedTag=Upper-right-of, hedId=HED_0013189} [(A, (Upper-center-of, B)) means A is situated on the upper center part of B (due north). This relation is often used to specify qualitative information about screen position.]
+** Upper-left-of {relatedTag=Center-of, relatedTag=Lower-center-of, relatedTag=Lower-left-of, relatedTag=Lower-right-of, relatedTag=Upper-center-of, relatedTag=Upper-right-of, hedId=HED_0013190} [(A, (Upper-left-of, B)) means A is situated on the upper left part of B. This relation is often used to specify qualitative information about screen position.]
+** Upper-right-of {relatedTag=Center-of, relatedTag=Lower-center-of, relatedTag=Lower-left-of, relatedTag=Upper-left-of, relatedTag=Upper-center-of, relatedTag=Lower-right-of, hedId=HED_0013191} [(A, (Upper-right-of, B)) means A is situated on the upper right part of B. This relation is often used to specify qualitative information about screen position.]
+** Within {hedId=HED_0013192} [(A, (Within, B)) means A is on the inside of or contained in B.]
+* Temporal-relation {hedId=HED_0013193} [A relationship that includes a temporal or time-based component.]
+** After {hedId=HED_0013194} [(A, (After, B)) means A happens at a time subsequent to a reference time related to B.]
+** Asynchronous-with {hedId=HED_0013195} [(A, (Asynchronous-with, B)) means A happens at times not occurring at the same time or having the same period or phase as B.]
+** Before {hedId=HED_0013196} [(A, (Before, B)) means A happens at a time earlier in time or order than B.]
+** During {hedId=HED_0013197} [(A, (During, B)) means A happens at some point in a given period of time in which B is ongoing.]
+** Synchronous-with {hedId=HED_0013198} [(A, (Synchronous-with, B)) means A happens at occurs at the same time or rate as B.]
+** Waiting-for {hedId=HED_0013199} [(A, (Waiting-for, B)) means A pauses for something to happen in B.]
!# end schema
'''Unit classes'''
-* myAngleUnits {defaultUnits=deg}
-** deg {SIUnit, conversionFactor=1.0}
+* accelerationUnits {defaultUnits=m-per-s^2, hedId=HED_0011500}
+** m-per-s^2 {SIUnit, unitSymbol, conversionFactor=1.0, allowedCharacter=caret, hedId=HED_0011600}
+* angleUnits {defaultUnits=radian, hedId=HED_0011501}
+** radian {SIUnit, conversionFactor=1.0, hedId=HED_0011601}
+** rad {SIUnit, unitSymbol, conversionFactor=1.0, hedId=HED_0011602}
+** degree {conversionFactor=0.0174533, hedId=HED_0011603}
+* areaUnits {defaultUnits=m^2, hedId=HED_0011502}
+** m^2 {SIUnit, unitSymbol, conversionFactor=1.0, allowedCharacter=caret, hedId=HED_0011604}
+* currencyUnits {defaultUnits=$, hedId=HED_0011503} [Units indicating the worth of something.]
+** dollar {conversionFactor=1.0, hedId=HED_0011605}
+** $ {unitPrefix, unitSymbol, conversionFactor=1.0, allowedCharacter=dollar, hedId=HED_0011606}
+** euro {hedId=HED_0011607} [The official currency of a large subset of member countries of the European Union.]
+** point {hedId=HED_0011608} [An arbitrary unit of value, usually an integer indicating reward or penalty.]
+* electricPotentialUnits {defaultUnits=uV, hedId=HED_0011504}
+** V {SIUnit, unitSymbol, conversionFactor=0.000001, hedId=HED_0011609}
+** uV {conversionFactor=1.0, hedId=HED_0011644} [Added as a direct unit because it is the default unit.]
+** volt {SIUnit, conversionFactor=0.000001, hedId=HED_0011610}
+* frequencyUnits {defaultUnits=Hz, hedId=HED_0011505}
+** hertz {SIUnit, conversionFactor=1.0, hedId=HED_0011611}
+** Hz {SIUnit, unitSymbol, conversionFactor=1.0, hedId=HED_0011612}
+* intensityUnits {defaultUnits=dB, hedId=HED_0011506}
+** dB {unitSymbol, conversionFactor=1.0, hedId=HED_0011613} [Intensity expressed as ratio to a threshold. May be used for sound intensity.]
+** candela {SIUnit, hedId=HED_0011614} [Units used to express light intensity.]
+** cd {SIUnit, unitSymbol, hedId=HED_0011615} [Units used to express light intensity.]
+* jerkUnits {defaultUnits=m-per-s^3, hedId=HED_0011507}
+** m-per-s^3 {unitSymbol, conversionFactor=1.0, allowedCharacter=caret, hedId=HED_0011616}
+* magneticFieldUnits {defaultUnits=T, hedId=HED_0011508}
+** tesla {SIUnit, conversionFactor=10e-15, hedId=HED_0011617}
+** T {SIUnit, unitSymbol, conversionFactor=10e-15, hedId=HED_0011618}
+* memorySizeUnits {defaultUnits=B, hedId=HED_0011509}
+** byte {SIUnit, conversionFactor=1.0, hedId=HED_0011619}
+** B {SIUnit, unitSymbol, conversionFactor=1.0, hedId=HED_0011620}
+* physicalLengthUnits {defaultUnits=m, hedId=HED_0011510}
+** foot {conversionFactor=0.3048, hedId=HED_0011621}
+** inch {conversionFactor=0.0254, hedId=HED_0011622}
+** meter {SIUnit, conversionFactor=1.0, hedId=HED_0011623}
+** metre {SIUnit, conversionFactor=1.0, hedId=HED_0011624}
+** m {SIUnit, unitSymbol, conversionFactor=1.0, hedId=HED_0011625}
+** mile {conversionFactor=1609.34, hedId=HED_0011626}
+* speedUnits {defaultUnits=m-per-s, hedId=HED_0011511}
+** m-per-s {SIUnit, unitSymbol, conversionFactor=1.0, hedId=HED_0011627}
+** mph {unitSymbol, conversionFactor=0.44704, hedId=HED_0011628}
+** kph {unitSymbol, conversionFactor=0.277778, hedId=HED_0011629}
+* temperatureUnits {defaultUnits=degree-Celsius, hedId=HED_0011512}
+** degree-Celsius {SIUnit, conversionFactor=1.0, hedId=HED_0011630}
+** degree Celsius {deprecatedFrom=8.2.0, SIUnit, conversionFactor=1.0, hedId=HED_0011631} [Units are not allowed to have spaces. Use degree-Celsius or oC.]
+** oC {SIUnit, unitSymbol, conversionFactor=1.0, hedId=HED_0011632}
+* timeUnits {defaultUnits=s, hedId=HED_0011513}
+** second {SIUnit, conversionFactor=1.0, hedId=HED_0011633}
+** s {SIUnit, unitSymbol, conversionFactor=1.0, hedId=HED_0011634}
+** day {conversionFactor=86400, hedId=HED_0011635}
+** month {hedId=HED_0011645}
+** minute {conversionFactor=60, hedId=HED_0011636}
+** hour {conversionFactor=3600, hedId=HED_0011637} [Should be in 24-hour format.]
+** year {hedId=HED_0011638} [Years do not have a constant conversion factor to seconds.]
+* volumeUnits {defaultUnits=m^3, hedId=HED_0011514}
+** m^3 {SIUnit, unitSymbol, conversionFactor=1.0, allowedCharacter=caret, hedId=HED_0011639}
+* weightUnits {defaultUnits=g, hedId=HED_0011515}
+** g {SIUnit, unitSymbol, conversionFactor=1.0, hedId=HED_0011640}
+** gram {SIUnit, conversionFactor=1.0, hedId=HED_0011641}
+** pound {conversionFactor=453.592, hedId=HED_0011642}
+** lb {conversionFactor=453.592, hedId=HED_0011643}
'''Unit modifiers'''
+* deca {SIUnitModifier, conversionFactor=10.0, hedId=HED_0011400} [SI unit multiple representing 10e1.]
+* da {SIUnitSymbolModifier, conversionFactor=10.0, hedId=HED_0011401} [SI unit multiple representing 10e1.]
+* hecto {SIUnitModifier, conversionFactor=100.0, hedId=HED_0011402} [SI unit multiple representing 10e2.]
+* h {SIUnitSymbolModifier, conversionFactor=100.0, hedId=HED_0011403} [SI unit multiple representing 10e2.]
+* kilo {SIUnitModifier, conversionFactor=1000.0, hedId=HED_0011404} [SI unit multiple representing 10e3.]
+* k {SIUnitSymbolModifier, conversionFactor=1000.0, hedId=HED_0011405} [SI unit multiple representing 10e3.]
+* mega {SIUnitModifier, conversionFactor=10e6, hedId=HED_0011406} [SI unit multiple representing 10e6.]
+* M {SIUnitSymbolModifier, conversionFactor=10e6, hedId=HED_0011407} [SI unit multiple representing 10e6.]
+* giga {SIUnitModifier, conversionFactor=10e9, hedId=HED_0011408} [SI unit multiple representing 10e9.]
+* G {SIUnitSymbolModifier, conversionFactor=10e9, hedId=HED_0011409} [SI unit multiple representing 10e9.]
+* tera {SIUnitModifier, conversionFactor=10e12, hedId=HED_0011410} [SI unit multiple representing 10e12.]
+* T {SIUnitSymbolModifier, conversionFactor=10e12, hedId=HED_0011411} [SI unit multiple representing 10e12.]
+* peta {SIUnitModifier, conversionFactor=10e15, hedId=HED_0011412} [SI unit multiple representing 10e15.]
+* P {SIUnitSymbolModifier, conversionFactor=10e15, hedId=HED_0011413} [SI unit multiple representing 10e15.]
+* exa {SIUnitModifier, conversionFactor=10e18, hedId=HED_0011414} [SI unit multiple representing 10e18.]
+* E {SIUnitSymbolModifier, conversionFactor=10e18, hedId=HED_0011415} [SI unit multiple representing 10e18.]
+* zetta {SIUnitModifier, conversionFactor=10e21, hedId=HED_0011416} [SI unit multiple representing 10e21.]
+* Z {SIUnitSymbolModifier, conversionFactor=10e21, hedId=HED_0011417} [SI unit multiple representing 10e21.]
+* yotta {SIUnitModifier, conversionFactor=10e24, hedId=HED_0011418} [SI unit multiple representing 10e24.]
+* Y {SIUnitSymbolModifier, conversionFactor=10e24, hedId=HED_0011419} [SI unit multiple representing 10e24.]
+* deci {SIUnitModifier, conversionFactor=0.1, hedId=HED_0011420} [SI unit submultiple representing 10e-1.]
+* d {SIUnitSymbolModifier, conversionFactor=0.1, hedId=HED_0011421} [SI unit submultiple representing 10e-1.]
+* centi {SIUnitModifier, conversionFactor=0.01, hedId=HED_0011422} [SI unit submultiple representing 10e-2.]
+* c {SIUnitSymbolModifier, conversionFactor=0.01, hedId=HED_0011423} [SI unit submultiple representing 10e-2.]
+* milli {SIUnitModifier, conversionFactor=0.001, hedId=HED_0011424} [SI unit submultiple representing 10e-3.]
+* m {SIUnitSymbolModifier, conversionFactor=0.001, hedId=HED_0011425} [SI unit submultiple representing 10e-3.]
+* micro {SIUnitModifier, conversionFactor=10e-6, hedId=HED_0011426} [SI unit submultiple representing 10e-6.]
+* u {SIUnitSymbolModifier, conversionFactor=10e-6, hedId=HED_0011427} [SI unit submultiple representing 10e-6.]
+* nano {SIUnitModifier, conversionFactor=10e-9, hedId=HED_0011428} [SI unit submultiple representing 10e-9.]
+* n {SIUnitSymbolModifier, conversionFactor=10e-9, hedId=HED_0011429} [SI unit submultiple representing 10e-9.]
+* pico {SIUnitModifier, conversionFactor=10e-12, hedId=HED_0011430} [SI unit submultiple representing 10e-12.]
+* p {SIUnitSymbolModifier, conversionFactor=10e-12, hedId=HED_0011431} [SI unit submultiple representing 10e-12.]
+* femto {SIUnitModifier, conversionFactor=10e-15, hedId=HED_0011432} [SI unit submultiple representing 10e-15.]
+* f {SIUnitSymbolModifier, conversionFactor=10e-15, hedId=HED_0011433} [SI unit submultiple representing 10e-15.]
+* atto {SIUnitModifier, conversionFactor=10e-18, hedId=HED_0011434} [SI unit submultiple representing 10e-18.]
+* a {SIUnitSymbolModifier, conversionFactor=10e-18, hedId=HED_0011435} [SI unit submultiple representing 10e-18.]
+* zepto {SIUnitModifier, conversionFactor=10e-21, hedId=HED_0011436} [SI unit submultiple representing 10e-21.]
+* z {SIUnitSymbolModifier, conversionFactor=10e-21, hedId=HED_0011437} [SI unit submultiple representing 10e-21.]
+* yocto {SIUnitModifier, conversionFactor=10e-24, hedId=HED_0011438} [SI unit submultiple representing 10e-24.]
+* y {SIUnitSymbolModifier, conversionFactor=10e-24, hedId=HED_0011439} [SI unit submultiple representing 10e-24.]
'''Value classes'''
-* digitClass {allowedCharacter=digits} [Values that can only have digits.]
+* dateTimeClass {allowedCharacter=digits, allowedCharacter=T, allowedCharacter=hyphen, allowedCharacter=colon, hedId=HED_0011301} [Date-times should conform to ISO8601 date-time format YYYY-MM-DDThh:mm:ss.000000Z (year, month, day, hour (24h), minute, second, optional fractional seconds, and optional UTC time indicator. Any variation on the full form is allowed.]
+* nameClass {allowedCharacter=letters, allowedCharacter=digits, allowedCharacter=underscore, allowedCharacter=hyphen, hedId=HED_0011302} [Value class designating values that have the characteristics of node names. The allowed characters are alphanumeric, hyphen, and underscore.]
+* numericClass {allowedCharacter=digits, allowedCharacter=E, allowedCharacter=e, allowedCharacter=plus, allowedCharacter=hyphen, allowedCharacter=period, hedId=HED_0011303} [Value must be a valid numerical value.]
+* posixPath {allowedCharacter=digits, allowedCharacter=letters, allowedCharacter=slash, allowedCharacter=colon, hedId=HED_0011304} [Posix path specification.]
+* textClass {allowedCharacter=text, hedId=HED_0011305} [Values that have the characteristics of text such as in descriptions. The text characters include printable characters (32 <= ASCII< 127) excluding comma, square bracket and curly braces as well as non ASCII (ASCII codes > 127).]
'''Schema attributes'''
-* myAnnotation {elementDomain, stringRange, annotationProperty} [Special annotations.]
+* annotation {elementDomain, stringRange, hedId=HED_0010504, annotationProperty} [A annotation link to an item in another ontology or item.]
+* hedId {elementDomain, stringRange, hedId=HED_0010500, annotationProperty} [The unique identifier of this element in the HED namespace.]
+* requireChild {tagDomain, boolRange, hedId=HED_0010501, annotationProperty} [This tag must have a descendent.]
+* rooted {tagDomain, tagRange, hedId=HED_0010502, annotationProperty} [This top-level library schema node should have a parent which is the indicated node in the partnered standard schema.]
+* takesValue {tagDomain, boolRange, hedId=HED_0010503, annotationProperty} [This tag is a hashtag placeholder that is expected to be replaced with a user-defined value.]
+* defaultUnits {unitClassDomain, unitRange, hedId=HED_0010104} [The default units to use if the placeholder has a unit class but the substituted value has no units.]
+* isPartOf {tagDomain, tagRange, hedId=HED_0010109} [This tag is part of the indicated tag -- as in the nose is part of the face.]
+* relatedTag {tagDomain, tagRange, hedId=HED_0010105} [A HED tag that is closely related to this tag. This attribute is used by tagging tools.]
+* suggestedTag {tagDomain, tagRange, hedId=HED_0010106} [A tag that is often associated with this tag. This attribute is used by tagging tools to provide tagging suggestions.]
+* unitClass {tagDomain, unitClassRange, hedId=HED_0010107} [The unit class that the value of a placeholder node can belong to.]
+* valueClass {tagDomain, valueClassRange, hedId=HED_0010108} [Type of value taken on by the value of a placeholder node.]
+* allowedCharacter {unitDomain, unitModifierDomain, valueClassDomain, stringRange, hedId=HED_0010304} [A special character that is allowed in expressing the value of a placeholder of a specified value class. Allowed characters may be listed individual, named individually, or named as a group as specified in Section 2.2 Character sets and restrictions of the HED specification.]
+* conversionFactor {unitDomain, unitModifierDomain, numericRange, hedId=HED_0010305} [The factor to multiply these units or unit modifiers by to convert to default units.]
+* deprecatedFrom {elementDomain, stringRange, hedId=HED_0010306} [The latest schema version in which the element was not deprecated.]
+* extensionAllowed {tagDomain, boolRange, hedId=HED_0010307} [Users can add unlimited levels of child nodes under this tag. This tag is propagated to child nodes except for hashtag placeholders.]
+* inLibrary {elementDomain, stringRange, hedId=HED_0010309} [The named library schema that this schema element is from. This attribute is added by tools when a library schema is merged into its partnered standard schema.]
+* reserved {tagDomain, boolRange, hedId=HED_0010310} [This tag has special meaning and requires special handling by tools.]
+* SIUnit {unitDomain, boolRange, hedId=HED_0010311} [This unit element is an SI unit and can be modified by multiple and sub-multiple names. Note that some units such as byte are designated as SI units although they are not part of the standard.]
+* SIUnitModifier {unitModifierDomain, boolRange, hedId=HED_0010312} [This SI unit modifier represents a multiple or sub-multiple of a base unit rather than a unit symbol.]
+* SIUnitSymbolModifier {unitModifierDomain, boolRange, hedId=HED_0010313} [This SI unit modifier represents a multiple or sub-multiple of a unit symbol rather than a base symbol.]
+* tagGroup {tagDomain, boolRange, hedId=HED_0010314} [This tag can only appear inside a tag group.]
+* topLevelTagGroup {tagDomain, boolRange, hedId=HED_0010315} [This tag (or its descendants) can only appear in a top-level tag group. There are additional tag-specific restrictions on what other tags can appear in the group with this tag.]
+* unique {tagDomain, boolRange, hedId=HED_0010316} [Only one of this tag or its descendants can be used in the event-level HED string.]
+* unitPrefix {unitDomain, boolRange, hedId=HED_0010317} [This unit is a prefix unit (e.g., dollar sign in the currency units).]
+* unitSymbol {unitDomain, boolRange, hedId=HED_0010318} [This tag is an abbreviation or symbol representing a type of unit. Unit symbols represent both the singular and the plural and thus cannot be pluralized.]
'''Properties'''
+* annotationProperty {hedId=HED_0010701} [The value is not inherited by child nodes.]
+* boolRange {hedId=HED_0010702} [This schema attribute's value can be true or false. This property was formerly named boolProperty.]
+* elementDomain {hedId=HED_0010703} [This schema attribute can apply to any type of element class (i.e., tag, unit, unit class, unit modifier, or value class). This property was formerly named elementProperty.]
+* tagDomain {hedId=HED_0010704} [This schema attribute can apply to node (tag-term) elements. This was added so attributes could apply to multiple types of elements. This property was formerly named nodeProperty.]
+* tagRange {hedId=HED_0010705} [This schema attribute's value can be a node. This property was formerly named nodeProperty.]
+* numericRange {hedId=HED_0010706} [This schema attribute's value can be numeric.]
+* stringRange {hedId=HED_0010707} [This schema attribute's value can be a string.]
+* unitClassDomain {hedId=HED_0010708} [This schema attribute can apply to unit classes. This property was formerly named unitClassProperty.]
+* unitClassRange {hedId=HED_0010709} [This schema attribute's value can be a unit class.]
+* unitModifierDomain {hedId=HED_0010710} [This schema attribute can apply to unit modifiers. This property was formerly named unitModifierProperty.]
+* unitDomain {hedId=HED_0010711} [This schema attribute can apply to units. This property was formerly named unitProperty.]
+* unitRange {hedId=HED_0010712} [This schema attribute's value can be units.]
+* valueClassDomain {hedId=HED_0010713} [This schema attribute can apply to value classes. This property was formerly named valueClassProperty.]
+* valueClassRange {hedId=HED_0010714} [This schema attribute's value can be a value class.]
'''Epilogue'''
A final section.
diff --git a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0.xml b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0.xml
index 2e9e09e0..88cd8b5b 100644
--- a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0.xml
+++ b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0.xml
@@ -1,121 +1,13506 @@
-
+This schema is designed to be lazy partnered with prerelease 8.4.0.Test-someUnknown stuff.
+
+ inLibrary
+ testlib
+ Unknown1Unknown1 stuff
+
+ inLibrary
+ testlib
+
+
+
+
+ Event
+ Something that happens at a given time and (typically) place. Elements of this tag subtree designate the general category in which an event falls.
+
+ suggestedTag
+ Task-property
+
+
+ annotation
+ ncit:C25499
+ rdfs:comment Should have this tag in every event process.
+
+
+ hedId
+ HED_0012001
+
+
+ Sensory-event
+ Something perceivable by the participant. An event meant to be an experimental stimulus should include the tag Task-property/Task-event-role/Experimental-stimulus.
+
+ suggestedTag
+ Task-event-role
+ Sensory-presentation
+
+
+ hedId
+ HED_0012002
+
+
+
+ Agent-action
+ Any action engaged in by an agent (see the Agent subtree for agent categories). A participant response to an experiment stimulus should include the tag Agent-property/Agent-task-role/Experiment-participant.
+
+ suggestedTag
+ Task-event-role
+ Agent
+
+
+ hedId
+ HED_0012003
+
+
+
+ Data-feature
+ An event marking the occurrence of a data feature such as an interictal spike or alpha burst that is often added post hoc to the data record.
+
+ suggestedTag
+ Data-property
+
+
+ hedId
+ HED_0012004
+
+
+
+ Experiment-control
+ An event pertaining to the physical control of the experiment during its operation.
+
+ hedId
+ HED_0012005
+
+
+
+ Experiment-procedure
+ An event indicating an experimental procedure, as in performing a saliva swab during the experiment or administering a survey.
+
+ hedId
+ HED_0012006
+
+
+
+ Experiment-structure
+ An event specifying a change-point of the structure of experiment. This event is typically used to indicate a change in experimental conditions or tasks.
+
+ hedId
+ HED_0012007
+
- Unknown2
- Unknown2 stuff
+ Measurement-event
+ A discrete measure returned by an instrument.suggestedTag
- Item
+ Data-property
+
+
+ hedId
+ HED_0012008
+
+
+
+
+ Agent
+ Someone or something that takes an active role or produces a specified effect.The role or effect may be implicit. Being alive or performing an activity such as a computation may qualify something to be an agent. An agent may also be something that simulates something else.
+
+ suggestedTag
+ Agent-property
+
+
+ hedId
+ HED_0012009
+
+
+ Animal-agent
+ An agent that is an animal.
+
+ hedId
+ HED_0012010
+
+
+
+ Avatar-agent
+ An agent associated with an icon or avatar representing another agent.
+
+ hedId
+ HED_0012011
+
+
+
+ Controller-agent
+ Experiment control software or hardware.
+
+ hedId
+ HED_0012012
+
+
+
+ Human-agent
+ A person who takes an active role or produces a specified effect.
+
+ hedId
+ HED_0012013
+
+
+
+ Robotic-agent
+ An agent mechanical device capable of performing a variety of often complex tasks on command or by being programmed in advance.
+
+ hedId
+ HED_0012014
+
+
+
+ Software-agent
+ An agent computer program that interacts with the participant in an active role such as an AI advisor.
+
+ hedId
+ HED_0012015
+
+
+
+
+ Action
+ Do something.
+
+ extensionAllowed
+
+
+ hedId
+ HED_0012016
+
+
+ Communicate
+ Action conveying knowledge of or about something.
+
+ hedId
+ HED_0012017
- #
- Try this out
+ Communicate-gesturally
+ Communicate non-verbally using visible bodily actions, either in place of speech or together and in parallel with spoken words. Gestures include movement of the hands, face, or other parts of the body.
+
+ relatedTag
+ Move-face
+ Move-upper-extremity
+
- takesValue
+ hedId
+ HED_0012018
+
+ Clap-hands
+ Strike the palms of against one another resoundingly, and usually repeatedly, especially to express approval.
+
+ hedId
+ HED_0012019
+
+
+
+ Clear-throat
+ Cough slightly so as to speak more clearly, attract attention, or to express hesitancy before saying something awkward.
+
+ relatedTag
+ Move-face
+ Move-head
+
+
+ hedId
+ HED_0012020
+
+
+
+ Frown
+ Express disapproval, displeasure, or concentration, typically by turning down the corners of the mouth.
+
+ relatedTag
+ Move-face
+
+
+ hedId
+ HED_0012021
+
+
+
+ Grimace
+ Make a twisted expression, typically expressing disgust, pain, or wry amusement.
+
+ relatedTag
+ Move-face
+
+
+ hedId
+ HED_0012022
+
+
+
+ Nod-head
+ Tilt head in alternating up and down arcs along the sagittal plane. It is most commonly, but not universally, used to indicate agreement, acceptance, or acknowledgement.
+
+ relatedTag
+ Move-head
+
+
+ hedId
+ HED_0012023
+
+
+
+ Pump-fist
+ Raise with fist clenched in triumph or affirmation.
+
+ relatedTag
+ Move-upper-extremity
+
+
+ hedId
+ HED_0012024
+
+
+
+ Raise-eyebrows
+ Move eyebrows upward.
+
+ relatedTag
+ Move-face
+ Move-eyes
+
+
+ hedId
+ HED_0012025
+
+
+
+ Shake-fist
+ Clench hand into a fist and shake to demonstrate anger.
+
+ relatedTag
+ Move-upper-extremity
+
+
+ hedId
+ HED_0012026
+
+
+
+ Shake-head
+ Turn head from side to side as a way of showing disagreement or refusal.
+
+ relatedTag
+ Move-head
+
+
+ hedId
+ HED_0012027
+
+
+
+ Shhh
+ Place finger over lips and possibly uttering the syllable shhh to indicate the need to be quiet.
+
+ relatedTag
+ Move-upper-extremity
+
+
+ hedId
+ HED_0012028
+
+
+
+ Shrug
+ Lift shoulders up towards head to indicate a lack of knowledge about a particular topic.
+
+ relatedTag
+ Move-upper-extremity
+ Move-torso
+
+
+ hedId
+ HED_0012029
+
+
+
+ Smile
+ Form facial features into a pleased, kind, or amused expression, typically with the corners of the mouth turned up and the front teeth exposed.
+
+ relatedTag
+ Move-face
+
+
+ hedId
+ HED_0012030
+
+
+
+ Spread-hands
+ Spread hands apart to indicate ignorance.
+
+ relatedTag
+ Move-upper-extremity
+
+
+ hedId
+ HED_0012031
+
+
+
+ Thumb-up
+ Extend the thumb upward to indicate approval.
+
+ relatedTag
+ Move-upper-extremity
+
+
+ hedId
+ HED_0012032
+
+
+
+ Thumbs-down
+ Extend the thumb downward to indicate disapproval.
+
+ relatedTag
+ Move-upper-extremity
+
+
+ hedId
+ HED_0012033
+
+
+
+ Wave
+ Raise hand and move left and right, as a greeting or sign of departure.
+
+ relatedTag
+ Move-upper-extremity
+
+
+ hedId
+ HED_0012034
+
+
+
+ Widen-eyes
+ Open eyes and possibly with eyebrows lifted especially to express surprise or fear.
+
+ relatedTag
+ Move-face
+ Move-eyes
+
+
+ hedId
+ HED_0012035
+
+
+
+ Wink
+ Close and open one eye quickly, typically to indicate that something is a joke or a secret or as a signal of affection or greeting.
+
+ relatedTag
+ Move-face
+ Move-eyes
+
+
+ hedId
+ HED_0012036
+
+
+
+
+ Communicate-musically
+ Communicate using music.
- valueClass
- digitClass
+ hedId
+ HED_0012037
+
+ Hum
+ Make a low, steady continuous sound like that of a bee. Sing with the lips closed and without uttering speech.
+
+ hedId
+ HED_0012038
+
+
+
+ Play-instrument
+ Make musical sounds using an instrument.
+
+ hedId
+ HED_0012039
+
+
+
+ Sing
+ Produce musical tones by means of the voice.
+
+ hedId
+ HED_0012040
+
+
+
+ Vocalize
+ Utter vocal sounds.
+
+ hedId
+ HED_0012041
+
+
+
+ Whistle
+ Produce a shrill clear sound by forcing breath out or air in through the puckered lips.
+
+ hedId
+ HED_0012042
+
+
+
+
+ Communicate-vocally
+ Communicate using mouth or vocal cords.
- unitClass
- myAngleUnits
+ hedId
+ HED_0012043
+
+ Cry
+ Shed tears associated with emotions, usually sadness but also joy or frustration.
+
+ hedId
+ HED_0012044
+
+
+
+ Groan
+ Make a deep inarticulate sound in response to pain or despair.
+
+ hedId
+ HED_0012045
+
+
+
+ Laugh
+ Make the spontaneous sounds and movements of the face and body that are the instinctive expressions of lively amusement and sometimes also of contempt or derision.
+
+ hedId
+ HED_0012046
+
+
+
+ Scream
+ Make loud, vociferous cries or yells to express pain, excitement, or fear.
+
+ hedId
+ HED_0012047
+
+
+
+ Shout
+ Say something very loudly.
+
+ hedId
+ HED_0012048
+
+
+
+ Sigh
+ Emit a long, deep, audible breath expressing sadness, relief, tiredness, or a similar feeling.
+
+ hedId
+ HED_0012049
+
+
+
+ Speak
+ Communicate using spoken language.
+
+ hedId
+ HED_0012050
+
+
+
+ Whisper
+ Speak very softly using breath without vocal cords.
+
+ hedId
+ HED_0012051
+
+
-
-
- Fruit
- Fruit stuff.
-
- rooted
- Plant
-
- Apple
- Apple stuff
+ Move
+ Move in a specified direction or manner. Change position or posture.
- annotation
- foodonto:has_botanical_name
+ hedId
+ HED_0012052
- Honey-crisp
- Type of apple
+ Breathe
+ Inhale or exhale during respiration.
+
+ hedId
+ HED_0012053
+
+
+ Blow
+ Expel air through pursed lips.
+
+ hedId
+ HED_0012054
+
+
+
+ Cough
+ Suddenly and audibly expel air from the lungs through a partially closed glottis, preceded by inhalation.
+
+ hedId
+ HED_0012055
+
+
+
+ Exhale
+ Blow out or expel breath.
+
+ hedId
+ HED_0012056
+
+
+
+ Hiccup
+ Involuntarily spasm the diaphragm and respiratory organs, with a sudden closure of the glottis and a characteristic sound like that of a cough.
+
+ hedId
+ HED_0012057
+
+
+
+ Hold-breath
+ Interrupt normal breathing by ceasing to inhale or exhale.
+
+ hedId
+ HED_0012058
+
+
+
+ Inhale
+ Draw in with the breath through the nose or mouth.
+
+ hedId
+ HED_0012059
+
+
+
+ Sneeze
+ Suddenly and violently expel breath through the nose and mouth.
+
+ hedId
+ HED_0012060
+
+
+
+ Sniff
+ Draw in air audibly through the nose to detect a smell, to stop it from running, or to express contempt.
+
+ hedId
+ HED_0012061
+
+
+
+
+ Move-body
+ Move entire body.
+
+ hedId
+ HED_0012062
+
+
+ Bend
+ Move body in a bowed or curved manner.
+
+ hedId
+ HED_0012063
+
+
+
+ Dance
+ Perform a purposefully selected sequences of human movement often with aesthetic or symbolic value. Move rhythmically to music, typically following a set sequence of steps.
+
+ hedId
+ HED_0012064
+
+
+
+ Fall-down
+ Lose balance and collapse.
+
+ hedId
+ HED_0012065
+
+
+
+ Flex
+ Cause a muscle to stand out by contracting or tensing it. Bend a limb or joint.
+
+ hedId
+ HED_0012066
+
+
+
+ Jerk
+ Make a quick, sharp, sudden movement.
+
+ hedId
+ HED_0012067
+
+
+
+ Lie-down
+ Move to a horizontal or resting position.
+
+ hedId
+ HED_0012068
+
+
+
+ Recover-balance
+ Return to a stable, upright body position.
+
+ hedId
+ HED_0012069
+
+
+
+ Shudder
+ Tremble convulsively, sometimes as a result of fear or revulsion.
+
+ hedId
+ HED_0012070
+
+
+
+ Sit-down
+ Move from a standing to a sitting position.
+
+ hedId
+ HED_0012071
+
+
+
+ Sit-up
+ Move from lying down to a sitting position.
+
+ hedId
+ HED_0012072
+
+
+
+ Stand-up
+ Move from a sitting to a standing position.
+
+ hedId
+ HED_0012073
+
+
+
+ Stretch
+ Straighten or extend body or a part of body to its full length, typically so as to tighten muscles or in order to reach something.
+
+ hedId
+ HED_0012074
+
+
+
+ Stumble
+ Trip or momentarily lose balance and almost fall.
+
+ hedId
+ HED_0012075
+
+
+
+ Turn
+ Change or cause to change direction.
+
+ hedId
+ HED_0012076
+
+
+
+
+ Move-body-part
+ Move one part of a body.
+
+ hedId
+ HED_0012077
+
+
+ Move-eyes
+ Move eyes.
+
+ hedId
+ HED_0012078
+
+
+ Blink
+ Shut and open the eyes quickly.
+
+ hedId
+ HED_0012079
+
+
+
+ Close-eyes
+ Lower and keep eyelids in a closed position.
+
+ hedId
+ HED_0012080
+
+
+
+ Fixate
+ Direct eyes to a specific point or target.
+
+ hedId
+ HED_0012081
+
+
+
+ Inhibit-blinks
+ Purposely prevent blinking.
+
+ hedId
+ HED_0012082
+
+
+
+ Open-eyes
+ Raise eyelids to expose pupil.
+
+ hedId
+ HED_0012083
+
+
+
+ Saccade
+ Move eyes rapidly between fixation points.
+
+ hedId
+ HED_0012084
+
+
+
+ Squint
+ Squeeze one or both eyes partly closed in an attempt to see more clearly or as a reaction to strong light.
+
+ hedId
+ HED_0012085
+
+
+
+ Stare
+ Look fixedly or vacantly at someone or something with eyes wide open.
+
+ hedId
+ HED_0012086
+
+
+
+
+ Move-face
+ Move the face or jaw.
+
+ hedId
+ HED_0012087
+
+
+ Bite
+ Seize with teeth or jaws an object or organism so as to grip or break the surface covering.
+
+ hedId
+ HED_0012088
+
+
+
+ Burp
+ Noisily release air from the stomach through the mouth. Belch.
+
+ hedId
+ HED_0012089
+
+
+
+ Chew
+ Repeatedly grinding, tearing, and or crushing with teeth or jaws.
+
+ hedId
+ HED_0012090
+
+
+
+ Gurgle
+ Make a hollow bubbling sound like that made by water running out of a bottle.
+
+ hedId
+ HED_0012091
+
+
+
+ Swallow
+ Cause or allow something, especially food or drink to pass down the throat.
+
+ hedId
+ HED_0012092
+
+
+ Gulp
+ Swallow quickly or in large mouthfuls, often audibly, sometimes to indicate apprehension.
+
+ hedId
+ HED_0012093
+
+
+
+
+ Yawn
+ Take a deep involuntary inhalation with the mouth open often as a sign of drowsiness or boredom.
+
+ hedId
+ HED_0012094
+
+
+
+
+ Move-head
+ Move head.
+
+ hedId
+ HED_0012095
+
+
+ Lift-head
+ Tilt head back lifting chin.
+
+ hedId
+ HED_0012096
+
+
+
+ Lower-head
+ Move head downward so that eyes are in a lower position.
+
+ hedId
+ HED_0012097
+
+
+
+ Turn-head
+ Rotate head horizontally to look in a different direction.
+
+ hedId
+ HED_0012098
+
+
+
+
+ Move-lower-extremity
+ Move leg and/or foot.
+
+ hedId
+ HED_0012099
+
+
+ Curl-toes
+ Bend toes sometimes to grip.
+
+ hedId
+ HED_0012100
+
+
+
+ Hop
+ Jump on one foot.
+
+ hedId
+ HED_0012101
+
+
+
+ Jog
+ Run at a trot to exercise.
+
+ hedId
+ HED_0012102
+
+
+
+ Jump
+ Move off the ground or other surface through sudden muscular effort in the legs.
+
+ hedId
+ HED_0012103
+
+
+
+ Kick
+ Strike out or flail with the foot or feet.Strike using the leg, in unison usually with an area of the knee or lower using the foot.
+
+ hedId
+ HED_0012104
+
+
+
+ Pedal
+ Move by working the pedals of a bicycle or other machine.
+
+ hedId
+ HED_0012105
+
+
+
+ Press-foot
+ Move by pressing foot.
+
+ hedId
+ HED_0012106
+
+
+
+ Run
+ Travel on foot at a fast pace.
+
+ hedId
+ HED_0012107
+
+
+
+ Step
+ Put one leg in front of the other and shift weight onto it.
+
+ hedId
+ HED_0012108
+
+
+ Heel-strike
+ Strike the ground with the heel during a step.
+
+ hedId
+ HED_0012109
+
+
+
+ Toe-off
+ Push with toe as part of a stride.
+
+ hedId
+ HED_0012110
+
+
+
+
+ Trot
+ Run at a moderate pace, typically with short steps.
+
+ hedId
+ HED_0012111
+
+
+
+ Walk
+ Move at a regular pace by lifting and setting down each foot in turn never having both feet off the ground at once.
+
+ hedId
+ HED_0012112
+
+
+
+
+ Move-torso
+ Move body trunk.
+
+ hedId
+ HED_0012113
+
+
+
+ Move-upper-extremity
+ Move arm, shoulder, and/or hand.
+
+ hedId
+ HED_0012114
+
+
+ Drop
+ Let or cause to fall vertically.
+
+ hedId
+ HED_0012115
+
+
+
+ Grab
+ Seize suddenly or quickly. Snatch or clutch.
+
+ hedId
+ HED_0012116
+
+
+
+ Grasp
+ Seize and hold firmly.
+
+ hedId
+ HED_0012117
+
+
+
+ Hold-down
+ Prevent someone or something from moving by holding them firmly.
+
+ hedId
+ HED_0012118
+
+
+
+ Lift
+ Raising something to higher position.
+
+ hedId
+ HED_0012119
+
+
+
+ Make-fist
+ Close hand tightly with the fingers bent against the palm.
+
+ hedId
+ HED_0012120
+
+
+
+ Point
+ Draw attention to something by extending a finger or arm.
+
+ hedId
+ HED_0012121
+
+
+
+ Press
+ Apply pressure to something to flatten, shape, smooth or depress it. This action tag should be used to indicate key presses and mouse clicks.
+
+ relatedTag
+ Push
+
+
+ hedId
+ HED_0012122
+
+
+
+ Push
+ Apply force in order to move something away. Use Press to indicate a key press or mouse click.
+
+ relatedTag
+ Press
+
+
+ hedId
+ HED_0012123
+
+
+
+ Reach
+ Stretch out your arm in order to get or touch something.
+
+ hedId
+ HED_0012124
+
+
+
+ Release
+ Make available or set free.
+
+ hedId
+ HED_0012125
+
+
+
+ Retract
+ Draw or pull back.
+
+ hedId
+ HED_0012126
+
+
+
+ Scratch
+ Drag claws or nails over a surface or on skin.
+
+ hedId
+ HED_0012127
+
+
+
+ Snap-fingers
+ Make a noise by pushing second finger hard against thumb and then releasing it suddenly so that it hits the base of the thumb.
+
+ hedId
+ HED_0012128
+
+
+
+ Touch
+ Come into or be in contact with.
+
+ hedId
+ HED_0012129
+
+
+
-
-
- Vegetable
- Vegetable stuff.
-
- rooted
- Plant
-
- Carrot
- Carrot stuff
+ Perceive
+ Produce an internal, conscious image through stimulating a sensory system.
- annotation
- foodonto:has_botanical_name
+ hedId
+ HED_0012130
+
+ Hear
+ Give attention to a sound.
+
+ hedId
+ HED_0012131
+
+
+
+ See
+ Direct gaze toward someone or something or in a specified direction.
+
+ hedId
+ HED_0012132
+
+
+
+ Sense-by-touch
+ Sense something through receptors in the skin.
+
+ hedId
+ HED_0012133
+
+
+
+ Smell
+ Inhale in order to ascertain an odor or scent.
+
+ hedId
+ HED_0012134
+
+
+
+ Taste
+ Sense a flavor in the mouth and throat on contact with a substance.
+
+ hedId
+ HED_0012135
+
+
-
-
-
-
- myAngleUnits
-
- defaultUnits
- deg
-
-
- deg
+
+ Perform
+ Carry out or accomplish an action, task, or function.
- SIUnit
+ hedId
+ HED_0012136
+
+ Close
+ Act as to blocked against entry or passage.
+
+ hedId
+ HED_0012137
+
+
+
+ Collide-with
+ Hit with force when moving.
+
+ hedId
+ HED_0012138
+
+
+
+ Halt
+ Bring or come to an abrupt stop.
+
+ hedId
+ HED_0012139
+
+
+
+ Modify
+ Change something.
+
+ hedId
+ HED_0012140
+
+
+
+ Open
+ Widen an aperture, door, or gap, especially one allowing access to something.
+
+ hedId
+ HED_0012141
+
+
+
+ Operate
+ Control the functioning of a machine, process, or system.
+
+ hedId
+ HED_0012142
+
+
+
+ Play
+ Engage in activity for enjoyment and recreation rather than a serious or practical purpose.
+
+ hedId
+ HED_0012143
+
+
+
+ Read
+ Interpret something that is written or printed.
+
+ hedId
+ HED_0012144
+
+
+
+ Repeat
+ Make do or perform again.
+
+ hedId
+ HED_0012145
+
+
+
+ Rest
+ Be inactive in order to regain strength, health, or energy.
+
+ hedId
+ HED_0012146
+
+
+
+ Ride
+ Ride on an animal or in a vehicle. Ride conveys some notion that another agent has partial or total control of the motion.
+
+ hedId
+ HED_0012147
+
+
+
+ Write
+ Communicate or express by means of letters or symbols written or imprinted on a surface.
+
+ hedId
+ HED_0012148
+
+
+
+
+ Think
+ Direct the mind toward someone or something or use the mind actively to form connected ideas.
- conversionFactor
- 1.0
+ hedId
+ HED_0012149
-
-
-
-
-
-
- digitClass
- Values that can only have digits.
-
- allowedCharacter
- digits
-
-
-
-
-
- myAnnotation
- Special annotations.
-
- elementDomain
-
-
- stringRange
-
-
- annotationProperty
-
-
-
-
+
+ Allow
+ Allow access to something such as allowing a car to pass.
+
+ hedId
+ HED_0012150
+
+
+
+ Attend-to
+ Focus mental experience on specific targets.
+
+ hedId
+ HED_0012151
+
+
+
+ Count
+ Tally items either silently or aloud.
+
+ hedId
+ HED_0012152
+
+
+
+ Deny
+ Refuse to give or grant something requested or desired by someone.
+
+ hedId
+ HED_0012153
+
+
+
+ Detect
+ Discover or identify the presence or existence of something.
+
+ hedId
+ HED_0012154
+
+
+
+ Discriminate
+ Recognize a distinction.
+
+ hedId
+ HED_0012155
+
+
+
+ Encode
+ Convert information or an instruction into a particular form.
+
+ hedId
+ HED_0012156
+
+
+
+ Evade
+ Escape or avoid, especially by cleverness or trickery.
+
+ hedId
+ HED_0012157
+
+
+
+ Generate
+ Cause something, especially an emotion or situation to arise or come about.
+
+ hedId
+ HED_0012158
+
+
+
+ Identify
+ Establish or indicate who or what someone or something is.
+
+ hedId
+ HED_0012159
+
+
+
+ Imagine
+ Form a mental image or concept of something.
+
+ hedId
+ HED_0012160
+
+
+
+ Judge
+ Evaluate evidence to make a decision or form a belief.
+
+ hedId
+ HED_0012161
+
+
+
+ Learn
+ Adaptively change behavior as the result of experience.
+
+ hedId
+ HED_0012162
+
+
+
+ Memorize
+ Adaptively change behavior as the result of experience.
+
+ hedId
+ HED_0012163
+
+
+
+ Plan
+ Think about the activities required to achieve a desired goal.
+
+ hedId
+ HED_0012164
+
+
+
+ Predict
+ Say or estimate that something will happen or will be a consequence of something without having exact information.
+
+ hedId
+ HED_0012165
+
+
+
+ Recall
+ Remember information by mental effort.
+
+ hedId
+ HED_0012166
+
+
+
+ Recognize
+ Identify someone or something from having encountered them before.
+
+ hedId
+ HED_0012167
+
+
+
+ Respond
+ React to something such as a treatment or a stimulus.
+
+ hedId
+ HED_0012168
+
+
+
+ Switch-attention
+ Transfer attention from one focus to another.
+
+ hedId
+ HED_0012169
+
+
+
+ Track
+ Follow a person, animal, or object through space or time.
+
+ hedId
+ HED_0012170
+
+
+
+
+
+ Item
+ An independently existing thing (living or nonliving).
+
+ extensionAllowed
+
+
+ hedId
+ HED_0012171
+
+
+ Biological-item
+ An entity that is biological, that is related to living organisms.
+
+ hedId
+ HED_0012172
+
+
+ Anatomical-item
+ A biological structure, system, fluid or other substance excluding single molecular entities.
+
+ hedId
+ HED_0012173
+
+
+ Body
+ The biological structure representing an organism.
+
+ hedId
+ HED_0012174
+
+
+
+ Body-part
+ Any part of an organism.
+
+ hedId
+ HED_0012175
+
+
+ Head
+ The upper part of the human body, or the front or upper part of the body of an animal, typically separated from the rest of the body by a neck, and containing the brain, mouth, and sense organs.
+
+ hedId
+ HED_0012176
+
+
+
+ Head-part
+ A part of the head.
+
+ hedId
+ HED_0013200
+
+
+ Brain
+ Organ inside the head that is made up of nerve cells and controls the body.
+
+ hedId
+ HED_0012177
+
+
+
+ Brain-region
+ A region of the brain.
+
+ hedId
+ HED_0013201
+
+
+ Cerebellum
+ A major structure of the brain located near the brainstem. It plays a key role in motor control, coordination, precision, with contributions to different cognitive functions.
+
+ hedId
+ HED_0013202
+
+
+
+ Frontal-lobe
+
+ hedId
+ HED_0012178
+
+
+
+ Occipital-lobe
+
+ hedId
+ HED_0012179
+
+
+
+ Parietal-lobe
+
+ hedId
+ HED_0012180
+
+
+
+ Temporal-lobe
+
+ hedId
+ HED_0012181
+
+
+
+
+ Ear
+ A sense organ needed for the detection of sound and for establishing balance.
+
+ hedId
+ HED_0012182
+
+
+
+ Face
+ The anterior portion of the head extending from the forehead to the chin and ear to ear. The facial structures contain the eyes, nose and mouth, cheeks and jaws.
+
+ hedId
+ HED_0012183
+
+
+
+ Face-part
+ A part of the face.
+
+ hedId
+ HED_0013203
+
+
+ Cheek
+ The fleshy part of the face bounded by the eyes, nose, ear, and jawline.
+
+ hedId
+ HED_0012184
+
+
+
+ Chin
+ The part of the face below the lower lip and including the protruding part of the lower jaw.
+
+ hedId
+ HED_0012185
+
+
+
+ Eye
+ The organ of sight or vision.
+
+ hedId
+ HED_0012186
+
+
+
+ Eyebrow
+ The arched strip of hair on the bony ridge above each eye socket.
+
+ hedId
+ HED_0012187
+
+
+
+ Eyelid
+ The folds of the skin that cover the eye when closed.
+
+ hedId
+ HED_0012188
+
+
+
+ Forehead
+ The part of the face between the eyebrows and the normal hairline.
+
+ hedId
+ HED_0012189
+
+
+
+ Lip
+ Fleshy fold which surrounds the opening of the mouth.
+
+ hedId
+ HED_0012190
+
+
+
+ Mouth
+ The proximal portion of the digestive tract, containing the oral cavity and bounded by the oral opening.
+
+ hedId
+ HED_0012191
+
+
+
+ Mouth-part
+ A part of the mouth.
+
+ hedId
+ HED_0013204
+
+
+ Teeth
+ The hard bone-like structures in the jaws. A collection of teeth arranged in some pattern in the mouth or other part of the body.
+
+ hedId
+ HED_0012193
+
+
+
+ Tongue
+ A muscular organ in the mouth with significant role in mastication, swallowing, speech, and taste.
+
+ hedId
+ HED_0013205
+
+
+
+
+ Nose
+ A structure of special sense serving as an organ of the sense of smell and as an entrance to the respiratory tract.
+
+ hedId
+ HED_0012192
+
+
+
+
+ Hair
+ The filamentous outgrowth of the epidermis.
+
+ hedId
+ HED_0012194
+
+
+
+
+ Lower-extremity
+ Refers to the whole inferior limb (leg and/or foot).
+
+ hedId
+ HED_0012195
+
+
+
+ Lower-extremity-part
+ A part of the lower extremity.
+
+ hedId
+ HED_0013206
+
+
+ Ankle
+ A gliding joint between the distal ends of the tibia and fibula and the proximal end of the talus.
+
+ hedId
+ HED_0012196
+
+
+
+ Foot
+ The structure found below the ankle joint required for locomotion.
+
+ hedId
+ HED_0012198
+
+
+
+ Foot-part
+ A part of the foot.
+
+ hedId
+ HED_0013207
+
+
+ Heel
+ The back of the foot below the ankle.
+
+ hedId
+ HED_0012200
+
+
+
+ Instep
+ The part of the foot between the ball and the heel on the inner side.
+
+ hedId
+ HED_0012201
+
+
+
+ Toe
+ A digit of the foot.
+
+ hedId
+ HED_0013208
+
+
+ Big-toe
+ The largest toe on the inner side of the foot.
+
+ hedId
+ HED_0012199
+
+
+
+ Little-toe
+ The smallest toe located on the outer side of the foot.
+
+ hedId
+ HED_0012202
+
+
+
+
+ Toes
+ The terminal digits of the foot. Used to describe collective attributes of all toes, such as bending all toes
+
+ relatedTag
+ Toe
+
+
+ hedId
+ HED_0012203
+
+
+
+
+ Knee
+ A joint connecting the lower part of the femur with the upper part of the tibia.
+
+ hedId
+ HED_0012204
+
+
+
+ Lower-leg
+ The part of the leg between the knee and the ankle.
+
+ hedId
+ HED_0013209
+
+
+
+ Lower-leg-part
+ A part of the lower leg.
+
+ hedId
+ HED_0013210
+
+
+ Calf
+ The fleshy part at the back of the leg below the knee.
+
+ hedId
+ HED_0012197
+
+
+
+ Shin
+ Front part of the leg below the knee.
+
+ hedId
+ HED_0012205
+
+
+
+
+ Upper-leg
+ The part of the leg between the hip and the knee.
+
+ hedId
+ HED_0013211
+
+
+
+ Upper-leg-part
+ A part of the upper leg.
+
+ hedId
+ HED_0013212
+
+
+ Thigh
+ Upper part of the leg between hip and knee.
+
+ hedId
+ HED_0012206
+
+
+
+
+
+ Neck
+ The part of the body connecting the head to the torso, containing the cervical spine and vital pathways of nerves, blood vessels, and the airway.
+
+ hedId
+ HED_0013213
+
+
+
+ Torso
+ The body excluding the head and neck and limbs.
+
+ hedId
+ HED_0012207
+
+
+
+ Torso-part
+ A part of the torso.
+
+ hedId
+ HED_0013214
+
+
+ Abdomen
+ The part of the body between the thorax and the pelvis.
+
+ hedId
+ HED_0013215
+
+
+
+ Navel
+ The central mark on the abdomen created by the detachment of the umbilical cord after birth.
+
+ hedId
+ HED_0013216
+
+
+
+ Pelvis
+ The bony structure at the base of the spine supporting the legs.
+
+ hedId
+ HED_0013217
+
+
+
+ Pelvis-part
+ A part of the pelvis.
+
+ hedId
+ HED_0013218
+
+
+ Buttocks
+ The round fleshy parts that form the lower rear area of a human trunk.
+
+ hedId
+ HED_0012208
+
+
+
+ Genitalia
+ The external organs of reproduction and urination, located in the pelvic region. This includes both male and female genital structures.
+
+ hedId
+ HED_0013219
+
+
+
+ Gentalia
+ The external organs of reproduction. Deprecated due to spelling error. Use Genitalia.
+
+ deprecatedFrom
+ 8.1.0
+
+
+ hedId
+ HED_0012209
+
+
+
+ Hip
+ The lateral prominence of the pelvis from the waist to the thigh.
+
+ hedId
+ HED_0012210
+
+
+
+
+ Torso-back
+ The rear surface of the human body from the shoulders to the hips.
+
+ hedId
+ HED_0012211
+
+
+
+ Torso-chest
+ The anterior side of the thorax from the neck to the abdomen.
+
+ hedId
+ HED_0012212
+
+
+
+ Viscera
+ Internal organs of the body.
+
+ hedId
+ HED_0012213
+
+
+
+ Waist
+ The abdominal circumference at the navel.
+
+ hedId
+ HED_0012214
+
+
+
+
+ Upper-extremity
+ Refers to the whole superior limb (shoulder, arm, elbow, wrist, hand).
+
+ hedId
+ HED_0012215
+
+
+
+ Upper-extremity-part
+ A part of the upper extremity.
+
+ hedId
+ HED_0013220
+
+
+ Elbow
+ A type of hinge joint located between the forearm and upper arm.
+
+ hedId
+ HED_0012216
+
+
+
+ Forearm
+ Lower part of the arm between the elbow and wrist.
+
+ hedId
+ HED_0012217
+
+
+
+ Forearm-part
+ A part of the forearm.
+
+ hedId
+ HED_0013221
+
+
+
+ Hand
+ The distal portion of the upper extremity. It consists of the carpus, metacarpus, and digits.
+
+ hedId
+ HED_0012218
+
+
+
+ Hand-part
+ A part of the hand.
+
+ hedId
+ HED_0013222
+
+
+ Finger
+ Any of the digits of the hand.
+
+ hedId
+ HED_0012219
+
+
+ Index-finger
+ The second finger from the radial side of the hand, next to the thumb.
+
+ hedId
+ HED_0012220
+
+
+
+ Little-finger
+ The fifth and smallest finger from the radial side of the hand.
+
+ hedId
+ HED_0012221
+
+
+
+ Middle-finger
+ The middle or third finger from the radial side of the hand.
+
+ hedId
+ HED_0012222
+
+
+
+ Ring-finger
+ The fourth finger from the radial side of the hand.
+
+ hedId
+ HED_0012223
+
+
+
+ Thumb
+ The thick and short hand digit which is next to the index finger in humans.
+
+ hedId
+ HED_0012224
+
+
+
+
+ Fingers
+ The terminal digits of the hand. Used to describe collective attributes of all fingers, such as bending all fingers
+
+ relatedTag
+ Finger
+
+
+ hedId
+ HED_0013223
+
+
+
+ Knuckles
+ A part of a finger at a joint where the bone is near the surface, especially where the finger joins the hand.
+
+ hedId
+ HED_0012225
+
+
+
+ Palm
+ The part of the inner surface of the hand that extends from the wrist to the bases of the fingers.
+
+ hedId
+ HED_0012226
+
+
+
+
+ Shoulder
+ Joint attaching upper arm to trunk.
+
+ hedId
+ HED_0012227
+
+
+
+ Upper-arm
+ Portion of arm between shoulder and elbow.
+
+ hedId
+ HED_0012228
+
+
+
+ Upper-arm-part
+ A part of the upper arm.
+
+ hedId
+ HED_0013224
+
+
+
+ Wrist
+ A joint between the distal end of the radius and the proximal row of carpal bones.
+
+ hedId
+ HED_0012229
+
+
+
+
+
+
+ Organism
+ A living entity, more specifically a biological entity that consists of one or more cells and is capable of genomic replication (independently or not).
+
+ hedId
+ HED_0012230
+
+
+ Animal
+ A living organism that has membranous cell walls, requires oxygen and organic foods, and is capable of voluntary movement.
+
+ hedId
+ HED_0012231
+
+
+
+ Human
+ The bipedal primate mammal Homo sapiens.
+
+ hedId
+ HED_0012232
+
+
+
+ Plant
+ Any living organism that typically synthesizes its food from inorganic substances and possesses cellulose cell walls.
+
+ hedId
+ HED_0012233
+
+
+ Fruit
+ Fruit stuff.
+
+ rooted
+ Plant
+
+
+ inLibrary
+ testlib
+
+
+ Apple
+ Apple stuff
+
+ annotation
+ foodonto:has_botanical_name
+
+
+ inLibrary
+ testlib
+
+
+ Honey-crisp
+ Type of apple
+
+ inLibrary
+ testlib
+
+
+
+
+
+ Vegetable
+ Vegetable stuff.
+
+ rooted
+ Plant
+
+
+ inLibrary
+ testlib
+
+
+ Carrot
+ Carrot stuff
+
+ annotation
+ foodonto:has_botanical_name
+
+
+ inLibrary
+ testlib
+
+
+
+
+
+
+
+ Language-item
+ An entity related to a systematic means of communicating by the use of sounds, symbols, or gestures.
+
+ suggestedTag
+ Sensory-presentation
+
+
+ hedId
+ HED_0012234
+
+
+ Character
+ A mark or symbol used in writing.
+
+ hedId
+ HED_0012235
+
+
+
+ Clause
+ A unit of grammatical organization next below the sentence in rank, usually consisting of a subject and predicate.
+
+ hedId
+ HED_0012236
+
+
+
+ Glyph
+ A hieroglyphic character, symbol, or pictograph.
+
+ hedId
+ HED_0012237
+
+
+
+ Nonword
+ An unpronounceable group of letters or speech sounds that is surrounded by white space when written, is not accepted as a word by native speakers.
+
+ hedId
+ HED_0012238
+
+
+
+ Paragraph
+ A distinct section of a piece of writing, usually dealing with a single theme.
+
+ hedId
+ HED_0012239
+
+
+
+ Phoneme
+ Any of the minimally distinct units of sound in a specified language that distinguish one word from another.
+
+ hedId
+ HED_0012240
+
+
+
+ Phrase
+ A phrase is a group of words functioning as a single unit in the syntax of a sentence.
+
+ hedId
+ HED_0012241
+
+
+
+ Pseudoword
+ A pronounceable group of letters or speech sounds that looks or sounds like a word but that is not accepted as such by native speakers.
+
+ hedId
+ HED_0012242
+
+
+
+ Sentence
+ A set of words that is complete in itself, conveying a statement, question, exclamation, or command and typically containing an explicit or implied subject and a predicate containing a finite verb.
+
+ hedId
+ HED_0012243
+
+
+
+ Syllable
+ A unit of pronunciation having a vowel or consonant sound, with or without surrounding consonants, forming the whole or a part of a word.
+
+ hedId
+ HED_0012244
+
+
+
+ Textblock
+ A block of text.
+
+ hedId
+ HED_0012245
+
+
+
+ Word
+ A single distinct meaningful element of speech or writing, used with others (or sometimes alone) to form a sentence and typically surrounded by white space when written or printed.
+
+ hedId
+ HED_0012246
+
+
+
+
+ Object
+ Something perceptible by one or more of the senses, especially by vision or touch. A material thing.
+
+ suggestedTag
+ Sensory-presentation
+
+
+ hedId
+ HED_0012247
+
+
+ Geometric-object
+ An object or a representation that has structure and topology in space.
+
+ hedId
+ HED_0012248
+
+
+ 2D-shape
+ A planar, two-dimensional shape.
+
+ hedId
+ HED_0012249
+
+
+ Arrow
+ A shape with a pointed end indicating direction.
+
+ hedId
+ HED_0012250
+
+
+
+ Clockface
+ The dial face of a clock. A location identifier based on clock-face-position numbering or anatomic subregion.
+
+ hedId
+ HED_0012251
+
+
+
+ Cross
+ A figure or mark formed by two intersecting lines crossing at their midpoints.
+
+ hedId
+ HED_0012252
+
+
+
+ Dash
+ A horizontal stroke in writing or printing to mark a pause or break in sense or to represent omitted letters or words.
+
+ hedId
+ HED_0012253
+
+
+
+ Ellipse
+ A closed plane curve resulting from the intersection of a circular cone and a plane cutting completely through it, especially a plane not parallel to the base.
+
+ hedId
+ HED_0012254
+
+
+ Circle
+ A ring-shaped structure with every point equidistant from the center.
+
+ hedId
+ HED_0012255
+
+
+
+
+ Rectangle
+ A parallelogram with four right angles.
+
+ hedId
+ HED_0012256
+
+
+ Square
+ A square is a special rectangle with four equal sides.
+
+ hedId
+ HED_0012257
+
+
+
+
+ Single-point
+ A point is a geometric entity that is located in a zero-dimensional spatial region and whose position is defined by its coordinates in some coordinate system.
+
+ hedId
+ HED_0012258
+
+
+
+ Star
+ A conventional or stylized representation of a star, typically one having five or more points.
+
+ hedId
+ HED_0012259
+
+
+
+ Triangle
+ A three-sided polygon.
+
+ hedId
+ HED_0012260
+
+
+
+
+ 3D-shape
+ A geometric three-dimensional shape.
+
+ hedId
+ HED_0012261
+
+
+ Box
+ A square or rectangular vessel, usually made of cardboard or plastic.
+
+ hedId
+ HED_0012262
+
+
+ Cube
+ A solid or semi-solid in the shape of a three dimensional square.
+
+ hedId
+ HED_0012263
+
+
+
+
+ Cone
+ A shape whose base is a circle and whose sides taper up to a point.
+
+ hedId
+ HED_0012264
+
+
+
+ Cylinder
+ A surface formed by circles of a given radius that are contained in a plane perpendicular to a given axis, whose centers align on the axis.
+
+ hedId
+ HED_0012265
+
+
+
+ Ellipsoid
+ A closed plane curve resulting from the intersection of a circular cone and a plane cutting completely through it, especially a plane not parallel to the base.
+
+ hedId
+ HED_0012266
+
+
+ Sphere
+ A solid or hollow three-dimensional object bounded by a closed surface such that every point on the surface is equidistant from the center.
+
+ hedId
+ HED_0012267
+
+
+
+
+ Pyramid
+ A polyhedron of which one face is a polygon of any number of sides, and the other faces are triangles with a common vertex.
+
+ hedId
+ HED_0012268
+
+
+
+
+ Pattern
+ An arrangement of objects, facts, behaviors, or other things which have scientific, mathematical, geometric, statistical, or other meaning.
+
+ hedId
+ HED_0012269
+
+
+ Dots
+ A small round mark or spot.
+
+ hedId
+ HED_0012270
+
+
+
+ LED-pattern
+ A pattern created by lighting selected members of a fixed light emitting diode array.
+
+ hedId
+ HED_0012271
+
+
+
+
+
+ Ingestible-object
+ Something that can be taken into the body by the mouth for digestion or absorption.
+
+ hedId
+ HED_0012272
+
+
+
+ Man-made-object
+ Something constructed by human means.
+
+ hedId
+ HED_0012273
+
+
+ Building
+ A structure that usually has a roof and walls and stands more or less permanently in one place.
+
+ hedId
+ HED_0012274
+
+
+
+ Building-part
+ A part of a building.
+
+ hedId
+ HED_0013231
+
+
+ Attic
+ A room or a space immediately below the roof of a building.
+
+ hedId
+ HED_0012275
+
+
+
+ Basement
+ The part of a building that is wholly or partly below ground level.
+
+ hedId
+ HED_0012276
+
+
+
+ Door
+ A door is a hinged or otherwise movable barrier that allows entry into and exit from an enclosed structure.
+
+ hedId
+ HED_0013232
+
+
+
+ Entrance
+ The means or place of entry.
+
+ hedId
+ HED_0012277
+
+
+
+ Roof
+ A roof is the covering on the uppermost part of a building which provides protection from animals and weather, notably rain, but also heat, wind and sunlight.
+
+ hedId
+ HED_0012278
+
+
+
+ Room
+ An area within a building enclosed by walls and floor and ceiling.
+
+ hedId
+ HED_0012279
+
+
+
+ Window
+ An opening in a wall, roof, or vehicle that allows light and air to enter, typically covered by glass or other transparent material.
+
+ hedId
+ HED_0013233
+
+
+
+
+ Clothing
+ A covering designed to be worn on the body.
+
+ hedId
+ HED_0012280
+
+
+
+ Device
+ An object contrived for a specific purpose.
+
+ hedId
+ HED_0012281
+
+
+ Assistive-device
+ A device that help an individual accomplish a task.
+
+ hedId
+ HED_0012282
+
+
+ Glasses
+ Frames with lenses worn in front of the eye for vision correction, eye protection, or protection from UV rays.
+
+ hedId
+ HED_0012283
+
+
+
+ Writing-device
+ A device used for writing.
+
+ hedId
+ HED_0012284
+
+
+ Pen
+ A common writing instrument used to apply ink to a surface for writing or drawing.
+
+ hedId
+ HED_0012285
+
+
+
+ Pencil
+ An implement for writing or drawing that is constructed of a narrow solid pigment core in a protective casing that prevents the core from being broken or marking the hand.
+
+ hedId
+ HED_0012286
+
+
+
+
+
+ Computing-device
+ An electronic device which take inputs and processes results from the inputs.
+
+ hedId
+ HED_0012287
+
+
+ Cellphone
+ A telephone with access to a cellular radio system so it can be used over a wide area, without a physical connection to a network.
+
+ hedId
+ HED_0012288
+
+
+
+ Desktop-computer
+ A computer suitable for use at an ordinary desk.
+
+ hedId
+ HED_0012289
+
+
+
+ Laptop-computer
+ A computer that is portable and suitable for use while traveling.
+
+ hedId
+ HED_0012290
+
+
+
+ Tablet-computer
+ A small portable computer that accepts input directly on to its screen rather than via a keyboard or mouse.
+
+ hedId
+ HED_0012291
+
+
+
+
+ Engine
+ A motor is a machine designed to convert one or more forms of energy into mechanical energy.
+
+ hedId
+ HED_0012292
+
+
+
+ IO-device
+ Hardware used by a human (or other system) to communicate with a computer.
+
+ hedId
+ HED_0012293
+
+
+ Input-device
+ A piece of equipment used to provide data and control signals to an information processing system such as a computer or information appliance.
+
+ hedId
+ HED_0012294
+
+
+ Computer-mouse
+ A hand-held pointing device that detects two-dimensional motion relative to a surface.
+
+ hedId
+ HED_0012295
+
+
+ Mouse-button
+ An electric switch on a computer mouse which can be pressed or clicked to select or interact with an element of a graphical user interface.
+
+ hedId
+ HED_0012296
+
+
+
+ Scroll-wheel
+ A scroll wheel or mouse wheel is a wheel used for scrolling made of hard plastic with a rubbery surface usually located between the left and right mouse buttons and is positioned perpendicular to the mouse surface.
+
+ hedId
+ HED_0012297
+
+
+
+
+ Joystick
+ A control device that uses a movable handle to create two-axis input for a computer device.
+
+ hedId
+ HED_0012298
+
+
+
+ Keyboard
+ A device consisting of mechanical keys that are pressed to create input to a computer.
+
+ hedId
+ HED_0012299
+
+
+ Keyboard-key
+ A button on a keyboard usually representing letters, numbers, functions, or symbols.
+
+ hedId
+ HED_0012300
+
+
+ #
+ Value of a keyboard key.
+
+ takesValue
+
+
+ hedId
+ HED_0012301
+
+
+
+
+
+ Keypad
+ A device consisting of keys, usually in a block arrangement, that provides limited input to a system.
+
+ hedId
+ HED_0012302
+
+
+ Keypad-key
+ A key on a separate section of a computer keyboard that groups together numeric keys and those for mathematical or other special functions in an arrangement like that of a calculator.
+
+ hedId
+ HED_0012303
+
+
+ #
+ Value of keypad key.
+
+ takesValue
+
+
+ hedId
+ HED_0012304
+
+
+
+
+
+ Microphone
+ A device designed to convert sound to an electrical signal.
+
+ hedId
+ HED_0012305
+
+
+
+ Push-button
+ A switch designed to be operated by pressing a button.
+
+ hedId
+ HED_0012306
+
+
+
+
+ Output-device
+ Any piece of computer hardware equipment which converts information into human understandable form.
+
+ hedId
+ HED_0012307
+
+
+ Auditory-device
+ A device designed to produce sound.
+
+ hedId
+ HED_0012308
+
+
+ Headphones
+ An instrument that consists of a pair of small loudspeakers, or less commonly a single speaker, held close to ears and connected to a signal source such as an audio amplifier, radio, CD player or portable media player.
+
+ hedId
+ HED_0012309
+
+
+
+ Loudspeaker
+ A device designed to convert electrical signals to sounds that can be heard.
+
+ hedId
+ HED_0012310
+
+
+
+
+ Display-device
+ An output device for presentation of information in visual or tactile form the latter used for example in tactile electronic displays for blind people.
+
+ hedId
+ HED_0012311
+
+
+ Computer-screen
+ An electronic device designed as a display or a physical device designed to be a protective mesh work.
+
+ hedId
+ HED_0012312
+
+
+
+ Head-mounted-display
+ An instrument that functions as a display device, worn on the head or as part of a helmet, that has a small display optic in front of one (monocular HMD) or each eye (binocular HMD).
+
+ hedId
+ HED_0012314
+
+
+
+ LED-display
+ A LED display is a flat panel display that uses an array of light-emitting diodes as pixels for a video display.
+
+ hedId
+ HED_0012315
+
+
+
+ Screen-window
+ A part of a computer screen that contains a display different from the rest of the screen.
+
+ hedId
+ HED_0012313
+
+
+
+
+
+ Recording-device
+ A device that copies information in a signal into a persistent information bearer.
+
+ hedId
+ HED_0012316
+
+
+ EEG-recorder
+ A device for recording electric currents in the brain using electrodes applied to the scalp, to the surface of the brain, or placed within the substance of the brain.
+
+ hedId
+ HED_0012317
+
+
+
+ EMG-recorder
+ A device for recording electrical activity of muscles using electrodes on the body surface or within the muscular mass.
+
+ hedId
+ HED_0013225
+
+
+
+ File-storage
+ A device for recording digital information to a permanent media.
+
+ hedId
+ HED_0012318
+
+
+
+ MEG-recorder
+ A device for measuring the magnetic fields produced by electrical activity in the brain, usually conducted externally.
+
+ hedId
+ HED_0012319
+
+
+
+ Motion-capture
+ A device for recording the movement of objects or people.
+
+ hedId
+ HED_0012320
+
+
+
+ Tape-recorder
+ A device for recording and reproduction usually using magnetic tape for storage that can be saved and played back.
+
+ hedId
+ HED_0012321
+
+
+
+
+ Touchscreen
+ A control component that operates an electronic device by pressing the display on the screen.
+
+ hedId
+ HED_0012322
+
+
+
+
+ Machine
+ A human-made device that uses power to apply forces and control movement to perform an action.
+
+ hedId
+ HED_0012323
+
+
+
+ Measurement-device
+ A device that measures something.
+
+ hedId
+ HED_0012324
+
+
+ Clock
+ A device designed to indicate the time of day or to measure the time duration of an event or action.
+
+ hedId
+ HED_0012325
+
+
+
+
+ Robot
+ A mechanical device that sometimes resembles a living animal and is capable of performing a variety of often complex human tasks on command or by being programmed in advance.
+
+ hedId
+ HED_0012327
+
+
+
+ Tool
+ A component that is not part of a device but is designed to support its assembly or operation.
+
+ hedId
+ HED_0012328
+
+
+
+
+ Document
+ A physical object, or electronic counterpart, that is characterized by containing writing which is meant to be human-readable.
+
+ hedId
+ HED_0012329
+
+
+ Book
+ A volume made up of pages fastened along one edge and enclosed between protective covers.
+
+ hedId
+ HED_0012330
+
+
+
+ Letter
+ A written message addressed to a person or organization.
+
+ hedId
+ HED_0012331
+
+
+
+ Note
+ A brief written record.
+
+ hedId
+ HED_0012332
+
+
+
+ Notebook
+ A book for notes or memoranda.
+
+ hedId
+ HED_0012333
+
+
+
+ Questionnaire
+ A document consisting of questions and possibly responses, depending on whether it has been filled out.
+
+ hedId
+ HED_0012334
+
+
+
+
+ Furnishing
+ Furniture, fittings, and other decorative accessories, such as curtains and carpets, for a house or room.
+
+ hedId
+ HED_0012335
+
+
+
+ Manufactured-material
+ Substances created or extracted from raw materials.
+
+ hedId
+ HED_0012336
+
+
+ Ceramic
+ A hard, brittle, heat-resistant and corrosion-resistant material made by shaping and then firing a nonmetallic mineral, such as clay, at a high temperature.
+
+ hedId
+ HED_0012337
+
+
+
+ Glass
+ A brittle transparent solid with irregular atomic structure.
+
+ hedId
+ HED_0012338
+
+
+
+ Paper
+ A thin sheet material produced by mechanically or chemically processing cellulose fibres derived from wood, rags, grasses or other vegetable sources in water.
+
+ hedId
+ HED_0012339
+
+
+
+ Plastic
+ Various high-molecular-weight thermoplastic or thermo-setting polymers that are capable of being molded, extruded, drawn, or otherwise shaped and then hardened into a form.
+
+ hedId
+ HED_0012340
+
+
+
+ Steel
+ An alloy made up of iron with typically a few tenths of a percent of carbon to improve its strength and fracture resistance compared to iron.
+
+ hedId
+ HED_0012341
+
+
+
+
+ Media
+ Media are audio/visual/audiovisual modes of communicating information for mass consumption.
+
+ hedId
+ HED_0012342
+
+
+ Media-clip
+ A short segment of media.
+
+ hedId
+ HED_0012343
+
+
+ Audio-clip
+ A short segment of audio.
+
+ hedId
+ HED_0012344
+
+
+
+ Audiovisual-clip
+ A short media segment containing both audio and video.
+
+ hedId
+ HED_0012345
+
+
+
+ Video-clip
+ A short segment of video.
+
+ hedId
+ HED_0012346
+
+
+
+
+ Visualization
+ An planned process that creates images, diagrams or animations from the input data.
+
+ hedId
+ HED_0012347
+
+
+ Animation
+ A form of graphical illustration that changes with time to give a sense of motion or represent dynamic changes in the portrayal.
+
+ hedId
+ HED_0012348
+
+
+
+ Art-installation
+ A large-scale, mixed-media constructions, often designed for a specific place or for a temporary period of time.
+
+ hedId
+ HED_0012349
+
+
+
+ Braille
+ A display using a system of raised dots that can be read with the fingers by people who are blind.
+
+ hedId
+ HED_0012350
+
+
+
+ Image
+ Any record of an imaging event whether physical or electronic.
+
+ hedId
+ HED_0012351
+
+
+ Cartoon
+ A type of illustration, sometimes animated, typically in a non-realistic or semi-realistic style. The specific meaning has evolved over time, but the modern usage usually refers to either an image or series of images intended for satire, caricature, or humor. A motion picture that relies on a sequence of illustrations for its animation.
+
+ hedId
+ HED_0012352
+
+
+
+ Drawing
+ A representation of an object or outlining a figure, plan, or sketch by means of lines.
+
+ hedId
+ HED_0012353
+
+
+
+ Icon
+ A sign (such as a word or graphic symbol) whose form suggests its meaning.
+
+ hedId
+ HED_0012354
+
+
+
+ Painting
+ A work produced through the art of painting.
+
+ hedId
+ HED_0012355
+
+
+
+ Photograph
+ An image recorded by a camera.
+
+ hedId
+ HED_0012356
+
+
+
+
+ Movie
+ A sequence of images displayed in succession giving the illusion of continuous movement.
+
+ hedId
+ HED_0012357
+
+
+
+ Outline-visualization
+ A visualization consisting of a line or set of lines enclosing or indicating the shape of an object in a sketch or diagram.
+
+ hedId
+ HED_0012358
+
+
+
+ Point-light-visualization
+ A display in which action is depicted using a few points of light, often generated from discrete sensors in motion capture.
+
+ hedId
+ HED_0012359
+
+
+
+ Sculpture
+ A two- or three-dimensional representative or abstract forms, especially by carving stone or wood or by casting metal or plaster.
+
+ hedId
+ HED_0012360
+
+
+
+ Stick-figure-visualization
+ A drawing showing the head of a human being or animal as a circle and all other parts as straight lines.
+
+ hedId
+ HED_0012361
+
+
+
+
+
+ Navigational-object
+ An object whose purpose is to assist directed movement from one location to another.
+
+ hedId
+ HED_0012362
+
+
+ Path
+ A trodden way. A way or track laid down for walking or made by continual treading.
+
+ hedId
+ HED_0012363
+
+
+
+ Road
+ An open way for the passage of vehicles, persons, or animals on land.
+
+ hedId
+ HED_0012364
+
+
+ Lane
+ A defined path with physical dimensions through which an object or substance may traverse.
+
+ hedId
+ HED_0012365
+
+
+
+
+ Runway
+ A paved strip of ground on a landing field for the landing and takeoff of aircraft.
+
+ hedId
+ HED_0012366
+
+
+
+
+ Vehicle
+ A mobile machine which transports people or cargo.
+
+ hedId
+ HED_0012367
+
+
+ Aircraft
+ A vehicle which is able to travel through air in an atmosphere.
+
+ hedId
+ HED_0012368
+
+
+
+ Bicycle
+ A human-powered, pedal-driven, single-track vehicle, having two wheels attached to a frame, one behind the other.
+
+ hedId
+ HED_0012369
+
+
+
+ Boat
+ A watercraft of any size which is able to float or plane on water.
+
+ hedId
+ HED_0012370
+
+
+
+ Car
+ A wheeled motor vehicle used primarily for the transportation of human passengers.
+
+ hedId
+ HED_0012371
+
+
+
+ Cart
+ A cart is a vehicle which has two wheels and is designed to transport human passengers or cargo.
+
+ hedId
+ HED_0012372
+
+
+
+ Tractor
+ A mobile machine specifically designed to deliver a high tractive effort at slow speeds, and mainly used for the purposes of hauling a trailer or machinery used in agriculture or construction.
+
+ hedId
+ HED_0012373
+
+
+
+ Train
+ A connected line of railroad cars with or without a locomotive.
+
+ hedId
+ HED_0012374
+
+
+
+ Truck
+ A motor vehicle which, as its primary function, transports cargo rather than human passengers.
+
+ hedId
+ HED_0012375
+
+
+
+
+
+ Natural-object
+ Something that exists in or is produced by nature, and is not artificial or man-made.
+
+ hedId
+ HED_0012376
+
+
+ Mineral
+ A solid, homogeneous, inorganic substance occurring in nature and having a definite chemical composition.
+
+ hedId
+ HED_0012377
+
+
+
+ Natural-feature
+ A feature that occurs in nature. A prominent or identifiable aspect, region, or site of interest.
+
+ hedId
+ HED_0012378
+
+
+ Field
+ An unbroken expanse as of ice or grassland.
+
+ hedId
+ HED_0012379
+
+
+
+ Hill
+ A rounded elevation of limited extent rising above the surrounding land with local relief of less than 300m.
+
+ hedId
+ HED_0012380
+
+
+
+ Mountain
+ A landform that extends above the surrounding terrain in a limited area.
+
+ hedId
+ HED_0012381
+
+
+
+ River
+ A natural freshwater surface stream of considerable volume and a permanent or seasonal flow, moving in a definite channel toward a sea, lake, or another river.
+
+ hedId
+ HED_0012382
+
+
+
+ Waterfall
+ A sudden descent of water over a step or ledge in the bed of a river.
+
+ hedId
+ HED_0012383
+
+
+
+
+
+
+ Sound
+ Mechanical vibrations transmitted by an elastic medium. Something that can be heard.
+
+ hedId
+ HED_0012384
+
+
+ Environmental-sound
+ Sounds occurring in the environment. An accumulation of noise pollution that occurs outside. This noise can be caused by transport, industrial, and recreational activities.
+
+ hedId
+ HED_0012385
+
+
+ Crowd-sound
+ Noise produced by a mixture of sounds from a large group of people.
+
+ hedId
+ HED_0012386
+
+
+
+ Signal-noise
+ Any part of a signal that is not the true or original signal but is introduced by the communication mechanism.
+
+ hedId
+ HED_0012387
+
+
+
+
+ Musical-sound
+ Sound produced by continuous and regular vibrations, as opposed to noise.
+
+ hedId
+ HED_0012388
+
+
+ Instrument-sound
+ Sound produced by a musical instrument.
+
+ hedId
+ HED_0012389
+
+
+
+ Tone
+ A musical note, warble, or other sound used as a particular signal on a telephone or answering machine.
+
+ hedId
+ HED_0012390
+
+
+
+ Vocalized-sound
+ Musical sound produced by vocal cords in a biological agent.
+
+ hedId
+ HED_0012391
+
+
+
+
+ Named-animal-sound
+ A sound recognizable as being associated with particular animals.
+
+ hedId
+ HED_0012392
+
+
+ Barking
+ Sharp explosive cries like sounds made by certain animals, especially a dog, fox, or seal.
+
+ hedId
+ HED_0012393
+
+
+
+ Bleating
+ Wavering cries like sounds made by a sheep, goat, or calf.
+
+ hedId
+ HED_0012394
+
+
+
+ Chirping
+ Short, sharp, high-pitched noises like sounds made by small birds or an insects.
+
+ hedId
+ HED_0012395
+
+
+
+ Crowing
+ Loud shrill sounds characteristic of roosters.
+
+ hedId
+ HED_0012396
+
+
+
+ Growling
+ Low guttural sounds like those that made in the throat by a hostile dog or other animal.
+
+ hedId
+ HED_0012397
+
+
+
+ Meowing
+ Vocalizations like those made by as those cats. These sounds have diverse tones and are sometimes chattered, murmured or whispered. The purpose can be assertive.
+
+ hedId
+ HED_0012398
+
+
+
+ Mooing
+ Deep vocal sounds like those made by a cow.
+
+ hedId
+ HED_0012399
+
+
+
+ Purring
+ Low continuous vibratory sound such as those made by cats. The sound expresses contentment.
+
+ hedId
+ HED_0012400
+
+
+
+ Roaring
+ Loud, deep, or harsh prolonged sounds such as those made by big cats and bears for long-distance communication and intimidation.
+
+ hedId
+ HED_0012401
+
+
+
+ Squawking
+ Loud, harsh noises such as those made by geese.
+
+ hedId
+ HED_0012402
+
+
+
+
+ Named-object-sound
+ A sound identifiable as coming from a particular type of object.
+
+ hedId
+ HED_0012403
+
+
+ Alarm-sound
+ A loud signal often loud continuous ringing to alert people to a problem or condition that requires urgent attention.
+
+ hedId
+ HED_0012404
+
+
+
+ Beep
+ A short, single tone, that is typically high-pitched and generally made by a computer or other machine.
+
+ hedId
+ HED_0012405
+
+
+
+ Buzz
+ A persistent vibratory sound often made by a buzzer device and used to indicate something incorrect.
+
+ hedId
+ HED_0012406
+
+
+
+ Click
+ The sound made by a mechanical cash register, often to designate a reward.
+
+ hedId
+ HED_0012407
+
+
+
+ Ding
+ A short ringing sound such as that made by a bell, often to indicate a correct response or the expiration of time.
+
+ hedId
+ HED_0012408
+
+
+
+ Horn-blow
+ A loud sound made by forcing air through a sound device that funnels air to create the sound, often used to sound an alert.
+
+ hedId
+ HED_0012409
+
+
+
+ Ka-ching
+ The sound made by a mechanical cash register, often to designate a reward.
+
+ hedId
+ HED_0012410
+
+
+
+ Siren
+ A loud, continuous sound often varying in frequency designed to indicate an emergency.
+
+ hedId
+ HED_0012411
+
+
+
+
+
+
+ Property
+ Something that pertains to a thing. A characteristic of some entity. A quality or feature regarded as a characteristic or inherent part of someone or something. HED attributes are adjectives or adverbs.
+
+ extensionAllowed
+
+
+ hedId
+ HED_0012412
+
+
+ Agent-property
+ Something that pertains to or describes an agent.
+
+ hedId
+ HED_0012413
+
+
+ Agent-state
+ The state of the agent.
+
+ hedId
+ HED_0012414
+
+
+ Agent-cognitive-state
+ The state of the cognitive processes or state of mind of the agent.
+
+ hedId
+ HED_0012415
+
+
+ Alert
+ Condition of heightened watchfulness or preparation for action.
+
+ hedId
+ HED_0012416
+
+
+
+ Anesthetized
+ Having lost sensation to pain or having senses dulled due to the effects of an anesthetic.
+
+ hedId
+ HED_0012417
+
+
+
+ Asleep
+ Having entered a periodic, readily reversible state of reduced awareness and metabolic activity, usually accompanied by physical relaxation and brain activity.
+
+ hedId
+ HED_0012418
+
+
+
+ Attentive
+ Concentrating and focusing mental energy on the task or surroundings.
+
+ hedId
+ HED_0012419
+
+
+
+ Awake
+ In a non sleeping state.
+
+ hedId
+ HED_0012420
+
+
+
+ Brain-dead
+ Characterized by the irreversible absence of cortical and brain stem functioning.
+
+ hedId
+ HED_0012421
+
+
+
+ Comatose
+ In a state of profound unconsciousness associated with markedly depressed cerebral activity.
+
+ hedId
+ HED_0012422
+
+
+
+ Distracted
+ Lacking in concentration because of being preoccupied.
+
+ hedId
+ HED_0012423
+
+
+
+ Drowsy
+ In a state of near-sleep, a strong desire for sleep, or sleeping for unusually long periods.
+
+ hedId
+ HED_0012424
+
+
+
+ Intoxicated
+ In a state with disturbed psychophysiological functions and responses as a result of administration or ingestion of a psychoactive substance.
+
+ hedId
+ HED_0012425
+
+
+
+ Locked-in
+ In a state of complete paralysis of all voluntary muscles except for the ones that control the movements of the eyes.
+
+ hedId
+ HED_0012426
+
+
+
+ Passive
+ Not responding or initiating an action in response to a stimulus.
+
+ hedId
+ HED_0012427
+
+
+
+ Resting
+ A state in which the agent is not exhibiting any physical exertion.
+
+ hedId
+ HED_0012428
+
+
+
+ Vegetative
+ A state of wakefulness and conscience, but (in contrast to coma) with involuntary opening of the eyes and movements (such as teeth grinding, yawning, or thrashing of the extremities).
+
+ hedId
+ HED_0012429
+
+
+
+
+ Agent-emotional-state
+ The status of the general temperament and outlook of an agent.
+
+ hedId
+ HED_0012430
+
+
+ Angry
+ Experiencing emotions characterized by marked annoyance or hostility.
+
+ hedId
+ HED_0012431
+
+
+
+ Aroused
+ In a state reactive to stimuli leading to increased heart rate and blood pressure, sensory alertness, mobility and readiness to respond.
+
+ hedId
+ HED_0012432
+
+
+
+ Awed
+ Filled with wonder. Feeling grand, sublime or powerful emotions characterized by a combination of joy, fear, admiration, reverence, and/or respect.
+
+ hedId
+ HED_0012433
+
+
+
+ Compassionate
+ Feeling or showing sympathy and concern for others often evoked for a person who is in distress and associated with altruistic motivation.
+
+ hedId
+ HED_0012434
+
+
+
+ Content
+ Feeling satisfaction with things as they are.
+
+ hedId
+ HED_0012435
+
+
+
+ Disgusted
+ Feeling revulsion or profound disapproval aroused by something unpleasant or offensive.
+
+ hedId
+ HED_0012436
+
+
+
+ Emotionally-neutral
+ Feeling neither satisfied nor dissatisfied.
+
+ hedId
+ HED_0012437
+
+
+
+ Empathetic
+ Understanding and sharing the feelings of another. Being aware of, being sensitive to, and vicariously experiencing the feelings, thoughts, and experience of another.
+
+ hedId
+ HED_0012438
+
+
+
+ Excited
+ Feeling great enthusiasm and eagerness.
+
+ hedId
+ HED_0012439
+
+
+
+ Fearful
+ Feeling apprehension that one may be in danger.
+
+ hedId
+ HED_0012440
+
+
+
+ Frustrated
+ Feeling annoyed as a result of being blocked, thwarted, disappointed or defeated.
+
+ hedId
+ HED_0012441
+
+
+
+ Grieving
+ Feeling sorrow in response to loss, whether physical or abstract.
+
+ hedId
+ HED_0012442
+
+
+
+ Happy
+ Feeling pleased and content.
+
+ hedId
+ HED_0012443
+
+
+
+ Jealous
+ Feeling threatened by a rival in a relationship with another individual, in particular an intimate partner, usually involves feelings of threat, fear, suspicion, distrust, anxiety, anger, betrayal, and rejection.
+
+ hedId
+ HED_0012444
+
+
+
+ Joyful
+ Feeling delight or intense happiness.
+
+ hedId
+ HED_0012445
+
+
+
+ Loving
+ Feeling a strong positive emotion of affection and attraction.
+
+ hedId
+ HED_0012446
+
+
+
+ Relieved
+ No longer feeling pain, distress,anxiety, or reassured.
+
+ hedId
+ HED_0012447
+
+
+
+ Sad
+ Feeling grief or unhappiness.
+
+ hedId
+ HED_0012448
+
+
+
+ Stressed
+ Experiencing mental or emotional strain or tension.
+
+ hedId
+ HED_0012449
+
+
+
+
+ Agent-physiological-state
+ Having to do with the mechanical, physical, or biochemical function of an agent.
+
+ hedId
+ HED_0012450
+
+
+ Catamenial
+ Related to menstruation.
+
+ hedId
+ HED_0013226
+
+
+
+ Fever
+ Body temperature above the normal range.
+
+ relatedTag
+ Sick
+
+
+ hedId
+ HED_0013227
+
+
+
+ Healthy
+ Having no significant health-related issues.
+
+ relatedTag
+ Sick
+
+
+ hedId
+ HED_0012451
+
+
+
+ Hungry
+ Being in a state of craving or desiring food.
+
+ relatedTag
+ Sated
+ Thirsty
+
+
+ hedId
+ HED_0012452
+
+
+
+ Rested
+ Feeling refreshed and relaxed.
+
+ relatedTag
+ Tired
+
+
+ hedId
+ HED_0012453
+
+
+
+ Sated
+ Feeling full.
+
+ relatedTag
+ Hungry
+
+
+ hedId
+ HED_0012454
+
+
+
+ Sick
+ Being in a state of ill health, bodily malfunction, or discomfort.
+
+ relatedTag
+ Healthy
+
+
+ hedId
+ HED_0012455
+
+
+
+ Thirsty
+ Feeling a need to drink.
+
+ relatedTag
+ Hungry
+
+
+ hedId
+ HED_0012456
+
+
+
+ Tired
+ Feeling in need of sleep or rest.
+
+ relatedTag
+ Rested
+
+
+ hedId
+ HED_0012457
+
+
+
+
+ Agent-postural-state
+ Pertaining to the position in which agent holds their body.
+
+ hedId
+ HED_0012458
+
+
+ Crouching
+ Adopting a position where the knees are bent and the upper body is brought forward and down, sometimes to avoid detection or to defend oneself.
+
+ hedId
+ HED_0012459
+
+
+
+ Eyes-closed
+ Keeping eyes closed with no blinking.
+
+ hedId
+ HED_0012460
+
+
+
+ Eyes-open
+ Keeping eyes open with occasional blinking.
+
+ hedId
+ HED_0012461
+
+
+
+ Kneeling
+ Positioned where one or both knees are on the ground.
+
+ hedId
+ HED_0012462
+
+
+
+ On-treadmill
+ Ambulation on an exercise apparatus with an endless moving belt to support moving in place.
+
+ hedId
+ HED_0012463
+
+
+
+ Prone
+ Positioned in a recumbent body position whereby the person lies on its stomach and faces downward.
+
+ hedId
+ HED_0012464
+
+
+
+ Seated-with-chin-rest
+ Using a device that supports the chin and head.
+
+ hedId
+ HED_0012465
+
+
+
+ Sitting
+ In a seated position.
+
+ hedId
+ HED_0012466
+
+
+
+ Standing
+ Assuming or maintaining an erect upright position.
+
+ hedId
+ HED_0012467
+
+
+
+
+
+ Agent-task-role
+ The function or part that is ascribed to an agent in performing the task.
+
+ hedId
+ HED_0012468
+
+
+ Experiment-actor
+ An agent who plays a predetermined role to create the experiment scenario.
+
+ hedId
+ HED_0012469
+
+
+
+ Experiment-controller
+ An agent exerting control over some aspect of the experiment.
+
+ hedId
+ HED_0012470
+
+
+
+ Experiment-participant
+ Someone who takes part in an activity related to an experiment.
+
+ hedId
+ HED_0012471
+
+
+
+ Experimenter
+ Person who is the owner of the experiment and has its responsibility.
+
+ hedId
+ HED_0012472
+
+
+
+
+ Agent-trait
+ A genetically, environmentally, or socially determined characteristic of an agent.
+
+ hedId
+ HED_0012473
+
+
+ Age
+ Length of time elapsed time since birth of the agent.
+
+ hedId
+ HED_0012474
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ timeUnits
+
+
+ hedId
+ HED_0012475
+
+
+
+
+ Agent-experience-level
+ Amount of skill or knowledge that the agent has as pertains to the task.
+
+ hedId
+ HED_0012476
+
+
+ Expert-level
+ Having comprehensive and authoritative knowledge of or skill in a particular area related to the task.
+
+ relatedTag
+ Intermediate-experience-level
+ Novice-level
+
+
+ hedId
+ HED_0012477
+
+
+
+ Intermediate-experience-level
+ Having a moderate amount of knowledge or skill related to the task.
+
+ relatedTag
+ Expert-level
+ Novice-level
+
+
+ hedId
+ HED_0012478
+
+
+
+ Novice-level
+ Being inexperienced in a field or situation related to the task.
+
+ relatedTag
+ Expert-level
+ Intermediate-experience-level
+
+
+ hedId
+ HED_0012479
+
+
+
+
+ Ethnicity
+ Belong to a social group that has a common national or cultural tradition. Use with Label to avoid extension.
+
+ hedId
+ HED_0012480
+
+
+
+ Gender
+ Characteristics that are socially constructed, including norms, behaviors, and roles based on sex.
+
+ hedId
+ HED_0012481
+
+
+
+ Handedness
+ Individual preference for use of a hand, known as the dominant hand.
+
+ hedId
+ HED_0012482
+
+
+ Ambidextrous
+ Having no overall dominance in the use of right or left hand or foot in the performance of tasks that require one hand or foot.
+
+ hedId
+ HED_0012483
+
+
+
+ Left-handed
+ Preference for using the left hand or foot for tasks requiring the use of a single hand or foot.
+
+ hedId
+ HED_0012484
+
+
+
+ Right-handed
+ Preference for using the right hand or foot for tasks requiring the use of a single hand or foot.
+
+ hedId
+ HED_0012485
+
+
+
+
+ Race
+ Belonging to a group sharing physical or social qualities as defined within a specified society. Use with Label to avoid extension.
+
+ hedId
+ HED_0012486
+
+
+
+ Sex
+ Physical properties or qualities by which male is distinguished from female.
+
+ hedId
+ HED_0012487
+
+
+ Female
+ Biological sex of an individual with female sexual organs such ova.
+
+ hedId
+ HED_0012488
+
+
+
+ Intersex
+ Having genitalia and/or secondary sexual characteristics of indeterminate sex.
+
+ hedId
+ HED_0012489
+
+
+
+ Male
+ Biological sex of an individual with male sexual organs producing sperm.
+
+ hedId
+ HED_0012490
+
+
+
+ Other-sex
+ A non-specific designation of sexual traits.
+
+ hedId
+ HED_0012491
+
+
+
+
+
+
+ Data-property
+ Something that pertains to data or information.
+
+ extensionAllowed
+
+
+ hedId
+ HED_0012492
+
+
+ Data-artifact
+ An anomalous, interfering, or distorting signal originating from a source other than the item being studied.
+
+ hedId
+ HED_0012493
+
+
+ Biological-artifact
+ A data artifact arising from a biological entity being measured.
+
+ hedId
+ HED_0012494
+
+
+ Chewing-artifact
+ Artifact from moving the jaw in a chewing motion.
+
+ hedId
+ HED_0012495
+
+
+
+ ECG-artifact
+ An electrical artifact from the far-field potential from pulsation of the heart, time locked to QRS complex.
+
+ hedId
+ HED_0012496
+
+
+
+ EMG-artifact
+ Artifact from muscle activity and myogenic potentials at the measurements site. In EEG, myogenic potentials are the most common artifacts. Frontalis and temporalis muscles (e.g. clenching of jaw muscles) are common causes. Generally, the potentials generated in the muscles are of shorter duration than those generated in the brain. The frequency components are usually beyond 30-50 Hz, and the bursts are arrhythmic.
+
+ hedId
+ HED_0012497
+
+
+
+ Eye-artifact
+ Ocular movements and blinks can result in artifacts in different types of data. In electrophysiology data, these can result transients and offsets the signal.
+
+ hedId
+ HED_0012498
+
+
+ Eye-blink-artifact
+ Artifact from eye blinking. In EEG, Fp1/Fp2 electrodes become electro-positive with eye closure because the cornea is positively charged causing a negative deflection in Fp1/Fp2. If the eye blink is unilateral, consider prosthetic eye.
+
+ hedId
+ HED_0012499
+
+
+
+ Eye-movement-artifact
+ Eye movements can cause artifacts on recordings. The charge of the eye can especially cause artifacts in electrophysiology data.
+
+ hedId
+ HED_0012500
+
+
+ Horizontal-eye-movement-artifact
+ Artifact from moving eyes left-to-right and right-to-left. In EEG, there is an upward deflection in the Fp2-F8 derivation, when the eyes move to the right side. In this case F8 becomes more positive and therefore. When the eyes move to the left, F7 becomes more positive and there is an upward deflection in the Fp1-F7 derivation.
+
+ hedId
+ HED_0012501
+
+
+
+ Nystagmus-artifact
+ Artifact from nystagmus (a vision condition in which the eyes make repetitive, uncontrolled movements).
+
+ hedId
+ HED_0012502
+
+
+
+ Slow-eye-movement-artifact
+ Artifacts originating from slow, rolling eye-movements, seen during drowsiness.
+
+ hedId
+ HED_0012503
+
+
+
+ Vertical-eye-movement-artifact
+ Artifact from moving eyes up and down. In EEG, this causes positive potentials (50-100 micro V) with bi-frontal distribution, maximum at Fp1 and Fp2, when the eyeball rotates upward. The downward rotation of the eyeball is associated with the negative deflection. The time course of the deflections is similar to the time course of the eyeball movement.
+
+ hedId
+ HED_0012504
+
+
+
+
+
+ Movement-artifact
+ Artifact in the measured data generated by motion of the subject.
+
+ hedId
+ HED_0012505
+
+
+
+ Pulse-artifact
+ A mechanical artifact from a pulsating blood vessel near a measurement site, cardio-ballistic artifact.
+
+ hedId
+ HED_0012506
+
+
+
+ Respiration-artifact
+ Artifact from breathing.
+
+ hedId
+ HED_0012507
+
+
+
+ Rocking-patting-artifact
+ Quasi-rhythmical artifacts in recordings most commonly seen in infants. Typically caused by a caregiver rocking or patting the infant.
+
+ hedId
+ HED_0012508
+
+
+
+ Sucking-artifact
+ Artifact from sucking, typically seen in very young cases.
+
+ hedId
+ HED_0012509
+
+
+
+ Sweat-artifact
+ Artifact from sweating. In EEG, this is a low amplitude undulating waveform that is usually greater than 2 seconds and may appear to be an unstable baseline.
+
+ hedId
+ HED_0012510
+
+
+
+ Tongue-movement-artifact
+ Artifact from tongue movement (Glossokinetic). The tongue functions as a dipole, with the tip negative with respect to the base. In EEG, the artifact produced by the tongue has a broad potential field that drops from frontal to occipital areas, although it is less steep than that produced by eye movement artifacts. The amplitude of the potentials is greater inferiorly than in parasagittal regions; the frequency is variable but usually in the delta range. Chewing and sucking can produce similar artifacts.
+
+ hedId
+ HED_0012511
+
+
+
+
+ Nonbiological-artifact
+ A data artifact arising from a non-biological source.
+
+ hedId
+ HED_0012512
+
+
+ Artificial-ventilation-artifact
+ Artifact stemming from mechanical ventilation. These can occur at the same rate as the ventilator, but also have other patterns.
+
+ hedId
+ HED_0012513
+
+
+
+ Dialysis-artifact
+ Artifacts seen in recordings during continuous renal replacement therapy (dialysis).
+
+ hedId
+ HED_0012514
+
+
+
+ Electrode-movement-artifact
+ Artifact from electrode movement.
+
+ hedId
+ HED_0012515
+
+
+
+ Electrode-pops-artifact
+ Brief artifact with a steep rise and slow fall of an electrophysiological signal, most often caused by a loose electrode.
+
+ hedId
+ HED_0012516
+
+
+
+ Induction-artifact
+ Artifacts induced by nearby equipment. In EEG, these are usually of high frequency.
+
+ hedId
+ HED_0012517
+
+
+
+ Line-noise-artifact
+ Power line noise at 50 Hz or 60 Hz.
+
+ hedId
+ HED_0012518
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ frequencyUnits
+
+
+ hedId
+ HED_0012519
+
+
+
+
+ Salt-bridge-artifact
+ Artifact from salt-bridge between EEG electrodes.
+
+ hedId
+ HED_0012520
+
+
+
+
+
+ Data-marker
+ An indicator placed to mark something.
+
+ hedId
+ HED_0012521
+
+
+ Data-break-marker
+ An indicator place to indicate a gap in the data.
+
+ hedId
+ HED_0012522
+
+
+
+ Temporal-marker
+ An indicator placed at a particular time in the data.
+
+ hedId
+ HED_0012523
+
+
+ Inset
+ Marks an intermediate point in an ongoing event of temporal extent.
+
+ topLevelTagGroup
+
+
+ reserved
+
+
+ relatedTag
+ Onset
+ Offset
+
+
+ hedId
+ HED_0012524
+
+
+
+ Offset
+ Marks the end of an event of temporal extent.
+
+ topLevelTagGroup
+
+
+ reserved
+
+
+ relatedTag
+ Onset
+ Inset
+
+
+ hedId
+ HED_0012525
+
+
+
+ Onset
+ Marks the start of an ongoing event of temporal extent.
+
+ topLevelTagGroup
+
+
+ reserved
+
+
+ relatedTag
+ Inset
+ Offset
+
+
+ hedId
+ HED_0012526
+
+
+
+ Pause
+ Indicates the temporary interruption of the operation of a process and subsequently a wait for a signal to continue.
+
+ hedId
+ HED_0012527
+
+
+
+ Time-out
+ A cancellation or cessation that automatically occurs when a predefined interval of time has passed without a certain event occurring.
+
+ hedId
+ HED_0012528
+
+
+
+ Time-sync
+ A synchronization signal whose purpose is to help synchronize different signals or processes. Often used to indicate a marker inserted into the recorded data to allow post hoc synchronization of concurrently recorded data streams.
+
+ hedId
+ HED_0012529
+
+
+
+
+
+ Data-resolution
+ Smallest change in a quality being measured by an sensor that causes a perceptible change.
+
+ hedId
+ HED_0012530
+
+
+ Printer-resolution
+ Resolution of a printer, usually expressed as the number of dots-per-inch for a printer.
+
+ hedId
+ HED_0012531
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012532
+
+
+
+
+ Screen-resolution
+ Resolution of a screen, usually expressed as the of pixels in a dimension for a digital display device.
+
+ hedId
+ HED_0012533
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012534
+
+
+
+
+ Sensory-resolution
+ Resolution of measurements by a sensing device.
+
+ hedId
+ HED_0012535
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012536
+
+
+
+
+ Spatial-resolution
+ Linear spacing of a spatial measurement.
+
+ hedId
+ HED_0012537
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012538
+
+
+
+
+ Spectral-resolution
+ Measures the ability of a sensor to resolve features in the electromagnetic spectrum.
+
+ hedId
+ HED_0012539
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012540
+
+
+
+
+ Temporal-resolution
+ Measures the ability of a sensor to resolve features in time.
+
+ hedId
+ HED_0012541
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012542
+
+
+
+
+
+ Data-source-type
+ The type of place, person, or thing from which the data comes or can be obtained.
+
+ hedId
+ HED_0012543
+
+
+ Computed-feature
+ A feature computed from the data by a tool. This tag should be grouped with a label of the form Toolname_propertyName.
+
+ hedId
+ HED_0012544
+
+
+
+ Computed-prediction
+ A computed extrapolation of known data.
+
+ hedId
+ HED_0012545
+
+
+
+ Expert-annotation
+ An explanatory or critical comment or other in-context information provided by an authority.
+
+ hedId
+ HED_0012546
+
+
+
+ Instrument-measurement
+ Information obtained from a device that is used to measure material properties or make other observations.
+
+ hedId
+ HED_0012547
+
+
+
+ Observation
+ Active acquisition of information from a primary source. Should be grouped with a label of the form AgentID_featureName.
+
+ hedId
+ HED_0012548
+
+
+
+
+ Data-value
+ Designation of the type of a data item.
+
+ hedId
+ HED_0012549
+
+
+ Categorical-value
+ Indicates that something can take on a limited and usually fixed number of possible values.
+
+ hedId
+ HED_0012550
+
+
+ Categorical-class-value
+ Categorical values that fall into discrete classes such as true or false. The grouping is absolute in the sense that it is the same for all participants.
+
+ hedId
+ HED_0012551
+
+
+ All
+ To a complete degree or to the full or entire extent.
+
+ relatedTag
+ Some
+ None
+
+
+ hedId
+ HED_0012552
+
+
+
+ Correct
+ Free from error. Especially conforming to fact or truth.
+
+ relatedTag
+ Wrong
+
+
+ hedId
+ HED_0012553
+
+
+
+ Explicit
+ Stated clearly and in detail, leaving no room for confusion or doubt.
+
+ relatedTag
+ Implicit
+
+
+ hedId
+ HED_0012554
+
+
+
+ False
+ Not in accordance with facts, reality or definitive criteria.
+
+ relatedTag
+ True
+
+
+ hedId
+ HED_0012555
+
+
+
+ Implicit
+ Implied though not plainly expressed.
+
+ relatedTag
+ Explicit
+
+
+ hedId
+ HED_0012556
+
+
+
+ Invalid
+ Not allowed or not conforming to the correct format or specifications.
+
+ relatedTag
+ Valid
+
+
+ hedId
+ HED_0012557
+
+
+
+ None
+ No person or thing, nobody, not any.
+
+ relatedTag
+ All
+ Some
+
+
+ hedId
+ HED_0012558
+
+
+
+ Some
+ At least a small amount or number of, but not a large amount of, or often.
+
+ relatedTag
+ All
+ None
+
+
+ hedId
+ HED_0012559
+
+
+
+ True
+ Conforming to facts, reality or definitive criteria.
+
+ relatedTag
+ False
+
+
+ hedId
+ HED_0012560
+
+
+
+ Unknown
+ The information has not been provided.
+
+ relatedTag
+ Invalid
+
+
+ hedId
+ HED_0012561
+
+
+
+ Valid
+ Allowable, usable, or acceptable.
+
+ relatedTag
+ Invalid
+
+
+ hedId
+ HED_0012562
+
+
+
+ Wrong
+ Inaccurate or not correct.
+
+ relatedTag
+ Correct
+
+
+ hedId
+ HED_0012563
+
+
+
+
+ Categorical-judgment-value
+ Categorical values that are based on the judgment or perception of the participant such familiar and famous.
+
+ hedId
+ HED_0012564
+
+
+ Abnormal
+ Deviating in any way from the state, position, structure, condition, behavior, or rule which is considered a norm.
+
+ relatedTag
+ Normal
+
+
+ hedId
+ HED_0012565
+
+
+
+ Asymmetrical
+ Lacking symmetry or having parts that fail to correspond to one another in shape, size, or arrangement.
+
+ relatedTag
+ Symmetrical
+
+
+ hedId
+ HED_0012566
+
+
+
+ Audible
+ A sound that can be perceived by the participant.
+
+ relatedTag
+ Inaudible
+
+
+ hedId
+ HED_0012567
+
+
+
+ Complex
+ Hard, involved or complicated, elaborate, having many parts.
+
+ relatedTag
+ Simple
+
+
+ hedId
+ HED_0012568
+
+
+
+ Congruent
+ Concordance of multiple evidence lines. In agreement or harmony.
+
+ relatedTag
+ Incongruent
+
+
+ hedId
+ HED_0012569
+
+
+
+ Constrained
+ Keeping something within particular limits or bounds.
+
+ relatedTag
+ Unconstrained
+
+
+ hedId
+ HED_0012570
+
+
+
+ Disordered
+ Not neatly arranged. Confused and untidy. A structural quality in which the parts of an object are non-rigid.
+
+ relatedTag
+ Ordered
+
+
+ hedId
+ HED_0012571
+
+
+
+ Familiar
+ Recognized, familiar, or within the scope of knowledge.
+
+ relatedTag
+ Unfamiliar
+ Famous
+
+
+ hedId
+ HED_0012572
+
+
+
+ Famous
+ A person who has a high degree of recognition by the general population for his or her success or accomplishments. A famous person.
+
+ relatedTag
+ Familiar
+ Unfamiliar
+
+
+ hedId
+ HED_0012573
+
+
+
+ Inaudible
+ A sound below the threshold of perception of the participant.
+
+ relatedTag
+ Audible
+
+
+ hedId
+ HED_0012574
+
+
+
+ Incongruent
+ Not in agreement or harmony.
+
+ relatedTag
+ Congruent
+
+
+ hedId
+ HED_0012575
+
+
+
+ Involuntary
+ An action that is not made by choice. In the body, involuntary actions (such as blushing) occur automatically, and cannot be controlled by choice.
+
+ relatedTag
+ Voluntary
+
+
+ hedId
+ HED_0012576
+
+
+
+ Masked
+ Information exists but is not provided or is partially obscured due to security,privacy, or other concerns.
+
+ relatedTag
+ Unmasked
+
+
+ hedId
+ HED_0012577
+
+
+
+ Normal
+ Being approximately average or within certain limits. Conforming with or constituting a norm or standard or level or type or social norm.
+
+ relatedTag
+ Abnormal
+
+
+ hedId
+ HED_0012578
+
+
+
+ Ordered
+ Conforming to a logical or comprehensible arrangement of separate elements.
+
+ relatedTag
+ Disordered
+
+
+ hedId
+ HED_0012579
+
+
+
+ Simple
+ Easily understood or presenting no difficulties.
+
+ relatedTag
+ Complex
+
+
+ hedId
+ HED_0012580
+
+
+
+ Symmetrical
+ Made up of exactly similar parts facing each other or around an axis. Showing aspects of symmetry.
+
+ relatedTag
+ Asymmetrical
+
+
+ hedId
+ HED_0012581
+
+
+
+ Unconstrained
+ Moving without restriction.
+
+ relatedTag
+ Constrained
+
+
+ hedId
+ HED_0012582
+
+
+
+ Unfamiliar
+ Not having knowledge or experience of.
+
+ relatedTag
+ Familiar
+ Famous
+
+
+ hedId
+ HED_0012583
+
+
+
+ Unmasked
+ Information is revealed.
+
+ relatedTag
+ Masked
+
+
+ hedId
+ HED_0012584
+
+
+
+ Voluntary
+ Using free will or design; not forced or compelled; controlled by individual volition.
+
+ relatedTag
+ Involuntary
+
+
+ hedId
+ HED_0012585
+
+
+
+
+ Categorical-level-value
+ Categorical values based on dividing a continuous variable into levels such as high and low.
+
+ hedId
+ HED_0012586
+
+
+ Cold
+ Having an absence of heat.
+
+ relatedTag
+ Hot
+
+
+ hedId
+ HED_0012587
+
+
+
+ Deep
+ Extending relatively far inward or downward.
+
+ relatedTag
+ Shallow
+
+
+ hedId
+ HED_0012588
+
+
+
+ High
+ Having a greater than normal degree, intensity, or amount.
+
+ relatedTag
+ Low
+ Medium
+
+
+ hedId
+ HED_0012589
+
+
+
+ Hot
+ Having an excess of heat.
+
+ relatedTag
+ Cold
+
+
+ hedId
+ HED_0012590
+
+
+
+ Large
+ Having a great extent such as in physical dimensions, period of time, amplitude or frequency.
+
+ relatedTag
+ Small
+
+
+ hedId
+ HED_0012591
+
+
+
+ Liminal
+ Situated at a sensory threshold that is barely perceptible or capable of eliciting a response.
+
+ relatedTag
+ Subliminal
+ Supraliminal
+
+
+ hedId
+ HED_0012592
+
+
+
+ Loud
+ Having a perceived high intensity of sound.
+
+ relatedTag
+ Quiet
+
+
+ hedId
+ HED_0012593
+
+
+
+ Low
+ Less than normal in degree, intensity or amount.
+
+ relatedTag
+ High
+
+
+ hedId
+ HED_0012594
+
+
+
+ Medium
+ Mid-way between small and large in number, quantity, magnitude or extent.
+
+ relatedTag
+ Low
+ High
+
+
+ hedId
+ HED_0012595
+
+
+
+ Negative
+ Involving disadvantage or harm.
+
+ relatedTag
+ Positive
+
+
+ hedId
+ HED_0012596
+
+
+
+ Positive
+ Involving advantage or good.
+
+ relatedTag
+ Negative
+
+
+ hedId
+ HED_0012597
+
+
+
+ Quiet
+ Characterizing a perceived low intensity of sound.
+
+ relatedTag
+ Loud
+
+
+ hedId
+ HED_0012598
+
+
+
+ Rough
+ Having a surface with perceptible bumps, ridges, or irregularities.
+
+ relatedTag
+ Smooth
+
+
+ hedId
+ HED_0012599
+
+
+
+ Shallow
+ Having a depth which is relatively low.
+
+ relatedTag
+ Deep
+
+
+ hedId
+ HED_0012600
+
+
+
+ Small
+ Having a small extent such as in physical dimensions, period of time, amplitude or frequency.
+
+ relatedTag
+ Large
+
+
+ hedId
+ HED_0012601
+
+
+
+ Smooth
+ Having a surface free from bumps, ridges, or irregularities.
+
+ relatedTag
+ Rough
+
+
+ hedId
+ HED_0012602
+
+
+
+ Subliminal
+ Situated below a sensory threshold that is imperceptible or not capable of eliciting a response.
+
+ relatedTag
+ Liminal
+ Supraliminal
+
+
+ hedId
+ HED_0012603
+
+
+
+ Supraliminal
+ Situated above a sensory threshold that is perceptible or capable of eliciting a response.
+
+ relatedTag
+ Liminal
+ Subliminal
+
+
+ hedId
+ HED_0012604
+
+
+
+ Thick
+ Wide in width, extent or cross-section.
+
+ relatedTag
+ Thin
+
+
+ hedId
+ HED_0012605
+
+
+
+ Thin
+ Narrow in width, extent or cross-section.
+
+ relatedTag
+ Thick
+
+
+ hedId
+ HED_0012606
+
+
+
+
+ Categorical-location-value
+ Value indicating the location of something, primarily as an identifier rather than an expression of where the item is relative to something else.
+
+ hedId
+ HED_0012607
+
+
+ Anterior
+ Relating to an item on the front of an agent body (from the point of view of the agent) or on the front of an object from the point of view of an agent. This pertains to the identity of an agent or a thing.
+
+ hedId
+ HED_0012608
+
+
+
+ Lateral
+ Identifying the portion of an object away from the midline, particularly applied to the (anterior-posterior, superior-inferior) surface of a brain.
+
+ hedId
+ HED_0012609
+
+
+
+ Left
+ Relating to an item on the left side of an agent body (from the point of view of the agent) or the left side of an object from the point of view of an agent. This pertains to the identity of an agent or a thing, for example (Left, Hand) as an identifier for the left hand. HED spatial relations should be used for relative positions such as (Hand, (Left-side-of, Keyboard)), which denotes the hand placed on the left side of the keyboard, which could be either the identified left hand or right hand.
+
+ hedId
+ HED_0012610
+
+
+
+ Medial
+ Identifying the portion of an object towards the center, particularly applied to the (anterior-posterior, superior-inferior) surface of a brain.
+
+ hedId
+ HED_0012611
+
+
+
+ Posterior
+ Relating to an item on the back of an agent body (from the point of view of the agent) or on the back of an object from the point of view of an agent. This pertains to the identity of an agent or a thing.
+
+ hedId
+ HED_0012612
+
+
+
+ Right
+ Relating to an item on the right side of an agent body (from the point of view of the agent) or the right side of an object from the point of view of an agent. This pertains to the identity of an agent or a thing, for example (Right, Hand) as an identifier for the right hand. HED spatial relations should be used for relative positions such as (Hand, (Right-side-of, Keyboard)), which denotes the hand placed on the right side of the keyboard, which could be either the identified left hand or right hand.
+
+ hedId
+ HED_0012613
+
+
+
+
+ Categorical-orientation-value
+ Value indicating the orientation or direction of something.
+
+ hedId
+ HED_0012614
+
+
+ Backward
+ Directed behind or to the rear.
+
+ relatedTag
+ Forward
+
+
+ hedId
+ HED_0012615
+
+
+
+ Downward
+ Moving or leading toward a lower place or level.
+
+ relatedTag
+ Leftward
+ Rightward
+ Upward
+
+
+ hedId
+ HED_0012616
+
+
+
+ Forward
+ At or near or directed toward the front.
+
+ relatedTag
+ Backward
+
+
+ hedId
+ HED_0012617
+
+
+
+ Horizontally-oriented
+ Oriented parallel to or in the plane of the horizon.
+
+ relatedTag
+ Vertically-oriented
+
+
+ hedId
+ HED_0012618
+
+
+
+ Leftward
+ Going toward or facing the left.
+
+ relatedTag
+ Downward
+ Rightward
+ Upward
+
+
+ hedId
+ HED_0012619
+
+
+
+ Oblique
+ Slanting or inclined in direction, course, or position that is neither parallel nor perpendicular nor right-angular.
+
+ relatedTag
+ Rotated
+
+
+ hedId
+ HED_0012620
+
+
+
+ Rightward
+ Going toward or situated on the right.
+
+ relatedTag
+ Downward
+ Leftward
+ Upward
+
+
+ hedId
+ HED_0012621
+
+
+
+ Rotated
+ Positioned offset around an axis or center.
+
+ hedId
+ HED_0012622
+
+
+
+ Upward
+ Moving, pointing, or leading to a higher place, point, or level.
+
+ relatedTag
+ Downward
+ Leftward
+ Rightward
+
+
+ hedId
+ HED_0012623
+
+
+
+ Vertically-oriented
+ Oriented perpendicular to the plane of the horizon.
+
+ relatedTag
+ Horizontally-oriented
+
+
+ hedId
+ HED_0012624
+
+
+
+
+
+ Physical-value
+ The value of some physical property of something.
+
+ hedId
+ HED_0012625
+
+
+ Temperature
+ A measure of hot or cold based on the average kinetic energy of the atoms or molecules in the system.
+
+ hedId
+ HED_0012626
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ temperatureUnits
+
+
+ hedId
+ HED_0012627
+
+
+
+
+ Weight
+ The relative mass or the quantity of matter contained by something.
+
+ hedId
+ HED_0012628
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ weightUnits
+
+
+ hedId
+ HED_0012629
+
+
+
+
+
+ Quantitative-value
+ Something capable of being estimated or expressed with numeric values.
+
+ hedId
+ HED_0012630
+
+
+ Fraction
+ A numerical value between 0 and 1.
+
+ hedId
+ HED_0012631
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012632
+
+
+
+
+ Item-count
+ The integer count of something which is usually grouped with the entity it is counting. (Item-count/3, A) indicates that 3 of A have occurred up to this point.
+
+ hedId
+ HED_0012633
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012634
+
+
+
+
+ Item-index
+ The index of an item in a collection, sequence or other structure. (A (Item-index/3, B)) means that A is item number 3 in B.
+
+ hedId
+ HED_0012635
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012636
+
+
+
+
+ Item-interval
+ An integer indicating how many items or entities have passed since the last one of these. An item interval of 0 indicates the current item.
+
+ hedId
+ HED_0012637
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012638
+
+
+
+
+ Percentage
+ A fraction or ratio with 100 understood as the denominator.
+
+ hedId
+ HED_0012639
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012640
+
+
+
+
+ Ratio
+ A quotient of quantities of the same kind for different components within the same system.
+
+ hedId
+ HED_0012641
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012642
+
+
+
+
+
+ Spatiotemporal-value
+ A property relating to space and/or time.
+
+ hedId
+ HED_0012643
+
+
+ Rate-of-change
+ The amount of change accumulated per unit time.
+
+ hedId
+ HED_0012644
+
+
+ Acceleration
+ Magnitude of the rate of change in either speed or direction. The direction of change should be given separately.
+
+ hedId
+ HED_0012645
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ accelerationUnits
+
+
+ hedId
+ HED_0012646
+
+
+
+
+ Frequency
+ Frequency is the number of occurrences of a repeating event per unit time.
+
+ hedId
+ HED_0012647
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ frequencyUnits
+
+
+ hedId
+ HED_0012648
+
+
+
+
+ Jerk-rate
+ Magnitude of the rate at which the acceleration of an object changes with respect to time. The direction of change should be given separately.
+
+ hedId
+ HED_0012649
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ jerkUnits
+
+
+ hedId
+ HED_0012650
+
+
+
+
+ Refresh-rate
+ The frequency with which the image on a computer monitor or similar electronic display screen is refreshed, usually expressed in hertz.
+
+ hedId
+ HED_0012651
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012652
+
+
+
+
+ Sampling-rate
+ The number of digital samples taken or recorded per unit of time.
+
+ hedId
+ HED_0012653
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ frequencyUnits
+
+
+ hedId
+ HED_0012654
+
+
+
+
+ Speed
+ A scalar measure of the rate of movement of the object expressed either as the distance traveled divided by the time taken (average speed) or the rate of change of position with respect to time at a particular point (instantaneous speed). The direction of change should be given separately.
+
+ hedId
+ HED_0012655
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ speedUnits
+
+
+ hedId
+ HED_0012656
+
+
+
+
+ Temporal-rate
+ The number of items per unit of time.
+
+ hedId
+ HED_0012657
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ frequencyUnits
+
+
+ hedId
+ HED_0012658
+
+
+
+
+
+ Spatial-value
+ Value of an item involving space.
+
+ hedId
+ HED_0012659
+
+
+ Angle
+ The amount of inclination of one line to another or the plane of one object to another.
+
+ hedId
+ HED_0012660
+
+
+ #
+
+ takesValue
+
+
+ unitClass
+ angleUnits
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012661
+
+
+
+
+ Distance
+ A measure of the space separating two objects or points.
+
+ hedId
+ HED_0012662
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ physicalLengthUnits
+
+
+ hedId
+ HED_0012663
+
+
+
+
+ Position
+ A reference to the alignment of an object, a particular situation or view of a situation, or the location of an object. Coordinates with respect a specified frame of reference or the default Screen-frame if no frame is given.
+
+ hedId
+ HED_0012664
+
+
+ Clock-face
+ A location identifier based on clock-face numbering or anatomic subregion. Use Clock-face-position.
+
+ deprecatedFrom
+ 8.2.0
+
+
+ hedId
+ HED_0012326
+
+
+ #
+
+ deprecatedFrom
+ 8.2.0
+
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0013228
+
+
+
+
+ Clock-face-position
+ A location identifier based on clock-face numbering or anatomic subregion. As an object, just use the tag Clock.
+
+ hedId
+ HED_0013229
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0013230
+
+
+
+
+ X-position
+ The position along the x-axis of the frame of reference.
+
+ hedId
+ HED_0012665
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ physicalLengthUnits
+
+
+ hedId
+ HED_0012666
+
+
+
+
+ Y-position
+ The position along the y-axis of the frame of reference.
+
+ hedId
+ HED_0012667
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ physicalLengthUnits
+
+
+ hedId
+ HED_0012668
+
+
+
+
+ Z-position
+ The position along the z-axis of the frame of reference.
+
+ hedId
+ HED_0012669
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ physicalLengthUnits
+
+
+ hedId
+ HED_0012670
+
+
+
+
+
+ Size
+ The physical magnitude of something.
+
+ hedId
+ HED_0012671
+
+
+ Area
+ The extent of a 2-dimensional surface enclosed within a boundary.
+
+ hedId
+ HED_0012672
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ areaUnits
+
+
+ hedId
+ HED_0012673
+
+
+
+
+ Depth
+ The distance from the surface of something especially from the perspective of looking from the front.
+
+ hedId
+ HED_0012674
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ physicalLengthUnits
+
+
+ hedId
+ HED_0012675
+
+
+
+
+ Height
+ The vertical measurement or distance from the base to the top of an object.
+
+ hedId
+ HED_0012676
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ physicalLengthUnits
+
+
+ hedId
+ HED_0012677
+
+
+
+
+ Length
+ The linear extent in space from one end of something to the other end, or the extent of something from beginning to end.
+
+ hedId
+ HED_0012678
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ physicalLengthUnits
+
+
+ hedId
+ HED_0012679
+
+
+
+
+ Perimeter
+ The minimum length of paths enclosing a 2D shape.
+
+ hedId
+ HED_0012680
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ physicalLengthUnits
+
+
+ hedId
+ HED_0012681
+
+
+
+
+ Radius
+ The distance of the line from the center of a circle or a sphere to its perimeter or outer surface, respectively.
+
+ hedId
+ HED_0012682
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ physicalLengthUnits
+
+
+ hedId
+ HED_0012683
+
+
+
+
+ Volume
+ The amount of three dimensional space occupied by an object or the capacity of a space or container.
+
+ hedId
+ HED_0012684
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ volumeUnits
+
+
+ hedId
+ HED_0012685
+
+
+
+
+ Width
+ The extent or measurement of something from side to side.
+
+ hedId
+ HED_0012686
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ physicalLengthUnits
+
+
+ hedId
+ HED_0012687
+
+
+
+
+
+
+ Temporal-value
+ A characteristic of or relating to time or limited by time.
+
+ hedId
+ HED_0012688
+
+
+ Delay
+ The time at which an event start time is delayed from the current onset time. This tag defines the start time of an event of temporal extent and may be used with the Duration tag.
+
+ topLevelTagGroup
+
+
+ reserved
+
+
+ requireChild
+
+
+ relatedTag
+ Duration
+
+
+ hedId
+ HED_0012689
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ timeUnits
+
+
+ hedId
+ HED_0012690
+
+
+
+
+ Duration
+ The period of time during which an event occurs. This tag defines the end time of an event of temporal extent and may be used with the Delay tag.
+
+ topLevelTagGroup
+
+
+ reserved
+
+
+ requireChild
+
+
+ relatedTag
+ Delay
+
+
+ hedId
+ HED_0012691
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ timeUnits
+
+
+ hedId
+ HED_0012692
+
+
+
+
+ Time-interval
+ The period of time separating two instances, events, or occurrences.
+
+ hedId
+ HED_0012693
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ timeUnits
+
+
+ hedId
+ HED_0012694
+
+
+
+
+ Time-value
+ A value with units of time. Usually grouped with tags identifying what the value represents.
+
+ hedId
+ HED_0012695
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ timeUnits
+
+
+ hedId
+ HED_0012696
+
+
+
+
+
+
+ Statistical-value
+ A value based on or employing the principles of statistics.
+
+ extensionAllowed
+
+
+ hedId
+ HED_0012697
+
+
+ Data-maximum
+ The largest possible quantity or degree.
+
+ hedId
+ HED_0012698
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012699
+
+
+
+
+ Data-mean
+ The sum of a set of values divided by the number of values in the set.
+
+ hedId
+ HED_0012700
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012701
+
+
+
+
+ Data-median
+ The value which has an equal number of values greater and less than it.
+
+ hedId
+ HED_0012702
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012703
+
+
+
+
+ Data-minimum
+ The smallest possible quantity.
+
+ hedId
+ HED_0012704
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012705
+
+
+
+
+ Probability
+ A measure of the expectation of the occurrence of a particular event.
+
+ hedId
+ HED_0012706
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012707
+
+
+
+
+ Standard-deviation
+ A measure of the range of values in a set of numbers. Standard deviation is a statistic used as a measure of the dispersion or variation in a distribution, equal to the square root of the arithmetic mean of the squares of the deviations from the arithmetic mean.
+
+ hedId
+ HED_0012708
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012709
+
+
+
+
+ Statistical-accuracy
+ A measure of closeness to true value expressed as a number between 0 and 1.
+
+ hedId
+ HED_0012710
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012711
+
+
+
+
+ Statistical-precision
+ A quantitative representation of the degree of accuracy necessary for or associated with a particular action.
+
+ hedId
+ HED_0012712
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012713
+
+
+
+
+ Statistical-recall
+ Sensitivity is a measurement datum qualifying a binary classification test and is computed by subtracting the false negative rate to the integral numeral 1.
+
+ hedId
+ HED_0012714
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012715
+
+
+
+
+ Statistical-uncertainty
+ A measure of the inherent variability of repeated observation measurements of a quantity including quantities evaluated by statistical methods and by other means.
+
+ hedId
+ HED_0012716
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0012717
+
+
+
+
+
+
+ Data-variability-attribute
+ An attribute describing how something changes or varies.
+
+ hedId
+ HED_0012718
+
+
+ Abrupt
+ Marked by sudden change.
+
+ hedId
+ HED_0012719
+
+
+
+ Constant
+ Continually recurring or continuing without interruption. Not changing in time or space.
+
+ hedId
+ HED_0012720
+
+
+
+ Continuous
+ Uninterrupted in time, sequence, substance, or extent.
+
+ relatedTag
+ Discrete
+ Discontinuous
+
+
+ hedId
+ HED_0012721
+
+
+
+ Decreasing
+ Becoming smaller or fewer in size, amount, intensity, or degree.
+
+ relatedTag
+ Increasing
+
+
+ hedId
+ HED_0012722
+
+
+
+ Deterministic
+ No randomness is involved in the development of the future states of the element.
+
+ relatedTag
+ Random
+ Stochastic
+
+
+ hedId
+ HED_0012723
+
+
+
+ Discontinuous
+ Having a gap in time, sequence, substance, or extent.
+
+ relatedTag
+ Continuous
+
+
+ hedId
+ HED_0012724
+
+
+
+ Discrete
+ Constituting a separate entities or parts.
+
+ relatedTag
+ Continuous
+ Discontinuous
+
+
+ hedId
+ HED_0012725
+
+
+
+ Estimated-value
+ Something that has been calculated or measured approximately.
+
+ hedId
+ HED_0012726
+
+
+
+ Exact-value
+ A value that is viewed to the true value according to some standard.
+
+ hedId
+ HED_0012727
+
+
+
+ Flickering
+ Moving irregularly or unsteadily or burning or shining fitfully or with a fluctuating light.
+
+ hedId
+ HED_0012728
+
+
+
+ Fractal
+ Having extremely irregular curves or shapes for which any suitably chosen part is similar in shape to a given larger or smaller part when magnified or reduced to the same size.
+
+ hedId
+ HED_0012729
+
+
+
+ Increasing
+ Becoming greater in size, amount, or degree.
+
+ relatedTag
+ Decreasing
+
+
+ hedId
+ HED_0012730
+
+
+
+ Random
+ Governed by or depending on chance. Lacking any definite plan or order or purpose.
+
+ relatedTag
+ Deterministic
+ Stochastic
+
+
+ hedId
+ HED_0012731
+
+
+
+ Repetitive
+ A recurring action that is often non-purposeful.
+
+ hedId
+ HED_0012732
+
+
+
+ Stochastic
+ Uses a random probability distribution or pattern that may be analyzed statistically but may not be predicted precisely to determine future states.
+
+ relatedTag
+ Deterministic
+ Random
+
+
+ hedId
+ HED_0012733
+
+
+
+ Varying
+ Differing in size, amount, degree, or nature.
+
+ hedId
+ HED_0012734
+
+
+
+
+
+ Environmental-property
+ Relating to or arising from the surroundings of an agent.
+
+ hedId
+ HED_0012735
+
+
+ Augmented-reality
+ Using technology that enhances real-world experiences with computer-derived digital overlays to change some aspects of perception of the natural environment. The digital content is shown to the user through a smart device or glasses and responds to changes in the environment.
+
+ hedId
+ HED_0012736
+
+
+
+ Indoors
+ Located inside a building or enclosure.
+
+ hedId
+ HED_0012737
+
+
+
+ Motion-platform
+ A mechanism that creates the feelings of being in a real motion environment.
+
+ hedId
+ HED_0012738
+
+
+
+ Outdoors
+ Any area outside a building or shelter.
+
+ hedId
+ HED_0012739
+
+
+
+ Real-world
+ Located in a place that exists in real space and time under realistic conditions.
+
+ hedId
+ HED_0012740
+
+
+
+ Rural
+ Of or pertaining to the country as opposed to the city.
+
+ hedId
+ HED_0012741
+
+
+
+ Terrain
+ Characterization of the physical features of a tract of land.
+
+ hedId
+ HED_0012742
+
+
+ Composite-terrain
+ Tracts of land characterized by a mixture of physical features.
+
+ hedId
+ HED_0012743
+
+
+
+ Dirt-terrain
+ Tracts of land characterized by a soil surface and lack of vegetation.
+
+ hedId
+ HED_0012744
+
+
+
+ Grassy-terrain
+ Tracts of land covered by grass.
+
+ hedId
+ HED_0012745
+
+
+
+ Gravel-terrain
+ Tracts of land covered by a surface consisting a loose aggregation of small water-worn or pounded stones.
+
+ hedId
+ HED_0012746
+
+
+
+ Leaf-covered-terrain
+ Tracts of land covered by leaves and composited organic material.
+
+ hedId
+ HED_0012747
+
+
+
+ Muddy-terrain
+ Tracts of land covered by a liquid or semi-liquid mixture of water and some combination of soil, silt, and clay.
+
+ hedId
+ HED_0012748
+
+
+
+ Paved-terrain
+ Tracts of land covered with concrete, asphalt, stones, or bricks.
+
+ hedId
+ HED_0012749
+
+
+
+ Rocky-terrain
+ Tracts of land consisting or full of rock or rocks.
+
+ hedId
+ HED_0012750
+
+
+
+ Sloped-terrain
+ Tracts of land arranged in a sloping or inclined position.
+
+ hedId
+ HED_0012751
+
+
+
+ Uneven-terrain
+ Tracts of land that are not level, smooth, or regular.
+
+ hedId
+ HED_0012752
+
+
+
+
+ Urban
+ Relating to, located in, or characteristic of a city or densely populated area.
+
+ hedId
+ HED_0012753
+
+
+
+ Virtual-world
+ Using technology that creates immersive, computer-generated experiences that a person can interact with and navigate through. The digital content is generally delivered to the user through some type of headset and responds to changes in head position or through interaction with other types of sensors. Existing in a virtual setting such as a simulation or game environment.
+
+ hedId
+ HED_0012754
+
+
+
+
+ Informational-property
+ Something that pertains to a task.
+
+ extensionAllowed
+
+
+ hedId
+ HED_0012755
+
+
+ Description
+ An explanation of what the tag group it is in means. If the description is at the top-level of an event string, the description applies to the event.
+
+ hedId
+ HED_0012756
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ textClass
+
+
+ hedId
+ HED_0012757
+
+
+
+
+ ID
+ An alphanumeric name that identifies either a unique object or a unique class of objects. Here the object or class may be an idea, physical countable object (or class), or physical uncountable substance (or class).
+
+ hedId
+ HED_0012758
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ textClass
+
+
+ hedId
+ HED_0012759
+
+
+
+
+ Label
+ A string of 20 or fewer characters identifying something. Labels usually refer to general classes of things while IDs refer to specific instances. A term that is associated with some entity. A brief description given for purposes of identification. An identifying or descriptive marker that is attached to an object.
+
+ hedId
+ HED_0012760
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ nameClass
+
+
+ hedId
+ HED_0012761
+
+
+
+
+ Metadata
+ Data about data. Information that describes another set of data.
+
+ hedId
+ HED_0012762
+
+
+ Creation-date
+ The date on which the creation of this item began.
+
+ hedId
+ HED_0012763
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ dateTimeClass
+
+
+ hedId
+ HED_0012764
+
+
+
+
+ Experimental-note
+ A brief written record about the experiment.
+
+ hedId
+ HED_0012765
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ textClass
+
+
+ hedId
+ HED_0012766
+
+
+
+
+ Library-name
+ Official name of a HED library.
+
+ hedId
+ HED_0012767
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ nameClass
+
+
+ hedId
+ HED_0012768
+
+
+
+
+ Metadata-identifier
+ Identifier (usually unique) from another metadata source.
+
+ hedId
+ HED_0012769
+
+
+ CogAtlas
+ The Cognitive Atlas ID number of something.
+
+ hedId
+ HED_0012770
+
+
+ #
+
+ takesValue
+
+
+ hedId
+ HED_0012771
+
+
+
+
+ CogPo
+ The CogPO ID number of something.
+
+ hedId
+ HED_0012772
+
+
+ #
+
+ takesValue
+
+
+ hedId
+ HED_0012773
+
+
+
+
+ DOI
+ Digital object identifier for an object.
+
+ hedId
+ HED_0012774
+
+
+ #
+
+ takesValue
+
+
+ hedId
+ HED_0012775
+
+
+
+
+ OBO-identifier
+ The identifier of a term in some Open Biology Ontology (OBO) ontology.
+
+ hedId
+ HED_0012776
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ nameClass
+
+
+ hedId
+ HED_0012777
+
+
+
+
+ Species-identifier
+ A binomial species name from the NCBI Taxonomy, for example, homo sapiens, mus musculus, or rattus norvegicus.
+
+ hedId
+ HED_0012778
+
+
+ #
+
+ takesValue
+
+
+ hedId
+ HED_0012779
+
+
+
+
+ Subject-identifier
+ A sequence of characters used to identify, name, or characterize a trial or study subject.
+
+ hedId
+ HED_0012780
+
+
+ #
+
+ takesValue
+
+
+ hedId
+ HED_0012781
+
+
+
+
+ UUID
+ A unique universal identifier.
+
+ hedId
+ HED_0012782
+
+
+ #
+
+ takesValue
+
+
+ hedId
+ HED_0012783
+
+
+
+
+ Version-identifier
+ An alphanumeric character string that identifies a form or variant of a type or original.
+
+ hedId
+ HED_0012784
+
+
+ #
+ Usually is a semantic version.
+
+ takesValue
+
+
+ hedId
+ HED_0012785
+
+
+
+
+
+ Modified-date
+ The date on which the item was modified (usually the last-modified data unless a complete record of dated modifications is kept.
+
+ hedId
+ HED_0012786
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ dateTimeClass
+
+
+ hedId
+ HED_0012787
+
+
+
+
+ Pathname
+ The specification of a node (file or directory) in a hierarchical file system, usually specified by listing the nodes top-down.
+
+ hedId
+ HED_0012788
+
+
+ #
+
+ takesValue
+
+
+ hedId
+ HED_0012789
+
+
+
+
+ URL
+ A valid URL.
+
+ hedId
+ HED_0012790
+
+
+ #
+
+ takesValue
+
+
+ hedId
+ HED_0012791
+
+
+
+
+
+ Parameter
+ Something user-defined for this experiment.
+
+ hedId
+ HED_0012792
+
+
+ Parameter-label
+ The name of the parameter.
+
+ hedId
+ HED_0012793
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ nameClass
+
+
+ hedId
+ HED_0012794
+
+
+
+
+ Parameter-value
+ The value of the parameter.
+
+ hedId
+ HED_0012795
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ textClass
+
+
+ hedId
+ HED_0012796
+
+
+
+
+
+
+ Organizational-property
+ Relating to an organization or the action of organizing something.
+
+ hedId
+ HED_0012797
+
+
+ Collection
+ A tag designating a grouping of items such as in a set or list.
+
+ reserved
+
+
+ hedId
+ HED_0012798
+
+
+ #
+ Name of the collection.
+
+ takesValue
+
+
+ valueClass
+ nameClass
+
+
+ hedId
+ HED_0012799
+
+
+
+
+ Condition-variable
+ An aspect of the experiment or task that is to be varied during the experiment. Task-conditions are sometimes called independent variables or contrasts.
+
+ reserved
+
+
+ hedId
+ HED_0012800
+
+
+ #
+ Name of the condition variable.
+
+ takesValue
+
+
+ valueClass
+ nameClass
+
+
+ hedId
+ HED_0012801
+
+
+
+
+ Control-variable
+ An aspect of the experiment that is fixed throughout the study and usually is explicitly controlled.
+
+ reserved
+
+
+ hedId
+ HED_0012802
+
+
+ #
+ Name of the control variable.
+
+ takesValue
+
+
+ valueClass
+ nameClass
+
+
+ hedId
+ HED_0012803
+
+
+
+
+ Def
+ A HED-specific utility tag used with a defined name to represent the tags associated with that definition.
+
+ requireChild
+
+
+ reserved
+
+
+ hedId
+ HED_0012804
+
+
+ #
+ Name of the definition.
+
+ takesValue
+
+
+ valueClass
+ nameClass
+
+
+ hedId
+ HED_0012805
+
+
+
+
+ Def-expand
+ A HED specific utility tag that is grouped with an expanded definition. The child value of the Def-expand is the name of the expanded definition.
+
+ requireChild
+
+
+ reserved
+
+
+ tagGroup
+
+
+ hedId
+ HED_0012806
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ nameClass
+
+
+ hedId
+ HED_0012807
+
+
+
+
+ Definition
+ A HED-specific utility tag whose child value is the name of the concept and the tag group associated with the tag is an English language explanation of a concept.
+
+ requireChild
+
+
+ reserved
+
+
+ topLevelTagGroup
+
+
+ hedId
+ HED_0012808
+
+
+ #
+ Name of the definition.
+
+ takesValue
+
+
+ valueClass
+ nameClass
+
+
+ hedId
+ HED_0012809
+
+
+
+
+ Event-context
+ A special HED tag inserted as part of a top-level tag group to contain information about the interrelated conditions under which the event occurs. The event context includes information about other events that are ongoing when this event happens.
+
+ reserved
+
+
+ topLevelTagGroup
+
+
+ unique
+
+
+ hedId
+ HED_0012810
+
+
+
+ Event-stream
+ A special HED tag indicating that this event is a member of an ordered succession of events.
+
+ reserved
+
+
+ hedId
+ HED_0012811
+
+
+ #
+ Name of the event stream.
+
+ takesValue
+
+
+ valueClass
+ nameClass
+
+
+ hedId
+ HED_0012812
+
+
+
+
+ Experimental-intertrial
+ A tag used to indicate a part of the experiment between trials usually where nothing is happening.
+
+ reserved
+
+
+ hedId
+ HED_0012813
+
+
+ #
+ Optional label for the intertrial block.
+
+ takesValue
+
+
+ valueClass
+ nameClass
+
+
+ hedId
+ HED_0012814
+
+
+
+
+ Experimental-trial
+ Designates a run or execution of an activity, for example, one execution of a script. A tag used to indicate a particular organizational part in the experimental design often containing a stimulus-response pair or stimulus-response-feedback triad.
+
+ reserved
+
+
+ hedId
+ HED_0012815
+
+
+ #
+ Optional label for the trial (often a numerical string).
+
+ takesValue
+
+
+ valueClass
+ nameClass
+
+
+ hedId
+ HED_0012816
+
+
+
+
+ Indicator-variable
+ An aspect of the experiment or task that is measured as task conditions are varied during the experiment. Experiment indicators are sometimes called dependent variables.
+
+ reserved
+
+
+ hedId
+ HED_0012817
+
+
+ #
+ Name of the indicator variable.
+
+ takesValue
+
+
+ valueClass
+ nameClass
+
+
+ hedId
+ HED_0012818
+
+
+
+
+ Recording
+ A tag designating the data recording. Recording tags are usually have temporal scope which is the entire recording.
+
+ reserved
+
+
+ hedId
+ HED_0012819
+
+
+ #
+ Optional label for the recording.
+
+ takesValue
+
+
+ valueClass
+ nameClass
+
+
+ hedId
+ HED_0012820
+
+
+
+
+ Task
+ An assigned piece of work, usually with a time allotment. A tag used to indicate a linkage the structured activities performed as part of the experiment.
+
+ reserved
+
+
+ hedId
+ HED_0012821
+
+
+ #
+ Optional label for the task block.
+
+ takesValue
+
+
+ valueClass
+ nameClass
+
+
+ hedId
+ HED_0012822
+
+
+
+
+ Time-block
+ A tag used to indicate a contiguous time block in the experiment during which something is fixed or noted.
+
+ reserved
+
+
+ hedId
+ HED_0012823
+
+
+ #
+ Optional label for the task block.
+
+ takesValue
+
+
+ valueClass
+ nameClass
+
+
+ hedId
+ HED_0012824
+
+
+
+
+
+ Sensory-property
+ Relating to sensation or the physical senses.
+
+ hedId
+ HED_0012825
+
+
+ Sensory-attribute
+ A sensory characteristic associated with another entity.
+
+ hedId
+ HED_0012826
+
+
+ Auditory-attribute
+ Pertaining to the sense of hearing.
+
+ hedId
+ HED_0012827
+
+
+ Loudness
+ Perceived intensity of a sound.
+
+ hedId
+ HED_0012828
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+ nameClass
+
+
+ hedId
+ HED_0012829
+
+
+
+
+ Pitch
+ A perceptual property that allows the user to order sounds on a frequency scale.
+
+ hedId
+ HED_0012830
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ frequencyUnits
+
+
+ hedId
+ HED_0012831
+
+
+
+
+ Sound-envelope
+ Description of how a sound changes over time.
+
+ hedId
+ HED_0012832
+
+
+ Sound-envelope-attack
+ The time taken for initial run-up of level from nil to peak usually beginning when the key on a musical instrument is pressed.
+
+ hedId
+ HED_0012833
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ timeUnits
+
+
+ hedId
+ HED_0012834
+
+
+
+
+ Sound-envelope-decay
+ The time taken for the subsequent run down from the attack level to the designated sustain level.
+
+ hedId
+ HED_0012835
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ timeUnits
+
+
+ hedId
+ HED_0012836
+
+
+
+
+ Sound-envelope-release
+ The time taken for the level to decay from the sustain level to zero after the key is released.
+
+ hedId
+ HED_0012837
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ timeUnits
+
+
+ hedId
+ HED_0012838
+
+
+
+
+ Sound-envelope-sustain
+ The time taken for the main sequence of the sound duration, until the key is released.
+
+ hedId
+ HED_0012839
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ timeUnits
+
+
+ hedId
+ HED_0012840
+
+
+
+
+
+ Sound-volume
+ The sound pressure level (SPL) usually the ratio to a reference signal estimated as the lower bound of hearing.
+
+ hedId
+ HED_0012841
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ unitClass
+ intensityUnits
+
+
+ hedId
+ HED_0012842
+
+
+
+
+ Timbre
+ The perceived sound quality of a singing voice or musical instrument.
+
+ hedId
+ HED_0012843
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ nameClass
+
+
+ hedId
+ HED_0012844
+
+
+
+
+
+ Gustatory-attribute
+ Pertaining to the sense of taste.
+
+ hedId
+ HED_0012845
+
+
+ Bitter
+ Having a sharp, pungent taste.
+
+ hedId
+ HED_0012846
+
+
+
+ Salty
+ Tasting of or like salt.
+
+ hedId
+ HED_0012847
+
+
+
+ Savory
+ Belonging to a taste that is salty or spicy rather than sweet.
+
+ hedId
+ HED_0012848
+
+
+
+ Sour
+ Having a sharp, acidic taste.
+
+ hedId
+ HED_0012849
+
+
+
+ Sweet
+ Having or resembling the taste of sugar.
+
+ hedId
+ HED_0012850
+
+
+
+
+ Olfactory-attribute
+ Having a smell.
+
+ hedId
+ HED_0012851
+
+
+
+ Somatic-attribute
+ Pertaining to the feelings in the body or of the nervous system.
+
+ hedId
+ HED_0012852
+
+
+ Pain
+ The sensation of discomfort, distress, or agony, resulting from the stimulation of specialized nerve endings.
+
+ hedId
+ HED_0012853
+
+
+
+ Stress
+ The negative mental, emotional, and physical reactions that occur when environmental stressors are perceived as exceeding the adaptive capacities of the individual.
+
+ hedId
+ HED_0012854
+
+
+
+
+ Tactile-attribute
+ Pertaining to the sense of touch.
+
+ hedId
+ HED_0012855
+
+
+ Tactile-pressure
+ Having a feeling of heaviness.
+
+ hedId
+ HED_0012856
+
+
+
+ Tactile-temperature
+ Having a feeling of hotness or coldness.
+
+ hedId
+ HED_0012857
+
+
+
+ Tactile-texture
+ Having a feeling of roughness.
+
+ hedId
+ HED_0012858
+
+
+
+ Tactile-vibration
+ Having a feeling of mechanical oscillation.
+
+ hedId
+ HED_0012859
+
+
+
+
+ Vestibular-attribute
+ Pertaining to the sense of balance or body position.
+
+ hedId
+ HED_0012860
+
+
+
+ Visual-attribute
+ Pertaining to the sense of sight.
+
+ hedId
+ HED_0012861
+
+
+ Color
+ The appearance of objects (or light sources) described in terms of perception of their hue and lightness (or brightness) and saturation.
+
+ hedId
+ HED_0012862
+
+
+ CSS-color
+ One of 140 colors supported by all browsers. For more details such as the color RGB or HEX values,check:https://www.w3schools.com/colors/colors_groups.asp.
+
+ hedId
+ HED_0012863
+
+
+ Blue-color
+ CSS color group.
+
+ hedId
+ HED_0012864
+
+
+ Blue
+ CSS-color 0x0000FF.
+
+ hedId
+ HED_0012865
+
+
+
+ CadetBlue
+ CSS-color 0x5F9EA0.
+
+ hedId
+ HED_0012866
+
+
+
+ CornflowerBlue
+ CSS-color 0x6495ED.
+
+ hedId
+ HED_0012867
+
+
+
+ DarkBlue
+ CSS-color 0x00008B.
+
+ hedId
+ HED_0012868
+
+
+
+ DeepSkyBlue
+ CSS-color 0x00BFFF.
+
+ hedId
+ HED_0012869
+
+
+
+ DodgerBlue
+ CSS-color 0x1E90FF.
+
+ hedId
+ HED_0012870
+
+
+
+ LightBlue
+ CSS-color 0xADD8E6.
+
+ hedId
+ HED_0012871
+
+
+
+ LightSkyBlue
+ CSS-color 0x87CEFA.
+
+ hedId
+ HED_0012872
+
+
+
+ LightSteelBlue
+ CSS-color 0xB0C4DE.
+
+ hedId
+ HED_0012873
+
+
+
+ MediumBlue
+ CSS-color 0x0000CD.
+
+ hedId
+ HED_0012874
+
+
+
+ MidnightBlue
+ CSS-color 0x191970.
+
+ hedId
+ HED_0012875
+
+
+
+ Navy
+ CSS-color 0x000080.
+
+ hedId
+ HED_0012876
+
+
+
+ PowderBlue
+ CSS-color 0xB0E0E6.
+
+ hedId
+ HED_0012877
+
+
+
+ RoyalBlue
+ CSS-color 0x4169E1.
+
+ hedId
+ HED_0012878
+
+
+
+ SkyBlue
+ CSS-color 0x87CEEB.
+
+ hedId
+ HED_0012879
+
+
+
+ SteelBlue
+ CSS-color 0x4682B4.
+
+ hedId
+ HED_0012880
+
+
+
+
+ Brown-color
+ CSS color group.
+
+ hedId
+ HED_0012881
+
+
+ Bisque
+ CSS-color 0xFFE4C4.
+
+ hedId
+ HED_0012882
+
+
+
+ BlanchedAlmond
+ CSS-color 0xFFEBCD.
+
+ hedId
+ HED_0012883
+
+
+
+ Brown
+ CSS-color 0xA52A2A.
+
+ hedId
+ HED_0012884
+
+
+
+ BurlyWood
+ CSS-color 0xDEB887.
+
+ hedId
+ HED_0012885
+
+
+
+ Chocolate
+ CSS-color 0xD2691E.
+
+ hedId
+ HED_0012886
+
+
+
+ Cornsilk
+ CSS-color 0xFFF8DC.
+
+ hedId
+ HED_0012887
+
+
+
+ DarkGoldenRod
+ CSS-color 0xB8860B.
+
+ hedId
+ HED_0012888
+
+
+
+ GoldenRod
+ CSS-color 0xDAA520.
+
+ hedId
+ HED_0012889
+
+
+
+ Maroon
+ CSS-color 0x800000.
+
+ hedId
+ HED_0012890
+
+
+
+ NavajoWhite
+ CSS-color 0xFFDEAD.
+
+ hedId
+ HED_0012891
+
+
+
+ Olive
+ CSS-color 0x808000.
+
+ hedId
+ HED_0012892
+
+
+
+ Peru
+ CSS-color 0xCD853F.
+
+ hedId
+ HED_0012893
+
+
+
+ RosyBrown
+ CSS-color 0xBC8F8F.
+
+ hedId
+ HED_0012894
+
+
+
+ SaddleBrown
+ CSS-color 0x8B4513.
+
+ hedId
+ HED_0012895
+
+
+
+ SandyBrown
+ CSS-color 0xF4A460.
+
+ hedId
+ HED_0012896
+
+
+
+ Sienna
+ CSS-color 0xA0522D.
+
+ hedId
+ HED_0012897
+
+
+
+ Tan
+ CSS-color 0xD2B48C.
+
+ hedId
+ HED_0012898
+
+
+
+ Wheat
+ CSS-color 0xF5DEB3.
+
+ hedId
+ HED_0012899
+
+
+
+
+ Cyan-color
+ CSS color group.
+
+ hedId
+ HED_0012900
+
+
+ Aqua
+ CSS-color 0x00FFFF.
+
+ hedId
+ HED_0012901
+
+
+
+ Aquamarine
+ CSS-color 0x7FFFD4.
+
+ hedId
+ HED_0012902
+
+
+
+ Cyan
+ CSS-color 0x00FFFF.
+
+ hedId
+ HED_0012903
+
+
+
+ DarkTurquoise
+ CSS-color 0x00CED1.
+
+ hedId
+ HED_0012904
+
+
+
+ LightCyan
+ CSS-color 0xE0FFFF.
+
+ hedId
+ HED_0012905
+
+
+
+ MediumTurquoise
+ CSS-color 0x48D1CC.
+
+ hedId
+ HED_0012906
+
+
+
+ PaleTurquoise
+ CSS-color 0xAFEEEE.
+
+ hedId
+ HED_0012907
+
+
+
+ Turquoise
+ CSS-color 0x40E0D0.
+
+ hedId
+ HED_0012908
+
+
+
+
+ Gray-color
+ CSS color group.
+
+ hedId
+ HED_0012909
+
+
+ Black
+ CSS-color 0x000000.
+
+ hedId
+ HED_0012910
+
+
+
+ DarkGray
+ CSS-color 0xA9A9A9.
+
+ hedId
+ HED_0012911
+
+
+
+ DarkSlateGray
+ CSS-color 0x2F4F4F.
+
+ hedId
+ HED_0012912
+
+
+
+ DimGray
+ CSS-color 0x696969.
+
+ hedId
+ HED_0012913
+
+
+
+ Gainsboro
+ CSS-color 0xDCDCDC.
+
+ hedId
+ HED_0012914
+
+
+
+ Gray
+ CSS-color 0x808080.
+
+ hedId
+ HED_0012915
+
+
+
+ LightGray
+ CSS-color 0xD3D3D3.
+
+ hedId
+ HED_0012916
+
+
+
+ LightSlateGray
+ CSS-color 0x778899.
+
+ hedId
+ HED_0012917
+
+
+
+ Silver
+ CSS-color 0xC0C0C0.
+
+ hedId
+ HED_0012918
+
+
+
+ SlateGray
+ CSS-color 0x708090.
+
+ hedId
+ HED_0012919
+
+
+
+
+ Green-color
+ CSS color group.
+
+ hedId
+ HED_0012920
+
+
+ Chartreuse
+ CSS-color 0x7FFF00.
+
+ hedId
+ HED_0012921
+
+
+
+ DarkCyan
+ CSS-color 0x008B8B.
+
+ hedId
+ HED_0012922
+
+
+
+ DarkGreen
+ CSS-color 0x006400.
+
+ hedId
+ HED_0012923
+
+
+
+ DarkOliveGreen
+ CSS-color 0x556B2F.
+
+ hedId
+ HED_0012924
+
+
+
+ DarkSeaGreen
+ CSS-color 0x8FBC8F.
+
+ hedId
+ HED_0012925
+
+
+
+ ForestGreen
+ CSS-color 0x228B22.
+
+ hedId
+ HED_0012926
+
+
+
+ Green
+ CSS-color 0x008000.
+
+ hedId
+ HED_0012927
+
+
+
+ GreenYellow
+ CSS-color 0xADFF2F.
+
+ hedId
+ HED_0012928
+
+
+
+ LawnGreen
+ CSS-color 0x7CFC00.
+
+ hedId
+ HED_0012929
+
+
+
+ LightGreen
+ CSS-color 0x90EE90.
+
+ hedId
+ HED_0012930
+
+
+
+ LightSeaGreen
+ CSS-color 0x20B2AA.
+
+ hedId
+ HED_0012931
+
+
+
+ Lime
+ CSS-color 0x00FF00.
+
+ hedId
+ HED_0012932
+
+
+
+ LimeGreen
+ CSS-color 0x32CD32.
+
+ hedId
+ HED_0012933
+
+
+
+ MediumAquaMarine
+ CSS-color 0x66CDAA.
+
+ hedId
+ HED_0012934
+
+
+
+ MediumSeaGreen
+ CSS-color 0x3CB371.
+
+ hedId
+ HED_0012935
+
+
+
+ MediumSpringGreen
+ CSS-color 0x00FA9A.
+
+ hedId
+ HED_0012936
+
+
+
+ OliveDrab
+ CSS-color 0x6B8E23.
+
+ hedId
+ HED_0012937
+
+
+
+ PaleGreen
+ CSS-color 0x98FB98.
+
+ hedId
+ HED_0012938
+
+
+
+ SeaGreen
+ CSS-color 0x2E8B57.
+
+ hedId
+ HED_0012939
+
+
+
+ SpringGreen
+ CSS-color 0x00FF7F.
+
+ hedId
+ HED_0012940
+
+
+
+ Teal
+ CSS-color 0x008080.
+
+ hedId
+ HED_0012941
+
+
+
+ YellowGreen
+ CSS-color 0x9ACD32.
+
+ hedId
+ HED_0012942
+
+
+
+
+ Orange-color
+ CSS color group.
+
+ hedId
+ HED_0012943
+
+
+ Coral
+ CSS-color 0xFF7F50.
+
+ hedId
+ HED_0012944
+
+
+
+ DarkOrange
+ CSS-color 0xFF8C00.
+
+ hedId
+ HED_0012945
+
+
+
+ Orange
+ CSS-color 0xFFA500.
+
+ hedId
+ HED_0012946
+
+
+
+ OrangeRed
+ CSS-color 0xFF4500.
+
+ hedId
+ HED_0012947
+
+
+
+ Tomato
+ CSS-color 0xFF6347.
+
+ hedId
+ HED_0012948
+
+
+
+
+ Pink-color
+ CSS color group.
+
+ hedId
+ HED_0012949
+
+
+ DeepPink
+ CSS-color 0xFF1493.
+
+ hedId
+ HED_0012950
+
+
+
+ HotPink
+ CSS-color 0xFF69B4.
+
+ hedId
+ HED_0012951
+
+
+
+ LightPink
+ CSS-color 0xFFB6C1.
+
+ hedId
+ HED_0012952
+
+
+
+ MediumVioletRed
+ CSS-color 0xC71585.
+
+ hedId
+ HED_0012953
+
+
+
+ PaleVioletRed
+ CSS-color 0xDB7093.
+
+ hedId
+ HED_0012954
+
+
+
+ Pink
+ CSS-color 0xFFC0CB.
+
+ hedId
+ HED_0012955
+
+
+
+
+ Purple-color
+ CSS color group.
+
+ hedId
+ HED_0012956
+
+
+ BlueViolet
+ CSS-color 0x8A2BE2.
+
+ hedId
+ HED_0012957
+
+
+
+ DarkMagenta
+ CSS-color 0x8B008B.
+
+ hedId
+ HED_0012958
+
+
+
+ DarkOrchid
+ CSS-color 0x9932CC.
+
+ hedId
+ HED_0012959
+
+
+
+ DarkSlateBlue
+ CSS-color 0x483D8B.
+
+ hedId
+ HED_0012960
+
+
+
+ DarkViolet
+ CSS-color 0x9400D3.
+
+ hedId
+ HED_0012961
+
+
+
+ Fuchsia
+ CSS-color 0xFF00FF.
+
+ hedId
+ HED_0012962
+
+
+
+ Indigo
+ CSS-color 0x4B0082.
+
+ hedId
+ HED_0012963
+
+
+
+ Lavender
+ CSS-color 0xE6E6FA.
+
+ hedId
+ HED_0012964
+
+
+
+ Magenta
+ CSS-color 0xFF00FF.
+
+ hedId
+ HED_0012965
+
+
+
+ MediumOrchid
+ CSS-color 0xBA55D3.
+
+ hedId
+ HED_0012966
+
+
+
+ MediumPurple
+ CSS-color 0x9370DB.
+
+ hedId
+ HED_0012967
+
+
+
+ MediumSlateBlue
+ CSS-color 0x7B68EE.
+
+ hedId
+ HED_0012968
+
+
+
+ Orchid
+ CSS-color 0xDA70D6.
+
+ hedId
+ HED_0012969
+
+
+
+ Plum
+ CSS-color 0xDDA0DD.
+
+ hedId
+ HED_0012970
+
+
+
+ Purple
+ CSS-color 0x800080.
+
+ hedId
+ HED_0012971
+
+
+
+ RebeccaPurple
+ CSS-color 0x663399.
+
+ hedId
+ HED_0012972
+
+
+
+ SlateBlue
+ CSS-color 0x6A5ACD.
+
+ hedId
+ HED_0012973
+
+
+
+ Thistle
+ CSS-color 0xD8BFD8.
+
+ hedId
+ HED_0012974
+
+
+
+ Violet
+ CSS-color 0xEE82EE.
+
+ hedId
+ HED_0012975
+
+
+
+
+ Red-color
+ CSS color group.
+
+ hedId
+ HED_0012976
+
+
+ Crimson
+ CSS-color 0xDC143C.
+
+ hedId
+ HED_0012977
+
+
+
+ DarkRed
+ CSS-color 0x8B0000.
+
+ hedId
+ HED_0012978
+
+
+
+ DarkSalmon
+ CSS-color 0xE9967A.
+
+ hedId
+ HED_0012979
+
+
+
+ FireBrick
+ CSS-color 0xB22222.
+
+ hedId
+ HED_0012980
+
+
+
+ IndianRed
+ CSS-color 0xCD5C5C.
+
+ hedId
+ HED_0012981
+
+
+
+ LightCoral
+ CSS-color 0xF08080.
+
+ hedId
+ HED_0012982
+
+
+
+ LightSalmon
+ CSS-color 0xFFA07A.
+
+ hedId
+ HED_0012983
+
+
+
+ Red
+ CSS-color 0xFF0000.
+
+ hedId
+ HED_0012984
+
+
+
+ Salmon
+ CSS-color 0xFA8072.
+
+ hedId
+ HED_0012985
+
+
+
+
+ White-color
+ CSS color group.
+
+ hedId
+ HED_0012986
+
+
+ AliceBlue
+ CSS-color 0xF0F8FF.
+
+ hedId
+ HED_0012987
+
+
+
+ AntiqueWhite
+ CSS-color 0xFAEBD7.
+
+ hedId
+ HED_0012988
+
+
+
+ Azure
+ CSS-color 0xF0FFFF.
+
+ hedId
+ HED_0012989
+
+
+
+ Beige
+ CSS-color 0xF5F5DC.
+
+ hedId
+ HED_0012990
+
+
+
+ FloralWhite
+ CSS-color 0xFFFAF0.
+
+ hedId
+ HED_0012991
+
+
+
+ GhostWhite
+ CSS-color 0xF8F8FF.
+
+ hedId
+ HED_0012992
+
+
+
+ HoneyDew
+ CSS-color 0xF0FFF0.
+
+ hedId
+ HED_0012993
+
+
+
+ Ivory
+ CSS-color 0xFFFFF0.
+
+ hedId
+ HED_0012994
+
+
+
+ LavenderBlush
+ CSS-color 0xFFF0F5.
+
+ hedId
+ HED_0012995
+
+
+
+ Linen
+ CSS-color 0xFAF0E6.
+
+ hedId
+ HED_0012996
+
+
+
+ MintCream
+ CSS-color 0xF5FFFA.
+
+ hedId
+ HED_0012997
+
+
+
+ MistyRose
+ CSS-color 0xFFE4E1.
+
+ hedId
+ HED_0012998
+
+
+
+ OldLace
+ CSS-color 0xFDF5E6.
+
+ hedId
+ HED_0012999
+
+
+
+ SeaShell
+ CSS-color 0xFFF5EE.
+
+ hedId
+ HED_0013000
+
+
+
+ Snow
+ CSS-color 0xFFFAFA.
+
+ hedId
+ HED_0013001
+
+
+
+ White
+ CSS-color 0xFFFFFF.
+
+ hedId
+ HED_0013002
+
+
+
+ WhiteSmoke
+ CSS-color 0xF5F5F5.
+
+ hedId
+ HED_0013003
+
+
+
+
+ Yellow-color
+ CSS color group.
+
+ hedId
+ HED_0013004
+
+
+ DarkKhaki
+ CSS-color 0xBDB76B.
+
+ hedId
+ HED_0013005
+
+
+
+ Gold
+ CSS-color 0xFFD700.
+
+ hedId
+ HED_0013006
+
+
+
+ Khaki
+ CSS-color 0xF0E68C.
+
+ hedId
+ HED_0013007
+
+
+
+ LemonChiffon
+ CSS-color 0xFFFACD.
+
+ hedId
+ HED_0013008
+
+
+
+ LightGoldenRodYellow
+ CSS-color 0xFAFAD2.
+
+ hedId
+ HED_0013009
+
+
+
+ LightYellow
+ CSS-color 0xFFFFE0.
+
+ hedId
+ HED_0013010
+
+
+
+ Moccasin
+ CSS-color 0xFFE4B5.
+
+ hedId
+ HED_0013011
+
+
+
+ PaleGoldenRod
+ CSS-color 0xEEE8AA.
+
+ hedId
+ HED_0013012
+
+
+
+ PapayaWhip
+ CSS-color 0xFFEFD5.
+
+ hedId
+ HED_0013013
+
+
+
+ PeachPuff
+ CSS-color 0xFFDAB9.
+
+ hedId
+ HED_0013014
+
+
+
+ Yellow
+ CSS-color 0xFFFF00.
+
+ hedId
+ HED_0013015
+
+
+
+
+
+ Color-shade
+ A slight degree of difference between colors, especially with regard to how light or dark it is or as distinguished from one nearly like it.
+
+ hedId
+ HED_0013016
+
+
+ Dark-shade
+ A color tone not reflecting much light.
+
+ hedId
+ HED_0013017
+
+
+
+ Light-shade
+ A color tone reflecting more light.
+
+ hedId
+ HED_0013018
+
+
+
+
+ Grayscale
+ Using a color map composed of shades of gray, varying from black at the weakest intensity to white at the strongest.
+
+ hedId
+ HED_0013019
+
+
+ #
+ White intensity between 0 and 1.
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0013020
+
+
+
+
+ HSV-color
+ A color representation that models how colors appear under light.
+
+ hedId
+ HED_0013021
+
+
+ HSV-value
+ An attribute of a visual sensation according to which an area appears to emit more or less light.
+
+ hedId
+ HED_0013022
+
+
+ #
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0013023
+
+
+
+
+ Hue
+ Attribute of a visual sensation according to which an area appears to be similar to one of the perceived colors.
+
+ hedId
+ HED_0013024
+
+
+ #
+ Angular value between 0 and 360.
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0013025
+
+
+
+
+ Saturation
+ Colorfulness of a stimulus relative to its own brightness.
+
+ hedId
+ HED_0013026
+
+
+ #
+ B value of RGB between 0 and 1.
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0013027
+
+
+
+
+
+ RGB-color
+ A color from the RGB schema.
+
+ hedId
+ HED_0013028
+
+
+ RGB-blue
+ The blue component.
+
+ hedId
+ HED_0013029
+
+
+ #
+ B value of RGB between 0 and 1.
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0013030
+
+
+
+
+ RGB-green
+ The green component.
+
+ hedId
+ HED_0013031
+
+
+ #
+ G value of RGB between 0 and 1.
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0013032
+
+
+
+
+ RGB-red
+ The red component.
+
+ hedId
+ HED_0013033
+
+
+ #
+ R value of RGB between 0 and 1.
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0013034
+
+
+
+
+
+
+ Luminance
+ A quality that exists by virtue of the luminous intensity per unit area projected in a given direction.
+
+ hedId
+ HED_0013035
+
+
+
+ Luminance-contrast
+ The difference in luminance in specific portions of a scene or image.
+
+ suggestedTag
+ Percentage
+ Ratio
+
+
+ hedId
+ HED_0013036
+
+
+ #
+ A non-negative value, usually in the range 0 to 1 or alternative 0 to 100, if representing a percentage.
+
+ takesValue
+
+
+ valueClass
+ numericClass
+
+
+ hedId
+ HED_0013037
+
+
+
+
+ Opacity
+ A measure of impenetrability to light.
+
+ hedId
+ HED_0013038
+
+
+
+
+
+ Sensory-presentation
+ The entity has a sensory manifestation.
+
+ hedId
+ HED_0013039
+
+
+ Auditory-presentation
+ The sense of hearing is used in the presentation to the user.
+
+ hedId
+ HED_0013040
+
+
+ Loudspeaker-separation
+ The distance between two loudspeakers. Grouped with the Distance tag.
+
+ suggestedTag
+ Distance
+
+
+ hedId
+ HED_0013041
+
+
+
+ Monophonic
+ Relating to sound transmission, recording, or reproduction involving a single transmission path.
+
+ hedId
+ HED_0013042
+
+
+
+ Silent
+ The absence of ambient audible sound or the state of having ceased to produce sounds.
+
+ hedId
+ HED_0013043
+
+
+
+ Stereophonic
+ Relating to, or constituting sound reproduction involving the use of separated microphones and two transmission channels to achieve the sound separation of a live hearing.
+
+ hedId
+ HED_0013044
+
+
+
+
+ Gustatory-presentation
+ The sense of taste used in the presentation to the user.
+
+ hedId
+ HED_0013045
+
+
+
+ Olfactory-presentation
+ The sense of smell used in the presentation to the user.
+
+ hedId
+ HED_0013046
+
+
+
+ Somatic-presentation
+ The nervous system is used in the presentation to the user.
+
+ hedId
+ HED_0013047
+
+
+
+ Tactile-presentation
+ The sense of touch used in the presentation to the user.
+
+ hedId
+ HED_0013048
+
+
+
+ Vestibular-presentation
+ The sense balance used in the presentation to the user.
+
+ hedId
+ HED_0013049
+
+
+
+ Visual-presentation
+ The sense of sight used in the presentation to the user.
+
+ hedId
+ HED_0013050
+
+
+ 2D-view
+ A view showing only two dimensions.
+
+ hedId
+ HED_0013051
+
+
+
+ 3D-view
+ A view showing three dimensions.
+
+ hedId
+ HED_0013052
+
+
+
+ Background-view
+ Parts of the view that are farthest from the viewer and usually the not part of the visual focus.
+
+ hedId
+ HED_0013053
+
+
+
+ Bistable-view
+ Something having two stable visual forms that have two distinguishable stable forms as in optical illusions.
+
+ hedId
+ HED_0013054
+
+
+
+ Foreground-view
+ Parts of the view that are closest to the viewer and usually the most important part of the visual focus.
+
+ hedId
+ HED_0013055
+
+
+
+ Foveal-view
+ Visual presentation directly on the fovea. A view projected on the small depression in the retina containing only cones and where vision is most acute.
+
+ hedId
+ HED_0013056
+
+
+
+ Map-view
+ A diagrammatic representation of an area of land or sea showing physical features, cities, roads.
+
+ hedId
+ HED_0013057
+
+
+ Aerial-view
+ Elevated view of an object from above, with a perspective as though the observer were a bird.
+
+ hedId
+ HED_0013058
+
+
+
+ Satellite-view
+ A representation as captured by technology such as a satellite.
+
+ hedId
+ HED_0013059
+
+
+
+ Street-view
+ A 360-degrees panoramic view from a position on the ground.
+
+ hedId
+ HED_0013060
+
+
+
+
+ Peripheral-view
+ Indirect vision as it occurs outside the point of fixation.
+
+ hedId
+ HED_0013061
+
+
+
+
+
+
+ Task-property
+ Something that pertains to a task.
+
+ extensionAllowed
+
+
+ hedId
+ HED_0013062
+
+
+ Task-action-type
+ How an agent action should be interpreted in terms of the task specification.
+
+ hedId
+ HED_0013063
+
+
+ Appropriate-action
+ An action suitable or proper in the circumstances.
+
+ relatedTag
+ Inappropriate-action
+
+
+ hedId
+ HED_0013064
+
+
+
+ Correct-action
+ An action that was a correct response in the context of the task.
+
+ relatedTag
+ Incorrect-action
+ Indeterminate-action
+
+
+ hedId
+ HED_0013065
+
+
+
+ Correction
+ An action offering an improvement to replace a mistake or error.
+
+ hedId
+ HED_0013066
+
+
+
+ Done-indication
+ An action that indicates that the participant has completed this step in the task.
+
+ relatedTag
+ Ready-indication
+
+
+ hedId
+ HED_0013067
+
+
+
+ Imagined-action
+ Form a mental image or concept of something. This is used to identity something that only happened in the imagination of the participant as in imagined movements in motor imagery paradigms.
+
+ hedId
+ HED_0013068
+
+
+
+ Inappropriate-action
+ An action not in keeping with what is correct or proper for the task.
+
+ relatedTag
+ Appropriate-action
+
+
+ hedId
+ HED_0013069
+
+
+
+ Incorrect-action
+ An action considered wrong or incorrect in the context of the task.
+
+ relatedTag
+ Correct-action
+ Indeterminate-action
+
+
+ hedId
+ HED_0013070
+
+
+
+ Indeterminate-action
+ An action that cannot be distinguished between two or more possibilities in the current context. This tag might be applied when an outside evaluator or a classification algorithm cannot determine a definitive result.
+
+ relatedTag
+ Correct-action
+ Incorrect-action
+ Miss
+ Near-miss
+
+
+ hedId
+ HED_0013071
+
+
+
+ Miss
+ An action considered to be a failure in the context of the task. For example, if the agent is supposed to try to hit a target and misses.
+
+ relatedTag
+ Near-miss
+
+
+ hedId
+ HED_0013072
+
+
+
+ Near-miss
+ An action barely satisfied the requirements of the task. In a driving experiment for example this could pertain to a narrowly avoided collision or other accident.
+
+ relatedTag
+ Miss
+
+
+ hedId
+ HED_0013073
+
+
+
+ Omitted-action
+ An expected response was skipped.
+
+ hedId
+ HED_0013074
+
+
+
+ Ready-indication
+ An action that indicates that the participant is ready to perform the next step in the task.
+
+ relatedTag
+ Done-indication
+
+
+ hedId
+ HED_0013075
+
+
+
+
+ Task-attentional-demand
+ Strategy for allocating attention toward goal-relevant information.
+
+ hedId
+ HED_0013076
+
+
+ Bottom-up-attention
+ Attentional guidance purely by externally driven factors to stimuli that are salient because of their inherent properties relative to the background. Sometimes this is referred to as stimulus driven.
+
+ relatedTag
+ Top-down-attention
+
+
+ hedId
+ HED_0013077
+
+
+
+ Covert-attention
+ Paying attention without moving the eyes.
+
+ relatedTag
+ Overt-attention
+
+
+ hedId
+ HED_0013078
+
+
+
+ Divided-attention
+ Integrating parallel multiple stimuli. Behavior involving responding simultaneously to multiple tasks or multiple task demands.
+
+ relatedTag
+ Focused-attention
+
+
+ hedId
+ HED_0013079
+
+
+
+ Focused-attention
+ Responding discretely to specific visual, auditory, or tactile stimuli.
+
+ relatedTag
+ Divided-attention
+
+
+ hedId
+ HED_0013080
+
+
+
+ Orienting-attention
+ Directing attention to a target stimulus.
+
+ hedId
+ HED_0013081
+
+
+
+ Overt-attention
+ Selectively processing one location over others by moving the eyes to point at that location.
+
+ relatedTag
+ Covert-attention
+
+
+ hedId
+ HED_0013082
+
+
+
+ Selective-attention
+ Maintaining a behavioral or cognitive set in the face of distracting or competing stimuli. Ability to pay attention to a limited array of all available sensory information.
+
+ hedId
+ HED_0013083
+
+
+
+ Sustained-attention
+ Maintaining a consistent behavioral response during continuous and repetitive activity.
+
+ hedId
+ HED_0013084
+
+
+
+ Switched-attention
+ Having to switch attention between two or more modalities of presentation.
+
+ hedId
+ HED_0013085
+
+
+
+ Top-down-attention
+ Voluntary allocation of attention to certain features. Sometimes this is referred to goal-oriented attention.
+
+ relatedTag
+ Bottom-up-attention
+
+
+ hedId
+ HED_0013086
+
+
+
+
+ Task-effect-evidence
+ The evidence supporting the conclusion that the event had the specified effect.
+
+ hedId
+ HED_0013087
+
+
+ Behavioral-evidence
+ An indication or conclusion based on the behavior of an agent.
+
+ hedId
+ HED_0013088
+
+
+
+ Computational-evidence
+ A type of evidence in which data are produced, and/or generated, and/or analyzed on a computer.
+
+ hedId
+ HED_0013089
+
+
+
+ External-evidence
+ A phenomenon that follows and is caused by some previous phenomenon.
+
+ hedId
+ HED_0013090
+
+
+
+ Intended-effect
+ A phenomenon that is intended to follow and be caused by some previous phenomenon.
+
+ hedId
+ HED_0013091
+
+
+
+
+ Task-event-role
+ The purpose of an event with respect to the task.
+
+ hedId
+ HED_0013092
+
+
+ Cue
+ A signal for an action usually indicating a particular response.
+
+ hedId
+ HED_0013104
+
+
+
+ Experimental-stimulus
+ Part of something designed to elicit a response in the experiment.
+
+ hedId
+ HED_0013093
+
+
+
+ Feedback
+ An evaluative response to an inquiry, process, event, or activity.
+
+ hedId
+ HED_0013108
+
+
+
+ Incidental
+ A sensory or other type of event that is unrelated to the task or experiment.
+
+ hedId
+ HED_0013094
+
+
+
+ Instructional
+ Usually associated with a sensory event intended to give instructions to the participant about the task or behavior.
+
+ hedId
+ HED_0013095
+
+
+
+ Mishap
+ Unplanned disruption such as an equipment or experiment control abnormality or experimenter error.
+
+ hedId
+ HED_0013096
+
+
+
+ Participant-response
+ Something related to a participant actions in performing the task.
+
+ hedId
+ HED_0013097
+
+
+
+ Task-activity
+ Something that is part of the overall task or is necessary to the overall experiment but is not directly part of a stimulus-response cycle. Examples would be taking a survey or provided providing a silva sample.
+
+ hedId
+ HED_0013098
+
+
+
+ Warning
+ Something that should warn the participant that the parameters of the task have been or are about to be exceeded such as a warning message about getting too close to the shoulder of the road in a driving task.
+
+ hedId
+ HED_0013099
+
+
+
+
+ Task-relationship
+ Specifying organizational importance of sub-tasks.
+
+ hedId
+ HED_0013100
+
+
+ Background-subtask
+ A part of the task which should be performed in the background as for example inhibiting blinks due to instruction while performing the primary task.
+
+ hedId
+ HED_0013101
+
+
+
+ Primary-subtask
+ A part of the task which should be the primary focus of the participant.
+
+ hedId
+ HED_0013102
+
+
+
+
+ Task-stimulus-role
+ The role the stimulus or other type of sensory event, such as feedback, plays in the task.
+
+ hedId
+ HED_0013103
+
+
+ Distractor
+ A person or thing that distracts or a plausible but incorrect option in a multiple-choice question. In psychological studies this is sometimes referred to as a foil.
+
+ hedId
+ HED_0013105
+
+
+
+ Expected
+ Considered likely, probable or anticipated. Something of low information value as in frequent non-targets in an RSVP paradigm.
+
+ relatedTag
+ Unexpected
+
+
+ suggestedTag
+ Target
+
+
+ hedId
+ HED_0013106
+
+
+
+ Extraneous
+ Irrelevant or unrelated to the subject being dealt with.
+
+ hedId
+ HED_0013107
+
+
+
+ Go-signal
+ An indicator to proceed with a planned action.
+
+ relatedTag
+ Stop-signal
+
+
+ hedId
+ HED_0013109
+
+
+
+ Meaningful
+ Conveying significant or relevant information.
+
+ hedId
+ HED_0013110
+
+
+
+ Newly-learned
+ Representing recently acquired information or understanding.
+
+ hedId
+ HED_0013111
+
+
+
+ Non-informative
+ Something that is not useful in forming an opinion or judging an outcome.
+
+ hedId
+ HED_0013112
+
+
+
+ Non-target
+ Something other than that done or looked for. Also tag Expected if the Non-target is frequent.
+
+ relatedTag
+ Target
+
+
+ hedId
+ HED_0013113
+
+
+
+ Not-meaningful
+ Not having a serious, important, or useful quality or purpose.
+
+ hedId
+ HED_0013114
+
+
+
+ Novel
+ Having no previous example or precedent or parallel.
+
+ hedId
+ HED_0013115
+
+
+
+ Oddball
+ Something unusual, or infrequent.
+
+ relatedTag
+ Unexpected
+
+
+ suggestedTag
+ Target
+
+
+ hedId
+ HED_0013116
+
+
+
+ Penalty
+ A disadvantage, loss, or hardship due to some action.
+
+ hedId
+ HED_0013117
+
+
+
+ Planned
+ Something that was decided on or arranged in advance.
+
+ relatedTag
+ Unplanned
+
+
+ hedId
+ HED_0013118
+
+
+
+ Priming
+ An implicit memory effect in which exposure to a stimulus influences response to a later stimulus.
+
+ hedId
+ HED_0013119
+
+
+
+ Query
+ A sentence of inquiry that asks for a reply.
+
+ hedId
+ HED_0013120
+
+
+
+ Reward
+ A positive reinforcement for a desired action, behavior or response.
+
+ hedId
+ HED_0013121
+
+
+
+ Stop-signal
+ An indicator that the agent should stop the current activity.
+
+ relatedTag
+ Go-signal
+
+
+ hedId
+ HED_0013122
+
+
+
+ Target
+ Something fixed as a goal, destination, or point of examination.
+
+ hedId
+ HED_0013123
+
+
+
+ Threat
+ An indicator that signifies hostility and predicts an increased probability of attack.
+
+ hedId
+ HED_0013124
+
+
+
+ Timed
+ Something planned or scheduled to be done at a particular time or lasting for a specified amount of time.
+
+ hedId
+ HED_0013125
+
+
+
+ Unexpected
+ Something that is not anticipated.
+
+ relatedTag
+ Expected
+
+
+ hedId
+ HED_0013126
+
+
+
+ Unplanned
+ Something that has not been planned as part of the task.
+
+ relatedTag
+ Planned
+
+
+ hedId
+ HED_0013127
+
+
+
+
+
+
+ Relation
+ Concerns the way in which two or more people or things are connected.
+
+ extensionAllowed
+
+
+ hedId
+ HED_0013128
+
+
+ Comparative-relation
+ Something considered in comparison to something else. The first entity is the focus.
+
+ hedId
+ HED_0013129
+
+
+ Approximately-equal-to
+ (A, (Approximately-equal-to, B)) indicates that A and B have almost the same value. Here A and B could refer to sizes, orders, positions or other quantities.
+
+ hedId
+ HED_0013130
+
+
+
+ Equal-to
+ (A, (Equal-to, B)) indicates that the size or order of A is the same as that of B.
+
+ hedId
+ HED_0013131
+
+
+
+ Greater-than
+ (A, (Greater-than, B)) indicates that the relative size or order of A is bigger than that of B.
+
+ hedId
+ HED_0013132
+
+
+
+ Greater-than-or-equal-to
+ (A, (Greater-than-or-equal-to, B)) indicates that the relative size or order of A is bigger than or the same as that of B.
+
+ hedId
+ HED_0013133
+
+
+
+ Less-than
+ (A, (Less-than, B)) indicates that A is smaller than B. Here A and B could refer to sizes, orders, positions or other quantities.
+
+ hedId
+ HED_0013134
+
+
+
+ Less-than-or-equal-to
+ (A, (Less-than-or-equal-to, B)) indicates that the relative size or order of A is smaller than or equal to B.
+
+ hedId
+ HED_0013135
+
+
+
+ Not-equal-to
+ (A, (Not-equal-to, B)) indicates that the size or order of A is not the same as that of B.
+
+ hedId
+ HED_0013136
+
+
+
+
+ Connective-relation
+ Indicates two entities are related in some way. The first entity is the focus.
+
+ hedId
+ HED_0013137
+
+
+ Belongs-to
+ (A, (Belongs-to, B)) indicates that A is a member of B.
+
+ hedId
+ HED_0013138
+
+
+
+ Connected-to
+ (A, (Connected-to, B)) indicates that A is related to B in some respect, usually through a direct link.
+
+ hedId
+ HED_0013139
+
+
+
+ Contained-in
+ (A, (Contained-in, B)) indicates that A is completely inside of B.
+
+ hedId
+ HED_0013140
+
+
+
+ Described-by
+ (A, (Described-by, B)) indicates that B provides information about A.
+
+ hedId
+ HED_0013141
+
+
+
+ From-to
+ (A, (From-to, B)) indicates a directional relation from A to B. A is considered the source.
+
+ hedId
+ HED_0013142
+
+
+
+ Group-of
+ (A, (Group-of, B)) indicates A is a group of items of type B.
+
+ hedId
+ HED_0013143
+
+
+
+ Implied-by
+ (A, (Implied-by, B)) indicates B is suggested by A.
+
+ hedId
+ HED_0013144
+
+
+
+ Includes
+ (A, (Includes, B)) indicates that A has B as a member or part.
+
+ hedId
+ HED_0013145
+
+
+
+ Interacts-with
+ (A, (Interacts-with, B)) indicates A and B interact, possibly reciprocally.
+
+ hedId
+ HED_0013146
+
+
+
+ Member-of
+ (A, (Member-of, B)) indicates A is a member of group B.
+
+ hedId
+ HED_0013147
+
+
+
+ Part-of
+ (A, (Part-of, B)) indicates A is a part of the whole B.
+
+ hedId
+ HED_0013148
+
+
+
+ Performed-by
+ (A, (Performed-by, B)) indicates that the action or procedure A was carried out by agent B.
+
+ hedId
+ HED_0013149
+
+
+
+ Performed-using
+ (A, (Performed-using, B)) indicates that the action or procedure A was accomplished using B.
+
+ hedId
+ HED_0013150
+
+
+
+ Related-to
+ (A, (Related-to, B)) indicates A has some relationship to B.
+
+ hedId
+ HED_0013151
+
+
+
+ Unrelated-to
+ (A, (Unrelated-to, B)) indicates that A is not related to B.For example, A is not related to Task.
+
+ hedId
+ HED_0013152
+
+
+
+
+ Directional-relation
+ A relationship indicating direction of change of one entity relative to another. The first entity is the focus.
+
+ hedId
+ HED_0013153
+
+
+ Away-from
+ (A, (Away-from, B)) indicates that A is going or has moved away from B. The meaning depends on A and B.
+
+ hedId
+ HED_0013154
+
+
+
+ Towards
+ (A, (Towards, B)) indicates that A is going to or has moved to B. The meaning depends on A and B.
+
+ hedId
+ HED_0013155
+
+
+
+
+ Logical-relation
+ Indicating a logical relationship between entities. The first entity is usually the focus.
+
+ hedId
+ HED_0013156
+
+
+ And
+ (A, (And, B)) means A and B are both in effect.
+
+ hedId
+ HED_0013157
+
+
+
+ Or
+ (A, (Or, B)) means at least one of A and B are in effect.
+
+ hedId
+ HED_0013158
+
+
+
+
+ Spatial-relation
+ Indicating a relationship about position between entities.
+
+ hedId
+ HED_0013159
+
+
+ Above
+ (A, (Above, B)) means A is in a place or position that is higher than B.
+
+ hedId
+ HED_0013160
+
+
+
+ Across-from
+ (A, (Across-from, B)) means A is on the opposite side of something from B.
+
+ hedId
+ HED_0013161
+
+
+
+ Adjacent-to
+ (A, (Adjacent-to, B)) indicates that A is next to B in time or space.
+
+ hedId
+ HED_0013162
+
+
+
+ Ahead-of
+ (A, (Ahead-of, B)) indicates that A is further forward in time or space in B.
+
+ hedId
+ HED_0013163
+
+
+
+ Around
+ (A, (Around, B)) means A is in or near the present place or situation of B.
+
+ hedId
+ HED_0013164
+
+
+
+ Behind
+ (A, (Behind, B)) means A is at or to the far side of B, typically so as to be hidden by it.
+
+ hedId
+ HED_0013165
+
+
+
+ Below
+ (A, (Below, B)) means A is in a place or position that is lower than the position of B.
+
+ hedId
+ HED_0013166
+
+
+
+ Between
+ (A, (Between, (B, C))) means A is in the space or interval separating B and C.
+
+ hedId
+ HED_0013167
+
+
+
+ Bilateral-to
+ (A, (Bilateral, B)) means A is on both sides of B or affects both sides of B.
+
+ hedId
+ HED_0013168
+
+
+
+ Bottom-edge-of
+ (A, (Bottom-edge-of, B)) means A is on the bottom most part or or near the boundary of B.
+
+ relatedTag
+ Left-edge-of
+ Right-edge-of
+ Top-edge-of
+
+
+ hedId
+ HED_0013169
+
+
+
+ Boundary-of
+ (A, (Boundary-of, B)) means A is on or part of the edge or boundary of B.
+
+ hedId
+ HED_0013170
+
+
+
+ Center-of
+ (A, (Center-of, B)) means A is at a point or or in an area that is approximately central within B.
+
+ hedId
+ HED_0013171
+
+
+
+ Close-to
+ (A, (Close-to, B)) means A is at a small distance from or is located near in space to B.
+
+ hedId
+ HED_0013172
+
+
+
+ Far-from
+ (A, (Far-from, B)) means A is at a large distance from or is not located near in space to B.
+
+ hedId
+ HED_0013173
+
+
+
+ In-front-of
+ (A, (In-front-of, B)) means A is in a position just ahead or at the front part of B, potentially partially blocking B from view.
+
+ hedId
+ HED_0013174
+
+
+
+ Left-edge-of
+ (A, (Left-edge-of, B)) means A is located on the left side of B on or near the boundary of B.
+
+ relatedTag
+ Bottom-edge-of
+ Right-edge-of
+ Top-edge-of
+
+
+ hedId
+ HED_0013175
+
+
+
+ Left-side-of
+ (A, (Left-side-of, B)) means A is located on the left side of B usually as part of B.
+
+ relatedTag
+ Right-side-of
+
+
+ hedId
+ HED_0013176
+
+
+
+ Lower-center-of
+ (A, (Lower-center-of, B)) means A is situated on the lower center part of B (due south). This relation is often used to specify qualitative information about screen position.
+
+ relatedTag
+ Center-of
+ Lower-left-of
+ Lower-right-of
+ Upper-center-of
+ Upper-right-of
+
+
+ hedId
+ HED_0013177
+
+
+
+ Lower-left-of
+ (A, (Lower-left-of, B)) means A is situated on the lower left part of B. This relation is often used to specify qualitative information about screen position.
+
+ relatedTag
+ Center-of
+ Lower-center-of
+ Lower-right-of
+ Upper-center-of
+ Upper-left-of
+ Upper-right-of
+
+
+ hedId
+ HED_0013178
+
+
+
+ Lower-right-of
+ (A, (Lower-right-of, B)) means A is situated on the lower right part of B. This relation is often used to specify qualitative information about screen position.
+
+ relatedTag
+ Center-of
+ Lower-center-of
+ Lower-left-of
+ Upper-left-of
+ Upper-center-of
+ Upper-left-of
+ Lower-right-of
+
+
+ hedId
+ HED_0013179
+
+
+
+ Outside-of
+ (A, (Outside-of, B)) means A is located in the space around but not including B.
+
+ hedId
+ HED_0013180
+
+
+
+ Over
+ (A, (Over, B)) means A above is above B so as to cover or protect or A extends over the a general area as from a from a vantage point.
+
+ hedId
+ HED_0013181
+
+
+
+ Right-edge-of
+ (A, (Right-edge-of, B)) means A is located on the right side of B on or near the boundary of B.
+
+ relatedTag
+ Bottom-edge-of
+ Left-edge-of
+ Top-edge-of
+
+
+ hedId
+ HED_0013182
+
+
+
+ Right-side-of
+ (A, (Right-side-of, B)) means A is located on the right side of B usually as part of B.
+
+ relatedTag
+ Left-side-of
+
+
+ hedId
+ HED_0013183
+
+
+
+ To-left-of
+ (A, (To-left-of, B)) means A is located on or directed toward the side to the west of B when B is facing north. This term is used when A is not part of B.
+
+ hedId
+ HED_0013184
+
+
+
+ To-right-of
+ (A, (To-right-of, B)) means A is located on or directed toward the side to the east of B when B is facing north. This term is used when A is not part of B.
+
+ hedId
+ HED_0013185
+
+
+
+ Top-edge-of
+ (A, (Top-edge-of, B)) means A is on the uppermost part or or near the boundary of B.
+
+ relatedTag
+ Left-edge-of
+ Right-edge-of
+ Bottom-edge-of
+
+
+ hedId
+ HED_0013186
+
+
+
+ Top-of
+ (A, (Top-of, B)) means A is on the uppermost part, side, or surface of B.
+
+ hedId
+ HED_0013187
+
+
+
+ Underneath
+ (A, (Underneath, B)) means A is situated directly below and may be concealed by B.
+
+ hedId
+ HED_0013188
+
+
+
+ Upper-center-of
+ (A, (Upper-center-of, B)) means A is situated on the upper center part of B (due north). This relation is often used to specify qualitative information about screen position.
+
+ relatedTag
+ Center-of
+ Lower-center-of
+ Lower-left-of
+ Lower-right-of
+ Upper-center-of
+ Upper-right-of
+
+
+ hedId
+ HED_0013189
+
+
+
+ Upper-left-of
+ (A, (Upper-left-of, B)) means A is situated on the upper left part of B. This relation is often used to specify qualitative information about screen position.
+
+ relatedTag
+ Center-of
+ Lower-center-of
+ Lower-left-of
+ Lower-right-of
+ Upper-center-of
+ Upper-right-of
+
+
+ hedId
+ HED_0013190
+
+
+
+ Upper-right-of
+ (A, (Upper-right-of, B)) means A is situated on the upper right part of B. This relation is often used to specify qualitative information about screen position.
+
+ relatedTag
+ Center-of
+ Lower-center-of
+ Lower-left-of
+ Upper-left-of
+ Upper-center-of
+ Lower-right-of
+
+
+ hedId
+ HED_0013191
+
+
+
+ Within
+ (A, (Within, B)) means A is on the inside of or contained in B.
+
+ hedId
+ HED_0013192
+
+
+
+
+ Temporal-relation
+ A relationship that includes a temporal or time-based component.
+
+ hedId
+ HED_0013193
+
+
+ After
+ (A, (After, B)) means A happens at a time subsequent to a reference time related to B.
+
+ hedId
+ HED_0013194
+
+
+
+ Asynchronous-with
+ (A, (Asynchronous-with, B)) means A happens at times not occurring at the same time or having the same period or phase as B.
+
+ hedId
+ HED_0013195
+
+
+
+ Before
+ (A, (Before, B)) means A happens at a time earlier in time or order than B.
+
+ hedId
+ HED_0013196
+
+
+
+ During
+ (A, (During, B)) means A happens at some point in a given period of time in which B is ongoing.
+
+ hedId
+ HED_0013197
+
+
+
+ Synchronous-with
+ (A, (Synchronous-with, B)) means A happens at occurs at the same time or rate as B.
+
+ hedId
+ HED_0013198
+
+
+
+ Waiting-for
+ (A, (Waiting-for, B)) means A pauses for something to happen in B.
+
+ hedId
+ HED_0013199
+
+
+
+
+
+
+
+ accelerationUnits
+
+ defaultUnits
+ m-per-s^2
+
+
+ hedId
+ HED_0011500
+
+
+ m-per-s^2
+
+ SIUnit
+
+
+ unitSymbol
+
+
+ conversionFactor
+ 1.0
+
+
+ allowedCharacter
+ caret
+
+
+ hedId
+ HED_0011600
+
+
+
+
+ angleUnits
+
+ defaultUnits
+ radian
+
+
+ hedId
+ HED_0011501
+
+
+ radian
+
+ SIUnit
+
+
+ conversionFactor
+ 1.0
+
+
+ hedId
+ HED_0011601
+
+
+
+ rad
+
+ SIUnit
+
+
+ unitSymbol
+
+
+ conversionFactor
+ 1.0
+
+
+ hedId
+ HED_0011602
+
+
+
+ degree
+
+ conversionFactor
+ 0.0174533
+
+
+ hedId
+ HED_0011603
+
+
+
+
+ areaUnits
+
+ defaultUnits
+ m^2
+
+
+ hedId
+ HED_0011502
+
+
+ m^2
+
+ SIUnit
+
+
+ unitSymbol
+
+
+ conversionFactor
+ 1.0
+
+
+ allowedCharacter
+ caret
+
+
+ hedId
+ HED_0011604
+
+
+
+
+ currencyUnits
+ Units indicating the worth of something.
+
+ defaultUnits
+ $
+
+
+ hedId
+ HED_0011503
+
+
+ dollar
+
+ conversionFactor
+ 1.0
+
+
+ hedId
+ HED_0011605
+
+
+
+ $
+
+ unitPrefix
+
+
+ unitSymbol
+
+
+ conversionFactor
+ 1.0
+
+
+ allowedCharacter
+ dollar
+
+
+ hedId
+ HED_0011606
+
+
+
+ euro
+ The official currency of a large subset of member countries of the European Union.
+
+ hedId
+ HED_0011607
+
+
+
+ point
+ An arbitrary unit of value, usually an integer indicating reward or penalty.
+
+ hedId
+ HED_0011608
+
+
+
+
+ electricPotentialUnits
+
+ defaultUnits
+ uV
+
+
+ hedId
+ HED_0011504
+
+
+ V
+
+ SIUnit
+
+
+ unitSymbol
+
+
+ conversionFactor
+ 0.000001
+
+
+ hedId
+ HED_0011609
+
+
+
+ uV
+ Added as a direct unit because it is the default unit.
+
+ conversionFactor
+ 1.0
+
+
+ hedId
+ HED_0011644
+
+
+
+ volt
+
+ SIUnit
+
+
+ conversionFactor
+ 0.000001
+
+
+ hedId
+ HED_0011610
+
+
+
+
+ frequencyUnits
+
+ defaultUnits
+ Hz
+
+
+ hedId
+ HED_0011505
+
+
+ hertz
+
+ SIUnit
+
+
+ conversionFactor
+ 1.0
+
+
+ hedId
+ HED_0011611
+
+
+
+ Hz
+
+ SIUnit
+
+
+ unitSymbol
+
+
+ conversionFactor
+ 1.0
+
+
+ hedId
+ HED_0011612
+
+
+
+
+ intensityUnits
+
+ defaultUnits
+ dB
+
+
+ hedId
+ HED_0011506
+
+
+ dB
+ Intensity expressed as ratio to a threshold. May be used for sound intensity.
+
+ unitSymbol
+
+
+ conversionFactor
+ 1.0
+
+
+ hedId
+ HED_0011613
+
+
+
+ candela
+ Units used to express light intensity.
+
+ SIUnit
+
+
+ hedId
+ HED_0011614
+
+
+
+ cd
+ Units used to express light intensity.
+
+ SIUnit
+
+
+ unitSymbol
+
+
+ hedId
+ HED_0011615
+
+
+
+
+ jerkUnits
+
+ defaultUnits
+ m-per-s^3
+
+
+ hedId
+ HED_0011507
+
+
+ m-per-s^3
+
+ unitSymbol
+
+
+ conversionFactor
+ 1.0
+
+
+ allowedCharacter
+ caret
+
+
+ hedId
+ HED_0011616
+
+
+
+
+ magneticFieldUnits
+
+ defaultUnits
+ T
+
+
+ hedId
+ HED_0011508
+
+
+ tesla
+
+ SIUnit
+
+
+ conversionFactor
+ 10e-15
+
+
+ hedId
+ HED_0011617
+
+
+
+ T
+
+ SIUnit
+
+
+ unitSymbol
+
+
+ conversionFactor
+ 10e-15
+
+
+ hedId
+ HED_0011618
+
+
+
+
+ memorySizeUnits
+
+ defaultUnits
+ B
+
+
+ hedId
+ HED_0011509
+
+
+ byte
+
+ SIUnit
+
+
+ conversionFactor
+ 1.0
+
+
+ hedId
+ HED_0011619
+
+
+
+ B
+
+ SIUnit
+
+
+ unitSymbol
+
+
+ conversionFactor
+ 1.0
+
+
+ hedId
+ HED_0011620
+
+
+
+
+ physicalLengthUnits
+
+ defaultUnits
+ m
+
+
+ hedId
+ HED_0011510
+
+
+ foot
+
+ conversionFactor
+ 0.3048
+
+
+ hedId
+ HED_0011621
+
+
+
+ inch
+
+ conversionFactor
+ 0.0254
+
+
+ hedId
+ HED_0011622
+
+
+
+ meter
+
+ SIUnit
+
+
+ conversionFactor
+ 1.0
+
+
+ hedId
+ HED_0011623
+
+
+
+ metre
+
+ SIUnit
+
+
+ conversionFactor
+ 1.0
+
+
+ hedId
+ HED_0011624
+
+
+
+ m
+
+ SIUnit
+
+
+ unitSymbol
+
+
+ conversionFactor
+ 1.0
+
+
+ hedId
+ HED_0011625
+
+
+
+ mile
+
+ conversionFactor
+ 1609.34
+
+
+ hedId
+ HED_0011626
+
+
+
+
+ speedUnits
+
+ defaultUnits
+ m-per-s
+
+
+ hedId
+ HED_0011511
+
+
+ m-per-s
+
+ SIUnit
+
+
+ unitSymbol
+
+
+ conversionFactor
+ 1.0
+
+
+ hedId
+ HED_0011627
+
+
+
+ mph
+
+ unitSymbol
+
+
+ conversionFactor
+ 0.44704
+
+
+ hedId
+ HED_0011628
+
+
+
+ kph
+
+ unitSymbol
+
+
+ conversionFactor
+ 0.277778
+
+
+ hedId
+ HED_0011629
+
+
+
+
+ temperatureUnits
+
+ defaultUnits
+ degree-Celsius
+
+
+ hedId
+ HED_0011512
+
+
+ degree-Celsius
+
+ SIUnit
+
+
+ conversionFactor
+ 1.0
+
+
+ hedId
+ HED_0011630
+
+
+
+ degree Celsius
+ Units are not allowed to have spaces. Use degree-Celsius or oC.
+
+ deprecatedFrom
+ 8.2.0
+
+
+ SIUnit
+
+
+ conversionFactor
+ 1.0
+
+
+ hedId
+ HED_0011631
+
+
+
+ oC
+
+ SIUnit
+
+
+ unitSymbol
+
+
+ conversionFactor
+ 1.0
+
+
+ hedId
+ HED_0011632
+
+
+
+
+ timeUnits
+
+ defaultUnits
+ s
+
+
+ hedId
+ HED_0011513
+
+
+ second
+
+ SIUnit
+
+
+ conversionFactor
+ 1.0
+
+
+ hedId
+ HED_0011633
+
+
+
+ s
+
+ SIUnit
+
+
+ unitSymbol
+
+
+ conversionFactor
+ 1.0
+
+
+ hedId
+ HED_0011634
+
+
+
+ day
+
+ conversionFactor
+ 86400
+
+
+ hedId
+ HED_0011635
+
+
+
+ month
+
+ hedId
+ HED_0011645
+
+
+
+ minute
+
+ conversionFactor
+ 60
+
+
+ hedId
+ HED_0011636
+
+
+
+ hour
+ Should be in 24-hour format.
+
+ conversionFactor
+ 3600
+
+
+ hedId
+ HED_0011637
+
+
+
+ year
+ Years do not have a constant conversion factor to seconds.
+
+ hedId
+ HED_0011638
+
+
+
+
+ volumeUnits
+
+ defaultUnits
+ m^3
+
+
+ hedId
+ HED_0011514
+
+
+ m^3
+
+ SIUnit
+
+
+ unitSymbol
+
+
+ conversionFactor
+ 1.0
+
+
+ allowedCharacter
+ caret
+
+
+ hedId
+ HED_0011639
+
+
+
+
+ weightUnits
+
+ defaultUnits
+ g
+
+
+ hedId
+ HED_0011515
+
+
+ g
+
+ SIUnit
+
+
+ unitSymbol
+
+
+ conversionFactor
+ 1.0
+
+
+ hedId
+ HED_0011640
+
+
+
+ gram
+
+ SIUnit
+
+
+ conversionFactor
+ 1.0
+
+
+ hedId
+ HED_0011641
+
+
+
+ pound
+
+ conversionFactor
+ 453.592
+
+
+ hedId
+ HED_0011642
+
+
+
+ lb
+
+ conversionFactor
+ 453.592
+
+
+ hedId
+ HED_0011643
+
+
+
+
+
+
+ deca
+ SI unit multiple representing 10e1.
+
+ SIUnitModifier
+
+
+ conversionFactor
+ 10.0
+
+
+ hedId
+ HED_0011400
+
+
+
+ da
+ SI unit multiple representing 10e1.
+
+ SIUnitSymbolModifier
+
+
+ conversionFactor
+ 10.0
+
+
+ hedId
+ HED_0011401
+
+
+
+ hecto
+ SI unit multiple representing 10e2.
+
+ SIUnitModifier
+
+
+ conversionFactor
+ 100.0
+
+
+ hedId
+ HED_0011402
+
+
+
+ h
+ SI unit multiple representing 10e2.
+
+ SIUnitSymbolModifier
+
+
+ conversionFactor
+ 100.0
+
+
+ hedId
+ HED_0011403
+
+
+
+ kilo
+ SI unit multiple representing 10e3.
+
+ SIUnitModifier
+
+
+ conversionFactor
+ 1000.0
+
+
+ hedId
+ HED_0011404
+
+
+
+ k
+ SI unit multiple representing 10e3.
+
+ SIUnitSymbolModifier
+
+
+ conversionFactor
+ 1000.0
+
+
+ hedId
+ HED_0011405
+
+
+
+ mega
+ SI unit multiple representing 10e6.
+
+ SIUnitModifier
+
+
+ conversionFactor
+ 10e6
+
+
+ hedId
+ HED_0011406
+
+
+
+ M
+ SI unit multiple representing 10e6.
+
+ SIUnitSymbolModifier
+
+
+ conversionFactor
+ 10e6
+
+
+ hedId
+ HED_0011407
+
+
+
+ giga
+ SI unit multiple representing 10e9.
+
+ SIUnitModifier
+
+
+ conversionFactor
+ 10e9
+
+
+ hedId
+ HED_0011408
+
+
+
+ G
+ SI unit multiple representing 10e9.
+
+ SIUnitSymbolModifier
+
+
+ conversionFactor
+ 10e9
+
+
+ hedId
+ HED_0011409
+
+
+
+ tera
+ SI unit multiple representing 10e12.
+
+ SIUnitModifier
+
+
+ conversionFactor
+ 10e12
+
+
+ hedId
+ HED_0011410
+
+
+
+ T
+ SI unit multiple representing 10e12.
+
+ SIUnitSymbolModifier
+
+
+ conversionFactor
+ 10e12
+
+
+ hedId
+ HED_0011411
+
+
+
+ peta
+ SI unit multiple representing 10e15.
+
+ SIUnitModifier
+
+
+ conversionFactor
+ 10e15
+
+
+ hedId
+ HED_0011412
+
+
+
+ P
+ SI unit multiple representing 10e15.
+
+ SIUnitSymbolModifier
+
+
+ conversionFactor
+ 10e15
+
+
+ hedId
+ HED_0011413
+
+
+
+ exa
+ SI unit multiple representing 10e18.
+
+ SIUnitModifier
+
+
+ conversionFactor
+ 10e18
+
+
+ hedId
+ HED_0011414
+
+
+
+ E
+ SI unit multiple representing 10e18.
+
+ SIUnitSymbolModifier
+
+
+ conversionFactor
+ 10e18
+
+
+ hedId
+ HED_0011415
+
+
+
+ zetta
+ SI unit multiple representing 10e21.
+
+ SIUnitModifier
+
+
+ conversionFactor
+ 10e21
+
+
+ hedId
+ HED_0011416
+
+
+
+ Z
+ SI unit multiple representing 10e21.
+
+ SIUnitSymbolModifier
+
+
+ conversionFactor
+ 10e21
+
+
+ hedId
+ HED_0011417
+
+
+
+ yotta
+ SI unit multiple representing 10e24.
+
+ SIUnitModifier
+
+
+ conversionFactor
+ 10e24
+
+
+ hedId
+ HED_0011418
+
+
+
+ Y
+ SI unit multiple representing 10e24.
+
+ SIUnitSymbolModifier
+
+
+ conversionFactor
+ 10e24
+
+
+ hedId
+ HED_0011419
+
+
+
+ deci
+ SI unit submultiple representing 10e-1.
+
+ SIUnitModifier
+
+
+ conversionFactor
+ 0.1
+
+
+ hedId
+ HED_0011420
+
+
+
+ d
+ SI unit submultiple representing 10e-1.
+
+ SIUnitSymbolModifier
+
+
+ conversionFactor
+ 0.1
+
+
+ hedId
+ HED_0011421
+
+
+
+ centi
+ SI unit submultiple representing 10e-2.
+
+ SIUnitModifier
+
+
+ conversionFactor
+ 0.01
+
+
+ hedId
+ HED_0011422
+
+
+
+ c
+ SI unit submultiple representing 10e-2.
+
+ SIUnitSymbolModifier
+
+
+ conversionFactor
+ 0.01
+
+
+ hedId
+ HED_0011423
+
+
+
+ milli
+ SI unit submultiple representing 10e-3.
+
+ SIUnitModifier
+
+
+ conversionFactor
+ 0.001
+
+
+ hedId
+ HED_0011424
+
+
+
+ m
+ SI unit submultiple representing 10e-3.
+
+ SIUnitSymbolModifier
+
+
+ conversionFactor
+ 0.001
+
+
+ hedId
+ HED_0011425
+
+
+
+ micro
+ SI unit submultiple representing 10e-6.
+
+ SIUnitModifier
+
+
+ conversionFactor
+ 10e-6
+
+
+ hedId
+ HED_0011426
+
+
+
+ u
+ SI unit submultiple representing 10e-6.
+
+ SIUnitSymbolModifier
+
+
+ conversionFactor
+ 10e-6
+
+
+ hedId
+ HED_0011427
+
+
+
+ nano
+ SI unit submultiple representing 10e-9.
+
+ SIUnitModifier
+
+
+ conversionFactor
+ 10e-9
+
+
+ hedId
+ HED_0011428
+
+
+
+ n
+ SI unit submultiple representing 10e-9.
+
+ SIUnitSymbolModifier
+
+
+ conversionFactor
+ 10e-9
+
+
+ hedId
+ HED_0011429
+
+
+
+ pico
+ SI unit submultiple representing 10e-12.
+
+ SIUnitModifier
+
+
+ conversionFactor
+ 10e-12
+
+
+ hedId
+ HED_0011430
+
+
+
+ p
+ SI unit submultiple representing 10e-12.
+
+ SIUnitSymbolModifier
+
+
+ conversionFactor
+ 10e-12
+
+
+ hedId
+ HED_0011431
+
+
+
+ femto
+ SI unit submultiple representing 10e-15.
+
+ SIUnitModifier
+
+
+ conversionFactor
+ 10e-15
+
+
+ hedId
+ HED_0011432
+
+
+
+ f
+ SI unit submultiple representing 10e-15.
+
+ SIUnitSymbolModifier
+
+
+ conversionFactor
+ 10e-15
+
+
+ hedId
+ HED_0011433
+
+
+
+ atto
+ SI unit submultiple representing 10e-18.
+
+ SIUnitModifier
+
+
+ conversionFactor
+ 10e-18
+
+
+ hedId
+ HED_0011434
+
+
+
+ a
+ SI unit submultiple representing 10e-18.
+
+ SIUnitSymbolModifier
+
+
+ conversionFactor
+ 10e-18
+
+
+ hedId
+ HED_0011435
+
+
+
+ zepto
+ SI unit submultiple representing 10e-21.
+
+ SIUnitModifier
+
+
+ conversionFactor
+ 10e-21
+
+
+ hedId
+ HED_0011436
+
+
+
+ z
+ SI unit submultiple representing 10e-21.
+
+ SIUnitSymbolModifier
+
+
+ conversionFactor
+ 10e-21
+
+
+ hedId
+ HED_0011437
+
+
+
+ yocto
+ SI unit submultiple representing 10e-24.
+
+ SIUnitModifier
+
+
+ conversionFactor
+ 10e-24
+
+
+ hedId
+ HED_0011438
+
+
+
+ y
+ SI unit submultiple representing 10e-24.
+
+ SIUnitSymbolModifier
+
+
+ conversionFactor
+ 10e-24
+
+
+ hedId
+ HED_0011439
+
+
+
+
+
+ dateTimeClass
+ Date-times should conform to ISO8601 date-time format YYYY-MM-DDThh:mm:ss.000000Z (year, month, day, hour (24h), minute, second, optional fractional seconds, and optional UTC time indicator. Any variation on the full form is allowed.
+
+ allowedCharacter
+ digits
+ T
+ hyphen
+ colon
+
+
+ hedId
+ HED_0011301
+
+
+
+ nameClass
+ Value class designating values that have the characteristics of node names. The allowed characters are alphanumeric, hyphen, and underscore.
+
+ allowedCharacter
+ letters
+ digits
+ underscore
+ hyphen
+
+
+ hedId
+ HED_0011302
+
+
+
+ numericClass
+ Value must be a valid numerical value.
+
+ allowedCharacter
+ digits
+ E
+ e
+ plus
+ hyphen
+ period
+
+
+ hedId
+ HED_0011303
+
+
+
+ posixPath
+ Posix path specification.
+
+ allowedCharacter
+ digits
+ letters
+ slash
+ colon
+
+
+ hedId
+ HED_0011304
+
+
+
+ textClass
+ Values that have the characteristics of text such as in descriptions. The text characters include printable characters (32 <= ASCII< 127) excluding comma, square bracket and curly braces as well as non ASCII (ASCII codes > 127).
+
+ allowedCharacter
+ text
+
+
+ hedId
+ HED_0011305
+
+
+
+
+
+ annotation
+ A annotation link to an item in another ontology or item.
+
+ elementDomain
+
+
+ stringRange
+
+
+ hedId
+ HED_0010504
+
+
+ annotationProperty
+
+
+
+ hedId
+ The unique identifier of this element in the HED namespace.
+
+ elementDomain
+
+
+ stringRange
+
+
+ hedId
+ HED_0010500
+
+
+ annotationProperty
+
+
+
+ requireChild
+ This tag must have a descendent.
+
+ tagDomain
+
+
+ boolRange
+
+
+ hedId
+ HED_0010501
+
+
+ annotationProperty
+
+
+
+ rooted
+ This top-level library schema node should have a parent which is the indicated node in the partnered standard schema.
+
+ tagDomain
+
+
+ tagRange
+
+
+ hedId
+ HED_0010502
+
+
+ annotationProperty
+
+
+
+ takesValue
+ This tag is a hashtag placeholder that is expected to be replaced with a user-defined value.
+
+ tagDomain
+
+
+ boolRange
+
+
+ hedId
+ HED_0010503
+
+
+ annotationProperty
+
+
+
+ defaultUnits
+ The default units to use if the placeholder has a unit class but the substituted value has no units.
+
+ unitClassDomain
+
+
+ unitRange
+
+
+ hedId
+ HED_0010104
+
+
+
+ isPartOf
+ This tag is part of the indicated tag -- as in the nose is part of the face.
+
+ tagDomain
+
+
+ tagRange
+
+
+ hedId
+ HED_0010109
+
+
+
+ relatedTag
+ A HED tag that is closely related to this tag. This attribute is used by tagging tools.
+
+ tagDomain
+
+
+ tagRange
+
+
+ hedId
+ HED_0010105
+
+
+
+ suggestedTag
+ A tag that is often associated with this tag. This attribute is used by tagging tools to provide tagging suggestions.
+
+ tagDomain
+
+
+ tagRange
+
+
+ hedId
+ HED_0010106
+
+
+
+ unitClass
+ The unit class that the value of a placeholder node can belong to.
+
+ tagDomain
+
+
+ unitClassRange
+
+
+ hedId
+ HED_0010107
+
+
+
+ valueClass
+ Type of value taken on by the value of a placeholder node.
+
+ tagDomain
+
+
+ valueClassRange
+
+
+ hedId
+ HED_0010108
+
+
+
+ allowedCharacter
+ A special character that is allowed in expressing the value of a placeholder of a specified value class. Allowed characters may be listed individual, named individually, or named as a group as specified in Section 2.2 Character sets and restrictions of the HED specification.
+
+ unitDomain
+
+
+ unitModifierDomain
+
+
+ valueClassDomain
+
+
+ stringRange
+
+
+ hedId
+ HED_0010304
+
+
+
+ conversionFactor
+ The factor to multiply these units or unit modifiers by to convert to default units.
+
+ unitDomain
+
+
+ unitModifierDomain
+
+
+ numericRange
+
+
+ hedId
+ HED_0010305
+
+
+
+ deprecatedFrom
+ The latest schema version in which the element was not deprecated.
+
+ elementDomain
+
+
+ stringRange
+
+
+ hedId
+ HED_0010306
+
+
+
+ extensionAllowed
+ Users can add unlimited levels of child nodes under this tag. This tag is propagated to child nodes except for hashtag placeholders.
+
+ tagDomain
+
+
+ boolRange
+
+
+ hedId
+ HED_0010307
+
+
+
+ inLibrary
+ The named library schema that this schema element is from. This attribute is added by tools when a library schema is merged into its partnered standard schema.
+
+ elementDomain
+
+
+ stringRange
+
+
+ hedId
+ HED_0010309
+
+
+
+ reserved
+ This tag has special meaning and requires special handling by tools.
+
+ tagDomain
+
+
+ boolRange
+
+
+ hedId
+ HED_0010310
+
+
+
+ SIUnit
+ This unit element is an SI unit and can be modified by multiple and sub-multiple names. Note that some units such as byte are designated as SI units although they are not part of the standard.
+
+ unitDomain
+
+
+ boolRange
+
+
+ hedId
+ HED_0010311
+
+
+
+ SIUnitModifier
+ This SI unit modifier represents a multiple or sub-multiple of a base unit rather than a unit symbol.
+
+ unitModifierDomain
+
+
+ boolRange
+
+
+ hedId
+ HED_0010312
+
+
+
+ SIUnitSymbolModifier
+ This SI unit modifier represents a multiple or sub-multiple of a unit symbol rather than a base symbol.
+
+ unitModifierDomain
+
+
+ boolRange
+
+
+ hedId
+ HED_0010313
+
+
+
+ tagGroup
+ This tag can only appear inside a tag group.
+
+ tagDomain
+
+
+ boolRange
+
+
+ hedId
+ HED_0010314
+
+
+
+ topLevelTagGroup
+ This tag (or its descendants) can only appear in a top-level tag group. There are additional tag-specific restrictions on what other tags can appear in the group with this tag.
+
+ tagDomain
+
+
+ boolRange
+
+
+ hedId
+ HED_0010315
+
+
+
+ unique
+ Only one of this tag or its descendants can be used in the event-level HED string.
+
+ tagDomain
+
+
+ boolRange
+
+
+ hedId
+ HED_0010316
+
+
+
+ unitPrefix
+ This unit is a prefix unit (e.g., dollar sign in the currency units).
+
+ unitDomain
+
+
+ boolRange
+
+
+ hedId
+ HED_0010317
+
+
+
+ unitSymbol
+ This tag is an abbreviation or symbol representing a type of unit. Unit symbols represent both the singular and the plural and thus cannot be pluralized.
+
+ unitDomain
+
+
+ boolRange
+
+
+ hedId
+ HED_0010318
+
+
+
+
+
+ annotationProperty
+ The value is not inherited by child nodes.
+
+ hedId
+ HED_0010701
+
+
+
+ boolRange
+ This schema attribute's value can be true or false. This property was formerly named boolProperty.
+
+ hedId
+ HED_0010702
+
+
+
+ elementDomain
+ This schema attribute can apply to any type of element class (i.e., tag, unit, unit class, unit modifier, or value class). This property was formerly named elementProperty.
+
+ hedId
+ HED_0010703
+
+
+
+ tagDomain
+ This schema attribute can apply to node (tag-term) elements. This was added so attributes could apply to multiple types of elements. This property was formerly named nodeProperty.
+
+ hedId
+ HED_0010704
+
+
+
+ tagRange
+ This schema attribute's value can be a node. This property was formerly named nodeProperty.
+
+ hedId
+ HED_0010705
+
+
+
+ numericRange
+ This schema attribute's value can be numeric.
+
+ hedId
+ HED_0010706
+
+
+
+ stringRange
+ This schema attribute's value can be a string.
+
+ hedId
+ HED_0010707
+
+
+
+ unitClassDomain
+ This schema attribute can apply to unit classes. This property was formerly named unitClassProperty.
+
+ hedId
+ HED_0010708
+
+
+
+ unitClassRange
+ This schema attribute's value can be a unit class.
+
+ hedId
+ HED_0010709
+
+
+
+ unitModifierDomain
+ This schema attribute can apply to unit modifiers. This property was formerly named unitModifierProperty.
+
+ hedId
+ HED_0010710
+
+
+
+ unitDomain
+ This schema attribute can apply to units. This property was formerly named unitProperty.
+
+ hedId
+ HED_0010711
+
+
+
+ unitRange
+ This schema attribute's value can be units.
+
+ hedId
+ HED_0010712
+
+
+
+ valueClassDomain
+ This schema attribute can apply to value classes. This property was formerly named valueClassProperty.
+
+ hedId
+ HED_0010713
+
+
+
+ valueClassRange
+ This schema attribute's value can be a value class.
+
+ hedId
+ HED_0010714
+
+
+ A final section.
diff --git a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_AnnotationProperty.tsv b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_AnnotationProperty.tsv
index 4e030afe..19612c85 100644
--- a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_AnnotationProperty.tsv
+++ b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_AnnotationProperty.tsv
@@ -1,2 +1,6 @@
hedId rdfs:label Type Properties dc:description
- myAnnotation AnnotationProperty elementDomain, stringRange Special annotations.
+HED_0010504 annotation AnnotationProperty elementDomain, stringRange A annotation link to an item in another ontology or item.
+HED_0010500 hedId AnnotationProperty elementDomain, stringRange The unique identifier of this element in the HED namespace.
+HED_0010501 requireChild AnnotationProperty tagDomain, boolRange This tag must have a descendent.
+HED_0010502 rooted AnnotationProperty tagDomain, tagRange This top-level library schema node should have a parent which is the indicated node in the partnered standard schema.
+HED_0010503 takesValue AnnotationProperty tagDomain, boolRange This tag is a hashtag placeholder that is expected to be replaced with a user-defined value.
diff --git a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_AttributeProperty.tsv b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_AttributeProperty.tsv
index 6ebbb9aa..33e828f2 100644
--- a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_AttributeProperty.tsv
+++ b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_AttributeProperty.tsv
@@ -1 +1,15 @@
hedId rdfs:label Type dc:description
+HED_0010701 annotationProperty AnnotationProperty The value is not inherited by child nodes.
+HED_0010702 boolRange AnnotationProperty This schema attribute's value can be true or false. This property was formerly named boolProperty.
+HED_0010703 elementDomain AnnotationProperty This schema attribute can apply to any type of element class (i.e., tag, unit, unit class, unit modifier, or value class). This property was formerly named elementProperty.
+HED_0010704 tagDomain AnnotationProperty This schema attribute can apply to node (tag-term) elements. This was added so attributes could apply to multiple types of elements. This property was formerly named nodeProperty.
+HED_0010705 tagRange AnnotationProperty This schema attribute's value can be a node. This property was formerly named nodeProperty.
+HED_0010706 numericRange AnnotationProperty This schema attribute's value can be numeric.
+HED_0010707 stringRange AnnotationProperty This schema attribute's value can be a string.
+HED_0010708 unitClassDomain AnnotationProperty This schema attribute can apply to unit classes. This property was formerly named unitClassProperty.
+HED_0010709 unitClassRange AnnotationProperty This schema attribute's value can be a unit class.
+HED_0010710 unitModifierDomain AnnotationProperty This schema attribute can apply to unit modifiers. This property was formerly named unitModifierProperty.
+HED_0010711 unitDomain AnnotationProperty This schema attribute can apply to units. This property was formerly named unitProperty.
+HED_0010712 unitRange AnnotationProperty This schema attribute's value can be units.
+HED_0010713 valueClassDomain AnnotationProperty This schema attribute can apply to value classes. This property was formerly named valueClassProperty.
+HED_0010714 valueClassRange AnnotationProperty This schema attribute's value can be a value class.
diff --git a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_DataProperty.tsv b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_DataProperty.tsv
index d5558ea7..c1362151 100644
--- a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_DataProperty.tsv
+++ b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_DataProperty.tsv
@@ -1 +1,15 @@
hedId rdfs:label Type Properties dc:description
+HED_0010304 allowedCharacter DataProperty unitDomain, unitModifierDomain, valueClassDomain, stringRange A special character that is allowed in expressing the value of a placeholder of a specified value class. Allowed characters may be listed individual, named individually, or named as a group as specified in Section 2.2 Character sets and restrictions of the HED specification.
+HED_0010305 conversionFactor DataProperty unitDomain, unitModifierDomain, numericRange The factor to multiply these units or unit modifiers by to convert to default units.
+HED_0010306 deprecatedFrom DataProperty elementDomain, stringRange The latest schema version in which the element was not deprecated.
+HED_0010307 extensionAllowed DataProperty tagDomain, boolRange Users can add unlimited levels of child nodes under this tag. This tag is propagated to child nodes except for hashtag placeholders.
+HED_0010309 inLibrary DataProperty elementDomain, stringRange The named library schema that this schema element is from. This attribute is added by tools when a library schema is merged into its partnered standard schema.
+HED_0010310 reserved DataProperty tagDomain, boolRange This tag has special meaning and requires special handling by tools.
+HED_0010311 SIUnit DataProperty unitDomain, boolRange This unit element is an SI unit and can be modified by multiple and sub-multiple names. Note that some units such as byte are designated as SI units although they are not part of the standard.
+HED_0010312 SIUnitModifier DataProperty unitModifierDomain, boolRange This SI unit modifier represents a multiple or sub-multiple of a base unit rather than a unit symbol.
+HED_0010313 SIUnitSymbolModifier DataProperty unitModifierDomain, boolRange This SI unit modifier represents a multiple or sub-multiple of a unit symbol rather than a base symbol.
+HED_0010314 tagGroup DataProperty tagDomain, boolRange This tag can only appear inside a tag group.
+HED_0010315 topLevelTagGroup DataProperty tagDomain, boolRange This tag (or its descendants) can only appear in a top-level tag group. There are additional tag-specific restrictions on what other tags can appear in the group with this tag.
+HED_0010316 unique DataProperty tagDomain, boolRange Only one of this tag or its descendants can be used in the event-level HED string.
+HED_0010317 unitPrefix DataProperty unitDomain, boolRange This unit is a prefix unit (e.g., dollar sign in the currency units).
+HED_0010318 unitSymbol DataProperty unitDomain, boolRange This tag is an abbreviation or symbol representing a type of unit. Unit symbols represent both the singular and the plural and thus cannot be pluralized.
diff --git a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_ObjectProperty.tsv b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_ObjectProperty.tsv
index d5558ea7..9e69e1e4 100644
--- a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_ObjectProperty.tsv
+++ b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_ObjectProperty.tsv
@@ -1 +1,7 @@
hedId rdfs:label Type Properties dc:description
+HED_0010104 defaultUnits ObjectProperty unitClassDomain, unitRange The default units to use if the placeholder has a unit class but the substituted value has no units.
+HED_0010109 isPartOf ObjectProperty tagDomain, tagRange This tag is part of the indicated tag -- as in the nose is part of the face.
+HED_0010105 relatedTag ObjectProperty tagDomain, tagRange A HED tag that is closely related to this tag. This attribute is used by tagging tools.
+HED_0010106 suggestedTag ObjectProperty tagDomain, tagRange A tag that is often associated with this tag. This attribute is used by tagging tools to provide tagging suggestions.
+HED_0010107 unitClass ObjectProperty tagDomain, unitClassRange The unit class that the value of a placeholder node can belong to.
+HED_0010108 valueClass ObjectProperty tagDomain, valueClassRange Type of value taken on by the value of a placeholder node.
diff --git a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_Structure.tsv b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_Structure.tsv
index 19986ada..6bf010a9 100644
--- a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_Structure.tsv
+++ b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_Structure.tsv
@@ -1,4 +1,4 @@
hedId rdfs:label Attributes omn:SubClassOf dc:description
-HED_0000010 TestlibHeader version="4.0.0", library="testlib", withStandard="8.4.0", unmerged="True" HedHeader
+HED_0000010 TestlibHeader version="4.0.0", library="testlib", withStandard="8.4.0" HedHeader
HED_0000011 TestlibPrologue HedPrologue This schema is designed to be lazy partnered with prerelease 8.4.0.
HED_0000012 TestlibEpilogue HedEpilogue A final section.
diff --git a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_Tag.tsv b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_Tag.tsv
index b7a8fe51..334872db 100644
--- a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_Tag.tsv
+++ b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_Tag.tsv
@@ -1,10 +1,1241 @@
hedId Level rdfs:label omn:SubClassOf Attributes dc:description
- 0 Test-some HedTag Unknown stuff.
- 1 Unknown1 Test-some Unknown1 stuff
- 1 Unknown2 Test-some suggestedTag=Item Unknown2 stuff
- 2 Unknown2-# Unknown2 takesValue, valueClass=digitClass, unitClass=myAngleUnits Try this out
- 0 Fruit Plant rooted=Plant Fruit stuff.
- 1 Apple Fruit annotation=foodonto:has_botanical_name Apple stuff
- 2 Honey-crisp Apple Type of apple
- 0 Vegetable Plant rooted=Plant Vegetable stuff.
- 1 Carrot Vegetable annotation=foodonto:has_botanical_name Carrot stuff
+ 0 Test-some HedTag inLibrary=testlib Unknown stuff.
+ 1 Unknown1 Test-some inLibrary=testlib Unknown1 stuff
+HED_0012001 0 Event HedTag suggestedTag=Task-property, annotation=ncit:C25499, annotation=rdfs:comment Should have this tag in every event process. Something that happens at a given time and (typically) place. Elements of this tag subtree designate the general category in which an event falls.
+HED_0012002 1 Sensory-event Event suggestedTag=Task-event-role, suggestedTag=Sensory-presentation Something perceivable by the participant. An event meant to be an experimental stimulus should include the tag Task-property/Task-event-role/Experimental-stimulus.
+HED_0012003 1 Agent-action Event suggestedTag=Task-event-role, suggestedTag=Agent Any action engaged in by an agent (see the Agent subtree for agent categories). A participant response to an experiment stimulus should include the tag Agent-property/Agent-task-role/Experiment-participant.
+HED_0012004 1 Data-feature Event suggestedTag=Data-property An event marking the occurrence of a data feature such as an interictal spike or alpha burst that is often added post hoc to the data record.
+HED_0012005 1 Experiment-control Event An event pertaining to the physical control of the experiment during its operation.
+HED_0012006 1 Experiment-procedure Event An event indicating an experimental procedure, as in performing a saliva swab during the experiment or administering a survey.
+HED_0012007 1 Experiment-structure Event An event specifying a change-point of the structure of experiment. This event is typically used to indicate a change in experimental conditions or tasks.
+HED_0012008 1 Measurement-event Event suggestedTag=Data-property A discrete measure returned by an instrument.
+HED_0012009 0 Agent HedTag suggestedTag=Agent-property Someone or something that takes an active role or produces a specified effect.The role or effect may be implicit. Being alive or performing an activity such as a computation may qualify something to be an agent. An agent may also be something that simulates something else.
+HED_0012010 1 Animal-agent Agent An agent that is an animal.
+HED_0012011 1 Avatar-agent Agent An agent associated with an icon or avatar representing another agent.
+HED_0012012 1 Controller-agent Agent Experiment control software or hardware.
+HED_0012013 1 Human-agent Agent A person who takes an active role or produces a specified effect.
+HED_0012014 1 Robotic-agent Agent An agent mechanical device capable of performing a variety of often complex tasks on command or by being programmed in advance.
+HED_0012015 1 Software-agent Agent An agent computer program that interacts with the participant in an active role such as an AI advisor.
+HED_0012016 0 Action HedTag extensionAllowed Do something.
+HED_0012017 1 Communicate Action Action conveying knowledge of or about something.
+HED_0012018 2 Communicate-gesturally Communicate relatedTag=Move-face, relatedTag=Move-upper-extremity Communicate non-verbally using visible bodily actions, either in place of speech or together and in parallel with spoken words. Gestures include movement of the hands, face, or other parts of the body.
+HED_0012019 3 Clap-hands Communicate-gesturally Strike the palms of against one another resoundingly, and usually repeatedly, especially to express approval.
+HED_0012020 3 Clear-throat Communicate-gesturally relatedTag=Move-face, relatedTag=Move-head Cough slightly so as to speak more clearly, attract attention, or to express hesitancy before saying something awkward.
+HED_0012021 3 Frown Communicate-gesturally relatedTag=Move-face Express disapproval, displeasure, or concentration, typically by turning down the corners of the mouth.
+HED_0012022 3 Grimace Communicate-gesturally relatedTag=Move-face Make a twisted expression, typically expressing disgust, pain, or wry amusement.
+HED_0012023 3 Nod-head Communicate-gesturally relatedTag=Move-head Tilt head in alternating up and down arcs along the sagittal plane. It is most commonly, but not universally, used to indicate agreement, acceptance, or acknowledgement.
+HED_0012024 3 Pump-fist Communicate-gesturally relatedTag=Move-upper-extremity Raise with fist clenched in triumph or affirmation.
+HED_0012025 3 Raise-eyebrows Communicate-gesturally relatedTag=Move-face, relatedTag=Move-eyes Move eyebrows upward.
+HED_0012026 3 Shake-fist Communicate-gesturally relatedTag=Move-upper-extremity Clench hand into a fist and shake to demonstrate anger.
+HED_0012027 3 Shake-head Communicate-gesturally relatedTag=Move-head Turn head from side to side as a way of showing disagreement or refusal.
+HED_0012028 3 Shhh Communicate-gesturally relatedTag=Move-upper-extremity Place finger over lips and possibly uttering the syllable shhh to indicate the need to be quiet.
+HED_0012029 3 Shrug Communicate-gesturally relatedTag=Move-upper-extremity, relatedTag=Move-torso Lift shoulders up towards head to indicate a lack of knowledge about a particular topic.
+HED_0012030 3 Smile Communicate-gesturally relatedTag=Move-face Form facial features into a pleased, kind, or amused expression, typically with the corners of the mouth turned up and the front teeth exposed.
+HED_0012031 3 Spread-hands Communicate-gesturally relatedTag=Move-upper-extremity Spread hands apart to indicate ignorance.
+HED_0012032 3 Thumb-up Communicate-gesturally relatedTag=Move-upper-extremity Extend the thumb upward to indicate approval.
+HED_0012033 3 Thumbs-down Communicate-gesturally relatedTag=Move-upper-extremity Extend the thumb downward to indicate disapproval.
+HED_0012034 3 Wave Communicate-gesturally relatedTag=Move-upper-extremity Raise hand and move left and right, as a greeting or sign of departure.
+HED_0012035 3 Widen-eyes Communicate-gesturally relatedTag=Move-face, relatedTag=Move-eyes Open eyes and possibly with eyebrows lifted especially to express surprise or fear.
+HED_0012036 3 Wink Communicate-gesturally relatedTag=Move-face, relatedTag=Move-eyes Close and open one eye quickly, typically to indicate that something is a joke or a secret or as a signal of affection or greeting.
+HED_0012037 2 Communicate-musically Communicate Communicate using music.
+HED_0012038 3 Hum Communicate-musically Make a low, steady continuous sound like that of a bee. Sing with the lips closed and without uttering speech.
+HED_0012039 3 Play-instrument Communicate-musically Make musical sounds using an instrument.
+HED_0012040 3 Sing Communicate-musically Produce musical tones by means of the voice.
+HED_0012041 3 Vocalize Communicate-musically Utter vocal sounds.
+HED_0012042 3 Whistle Communicate-musically Produce a shrill clear sound by forcing breath out or air in through the puckered lips.
+HED_0012043 2 Communicate-vocally Communicate Communicate using mouth or vocal cords.
+HED_0012044 3 Cry Communicate-vocally Shed tears associated with emotions, usually sadness but also joy or frustration.
+HED_0012045 3 Groan Communicate-vocally Make a deep inarticulate sound in response to pain or despair.
+HED_0012046 3 Laugh Communicate-vocally Make the spontaneous sounds and movements of the face and body that are the instinctive expressions of lively amusement and sometimes also of contempt or derision.
+HED_0012047 3 Scream Communicate-vocally Make loud, vociferous cries or yells to express pain, excitement, or fear.
+HED_0012048 3 Shout Communicate-vocally Say something very loudly.
+HED_0012049 3 Sigh Communicate-vocally Emit a long, deep, audible breath expressing sadness, relief, tiredness, or a similar feeling.
+HED_0012050 3 Speak Communicate-vocally Communicate using spoken language.
+HED_0012051 3 Whisper Communicate-vocally Speak very softly using breath without vocal cords.
+HED_0012052 1 Move Action Move in a specified direction or manner. Change position or posture.
+HED_0012053 2 Breathe Move Inhale or exhale during respiration.
+HED_0012054 3 Blow Breathe Expel air through pursed lips.
+HED_0012055 3 Cough Breathe Suddenly and audibly expel air from the lungs through a partially closed glottis, preceded by inhalation.
+HED_0012056 3 Exhale Breathe Blow out or expel breath.
+HED_0012057 3 Hiccup Breathe Involuntarily spasm the diaphragm and respiratory organs, with a sudden closure of the glottis and a characteristic sound like that of a cough.
+HED_0012058 3 Hold-breath Breathe Interrupt normal breathing by ceasing to inhale or exhale.
+HED_0012059 3 Inhale Breathe Draw in with the breath through the nose or mouth.
+HED_0012060 3 Sneeze Breathe Suddenly and violently expel breath through the nose and mouth.
+HED_0012061 3 Sniff Breathe Draw in air audibly through the nose to detect a smell, to stop it from running, or to express contempt.
+HED_0012062 2 Move-body Move Move entire body.
+HED_0012063 3 Bend Move-body Move body in a bowed or curved manner.
+HED_0012064 3 Dance Move-body Perform a purposefully selected sequences of human movement often with aesthetic or symbolic value. Move rhythmically to music, typically following a set sequence of steps.
+HED_0012065 3 Fall-down Move-body Lose balance and collapse.
+HED_0012066 3 Flex Move-body Cause a muscle to stand out by contracting or tensing it. Bend a limb or joint.
+HED_0012067 3 Jerk Move-body Make a quick, sharp, sudden movement.
+HED_0012068 3 Lie-down Move-body Move to a horizontal or resting position.
+HED_0012069 3 Recover-balance Move-body Return to a stable, upright body position.
+HED_0012070 3 Shudder Move-body Tremble convulsively, sometimes as a result of fear or revulsion.
+HED_0012071 3 Sit-down Move-body Move from a standing to a sitting position.
+HED_0012072 3 Sit-up Move-body Move from lying down to a sitting position.
+HED_0012073 3 Stand-up Move-body Move from a sitting to a standing position.
+HED_0012074 3 Stretch Move-body Straighten or extend body or a part of body to its full length, typically so as to tighten muscles or in order to reach something.
+HED_0012075 3 Stumble Move-body Trip or momentarily lose balance and almost fall.
+HED_0012076 3 Turn Move-body Change or cause to change direction.
+HED_0012077 2 Move-body-part Move Move one part of a body.
+HED_0012078 3 Move-eyes Move-body-part Move eyes.
+HED_0012079 4 Blink Move-eyes Shut and open the eyes quickly.
+HED_0012080 4 Close-eyes Move-eyes Lower and keep eyelids in a closed position.
+HED_0012081 4 Fixate Move-eyes Direct eyes to a specific point or target.
+HED_0012082 4 Inhibit-blinks Move-eyes Purposely prevent blinking.
+HED_0012083 4 Open-eyes Move-eyes Raise eyelids to expose pupil.
+HED_0012084 4 Saccade Move-eyes Move eyes rapidly between fixation points.
+HED_0012085 4 Squint Move-eyes Squeeze one or both eyes partly closed in an attempt to see more clearly or as a reaction to strong light.
+HED_0012086 4 Stare Move-eyes Look fixedly or vacantly at someone or something with eyes wide open.
+HED_0012087 3 Move-face Move-body-part Move the face or jaw.
+HED_0012088 4 Bite Move-face Seize with teeth or jaws an object or organism so as to grip or break the surface covering.
+HED_0012089 4 Burp Move-face Noisily release air from the stomach through the mouth. Belch.
+HED_0012090 4 Chew Move-face Repeatedly grinding, tearing, and or crushing with teeth or jaws.
+HED_0012091 4 Gurgle Move-face Make a hollow bubbling sound like that made by water running out of a bottle.
+HED_0012092 4 Swallow Move-face Cause or allow something, especially food or drink to pass down the throat.
+HED_0012093 5 Gulp Swallow Swallow quickly or in large mouthfuls, often audibly, sometimes to indicate apprehension.
+HED_0012094 4 Yawn Move-face Take a deep involuntary inhalation with the mouth open often as a sign of drowsiness or boredom.
+HED_0012095 3 Move-head Move-body-part Move head.
+HED_0012096 4 Lift-head Move-head Tilt head back lifting chin.
+HED_0012097 4 Lower-head Move-head Move head downward so that eyes are in a lower position.
+HED_0012098 4 Turn-head Move-head Rotate head horizontally to look in a different direction.
+HED_0012099 3 Move-lower-extremity Move-body-part Move leg and/or foot.
+HED_0012100 4 Curl-toes Move-lower-extremity Bend toes sometimes to grip.
+HED_0012101 4 Hop Move-lower-extremity Jump on one foot.
+HED_0012102 4 Jog Move-lower-extremity Run at a trot to exercise.
+HED_0012103 4 Jump Move-lower-extremity Move off the ground or other surface through sudden muscular effort in the legs.
+HED_0012104 4 Kick Move-lower-extremity Strike out or flail with the foot or feet.Strike using the leg, in unison usually with an area of the knee or lower using the foot.
+HED_0012105 4 Pedal Move-lower-extremity Move by working the pedals of a bicycle or other machine.
+HED_0012106 4 Press-foot Move-lower-extremity Move by pressing foot.
+HED_0012107 4 Run Move-lower-extremity Travel on foot at a fast pace.
+HED_0012108 4 Step Move-lower-extremity Put one leg in front of the other and shift weight onto it.
+HED_0012109 5 Heel-strike Step Strike the ground with the heel during a step.
+HED_0012110 5 Toe-off Step Push with toe as part of a stride.
+HED_0012111 4 Trot Move-lower-extremity Run at a moderate pace, typically with short steps.
+HED_0012112 4 Walk Move-lower-extremity Move at a regular pace by lifting and setting down each foot in turn never having both feet off the ground at once.
+HED_0012113 3 Move-torso Move-body-part Move body trunk.
+HED_0012114 3 Move-upper-extremity Move-body-part Move arm, shoulder, and/or hand.
+HED_0012115 4 Drop Move-upper-extremity Let or cause to fall vertically.
+HED_0012116 4 Grab Move-upper-extremity Seize suddenly or quickly. Snatch or clutch.
+HED_0012117 4 Grasp Move-upper-extremity Seize and hold firmly.
+HED_0012118 4 Hold-down Move-upper-extremity Prevent someone or something from moving by holding them firmly.
+HED_0012119 4 Lift Move-upper-extremity Raising something to higher position.
+HED_0012120 4 Make-fist Move-upper-extremity Close hand tightly with the fingers bent against the palm.
+HED_0012121 4 Point Move-upper-extremity Draw attention to something by extending a finger or arm.
+HED_0012122 4 Press Move-upper-extremity relatedTag=Push Apply pressure to something to flatten, shape, smooth or depress it. This action tag should be used to indicate key presses and mouse clicks.
+HED_0012123 4 Push Move-upper-extremity relatedTag=Press Apply force in order to move something away. Use Press to indicate a key press or mouse click.
+HED_0012124 4 Reach Move-upper-extremity Stretch out your arm in order to get or touch something.
+HED_0012125 4 Release Move-upper-extremity Make available or set free.
+HED_0012126 4 Retract Move-upper-extremity Draw or pull back.
+HED_0012127 4 Scratch Move-upper-extremity Drag claws or nails over a surface or on skin.
+HED_0012128 4 Snap-fingers Move-upper-extremity Make a noise by pushing second finger hard against thumb and then releasing it suddenly so that it hits the base of the thumb.
+HED_0012129 4 Touch Move-upper-extremity Come into or be in contact with.
+HED_0012130 1 Perceive Action Produce an internal, conscious image through stimulating a sensory system.
+HED_0012131 2 Hear Perceive Give attention to a sound.
+HED_0012132 2 See Perceive Direct gaze toward someone or something or in a specified direction.
+HED_0012133 2 Sense-by-touch Perceive Sense something through receptors in the skin.
+HED_0012134 2 Smell Perceive Inhale in order to ascertain an odor or scent.
+HED_0012135 2 Taste Perceive Sense a flavor in the mouth and throat on contact with a substance.
+HED_0012136 1 Perform Action Carry out or accomplish an action, task, or function.
+HED_0012137 2 Close Perform Act as to blocked against entry or passage.
+HED_0012138 2 Collide-with Perform Hit with force when moving.
+HED_0012139 2 Halt Perform Bring or come to an abrupt stop.
+HED_0012140 2 Modify Perform Change something.
+HED_0012141 2 Open Perform Widen an aperture, door, or gap, especially one allowing access to something.
+HED_0012142 2 Operate Perform Control the functioning of a machine, process, or system.
+HED_0012143 2 Play Perform Engage in activity for enjoyment and recreation rather than a serious or practical purpose.
+HED_0012144 2 Read Perform Interpret something that is written or printed.
+HED_0012145 2 Repeat Perform Make do or perform again.
+HED_0012146 2 Rest Perform Be inactive in order to regain strength, health, or energy.
+HED_0012147 2 Ride Perform Ride on an animal or in a vehicle. Ride conveys some notion that another agent has partial or total control of the motion.
+HED_0012148 2 Write Perform Communicate or express by means of letters or symbols written or imprinted on a surface.
+HED_0012149 1 Think Action Direct the mind toward someone or something or use the mind actively to form connected ideas.
+HED_0012150 2 Allow Think Allow access to something such as allowing a car to pass.
+HED_0012151 2 Attend-to Think Focus mental experience on specific targets.
+HED_0012152 2 Count Think Tally items either silently or aloud.
+HED_0012153 2 Deny Think Refuse to give or grant something requested or desired by someone.
+HED_0012154 2 Detect Think Discover or identify the presence or existence of something.
+HED_0012155 2 Discriminate Think Recognize a distinction.
+HED_0012156 2 Encode Think Convert information or an instruction into a particular form.
+HED_0012157 2 Evade Think Escape or avoid, especially by cleverness or trickery.
+HED_0012158 2 Generate Think Cause something, especially an emotion or situation to arise or come about.
+HED_0012159 2 Identify Think Establish or indicate who or what someone or something is.
+HED_0012160 2 Imagine Think Form a mental image or concept of something.
+HED_0012161 2 Judge Think Evaluate evidence to make a decision or form a belief.
+HED_0012162 2 Learn Think Adaptively change behavior as the result of experience.
+HED_0012163 2 Memorize Think Adaptively change behavior as the result of experience.
+HED_0012164 2 Plan Think Think about the activities required to achieve a desired goal.
+HED_0012165 2 Predict Think Say or estimate that something will happen or will be a consequence of something without having exact information.
+HED_0012166 2 Recall Think Remember information by mental effort.
+HED_0012167 2 Recognize Think Identify someone or something from having encountered them before.
+HED_0012168 2 Respond Think React to something such as a treatment or a stimulus.
+HED_0012169 2 Switch-attention Think Transfer attention from one focus to another.
+HED_0012170 2 Track Think Follow a person, animal, or object through space or time.
+HED_0012171 0 Item HedTag extensionAllowed An independently existing thing (living or nonliving).
+HED_0012172 1 Biological-item Item An entity that is biological, that is related to living organisms.
+HED_0012173 2 Anatomical-item Biological-item A biological structure, system, fluid or other substance excluding single molecular entities.
+HED_0012174 3 Body Anatomical-item The biological structure representing an organism.
+HED_0012175 3 Body-part Anatomical-item Any part of an organism.
+HED_0012176 4 Head Body-part The upper part of the human body, or the front or upper part of the body of an animal, typically separated from the rest of the body by a neck, and containing the brain, mouth, and sense organs.
+HED_0013200 4 Head-part Body-part A part of the head.
+HED_0012177 5 Brain Head-part Organ inside the head that is made up of nerve cells and controls the body.
+HED_0013201 5 Brain-region Head-part A region of the brain.
+HED_0013202 6 Cerebellum Brain-region A major structure of the brain located near the brainstem. It plays a key role in motor control, coordination, precision, with contributions to different cognitive functions.
+HED_0012178 6 Frontal-lobe Brain-region
+HED_0012179 6 Occipital-lobe Brain-region
+HED_0012180 6 Parietal-lobe Brain-region
+HED_0012181 6 Temporal-lobe Brain-region
+HED_0012182 5 Ear Head-part A sense organ needed for the detection of sound and for establishing balance.
+HED_0012183 5 Face Head-part The anterior portion of the head extending from the forehead to the chin and ear to ear. The facial structures contain the eyes, nose and mouth, cheeks and jaws.
+HED_0013203 5 Face-part Head-part A part of the face.
+HED_0012184 6 Cheek Face-part The fleshy part of the face bounded by the eyes, nose, ear, and jawline.
+HED_0012185 6 Chin Face-part The part of the face below the lower lip and including the protruding part of the lower jaw.
+HED_0012186 6 Eye Face-part The organ of sight or vision.
+HED_0012187 6 Eyebrow Face-part The arched strip of hair on the bony ridge above each eye socket.
+HED_0012188 6 Eyelid Face-part The folds of the skin that cover the eye when closed.
+HED_0012189 6 Forehead Face-part The part of the face between the eyebrows and the normal hairline.
+HED_0012190 6 Lip Face-part Fleshy fold which surrounds the opening of the mouth.
+HED_0012191 6 Mouth Face-part The proximal portion of the digestive tract, containing the oral cavity and bounded by the oral opening.
+HED_0013204 6 Mouth-part Face-part A part of the mouth.
+HED_0012193 7 Teeth Mouth-part The hard bone-like structures in the jaws. A collection of teeth arranged in some pattern in the mouth or other part of the body.
+HED_0013205 7 Tongue Mouth-part A muscular organ in the mouth with significant role in mastication, swallowing, speech, and taste.
+HED_0012192 6 Nose Face-part A structure of special sense serving as an organ of the sense of smell and as an entrance to the respiratory tract.
+HED_0012194 5 Hair Head-part The filamentous outgrowth of the epidermis.
+HED_0012195 4 Lower-extremity Body-part Refers to the whole inferior limb (leg and/or foot).
+HED_0013206 4 Lower-extremity-part Body-part A part of the lower extremity.
+HED_0012196 5 Ankle Lower-extremity-part A gliding joint between the distal ends of the tibia and fibula and the proximal end of the talus.
+HED_0012198 5 Foot Lower-extremity-part The structure found below the ankle joint required for locomotion.
+HED_0013207 5 Foot-part Lower-extremity-part A part of the foot.
+HED_0012200 6 Heel Foot-part The back of the foot below the ankle.
+HED_0012201 6 Instep Foot-part The part of the foot between the ball and the heel on the inner side.
+HED_0013208 6 Toe Foot-part A digit of the foot.
+HED_0012199 7 Big-toe Toe The largest toe on the inner side of the foot.
+HED_0012202 7 Little-toe Toe The smallest toe located on the outer side of the foot.
+HED_0012203 6 Toes Foot-part relatedTag=Toe The terminal digits of the foot. Used to describe collective attributes of all toes, such as bending all toes
+HED_0012204 5 Knee Lower-extremity-part A joint connecting the lower part of the femur with the upper part of the tibia.
+HED_0013209 5 Lower-leg Lower-extremity-part The part of the leg between the knee and the ankle.
+HED_0013210 5 Lower-leg-part Lower-extremity-part A part of the lower leg.
+HED_0012197 6 Calf Lower-leg-part The fleshy part at the back of the leg below the knee.
+HED_0012205 6 Shin Lower-leg-part Front part of the leg below the knee.
+HED_0013211 5 Upper-leg Lower-extremity-part The part of the leg between the hip and the knee.
+HED_0013212 5 Upper-leg-part Lower-extremity-part A part of the upper leg.
+HED_0012206 6 Thigh Upper-leg-part Upper part of the leg between hip and knee.
+HED_0013213 4 Neck Body-part The part of the body connecting the head to the torso, containing the cervical spine and vital pathways of nerves, blood vessels, and the airway.
+HED_0012207 4 Torso Body-part The body excluding the head and neck and limbs.
+HED_0013214 4 Torso-part Body-part A part of the torso.
+HED_0013215 5 Abdomen Torso-part The part of the body between the thorax and the pelvis.
+HED_0013216 5 Navel Torso-part The central mark on the abdomen created by the detachment of the umbilical cord after birth.
+HED_0013217 5 Pelvis Torso-part The bony structure at the base of the spine supporting the legs.
+HED_0013218 5 Pelvis-part Torso-part A part of the pelvis.
+HED_0012208 6 Buttocks Pelvis-part The round fleshy parts that form the lower rear area of a human trunk.
+HED_0013219 6 Genitalia Pelvis-part The external organs of reproduction and urination, located in the pelvic region. This includes both male and female genital structures.
+HED_0012209 6 Gentalia Pelvis-part deprecatedFrom=8.1.0 The external organs of reproduction. Deprecated due to spelling error. Use Genitalia.
+HED_0012210 6 Hip Pelvis-part The lateral prominence of the pelvis from the waist to the thigh.
+HED_0012211 5 Torso-back Torso-part The rear surface of the human body from the shoulders to the hips.
+HED_0012212 5 Torso-chest Torso-part The anterior side of the thorax from the neck to the abdomen.
+HED_0012213 5 Viscera Torso-part Internal organs of the body.
+HED_0012214 5 Waist Torso-part The abdominal circumference at the navel.
+HED_0012215 4 Upper-extremity Body-part Refers to the whole superior limb (shoulder, arm, elbow, wrist, hand).
+HED_0013220 4 Upper-extremity-part Body-part A part of the upper extremity.
+HED_0012216 5 Elbow Upper-extremity-part A type of hinge joint located between the forearm and upper arm.
+HED_0012217 5 Forearm Upper-extremity-part Lower part of the arm between the elbow and wrist.
+HED_0013221 5 Forearm-part Upper-extremity-part A part of the forearm.
+HED_0012218 5 Hand Upper-extremity-part The distal portion of the upper extremity. It consists of the carpus, metacarpus, and digits.
+HED_0013222 5 Hand-part Upper-extremity-part A part of the hand.
+HED_0012219 6 Finger Hand-part Any of the digits of the hand.
+HED_0012220 7 Index-finger Finger The second finger from the radial side of the hand, next to the thumb.
+HED_0012221 7 Little-finger Finger The fifth and smallest finger from the radial side of the hand.
+HED_0012222 7 Middle-finger Finger The middle or third finger from the radial side of the hand.
+HED_0012223 7 Ring-finger Finger The fourth finger from the radial side of the hand.
+HED_0012224 7 Thumb Finger The thick and short hand digit which is next to the index finger in humans.
+HED_0013223 6 Fingers Hand-part relatedTag=Finger The terminal digits of the hand. Used to describe collective attributes of all fingers, such as bending all fingers
+HED_0012225 6 Knuckles Hand-part A part of a finger at a joint where the bone is near the surface, especially where the finger joins the hand.
+HED_0012226 6 Palm Hand-part The part of the inner surface of the hand that extends from the wrist to the bases of the fingers.
+HED_0012227 5 Shoulder Upper-extremity-part Joint attaching upper arm to trunk.
+HED_0012228 5 Upper-arm Upper-extremity-part Portion of arm between shoulder and elbow.
+HED_0013224 5 Upper-arm-part Upper-extremity-part A part of the upper arm.
+HED_0012229 5 Wrist Upper-extremity-part A joint between the distal end of the radius and the proximal row of carpal bones.
+HED_0012230 2 Organism Biological-item A living entity, more specifically a biological entity that consists of one or more cells and is capable of genomic replication (independently or not).
+HED_0012231 3 Animal Organism A living organism that has membranous cell walls, requires oxygen and organic foods, and is capable of voluntary movement.
+HED_0012232 3 Human Organism The bipedal primate mammal Homo sapiens.
+HED_0012233 3 Plant Organism Any living organism that typically synthesizes its food from inorganic substances and possesses cellulose cell walls.
+ 4 Fruit Plant rooted=Plant, inLibrary=testlib Fruit stuff.
+ 5 Apple Fruit annotation=foodonto:has_botanical_name, inLibrary=testlib Apple stuff
+ 6 Honey-crisp Apple inLibrary=testlib Type of apple
+ 4 Vegetable Plant rooted=Plant, inLibrary=testlib Vegetable stuff.
+ 5 Carrot Vegetable annotation=foodonto:has_botanical_name, inLibrary=testlib Carrot stuff
+HED_0012234 1 Language-item Item suggestedTag=Sensory-presentation An entity related to a systematic means of communicating by the use of sounds, symbols, or gestures.
+HED_0012235 2 Character Language-item A mark or symbol used in writing.
+HED_0012236 2 Clause Language-item A unit of grammatical organization next below the sentence in rank, usually consisting of a subject and predicate.
+HED_0012237 2 Glyph Language-item A hieroglyphic character, symbol, or pictograph.
+HED_0012238 2 Nonword Language-item An unpronounceable group of letters or speech sounds that is surrounded by white space when written, is not accepted as a word by native speakers.
+HED_0012239 2 Paragraph Language-item A distinct section of a piece of writing, usually dealing with a single theme.
+HED_0012240 2 Phoneme Language-item Any of the minimally distinct units of sound in a specified language that distinguish one word from another.
+HED_0012241 2 Phrase Language-item A phrase is a group of words functioning as a single unit in the syntax of a sentence.
+HED_0012242 2 Pseudoword Language-item A pronounceable group of letters or speech sounds that looks or sounds like a word but that is not accepted as such by native speakers.
+HED_0012243 2 Sentence Language-item A set of words that is complete in itself, conveying a statement, question, exclamation, or command and typically containing an explicit or implied subject and a predicate containing a finite verb.
+HED_0012244 2 Syllable Language-item A unit of pronunciation having a vowel or consonant sound, with or without surrounding consonants, forming the whole or a part of a word.
+HED_0012245 2 Textblock Language-item A block of text.
+HED_0012246 2 Word Language-item A single distinct meaningful element of speech or writing, used with others (or sometimes alone) to form a sentence and typically surrounded by white space when written or printed.
+HED_0012247 1 Object Item suggestedTag=Sensory-presentation Something perceptible by one or more of the senses, especially by vision or touch. A material thing.
+HED_0012248 2 Geometric-object Object An object or a representation that has structure and topology in space.
+HED_0012249 3 2D-shape Geometric-object A planar, two-dimensional shape.
+HED_0012250 4 Arrow 2D-shape A shape with a pointed end indicating direction.
+HED_0012251 4 Clockface 2D-shape The dial face of a clock. A location identifier based on clock-face-position numbering or anatomic subregion.
+HED_0012252 4 Cross 2D-shape A figure or mark formed by two intersecting lines crossing at their midpoints.
+HED_0012253 4 Dash 2D-shape A horizontal stroke in writing or printing to mark a pause or break in sense or to represent omitted letters or words.
+HED_0012254 4 Ellipse 2D-shape A closed plane curve resulting from the intersection of a circular cone and a plane cutting completely through it, especially a plane not parallel to the base.
+HED_0012255 5 Circle Ellipse A ring-shaped structure with every point equidistant from the center.
+HED_0012256 4 Rectangle 2D-shape A parallelogram with four right angles.
+HED_0012257 5 Square Rectangle A square is a special rectangle with four equal sides.
+HED_0012258 4 Single-point 2D-shape A point is a geometric entity that is located in a zero-dimensional spatial region and whose position is defined by its coordinates in some coordinate system.
+HED_0012259 4 Star 2D-shape A conventional or stylized representation of a star, typically one having five or more points.
+HED_0012260 4 Triangle 2D-shape A three-sided polygon.
+HED_0012261 3 3D-shape Geometric-object A geometric three-dimensional shape.
+HED_0012262 4 Box 3D-shape A square or rectangular vessel, usually made of cardboard or plastic.
+HED_0012263 5 Cube Box A solid or semi-solid in the shape of a three dimensional square.
+HED_0012264 4 Cone 3D-shape A shape whose base is a circle and whose sides taper up to a point.
+HED_0012265 4 Cylinder 3D-shape A surface formed by circles of a given radius that are contained in a plane perpendicular to a given axis, whose centers align on the axis.
+HED_0012266 4 Ellipsoid 3D-shape A closed plane curve resulting from the intersection of a circular cone and a plane cutting completely through it, especially a plane not parallel to the base.
+HED_0012267 5 Sphere Ellipsoid A solid or hollow three-dimensional object bounded by a closed surface such that every point on the surface is equidistant from the center.
+HED_0012268 4 Pyramid 3D-shape A polyhedron of which one face is a polygon of any number of sides, and the other faces are triangles with a common vertex.
+HED_0012269 3 Pattern Geometric-object An arrangement of objects, facts, behaviors, or other things which have scientific, mathematical, geometric, statistical, or other meaning.
+HED_0012270 4 Dots Pattern A small round mark or spot.
+HED_0012271 4 LED-pattern Pattern A pattern created by lighting selected members of a fixed light emitting diode array.
+HED_0012272 2 Ingestible-object Object Something that can be taken into the body by the mouth for digestion or absorption.
+HED_0012273 2 Man-made-object Object Something constructed by human means.
+HED_0012274 3 Building Man-made-object A structure that usually has a roof and walls and stands more or less permanently in one place.
+HED_0013231 3 Building-part Man-made-object A part of a building.
+HED_0012275 4 Attic Building-part A room or a space immediately below the roof of a building.
+HED_0012276 4 Basement Building-part The part of a building that is wholly or partly below ground level.
+HED_0013232 4 Door Building-part A door is a hinged or otherwise movable barrier that allows entry into and exit from an enclosed structure.
+HED_0012277 4 Entrance Building-part The means or place of entry.
+HED_0012278 4 Roof Building-part A roof is the covering on the uppermost part of a building which provides protection from animals and weather, notably rain, but also heat, wind and sunlight.
+HED_0012279 4 Room Building-part An area within a building enclosed by walls and floor and ceiling.
+HED_0013233 4 Window Building-part An opening in a wall, roof, or vehicle that allows light and air to enter, typically covered by glass or other transparent material.
+HED_0012280 3 Clothing Man-made-object A covering designed to be worn on the body.
+HED_0012281 3 Device Man-made-object An object contrived for a specific purpose.
+HED_0012282 4 Assistive-device Device A device that help an individual accomplish a task.
+HED_0012283 5 Glasses Assistive-device Frames with lenses worn in front of the eye for vision correction, eye protection, or protection from UV rays.
+HED_0012284 5 Writing-device Assistive-device A device used for writing.
+HED_0012285 6 Pen Writing-device A common writing instrument used to apply ink to a surface for writing or drawing.
+HED_0012286 6 Pencil Writing-device An implement for writing or drawing that is constructed of a narrow solid pigment core in a protective casing that prevents the core from being broken or marking the hand.
+HED_0012287 4 Computing-device Device An electronic device which take inputs and processes results from the inputs.
+HED_0012288 5 Cellphone Computing-device A telephone with access to a cellular radio system so it can be used over a wide area, without a physical connection to a network.
+HED_0012289 5 Desktop-computer Computing-device A computer suitable for use at an ordinary desk.
+HED_0012290 5 Laptop-computer Computing-device A computer that is portable and suitable for use while traveling.
+HED_0012291 5 Tablet-computer Computing-device A small portable computer that accepts input directly on to its screen rather than via a keyboard or mouse.
+HED_0012292 4 Engine Device A motor is a machine designed to convert one or more forms of energy into mechanical energy.
+HED_0012293 4 IO-device Device Hardware used by a human (or other system) to communicate with a computer.
+HED_0012294 5 Input-device IO-device A piece of equipment used to provide data and control signals to an information processing system such as a computer or information appliance.
+HED_0012295 6 Computer-mouse Input-device A hand-held pointing device that detects two-dimensional motion relative to a surface.
+HED_0012296 7 Mouse-button Computer-mouse An electric switch on a computer mouse which can be pressed or clicked to select or interact with an element of a graphical user interface.
+HED_0012297 7 Scroll-wheel Computer-mouse A scroll wheel or mouse wheel is a wheel used for scrolling made of hard plastic with a rubbery surface usually located between the left and right mouse buttons and is positioned perpendicular to the mouse surface.
+HED_0012298 6 Joystick Input-device A control device that uses a movable handle to create two-axis input for a computer device.
+HED_0012299 6 Keyboard Input-device A device consisting of mechanical keys that are pressed to create input to a computer.
+HED_0012300 7 Keyboard-key Keyboard A button on a keyboard usually representing letters, numbers, functions, or symbols.
+HED_0012301 8 Keyboard-key-# Keyboard-key takesValue Value of a keyboard key.
+HED_0012302 6 Keypad Input-device A device consisting of keys, usually in a block arrangement, that provides limited input to a system.
+HED_0012303 7 Keypad-key Keypad A key on a separate section of a computer keyboard that groups together numeric keys and those for mathematical or other special functions in an arrangement like that of a calculator.
+HED_0012304 8 Keypad-key-# Keypad-key takesValue Value of keypad key.
+HED_0012305 6 Microphone Input-device A device designed to convert sound to an electrical signal.
+HED_0012306 6 Push-button Input-device A switch designed to be operated by pressing a button.
+HED_0012307 5 Output-device IO-device Any piece of computer hardware equipment which converts information into human understandable form.
+HED_0012308 6 Auditory-device Output-device A device designed to produce sound.
+HED_0012309 7 Headphones Auditory-device An instrument that consists of a pair of small loudspeakers, or less commonly a single speaker, held close to ears and connected to a signal source such as an audio amplifier, radio, CD player or portable media player.
+HED_0012310 7 Loudspeaker Auditory-device A device designed to convert electrical signals to sounds that can be heard.
+HED_0012311 6 Display-device Output-device An output device for presentation of information in visual or tactile form the latter used for example in tactile electronic displays for blind people.
+HED_0012312 7 Computer-screen Display-device An electronic device designed as a display or a physical device designed to be a protective mesh work.
+HED_0012314 7 Head-mounted-display Display-device An instrument that functions as a display device, worn on the head or as part of a helmet, that has a small display optic in front of one (monocular HMD) or each eye (binocular HMD).
+HED_0012315 7 LED-display Display-device A LED display is a flat panel display that uses an array of light-emitting diodes as pixels for a video display.
+HED_0012313 7 Screen-window Display-device A part of a computer screen that contains a display different from the rest of the screen.
+HED_0012316 5 Recording-device IO-device A device that copies information in a signal into a persistent information bearer.
+HED_0012317 6 EEG-recorder Recording-device A device for recording electric currents in the brain using electrodes applied to the scalp, to the surface of the brain, or placed within the substance of the brain.
+HED_0013225 6 EMG-recorder Recording-device A device for recording electrical activity of muscles using electrodes on the body surface or within the muscular mass.
+HED_0012318 6 File-storage Recording-device A device for recording digital information to a permanent media.
+HED_0012319 6 MEG-recorder Recording-device A device for measuring the magnetic fields produced by electrical activity in the brain, usually conducted externally.
+HED_0012320 6 Motion-capture Recording-device A device for recording the movement of objects or people.
+HED_0012321 6 Tape-recorder Recording-device A device for recording and reproduction usually using magnetic tape for storage that can be saved and played back.
+HED_0012322 5 Touchscreen IO-device A control component that operates an electronic device by pressing the display on the screen.
+HED_0012323 4 Machine Device A human-made device that uses power to apply forces and control movement to perform an action.
+HED_0012324 4 Measurement-device Device A device that measures something.
+HED_0012325 5 Clock Measurement-device A device designed to indicate the time of day or to measure the time duration of an event or action.
+HED_0012327 4 Robot Device A mechanical device that sometimes resembles a living animal and is capable of performing a variety of often complex human tasks on command or by being programmed in advance.
+HED_0012328 4 Tool Device A component that is not part of a device but is designed to support its assembly or operation.
+HED_0012329 3 Document Man-made-object A physical object, or electronic counterpart, that is characterized by containing writing which is meant to be human-readable.
+HED_0012330 4 Book Document A volume made up of pages fastened along one edge and enclosed between protective covers.
+HED_0012331 4 Letter Document A written message addressed to a person or organization.
+HED_0012332 4 Note Document A brief written record.
+HED_0012333 4 Notebook Document A book for notes or memoranda.
+HED_0012334 4 Questionnaire Document A document consisting of questions and possibly responses, depending on whether it has been filled out.
+HED_0012335 3 Furnishing Man-made-object Furniture, fittings, and other decorative accessories, such as curtains and carpets, for a house or room.
+HED_0012336 3 Manufactured-material Man-made-object Substances created or extracted from raw materials.
+HED_0012337 4 Ceramic Manufactured-material A hard, brittle, heat-resistant and corrosion-resistant material made by shaping and then firing a nonmetallic mineral, such as clay, at a high temperature.
+HED_0012338 4 Glass Manufactured-material A brittle transparent solid with irregular atomic structure.
+HED_0012339 4 Paper Manufactured-material A thin sheet material produced by mechanically or chemically processing cellulose fibres derived from wood, rags, grasses or other vegetable sources in water.
+HED_0012340 4 Plastic Manufactured-material Various high-molecular-weight thermoplastic or thermo-setting polymers that are capable of being molded, extruded, drawn, or otherwise shaped and then hardened into a form.
+HED_0012341 4 Steel Manufactured-material An alloy made up of iron with typically a few tenths of a percent of carbon to improve its strength and fracture resistance compared to iron.
+HED_0012342 3 Media Man-made-object Media are audio/visual/audiovisual modes of communicating information for mass consumption.
+HED_0012343 4 Media-clip Media A short segment of media.
+HED_0012344 5 Audio-clip Media-clip A short segment of audio.
+HED_0012345 5 Audiovisual-clip Media-clip A short media segment containing both audio and video.
+HED_0012346 5 Video-clip Media-clip A short segment of video.
+HED_0012347 4 Visualization Media An planned process that creates images, diagrams or animations from the input data.
+HED_0012348 5 Animation Visualization A form of graphical illustration that changes with time to give a sense of motion or represent dynamic changes in the portrayal.
+HED_0012349 5 Art-installation Visualization A large-scale, mixed-media constructions, often designed for a specific place or for a temporary period of time.
+HED_0012350 5 Braille Visualization A display using a system of raised dots that can be read with the fingers by people who are blind.
+HED_0012351 5 Image Visualization Any record of an imaging event whether physical or electronic.
+HED_0012352 6 Cartoon Image A type of illustration, sometimes animated, typically in a non-realistic or semi-realistic style. The specific meaning has evolved over time, but the modern usage usually refers to either an image or series of images intended for satire, caricature, or humor. A motion picture that relies on a sequence of illustrations for its animation.
+HED_0012353 6 Drawing Image A representation of an object or outlining a figure, plan, or sketch by means of lines.
+HED_0012354 6 Icon Image A sign (such as a word or graphic symbol) whose form suggests its meaning.
+HED_0012355 6 Painting Image A work produced through the art of painting.
+HED_0012356 6 Photograph Image An image recorded by a camera.
+HED_0012357 5 Movie Visualization A sequence of images displayed in succession giving the illusion of continuous movement.
+HED_0012358 5 Outline-visualization Visualization A visualization consisting of a line or set of lines enclosing or indicating the shape of an object in a sketch or diagram.
+HED_0012359 5 Point-light-visualization Visualization A display in which action is depicted using a few points of light, often generated from discrete sensors in motion capture.
+HED_0012360 5 Sculpture Visualization A two- or three-dimensional representative or abstract forms, especially by carving stone or wood or by casting metal or plaster.
+HED_0012361 5 Stick-figure-visualization Visualization A drawing showing the head of a human being or animal as a circle and all other parts as straight lines.
+HED_0012362 3 Navigational-object Man-made-object An object whose purpose is to assist directed movement from one location to another.
+HED_0012363 4 Path Navigational-object A trodden way. A way or track laid down for walking or made by continual treading.
+HED_0012364 4 Road Navigational-object An open way for the passage of vehicles, persons, or animals on land.
+HED_0012365 5 Lane Road A defined path with physical dimensions through which an object or substance may traverse.
+HED_0012366 4 Runway Navigational-object A paved strip of ground on a landing field for the landing and takeoff of aircraft.
+HED_0012367 3 Vehicle Man-made-object A mobile machine which transports people or cargo.
+HED_0012368 4 Aircraft Vehicle A vehicle which is able to travel through air in an atmosphere.
+HED_0012369 4 Bicycle Vehicle A human-powered, pedal-driven, single-track vehicle, having two wheels attached to a frame, one behind the other.
+HED_0012370 4 Boat Vehicle A watercraft of any size which is able to float or plane on water.
+HED_0012371 4 Car Vehicle A wheeled motor vehicle used primarily for the transportation of human passengers.
+HED_0012372 4 Cart Vehicle A cart is a vehicle which has two wheels and is designed to transport human passengers or cargo.
+HED_0012373 4 Tractor Vehicle A mobile machine specifically designed to deliver a high tractive effort at slow speeds, and mainly used for the purposes of hauling a trailer or machinery used in agriculture or construction.
+HED_0012374 4 Train Vehicle A connected line of railroad cars with or without a locomotive.
+HED_0012375 4 Truck Vehicle A motor vehicle which, as its primary function, transports cargo rather than human passengers.
+HED_0012376 2 Natural-object Object Something that exists in or is produced by nature, and is not artificial or man-made.
+HED_0012377 3 Mineral Natural-object A solid, homogeneous, inorganic substance occurring in nature and having a definite chemical composition.
+HED_0012378 3 Natural-feature Natural-object A feature that occurs in nature. A prominent or identifiable aspect, region, or site of interest.
+HED_0012379 4 Field Natural-feature An unbroken expanse as of ice or grassland.
+HED_0012380 4 Hill Natural-feature A rounded elevation of limited extent rising above the surrounding land with local relief of less than 300m.
+HED_0012381 4 Mountain Natural-feature A landform that extends above the surrounding terrain in a limited area.
+HED_0012382 4 River Natural-feature A natural freshwater surface stream of considerable volume and a permanent or seasonal flow, moving in a definite channel toward a sea, lake, or another river.
+HED_0012383 4 Waterfall Natural-feature A sudden descent of water over a step or ledge in the bed of a river.
+HED_0012384 1 Sound Item Mechanical vibrations transmitted by an elastic medium. Something that can be heard.
+HED_0012385 2 Environmental-sound Sound Sounds occurring in the environment. An accumulation of noise pollution that occurs outside. This noise can be caused by transport, industrial, and recreational activities.
+HED_0012386 3 Crowd-sound Environmental-sound Noise produced by a mixture of sounds from a large group of people.
+HED_0012387 3 Signal-noise Environmental-sound Any part of a signal that is not the true or original signal but is introduced by the communication mechanism.
+HED_0012388 2 Musical-sound Sound Sound produced by continuous and regular vibrations, as opposed to noise.
+HED_0012389 3 Instrument-sound Musical-sound Sound produced by a musical instrument.
+HED_0012390 3 Tone Musical-sound A musical note, warble, or other sound used as a particular signal on a telephone or answering machine.
+HED_0012391 3 Vocalized-sound Musical-sound Musical sound produced by vocal cords in a biological agent.
+HED_0012392 2 Named-animal-sound Sound A sound recognizable as being associated with particular animals.
+HED_0012393 3 Barking Named-animal-sound Sharp explosive cries like sounds made by certain animals, especially a dog, fox, or seal.
+HED_0012394 3 Bleating Named-animal-sound Wavering cries like sounds made by a sheep, goat, or calf.
+HED_0012395 3 Chirping Named-animal-sound Short, sharp, high-pitched noises like sounds made by small birds or an insects.
+HED_0012396 3 Crowing Named-animal-sound Loud shrill sounds characteristic of roosters.
+HED_0012397 3 Growling Named-animal-sound Low guttural sounds like those that made in the throat by a hostile dog or other animal.
+HED_0012398 3 Meowing Named-animal-sound Vocalizations like those made by as those cats. These sounds have diverse tones and are sometimes chattered, murmured or whispered. The purpose can be assertive.
+HED_0012399 3 Mooing Named-animal-sound Deep vocal sounds like those made by a cow.
+HED_0012400 3 Purring Named-animal-sound Low continuous vibratory sound such as those made by cats. The sound expresses contentment.
+HED_0012401 3 Roaring Named-animal-sound Loud, deep, or harsh prolonged sounds such as those made by big cats and bears for long-distance communication and intimidation.
+HED_0012402 3 Squawking Named-animal-sound Loud, harsh noises such as those made by geese.
+HED_0012403 2 Named-object-sound Sound A sound identifiable as coming from a particular type of object.
+HED_0012404 3 Alarm-sound Named-object-sound A loud signal often loud continuous ringing to alert people to a problem or condition that requires urgent attention.
+HED_0012405 3 Beep Named-object-sound A short, single tone, that is typically high-pitched and generally made by a computer or other machine.
+HED_0012406 3 Buzz Named-object-sound A persistent vibratory sound often made by a buzzer device and used to indicate something incorrect.
+HED_0012407 3 Click Named-object-sound The sound made by a mechanical cash register, often to designate a reward.
+HED_0012408 3 Ding Named-object-sound A short ringing sound such as that made by a bell, often to indicate a correct response or the expiration of time.
+HED_0012409 3 Horn-blow Named-object-sound A loud sound made by forcing air through a sound device that funnels air to create the sound, often used to sound an alert.
+HED_0012410 3 Ka-ching Named-object-sound The sound made by a mechanical cash register, often to designate a reward.
+HED_0012411 3 Siren Named-object-sound A loud, continuous sound often varying in frequency designed to indicate an emergency.
+HED_0012412 0 Property HedTag extensionAllowed Something that pertains to a thing. A characteristic of some entity. A quality or feature regarded as a characteristic or inherent part of someone or something. HED attributes are adjectives or adverbs.
+HED_0012413 1 Agent-property Property Something that pertains to or describes an agent.
+HED_0012414 2 Agent-state Agent-property The state of the agent.
+HED_0012415 3 Agent-cognitive-state Agent-state The state of the cognitive processes or state of mind of the agent.
+HED_0012416 4 Alert Agent-cognitive-state Condition of heightened watchfulness or preparation for action.
+HED_0012417 4 Anesthetized Agent-cognitive-state Having lost sensation to pain or having senses dulled due to the effects of an anesthetic.
+HED_0012418 4 Asleep Agent-cognitive-state Having entered a periodic, readily reversible state of reduced awareness and metabolic activity, usually accompanied by physical relaxation and brain activity.
+HED_0012419 4 Attentive Agent-cognitive-state Concentrating and focusing mental energy on the task or surroundings.
+HED_0012420 4 Awake Agent-cognitive-state In a non sleeping state.
+HED_0012421 4 Brain-dead Agent-cognitive-state Characterized by the irreversible absence of cortical and brain stem functioning.
+HED_0012422 4 Comatose Agent-cognitive-state In a state of profound unconsciousness associated with markedly depressed cerebral activity.
+HED_0012423 4 Distracted Agent-cognitive-state Lacking in concentration because of being preoccupied.
+HED_0012424 4 Drowsy Agent-cognitive-state In a state of near-sleep, a strong desire for sleep, or sleeping for unusually long periods.
+HED_0012425 4 Intoxicated Agent-cognitive-state In a state with disturbed psychophysiological functions and responses as a result of administration or ingestion of a psychoactive substance.
+HED_0012426 4 Locked-in Agent-cognitive-state In a state of complete paralysis of all voluntary muscles except for the ones that control the movements of the eyes.
+HED_0012427 4 Passive Agent-cognitive-state Not responding or initiating an action in response to a stimulus.
+HED_0012428 4 Resting Agent-cognitive-state A state in which the agent is not exhibiting any physical exertion.
+HED_0012429 4 Vegetative Agent-cognitive-state A state of wakefulness and conscience, but (in contrast to coma) with involuntary opening of the eyes and movements (such as teeth grinding, yawning, or thrashing of the extremities).
+HED_0012430 3 Agent-emotional-state Agent-state The status of the general temperament and outlook of an agent.
+HED_0012431 4 Angry Agent-emotional-state Experiencing emotions characterized by marked annoyance or hostility.
+HED_0012432 4 Aroused Agent-emotional-state In a state reactive to stimuli leading to increased heart rate and blood pressure, sensory alertness, mobility and readiness to respond.
+HED_0012433 4 Awed Agent-emotional-state Filled with wonder. Feeling grand, sublime or powerful emotions characterized by a combination of joy, fear, admiration, reverence, and/or respect.
+HED_0012434 4 Compassionate Agent-emotional-state Feeling or showing sympathy and concern for others often evoked for a person who is in distress and associated with altruistic motivation.
+HED_0012435 4 Content Agent-emotional-state Feeling satisfaction with things as they are.
+HED_0012436 4 Disgusted Agent-emotional-state Feeling revulsion or profound disapproval aroused by something unpleasant or offensive.
+HED_0012437 4 Emotionally-neutral Agent-emotional-state Feeling neither satisfied nor dissatisfied.
+HED_0012438 4 Empathetic Agent-emotional-state Understanding and sharing the feelings of another. Being aware of, being sensitive to, and vicariously experiencing the feelings, thoughts, and experience of another.
+HED_0012439 4 Excited Agent-emotional-state Feeling great enthusiasm and eagerness.
+HED_0012440 4 Fearful Agent-emotional-state Feeling apprehension that one may be in danger.
+HED_0012441 4 Frustrated Agent-emotional-state Feeling annoyed as a result of being blocked, thwarted, disappointed or defeated.
+HED_0012442 4 Grieving Agent-emotional-state Feeling sorrow in response to loss, whether physical or abstract.
+HED_0012443 4 Happy Agent-emotional-state Feeling pleased and content.
+HED_0012444 4 Jealous Agent-emotional-state Feeling threatened by a rival in a relationship with another individual, in particular an intimate partner, usually involves feelings of threat, fear, suspicion, distrust, anxiety, anger, betrayal, and rejection.
+HED_0012445 4 Joyful Agent-emotional-state Feeling delight or intense happiness.
+HED_0012446 4 Loving Agent-emotional-state Feeling a strong positive emotion of affection and attraction.
+HED_0012447 4 Relieved Agent-emotional-state No longer feeling pain, distress,anxiety, or reassured.
+HED_0012448 4 Sad Agent-emotional-state Feeling grief or unhappiness.
+HED_0012449 4 Stressed Agent-emotional-state Experiencing mental or emotional strain or tension.
+HED_0012450 3 Agent-physiological-state Agent-state Having to do with the mechanical, physical, or biochemical function of an agent.
+HED_0013226 4 Catamenial Agent-physiological-state Related to menstruation.
+HED_0013227 4 Fever Agent-physiological-state relatedTag=Sick Body temperature above the normal range.
+HED_0012451 4 Healthy Agent-physiological-state relatedTag=Sick Having no significant health-related issues.
+HED_0012452 4 Hungry Agent-physiological-state relatedTag=Sated, relatedTag=Thirsty Being in a state of craving or desiring food.
+HED_0012453 4 Rested Agent-physiological-state relatedTag=Tired Feeling refreshed and relaxed.
+HED_0012454 4 Sated Agent-physiological-state relatedTag=Hungry Feeling full.
+HED_0012455 4 Sick Agent-physiological-state relatedTag=Healthy Being in a state of ill health, bodily malfunction, or discomfort.
+HED_0012456 4 Thirsty Agent-physiological-state relatedTag=Hungry Feeling a need to drink.
+HED_0012457 4 Tired Agent-physiological-state relatedTag=Rested Feeling in need of sleep or rest.
+HED_0012458 3 Agent-postural-state Agent-state Pertaining to the position in which agent holds their body.
+HED_0012459 4 Crouching Agent-postural-state Adopting a position where the knees are bent and the upper body is brought forward and down, sometimes to avoid detection or to defend oneself.
+HED_0012460 4 Eyes-closed Agent-postural-state Keeping eyes closed with no blinking.
+HED_0012461 4 Eyes-open Agent-postural-state Keeping eyes open with occasional blinking.
+HED_0012462 4 Kneeling Agent-postural-state Positioned where one or both knees are on the ground.
+HED_0012463 4 On-treadmill Agent-postural-state Ambulation on an exercise apparatus with an endless moving belt to support moving in place.
+HED_0012464 4 Prone Agent-postural-state Positioned in a recumbent body position whereby the person lies on its stomach and faces downward.
+HED_0012465 4 Seated-with-chin-rest Agent-postural-state Using a device that supports the chin and head.
+HED_0012466 4 Sitting Agent-postural-state In a seated position.
+HED_0012467 4 Standing Agent-postural-state Assuming or maintaining an erect upright position.
+HED_0012468 2 Agent-task-role Agent-property The function or part that is ascribed to an agent in performing the task.
+HED_0012469 3 Experiment-actor Agent-task-role An agent who plays a predetermined role to create the experiment scenario.
+HED_0012470 3 Experiment-controller Agent-task-role An agent exerting control over some aspect of the experiment.
+HED_0012471 3 Experiment-participant Agent-task-role Someone who takes part in an activity related to an experiment.
+HED_0012472 3 Experimenter Agent-task-role Person who is the owner of the experiment and has its responsibility.
+HED_0012473 2 Agent-trait Agent-property A genetically, environmentally, or socially determined characteristic of an agent.
+HED_0012474 3 Age Agent-trait Length of time elapsed time since birth of the agent.
+HED_0012475 4 Age-# Age takesValue, valueClass=numericClass, unitClass=timeUnits
+HED_0012476 3 Agent-experience-level Agent-trait Amount of skill or knowledge that the agent has as pertains to the task.
+HED_0012477 4 Expert-level Agent-experience-level relatedTag=Intermediate-experience-level, relatedTag=Novice-level Having comprehensive and authoritative knowledge of or skill in a particular area related to the task.
+HED_0012478 4 Intermediate-experience-level Agent-experience-level relatedTag=Expert-level, relatedTag=Novice-level Having a moderate amount of knowledge or skill related to the task.
+HED_0012479 4 Novice-level Agent-experience-level relatedTag=Expert-level, relatedTag=Intermediate-experience-level Being inexperienced in a field or situation related to the task.
+HED_0012480 3 Ethnicity Agent-trait Belong to a social group that has a common national or cultural tradition. Use with Label to avoid extension.
+HED_0012481 3 Gender Agent-trait Characteristics that are socially constructed, including norms, behaviors, and roles based on sex.
+HED_0012482 3 Handedness Agent-trait Individual preference for use of a hand, known as the dominant hand.
+HED_0012483 4 Ambidextrous Handedness Having no overall dominance in the use of right or left hand or foot in the performance of tasks that require one hand or foot.
+HED_0012484 4 Left-handed Handedness Preference for using the left hand or foot for tasks requiring the use of a single hand or foot.
+HED_0012485 4 Right-handed Handedness Preference for using the right hand or foot for tasks requiring the use of a single hand or foot.
+HED_0012486 3 Race Agent-trait Belonging to a group sharing physical or social qualities as defined within a specified society. Use with Label to avoid extension.
+HED_0012487 3 Sex Agent-trait Physical properties or qualities by which male is distinguished from female.
+HED_0012488 4 Female Sex Biological sex of an individual with female sexual organs such ova.
+HED_0012489 4 Intersex Sex Having genitalia and/or secondary sexual characteristics of indeterminate sex.
+HED_0012490 4 Male Sex Biological sex of an individual with male sexual organs producing sperm.
+HED_0012491 4 Other-sex Sex A non-specific designation of sexual traits.
+HED_0012492 1 Data-property Property extensionAllowed Something that pertains to data or information.
+HED_0012493 2 Data-artifact Data-property An anomalous, interfering, or distorting signal originating from a source other than the item being studied.
+HED_0012494 3 Biological-artifact Data-artifact A data artifact arising from a biological entity being measured.
+HED_0012495 4 Chewing-artifact Biological-artifact Artifact from moving the jaw in a chewing motion.
+HED_0012496 4 ECG-artifact Biological-artifact An electrical artifact from the far-field potential from pulsation of the heart, time locked to QRS complex.
+HED_0012497 4 EMG-artifact Biological-artifact Artifact from muscle activity and myogenic potentials at the measurements site. In EEG, myogenic potentials are the most common artifacts. Frontalis and temporalis muscles (e.g. clenching of jaw muscles) are common causes. Generally, the potentials generated in the muscles are of shorter duration than those generated in the brain. The frequency components are usually beyond 30-50 Hz, and the bursts are arrhythmic.
+HED_0012498 4 Eye-artifact Biological-artifact Ocular movements and blinks can result in artifacts in different types of data. In electrophysiology data, these can result transients and offsets the signal.
+HED_0012499 5 Eye-blink-artifact Eye-artifact Artifact from eye blinking. In EEG, Fp1/Fp2 electrodes become electro-positive with eye closure because the cornea is positively charged causing a negative deflection in Fp1/Fp2. If the eye blink is unilateral, consider prosthetic eye.
+HED_0012500 5 Eye-movement-artifact Eye-artifact Eye movements can cause artifacts on recordings. The charge of the eye can especially cause artifacts in electrophysiology data.
+HED_0012501 6 Horizontal-eye-movement-artifact Eye-movement-artifact Artifact from moving eyes left-to-right and right-to-left. In EEG, there is an upward deflection in the Fp2-F8 derivation, when the eyes move to the right side. In this case F8 becomes more positive and therefore. When the eyes move to the left, F7 becomes more positive and there is an upward deflection in the Fp1-F7 derivation.
+HED_0012502 6 Nystagmus-artifact Eye-movement-artifact Artifact from nystagmus (a vision condition in which the eyes make repetitive, uncontrolled movements).
+HED_0012503 6 Slow-eye-movement-artifact Eye-movement-artifact Artifacts originating from slow, rolling eye-movements, seen during drowsiness.
+HED_0012504 6 Vertical-eye-movement-artifact Eye-movement-artifact Artifact from moving eyes up and down. In EEG, this causes positive potentials (50-100 micro V) with bi-frontal distribution, maximum at Fp1 and Fp2, when the eyeball rotates upward. The downward rotation of the eyeball is associated with the negative deflection. The time course of the deflections is similar to the time course of the eyeball movement.
+HED_0012505 4 Movement-artifact Biological-artifact Artifact in the measured data generated by motion of the subject.
+HED_0012506 4 Pulse-artifact Biological-artifact A mechanical artifact from a pulsating blood vessel near a measurement site, cardio-ballistic artifact.
+HED_0012507 4 Respiration-artifact Biological-artifact Artifact from breathing.
+HED_0012508 4 Rocking-patting-artifact Biological-artifact Quasi-rhythmical artifacts in recordings most commonly seen in infants. Typically caused by a caregiver rocking or patting the infant.
+HED_0012509 4 Sucking-artifact Biological-artifact Artifact from sucking, typically seen in very young cases.
+HED_0012510 4 Sweat-artifact Biological-artifact Artifact from sweating. In EEG, this is a low amplitude undulating waveform that is usually greater than 2 seconds and may appear to be an unstable baseline.
+HED_0012511 4 Tongue-movement-artifact Biological-artifact Artifact from tongue movement (Glossokinetic). The tongue functions as a dipole, with the tip negative with respect to the base. In EEG, the artifact produced by the tongue has a broad potential field that drops from frontal to occipital areas, although it is less steep than that produced by eye movement artifacts. The amplitude of the potentials is greater inferiorly than in parasagittal regions; the frequency is variable but usually in the delta range. Chewing and sucking can produce similar artifacts.
+HED_0012512 3 Nonbiological-artifact Data-artifact A data artifact arising from a non-biological source.
+HED_0012513 4 Artificial-ventilation-artifact Nonbiological-artifact Artifact stemming from mechanical ventilation. These can occur at the same rate as the ventilator, but also have other patterns.
+HED_0012514 4 Dialysis-artifact Nonbiological-artifact Artifacts seen in recordings during continuous renal replacement therapy (dialysis).
+HED_0012515 4 Electrode-movement-artifact Nonbiological-artifact Artifact from electrode movement.
+HED_0012516 4 Electrode-pops-artifact Nonbiological-artifact Brief artifact with a steep rise and slow fall of an electrophysiological signal, most often caused by a loose electrode.
+HED_0012517 4 Induction-artifact Nonbiological-artifact Artifacts induced by nearby equipment. In EEG, these are usually of high frequency.
+HED_0012518 4 Line-noise-artifact Nonbiological-artifact Power line noise at 50 Hz or 60 Hz.
+HED_0012519 5 Line-noise-artifact-# Line-noise-artifact takesValue, valueClass=numericClass, unitClass=frequencyUnits
+HED_0012520 4 Salt-bridge-artifact Nonbiological-artifact Artifact from salt-bridge between EEG electrodes.
+HED_0012521 2 Data-marker Data-property An indicator placed to mark something.
+HED_0012522 3 Data-break-marker Data-marker An indicator place to indicate a gap in the data.
+HED_0012523 3 Temporal-marker Data-marker An indicator placed at a particular time in the data.
+HED_0012524 4 Inset Temporal-marker topLevelTagGroup, reserved, relatedTag=Onset, relatedTag=Offset Marks an intermediate point in an ongoing event of temporal extent.
+HED_0012525 4 Offset Temporal-marker topLevelTagGroup, reserved, relatedTag=Onset, relatedTag=Inset Marks the end of an event of temporal extent.
+HED_0012526 4 Onset Temporal-marker topLevelTagGroup, reserved, relatedTag=Inset, relatedTag=Offset Marks the start of an ongoing event of temporal extent.
+HED_0012527 4 Pause Temporal-marker Indicates the temporary interruption of the operation of a process and subsequently a wait for a signal to continue.
+HED_0012528 4 Time-out Temporal-marker A cancellation or cessation that automatically occurs when a predefined interval of time has passed without a certain event occurring.
+HED_0012529 4 Time-sync Temporal-marker A synchronization signal whose purpose is to help synchronize different signals or processes. Often used to indicate a marker inserted into the recorded data to allow post hoc synchronization of concurrently recorded data streams.
+HED_0012530 2 Data-resolution Data-property Smallest change in a quality being measured by an sensor that causes a perceptible change.
+HED_0012531 3 Printer-resolution Data-resolution Resolution of a printer, usually expressed as the number of dots-per-inch for a printer.
+HED_0012532 4 Printer-resolution-# Printer-resolution takesValue, valueClass=numericClass
+HED_0012533 3 Screen-resolution Data-resolution Resolution of a screen, usually expressed as the of pixels in a dimension for a digital display device.
+HED_0012534 4 Screen-resolution-# Screen-resolution takesValue, valueClass=numericClass
+HED_0012535 3 Sensory-resolution Data-resolution Resolution of measurements by a sensing device.
+HED_0012536 4 Sensory-resolution-# Sensory-resolution takesValue, valueClass=numericClass
+HED_0012537 3 Spatial-resolution Data-resolution Linear spacing of a spatial measurement.
+HED_0012538 4 Spatial-resolution-# Spatial-resolution takesValue, valueClass=numericClass
+HED_0012539 3 Spectral-resolution Data-resolution Measures the ability of a sensor to resolve features in the electromagnetic spectrum.
+HED_0012540 4 Spectral-resolution-# Spectral-resolution takesValue, valueClass=numericClass
+HED_0012541 3 Temporal-resolution Data-resolution Measures the ability of a sensor to resolve features in time.
+HED_0012542 4 Temporal-resolution-# Temporal-resolution takesValue, valueClass=numericClass
+HED_0012543 2 Data-source-type Data-property The type of place, person, or thing from which the data comes or can be obtained.
+HED_0012544 3 Computed-feature Data-source-type A feature computed from the data by a tool. This tag should be grouped with a label of the form Toolname_propertyName.
+HED_0012545 3 Computed-prediction Data-source-type A computed extrapolation of known data.
+HED_0012546 3 Expert-annotation Data-source-type An explanatory or critical comment or other in-context information provided by an authority.
+HED_0012547 3 Instrument-measurement Data-source-type Information obtained from a device that is used to measure material properties or make other observations.
+HED_0012548 3 Observation Data-source-type Active acquisition of information from a primary source. Should be grouped with a label of the form AgentID_featureName.
+HED_0012549 2 Data-value Data-property Designation of the type of a data item.
+HED_0012550 3 Categorical-value Data-value Indicates that something can take on a limited and usually fixed number of possible values.
+HED_0012551 4 Categorical-class-value Categorical-value Categorical values that fall into discrete classes such as true or false. The grouping is absolute in the sense that it is the same for all participants.
+HED_0012552 5 All Categorical-class-value relatedTag=Some, relatedTag=None To a complete degree or to the full or entire extent.
+HED_0012553 5 Correct Categorical-class-value relatedTag=Wrong Free from error. Especially conforming to fact or truth.
+HED_0012554 5 Explicit Categorical-class-value relatedTag=Implicit Stated clearly and in detail, leaving no room for confusion or doubt.
+HED_0012555 5 False Categorical-class-value relatedTag=True Not in accordance with facts, reality or definitive criteria.
+HED_0012556 5 Implicit Categorical-class-value relatedTag=Explicit Implied though not plainly expressed.
+HED_0012557 5 Invalid Categorical-class-value relatedTag=Valid Not allowed or not conforming to the correct format or specifications.
+HED_0012558 5 None Categorical-class-value relatedTag=All, relatedTag=Some No person or thing, nobody, not any.
+HED_0012559 5 Some Categorical-class-value relatedTag=All, relatedTag=None At least a small amount or number of, but not a large amount of, or often.
+HED_0012560 5 True Categorical-class-value relatedTag=False Conforming to facts, reality or definitive criteria.
+HED_0012561 5 Unknown Categorical-class-value relatedTag=Invalid The information has not been provided.
+HED_0012562 5 Valid Categorical-class-value relatedTag=Invalid Allowable, usable, or acceptable.
+HED_0012563 5 Wrong Categorical-class-value relatedTag=Correct Inaccurate or not correct.
+HED_0012564 4 Categorical-judgment-value Categorical-value Categorical values that are based on the judgment or perception of the participant such familiar and famous.
+HED_0012565 5 Abnormal Categorical-judgment-value relatedTag=Normal Deviating in any way from the state, position, structure, condition, behavior, or rule which is considered a norm.
+HED_0012566 5 Asymmetrical Categorical-judgment-value relatedTag=Symmetrical Lacking symmetry or having parts that fail to correspond to one another in shape, size, or arrangement.
+HED_0012567 5 Audible Categorical-judgment-value relatedTag=Inaudible A sound that can be perceived by the participant.
+HED_0012568 5 Complex Categorical-judgment-value relatedTag=Simple Hard, involved or complicated, elaborate, having many parts.
+HED_0012569 5 Congruent Categorical-judgment-value relatedTag=Incongruent Concordance of multiple evidence lines. In agreement or harmony.
+HED_0012570 5 Constrained Categorical-judgment-value relatedTag=Unconstrained Keeping something within particular limits or bounds.
+HED_0012571 5 Disordered Categorical-judgment-value relatedTag=Ordered Not neatly arranged. Confused and untidy. A structural quality in which the parts of an object are non-rigid.
+HED_0012572 5 Familiar Categorical-judgment-value relatedTag=Unfamiliar, relatedTag=Famous Recognized, familiar, or within the scope of knowledge.
+HED_0012573 5 Famous Categorical-judgment-value relatedTag=Familiar, relatedTag=Unfamiliar A person who has a high degree of recognition by the general population for his or her success or accomplishments. A famous person.
+HED_0012574 5 Inaudible Categorical-judgment-value relatedTag=Audible A sound below the threshold of perception of the participant.
+HED_0012575 5 Incongruent Categorical-judgment-value relatedTag=Congruent Not in agreement or harmony.
+HED_0012576 5 Involuntary Categorical-judgment-value relatedTag=Voluntary An action that is not made by choice. In the body, involuntary actions (such as blushing) occur automatically, and cannot be controlled by choice.
+HED_0012577 5 Masked Categorical-judgment-value relatedTag=Unmasked Information exists but is not provided or is partially obscured due to security,privacy, or other concerns.
+HED_0012578 5 Normal Categorical-judgment-value relatedTag=Abnormal Being approximately average or within certain limits. Conforming with or constituting a norm or standard or level or type or social norm.
+HED_0012579 5 Ordered Categorical-judgment-value relatedTag=Disordered Conforming to a logical or comprehensible arrangement of separate elements.
+HED_0012580 5 Simple Categorical-judgment-value relatedTag=Complex Easily understood or presenting no difficulties.
+HED_0012581 5 Symmetrical Categorical-judgment-value relatedTag=Asymmetrical Made up of exactly similar parts facing each other or around an axis. Showing aspects of symmetry.
+HED_0012582 5 Unconstrained Categorical-judgment-value relatedTag=Constrained Moving without restriction.
+HED_0012583 5 Unfamiliar Categorical-judgment-value relatedTag=Familiar, relatedTag=Famous Not having knowledge or experience of.
+HED_0012584 5 Unmasked Categorical-judgment-value relatedTag=Masked Information is revealed.
+HED_0012585 5 Voluntary Categorical-judgment-value relatedTag=Involuntary Using free will or design; not forced or compelled; controlled by individual volition.
+HED_0012586 4 Categorical-level-value Categorical-value Categorical values based on dividing a continuous variable into levels such as high and low.
+HED_0012587 5 Cold Categorical-level-value relatedTag=Hot Having an absence of heat.
+HED_0012588 5 Deep Categorical-level-value relatedTag=Shallow Extending relatively far inward or downward.
+HED_0012589 5 High Categorical-level-value relatedTag=Low, relatedTag=Medium Having a greater than normal degree, intensity, or amount.
+HED_0012590 5 Hot Categorical-level-value relatedTag=Cold Having an excess of heat.
+HED_0012591 5 Large Categorical-level-value relatedTag=Small Having a great extent such as in physical dimensions, period of time, amplitude or frequency.
+HED_0012592 5 Liminal Categorical-level-value relatedTag=Subliminal, relatedTag=Supraliminal Situated at a sensory threshold that is barely perceptible or capable of eliciting a response.
+HED_0012593 5 Loud Categorical-level-value relatedTag=Quiet Having a perceived high intensity of sound.
+HED_0012594 5 Low Categorical-level-value relatedTag=High Less than normal in degree, intensity or amount.
+HED_0012595 5 Medium Categorical-level-value relatedTag=Low, relatedTag=High Mid-way between small and large in number, quantity, magnitude or extent.
+HED_0012596 5 Negative Categorical-level-value relatedTag=Positive Involving disadvantage or harm.
+HED_0012597 5 Positive Categorical-level-value relatedTag=Negative Involving advantage or good.
+HED_0012598 5 Quiet Categorical-level-value relatedTag=Loud Characterizing a perceived low intensity of sound.
+HED_0012599 5 Rough Categorical-level-value relatedTag=Smooth Having a surface with perceptible bumps, ridges, or irregularities.
+HED_0012600 5 Shallow Categorical-level-value relatedTag=Deep Having a depth which is relatively low.
+HED_0012601 5 Small Categorical-level-value relatedTag=Large Having a small extent such as in physical dimensions, period of time, amplitude or frequency.
+HED_0012602 5 Smooth Categorical-level-value relatedTag=Rough Having a surface free from bumps, ridges, or irregularities.
+HED_0012603 5 Subliminal Categorical-level-value relatedTag=Liminal, relatedTag=Supraliminal Situated below a sensory threshold that is imperceptible or not capable of eliciting a response.
+HED_0012604 5 Supraliminal Categorical-level-value relatedTag=Liminal, relatedTag=Subliminal Situated above a sensory threshold that is perceptible or capable of eliciting a response.
+HED_0012605 5 Thick Categorical-level-value relatedTag=Thin Wide in width, extent or cross-section.
+HED_0012606 5 Thin Categorical-level-value relatedTag=Thick Narrow in width, extent or cross-section.
+HED_0012607 4 Categorical-location-value Categorical-value Value indicating the location of something, primarily as an identifier rather than an expression of where the item is relative to something else.
+HED_0012608 5 Anterior Categorical-location-value Relating to an item on the front of an agent body (from the point of view of the agent) or on the front of an object from the point of view of an agent. This pertains to the identity of an agent or a thing.
+HED_0012609 5 Lateral Categorical-location-value Identifying the portion of an object away from the midline, particularly applied to the (anterior-posterior, superior-inferior) surface of a brain.
+HED_0012610 5 Left Categorical-location-value Relating to an item on the left side of an agent body (from the point of view of the agent) or the left side of an object from the point of view of an agent. This pertains to the identity of an agent or a thing, for example (Left, Hand) as an identifier for the left hand. HED spatial relations should be used for relative positions such as (Hand, (Left-side-of, Keyboard)), which denotes the hand placed on the left side of the keyboard, which could be either the identified left hand or right hand.
+HED_0012611 5 Medial Categorical-location-value Identifying the portion of an object towards the center, particularly applied to the (anterior-posterior, superior-inferior) surface of a brain.
+HED_0012612 5 Posterior Categorical-location-value Relating to an item on the back of an agent body (from the point of view of the agent) or on the back of an object from the point of view of an agent. This pertains to the identity of an agent or a thing.
+HED_0012613 5 Right Categorical-location-value Relating to an item on the right side of an agent body (from the point of view of the agent) or the right side of an object from the point of view of an agent. This pertains to the identity of an agent or a thing, for example (Right, Hand) as an identifier for the right hand. HED spatial relations should be used for relative positions such as (Hand, (Right-side-of, Keyboard)), which denotes the hand placed on the right side of the keyboard, which could be either the identified left hand or right hand.
+HED_0012614 4 Categorical-orientation-value Categorical-value Value indicating the orientation or direction of something.
+HED_0012615 5 Backward Categorical-orientation-value relatedTag=Forward Directed behind or to the rear.
+HED_0012616 5 Downward Categorical-orientation-value relatedTag=Leftward, relatedTag=Rightward, relatedTag=Upward Moving or leading toward a lower place or level.
+HED_0012617 5 Forward Categorical-orientation-value relatedTag=Backward At or near or directed toward the front.
+HED_0012618 5 Horizontally-oriented Categorical-orientation-value relatedTag=Vertically-oriented Oriented parallel to or in the plane of the horizon.
+HED_0012619 5 Leftward Categorical-orientation-value relatedTag=Downward, relatedTag=Rightward, relatedTag=Upward Going toward or facing the left.
+HED_0012620 5 Oblique Categorical-orientation-value relatedTag=Rotated Slanting or inclined in direction, course, or position that is neither parallel nor perpendicular nor right-angular.
+HED_0012621 5 Rightward Categorical-orientation-value relatedTag=Downward, relatedTag=Leftward, relatedTag=Upward Going toward or situated on the right.
+HED_0012622 5 Rotated Categorical-orientation-value Positioned offset around an axis or center.
+HED_0012623 5 Upward Categorical-orientation-value relatedTag=Downward, relatedTag=Leftward, relatedTag=Rightward Moving, pointing, or leading to a higher place, point, or level.
+HED_0012624 5 Vertically-oriented Categorical-orientation-value relatedTag=Horizontally-oriented Oriented perpendicular to the plane of the horizon.
+HED_0012625 3 Physical-value Data-value The value of some physical property of something.
+HED_0012626 4 Temperature Physical-value A measure of hot or cold based on the average kinetic energy of the atoms or molecules in the system.
+HED_0012627 5 Temperature-# Temperature takesValue, valueClass=numericClass, unitClass=temperatureUnits
+HED_0012628 4 Weight Physical-value The relative mass or the quantity of matter contained by something.
+HED_0012629 5 Weight-# Weight takesValue, valueClass=numericClass, unitClass=weightUnits
+HED_0012630 3 Quantitative-value Data-value Something capable of being estimated or expressed with numeric values.
+HED_0012631 4 Fraction Quantitative-value A numerical value between 0 and 1.
+HED_0012632 5 Fraction-# Fraction takesValue, valueClass=numericClass
+HED_0012633 4 Item-count Quantitative-value The integer count of something which is usually grouped with the entity it is counting. (Item-count/3, A) indicates that 3 of A have occurred up to this point.
+HED_0012634 5 Item-count-# Item-count takesValue, valueClass=numericClass
+HED_0012635 4 Item-index Quantitative-value The index of an item in a collection, sequence or other structure. (A (Item-index/3, B)) means that A is item number 3 in B.
+HED_0012636 5 Item-index-# Item-index takesValue, valueClass=numericClass
+HED_0012637 4 Item-interval Quantitative-value An integer indicating how many items or entities have passed since the last one of these. An item interval of 0 indicates the current item.
+HED_0012638 5 Item-interval-# Item-interval takesValue, valueClass=numericClass
+HED_0012639 4 Percentage Quantitative-value A fraction or ratio with 100 understood as the denominator.
+HED_0012640 5 Percentage-# Percentage takesValue, valueClass=numericClass
+HED_0012641 4 Ratio Quantitative-value A quotient of quantities of the same kind for different components within the same system.
+HED_0012642 5 Ratio-# Ratio takesValue, valueClass=numericClass
+HED_0012643 3 Spatiotemporal-value Data-value A property relating to space and/or time.
+HED_0012644 4 Rate-of-change Spatiotemporal-value The amount of change accumulated per unit time.
+HED_0012645 5 Acceleration Rate-of-change Magnitude of the rate of change in either speed or direction. The direction of change should be given separately.
+HED_0012646 6 Acceleration-# Acceleration takesValue, valueClass=numericClass, unitClass=accelerationUnits
+HED_0012647 5 Frequency Rate-of-change Frequency is the number of occurrences of a repeating event per unit time.
+HED_0012648 6 Frequency-# Frequency takesValue, valueClass=numericClass, unitClass=frequencyUnits
+HED_0012649 5 Jerk-rate Rate-of-change Magnitude of the rate at which the acceleration of an object changes with respect to time. The direction of change should be given separately.
+HED_0012650 6 Jerk-rate-# Jerk-rate takesValue, valueClass=numericClass, unitClass=jerkUnits
+HED_0012651 5 Refresh-rate Rate-of-change The frequency with which the image on a computer monitor or similar electronic display screen is refreshed, usually expressed in hertz.
+HED_0012652 6 Refresh-rate-# Refresh-rate takesValue, valueClass=numericClass
+HED_0012653 5 Sampling-rate Rate-of-change The number of digital samples taken or recorded per unit of time.
+HED_0012654 6 Sampling-rate-# Sampling-rate takesValue, valueClass=numericClass, unitClass=frequencyUnits
+HED_0012655 5 Speed Rate-of-change A scalar measure of the rate of movement of the object expressed either as the distance traveled divided by the time taken (average speed) or the rate of change of position with respect to time at a particular point (instantaneous speed). The direction of change should be given separately.
+HED_0012656 6 Speed-# Speed takesValue, valueClass=numericClass, unitClass=speedUnits
+HED_0012657 5 Temporal-rate Rate-of-change The number of items per unit of time.
+HED_0012658 6 Temporal-rate-# Temporal-rate takesValue, valueClass=numericClass, unitClass=frequencyUnits
+HED_0012659 4 Spatial-value Spatiotemporal-value Value of an item involving space.
+HED_0012660 5 Angle Spatial-value The amount of inclination of one line to another or the plane of one object to another.
+HED_0012661 6 Angle-# Angle takesValue, unitClass=angleUnits, valueClass=numericClass
+HED_0012662 5 Distance Spatial-value A measure of the space separating two objects or points.
+HED_0012663 6 Distance-# Distance takesValue, valueClass=numericClass, unitClass=physicalLengthUnits
+HED_0012664 5 Position Spatial-value A reference to the alignment of an object, a particular situation or view of a situation, or the location of an object. Coordinates with respect a specified frame of reference or the default Screen-frame if no frame is given.
+HED_0012326 6 Clock-face Position deprecatedFrom=8.2.0 A location identifier based on clock-face numbering or anatomic subregion. Use Clock-face-position.
+HED_0013228 7 Clock-face-# Clock-face deprecatedFrom=8.2.0, takesValue, valueClass=numericClass
+HED_0013229 6 Clock-face-position Position A location identifier based on clock-face numbering or anatomic subregion. As an object, just use the tag Clock.
+HED_0013230 7 Clock-face-position-# Clock-face-position takesValue, valueClass=numericClass
+HED_0012665 6 X-position Position The position along the x-axis of the frame of reference.
+HED_0012666 7 X-position-# X-position takesValue, valueClass=numericClass, unitClass=physicalLengthUnits
+HED_0012667 6 Y-position Position The position along the y-axis of the frame of reference.
+HED_0012668 7 Y-position-# Y-position takesValue, valueClass=numericClass, unitClass=physicalLengthUnits
+HED_0012669 6 Z-position Position The position along the z-axis of the frame of reference.
+HED_0012670 7 Z-position-# Z-position takesValue, valueClass=numericClass, unitClass=physicalLengthUnits
+HED_0012671 5 Size Spatial-value The physical magnitude of something.
+HED_0012672 6 Area Size The extent of a 2-dimensional surface enclosed within a boundary.
+HED_0012673 7 Area-# Area takesValue, valueClass=numericClass, unitClass=areaUnits
+HED_0012674 6 Depth Size The distance from the surface of something especially from the perspective of looking from the front.
+HED_0012675 7 Depth-# Depth takesValue, valueClass=numericClass, unitClass=physicalLengthUnits
+HED_0012676 6 Height Size The vertical measurement or distance from the base to the top of an object.
+HED_0012677 7 Height-# Height takesValue, valueClass=numericClass, unitClass=physicalLengthUnits
+HED_0012678 6 Length Size The linear extent in space from one end of something to the other end, or the extent of something from beginning to end.
+HED_0012679 7 Length-# Length takesValue, valueClass=numericClass, unitClass=physicalLengthUnits
+HED_0012680 6 Perimeter Size The minimum length of paths enclosing a 2D shape.
+HED_0012681 7 Perimeter-# Perimeter takesValue, valueClass=numericClass, unitClass=physicalLengthUnits
+HED_0012682 6 Radius Size The distance of the line from the center of a circle or a sphere to its perimeter or outer surface, respectively.
+HED_0012683 7 Radius-# Radius takesValue, valueClass=numericClass, unitClass=physicalLengthUnits
+HED_0012684 6 Volume Size The amount of three dimensional space occupied by an object or the capacity of a space or container.
+HED_0012685 7 Volume-# Volume takesValue, valueClass=numericClass, unitClass=volumeUnits
+HED_0012686 6 Width Size The extent or measurement of something from side to side.
+HED_0012687 7 Width-# Width takesValue, valueClass=numericClass, unitClass=physicalLengthUnits
+HED_0012688 4 Temporal-value Spatiotemporal-value A characteristic of or relating to time or limited by time.
+HED_0012689 5 Delay Temporal-value topLevelTagGroup, reserved, requireChild, relatedTag=Duration The time at which an event start time is delayed from the current onset time. This tag defines the start time of an event of temporal extent and may be used with the Duration tag.
+HED_0012690 6 Delay-# Delay takesValue, valueClass=numericClass, unitClass=timeUnits
+HED_0012691 5 Duration Temporal-value topLevelTagGroup, reserved, requireChild, relatedTag=Delay The period of time during which an event occurs. This tag defines the end time of an event of temporal extent and may be used with the Delay tag.
+HED_0012692 6 Duration-# Duration takesValue, valueClass=numericClass, unitClass=timeUnits
+HED_0012693 5 Time-interval Temporal-value The period of time separating two instances, events, or occurrences.
+HED_0012694 6 Time-interval-# Time-interval takesValue, valueClass=numericClass, unitClass=timeUnits
+HED_0012695 5 Time-value Temporal-value A value with units of time. Usually grouped with tags identifying what the value represents.
+HED_0012696 6 Time-value-# Time-value takesValue, valueClass=numericClass, unitClass=timeUnits
+HED_0012697 3 Statistical-value Data-value extensionAllowed A value based on or employing the principles of statistics.
+HED_0012698 4 Data-maximum Statistical-value The largest possible quantity or degree.
+HED_0012699 5 Data-maximum-# Data-maximum takesValue, valueClass=numericClass
+HED_0012700 4 Data-mean Statistical-value The sum of a set of values divided by the number of values in the set.
+HED_0012701 5 Data-mean-# Data-mean takesValue, valueClass=numericClass
+HED_0012702 4 Data-median Statistical-value The value which has an equal number of values greater and less than it.
+HED_0012703 5 Data-median-# Data-median takesValue, valueClass=numericClass
+HED_0012704 4 Data-minimum Statistical-value The smallest possible quantity.
+HED_0012705 5 Data-minimum-# Data-minimum takesValue, valueClass=numericClass
+HED_0012706 4 Probability Statistical-value A measure of the expectation of the occurrence of a particular event.
+HED_0012707 5 Probability-# Probability takesValue, valueClass=numericClass
+HED_0012708 4 Standard-deviation Statistical-value A measure of the range of values in a set of numbers. Standard deviation is a statistic used as a measure of the dispersion or variation in a distribution, equal to the square root of the arithmetic mean of the squares of the deviations from the arithmetic mean.
+HED_0012709 5 Standard-deviation-# Standard-deviation takesValue, valueClass=numericClass
+HED_0012710 4 Statistical-accuracy Statistical-value A measure of closeness to true value expressed as a number between 0 and 1.
+HED_0012711 5 Statistical-accuracy-# Statistical-accuracy takesValue, valueClass=numericClass
+HED_0012712 4 Statistical-precision Statistical-value A quantitative representation of the degree of accuracy necessary for or associated with a particular action.
+HED_0012713 5 Statistical-precision-# Statistical-precision takesValue, valueClass=numericClass
+HED_0012714 4 Statistical-recall Statistical-value Sensitivity is a measurement datum qualifying a binary classification test and is computed by subtracting the false negative rate to the integral numeral 1.
+HED_0012715 5 Statistical-recall-# Statistical-recall takesValue, valueClass=numericClass
+HED_0012716 4 Statistical-uncertainty Statistical-value A measure of the inherent variability of repeated observation measurements of a quantity including quantities evaluated by statistical methods and by other means.
+HED_0012717 5 Statistical-uncertainty-# Statistical-uncertainty takesValue, valueClass=numericClass
+HED_0012718 2 Data-variability-attribute Data-property An attribute describing how something changes or varies.
+HED_0012719 3 Abrupt Data-variability-attribute Marked by sudden change.
+HED_0012720 3 Constant Data-variability-attribute Continually recurring or continuing without interruption. Not changing in time or space.
+HED_0012721 3 Continuous Data-variability-attribute relatedTag=Discrete, relatedTag=Discontinuous Uninterrupted in time, sequence, substance, or extent.
+HED_0012722 3 Decreasing Data-variability-attribute relatedTag=Increasing Becoming smaller or fewer in size, amount, intensity, or degree.
+HED_0012723 3 Deterministic Data-variability-attribute relatedTag=Random, relatedTag=Stochastic No randomness is involved in the development of the future states of the element.
+HED_0012724 3 Discontinuous Data-variability-attribute relatedTag=Continuous Having a gap in time, sequence, substance, or extent.
+HED_0012725 3 Discrete Data-variability-attribute relatedTag=Continuous, relatedTag=Discontinuous Constituting a separate entities or parts.
+HED_0012726 3 Estimated-value Data-variability-attribute Something that has been calculated or measured approximately.
+HED_0012727 3 Exact-value Data-variability-attribute A value that is viewed to the true value according to some standard.
+HED_0012728 3 Flickering Data-variability-attribute Moving irregularly or unsteadily or burning or shining fitfully or with a fluctuating light.
+HED_0012729 3 Fractal Data-variability-attribute Having extremely irregular curves or shapes for which any suitably chosen part is similar in shape to a given larger or smaller part when magnified or reduced to the same size.
+HED_0012730 3 Increasing Data-variability-attribute relatedTag=Decreasing Becoming greater in size, amount, or degree.
+HED_0012731 3 Random Data-variability-attribute relatedTag=Deterministic, relatedTag=Stochastic Governed by or depending on chance. Lacking any definite plan or order or purpose.
+HED_0012732 3 Repetitive Data-variability-attribute A recurring action that is often non-purposeful.
+HED_0012733 3 Stochastic Data-variability-attribute relatedTag=Deterministic, relatedTag=Random Uses a random probability distribution or pattern that may be analyzed statistically but may not be predicted precisely to determine future states.
+HED_0012734 3 Varying Data-variability-attribute Differing in size, amount, degree, or nature.
+HED_0012735 1 Environmental-property Property Relating to or arising from the surroundings of an agent.
+HED_0012736 2 Augmented-reality Environmental-property Using technology that enhances real-world experiences with computer-derived digital overlays to change some aspects of perception of the natural environment. The digital content is shown to the user through a smart device or glasses and responds to changes in the environment.
+HED_0012737 2 Indoors Environmental-property Located inside a building or enclosure.
+HED_0012738 2 Motion-platform Environmental-property A mechanism that creates the feelings of being in a real motion environment.
+HED_0012739 2 Outdoors Environmental-property Any area outside a building or shelter.
+HED_0012740 2 Real-world Environmental-property Located in a place that exists in real space and time under realistic conditions.
+HED_0012741 2 Rural Environmental-property Of or pertaining to the country as opposed to the city.
+HED_0012742 2 Terrain Environmental-property Characterization of the physical features of a tract of land.
+HED_0012743 3 Composite-terrain Terrain Tracts of land characterized by a mixture of physical features.
+HED_0012744 3 Dirt-terrain Terrain Tracts of land characterized by a soil surface and lack of vegetation.
+HED_0012745 3 Grassy-terrain Terrain Tracts of land covered by grass.
+HED_0012746 3 Gravel-terrain Terrain Tracts of land covered by a surface consisting a loose aggregation of small water-worn or pounded stones.
+HED_0012747 3 Leaf-covered-terrain Terrain Tracts of land covered by leaves and composited organic material.
+HED_0012748 3 Muddy-terrain Terrain Tracts of land covered by a liquid or semi-liquid mixture of water and some combination of soil, silt, and clay.
+HED_0012749 3 Paved-terrain Terrain Tracts of land covered with concrete, asphalt, stones, or bricks.
+HED_0012750 3 Rocky-terrain Terrain Tracts of land consisting or full of rock or rocks.
+HED_0012751 3 Sloped-terrain Terrain Tracts of land arranged in a sloping or inclined position.
+HED_0012752 3 Uneven-terrain Terrain Tracts of land that are not level, smooth, or regular.
+HED_0012753 2 Urban Environmental-property Relating to, located in, or characteristic of a city or densely populated area.
+HED_0012754 2 Virtual-world Environmental-property Using technology that creates immersive, computer-generated experiences that a person can interact with and navigate through. The digital content is generally delivered to the user through some type of headset and responds to changes in head position or through interaction with other types of sensors. Existing in a virtual setting such as a simulation or game environment.
+HED_0012755 1 Informational-property Property extensionAllowed Something that pertains to a task.
+HED_0012756 2 Description Informational-property An explanation of what the tag group it is in means. If the description is at the top-level of an event string, the description applies to the event.
+HED_0012757 3 Description-# Description takesValue, valueClass=textClass
+HED_0012758 2 ID Informational-property An alphanumeric name that identifies either a unique object or a unique class of objects. Here the object or class may be an idea, physical countable object (or class), or physical uncountable substance (or class).
+HED_0012759 3 ID-# ID takesValue, valueClass=textClass
+HED_0012760 2 Label Informational-property A string of 20 or fewer characters identifying something. Labels usually refer to general classes of things while IDs refer to specific instances. A term that is associated with some entity. A brief description given for purposes of identification. An identifying or descriptive marker that is attached to an object.
+HED_0012761 3 Label-# Label takesValue, valueClass=nameClass
+HED_0012762 2 Metadata Informational-property Data about data. Information that describes another set of data.
+HED_0012763 3 Creation-date Metadata The date on which the creation of this item began.
+HED_0012764 4 Creation-date-# Creation-date takesValue, valueClass=dateTimeClass
+HED_0012765 3 Experimental-note Metadata A brief written record about the experiment.
+HED_0012766 4 Experimental-note-# Experimental-note takesValue, valueClass=textClass
+HED_0012767 3 Library-name Metadata Official name of a HED library.
+HED_0012768 4 Library-name-# Library-name takesValue, valueClass=nameClass
+HED_0012769 3 Metadata-identifier Metadata Identifier (usually unique) from another metadata source.
+HED_0012770 4 CogAtlas Metadata-identifier The Cognitive Atlas ID number of something.
+HED_0012771 5 CogAtlas-# CogAtlas takesValue
+HED_0012772 4 CogPo Metadata-identifier The CogPO ID number of something.
+HED_0012773 5 CogPo-# CogPo takesValue
+HED_0012774 4 DOI Metadata-identifier Digital object identifier for an object.
+HED_0012775 5 DOI-# DOI takesValue
+HED_0012776 4 OBO-identifier Metadata-identifier The identifier of a term in some Open Biology Ontology (OBO) ontology.
+HED_0012777 5 OBO-identifier-# OBO-identifier takesValue, valueClass=nameClass
+HED_0012778 4 Species-identifier Metadata-identifier A binomial species name from the NCBI Taxonomy, for example, homo sapiens, mus musculus, or rattus norvegicus.
+HED_0012779 5 Species-identifier-# Species-identifier takesValue
+HED_0012780 4 Subject-identifier Metadata-identifier A sequence of characters used to identify, name, or characterize a trial or study subject.
+HED_0012781 5 Subject-identifier-# Subject-identifier takesValue
+HED_0012782 4 UUID Metadata-identifier A unique universal identifier.
+HED_0012783 5 UUID-# UUID takesValue
+HED_0012784 4 Version-identifier Metadata-identifier An alphanumeric character string that identifies a form or variant of a type or original.
+HED_0012785 5 Version-identifier-# Version-identifier takesValue Usually is a semantic version.
+HED_0012786 3 Modified-date Metadata The date on which the item was modified (usually the last-modified data unless a complete record of dated modifications is kept.
+HED_0012787 4 Modified-date-# Modified-date takesValue, valueClass=dateTimeClass
+HED_0012788 3 Pathname Metadata The specification of a node (file or directory) in a hierarchical file system, usually specified by listing the nodes top-down.
+HED_0012789 4 Pathname-# Pathname takesValue
+HED_0012790 3 URL Metadata A valid URL.
+HED_0012791 4 URL-# URL takesValue
+HED_0012792 2 Parameter Informational-property Something user-defined for this experiment.
+HED_0012793 3 Parameter-label Parameter The name of the parameter.
+HED_0012794 4 Parameter-label-# Parameter-label takesValue, valueClass=nameClass
+HED_0012795 3 Parameter-value Parameter The value of the parameter.
+HED_0012796 4 Parameter-value-# Parameter-value takesValue, valueClass=textClass
+HED_0012797 1 Organizational-property Property Relating to an organization or the action of organizing something.
+HED_0012798 2 Collection Organizational-property reserved A tag designating a grouping of items such as in a set or list.
+HED_0012799 3 Collection-# Collection takesValue, valueClass=nameClass Name of the collection.
+HED_0012800 2 Condition-variable Organizational-property reserved An aspect of the experiment or task that is to be varied during the experiment. Task-conditions are sometimes called independent variables or contrasts.
+HED_0012801 3 Condition-variable-# Condition-variable takesValue, valueClass=nameClass Name of the condition variable.
+HED_0012802 2 Control-variable Organizational-property reserved An aspect of the experiment that is fixed throughout the study and usually is explicitly controlled.
+HED_0012803 3 Control-variable-# Control-variable takesValue, valueClass=nameClass Name of the control variable.
+HED_0012804 2 Def Organizational-property requireChild, reserved A HED-specific utility tag used with a defined name to represent the tags associated with that definition.
+HED_0012805 3 Def-# Def takesValue, valueClass=nameClass Name of the definition.
+HED_0012806 2 Def-expand Organizational-property requireChild, reserved, tagGroup A HED specific utility tag that is grouped with an expanded definition. The child value of the Def-expand is the name of the expanded definition.
+HED_0012807 3 Def-expand-# Def-expand takesValue, valueClass=nameClass
+HED_0012808 2 Definition Organizational-property requireChild, reserved, topLevelTagGroup A HED-specific utility tag whose child value is the name of the concept and the tag group associated with the tag is an English language explanation of a concept.
+HED_0012809 3 Definition-# Definition takesValue, valueClass=nameClass Name of the definition.
+HED_0012810 2 Event-context Organizational-property reserved, topLevelTagGroup, unique A special HED tag inserted as part of a top-level tag group to contain information about the interrelated conditions under which the event occurs. The event context includes information about other events that are ongoing when this event happens.
+HED_0012811 2 Event-stream Organizational-property reserved A special HED tag indicating that this event is a member of an ordered succession of events.
+HED_0012812 3 Event-stream-# Event-stream takesValue, valueClass=nameClass Name of the event stream.
+HED_0012813 2 Experimental-intertrial Organizational-property reserved A tag used to indicate a part of the experiment between trials usually where nothing is happening.
+HED_0012814 3 Experimental-intertrial-# Experimental-intertrial takesValue, valueClass=nameClass Optional label for the intertrial block.
+HED_0012815 2 Experimental-trial Organizational-property reserved Designates a run or execution of an activity, for example, one execution of a script. A tag used to indicate a particular organizational part in the experimental design often containing a stimulus-response pair or stimulus-response-feedback triad.
+HED_0012816 3 Experimental-trial-# Experimental-trial takesValue, valueClass=nameClass Optional label for the trial (often a numerical string).
+HED_0012817 2 Indicator-variable Organizational-property reserved An aspect of the experiment or task that is measured as task conditions are varied during the experiment. Experiment indicators are sometimes called dependent variables.
+HED_0012818 3 Indicator-variable-# Indicator-variable takesValue, valueClass=nameClass Name of the indicator variable.
+HED_0012819 2 Recording Organizational-property reserved A tag designating the data recording. Recording tags are usually have temporal scope which is the entire recording.
+HED_0012820 3 Recording-# Recording takesValue, valueClass=nameClass Optional label for the recording.
+HED_0012821 2 Task Organizational-property reserved An assigned piece of work, usually with a time allotment. A tag used to indicate a linkage the structured activities performed as part of the experiment.
+HED_0012822 3 Task-# Task takesValue, valueClass=nameClass Optional label for the task block.
+HED_0012823 2 Time-block Organizational-property reserved A tag used to indicate a contiguous time block in the experiment during which something is fixed or noted.
+HED_0012824 3 Time-block-# Time-block takesValue, valueClass=nameClass Optional label for the task block.
+HED_0012825 1 Sensory-property Property Relating to sensation or the physical senses.
+HED_0012826 2 Sensory-attribute Sensory-property A sensory characteristic associated with another entity.
+HED_0012827 3 Auditory-attribute Sensory-attribute Pertaining to the sense of hearing.
+HED_0012828 4 Loudness Auditory-attribute Perceived intensity of a sound.
+HED_0012829 5 Loudness-# Loudness takesValue, valueClass=numericClass, valueClass=nameClass
+HED_0012830 4 Pitch Auditory-attribute A perceptual property that allows the user to order sounds on a frequency scale.
+HED_0012831 5 Pitch-# Pitch takesValue, valueClass=numericClass, unitClass=frequencyUnits
+HED_0012832 4 Sound-envelope Auditory-attribute Description of how a sound changes over time.
+HED_0012833 5 Sound-envelope-attack Sound-envelope The time taken for initial run-up of level from nil to peak usually beginning when the key on a musical instrument is pressed.
+HED_0012834 6 Sound-envelope-attack-# Sound-envelope-attack takesValue, valueClass=numericClass, unitClass=timeUnits
+HED_0012835 5 Sound-envelope-decay Sound-envelope The time taken for the subsequent run down from the attack level to the designated sustain level.
+HED_0012836 6 Sound-envelope-decay-# Sound-envelope-decay takesValue, valueClass=numericClass, unitClass=timeUnits
+HED_0012837 5 Sound-envelope-release Sound-envelope The time taken for the level to decay from the sustain level to zero after the key is released.
+HED_0012838 6 Sound-envelope-release-# Sound-envelope-release takesValue, valueClass=numericClass, unitClass=timeUnits
+HED_0012839 5 Sound-envelope-sustain Sound-envelope The time taken for the main sequence of the sound duration, until the key is released.
+HED_0012840 6 Sound-envelope-sustain-# Sound-envelope-sustain takesValue, valueClass=numericClass, unitClass=timeUnits
+HED_0012841 4 Sound-volume Auditory-attribute The sound pressure level (SPL) usually the ratio to a reference signal estimated as the lower bound of hearing.
+HED_0012842 5 Sound-volume-# Sound-volume takesValue, valueClass=numericClass, unitClass=intensityUnits
+HED_0012843 4 Timbre Auditory-attribute The perceived sound quality of a singing voice or musical instrument.
+HED_0012844 5 Timbre-# Timbre takesValue, valueClass=nameClass
+HED_0012845 3 Gustatory-attribute Sensory-attribute Pertaining to the sense of taste.
+HED_0012846 4 Bitter Gustatory-attribute Having a sharp, pungent taste.
+HED_0012847 4 Salty Gustatory-attribute Tasting of or like salt.
+HED_0012848 4 Savory Gustatory-attribute Belonging to a taste that is salty or spicy rather than sweet.
+HED_0012849 4 Sour Gustatory-attribute Having a sharp, acidic taste.
+HED_0012850 4 Sweet Gustatory-attribute Having or resembling the taste of sugar.
+HED_0012851 3 Olfactory-attribute Sensory-attribute Having a smell.
+HED_0012852 3 Somatic-attribute Sensory-attribute Pertaining to the feelings in the body or of the nervous system.
+HED_0012853 4 Pain Somatic-attribute The sensation of discomfort, distress, or agony, resulting from the stimulation of specialized nerve endings.
+HED_0012854 4 Stress Somatic-attribute The negative mental, emotional, and physical reactions that occur when environmental stressors are perceived as exceeding the adaptive capacities of the individual.
+HED_0012855 3 Tactile-attribute Sensory-attribute Pertaining to the sense of touch.
+HED_0012856 4 Tactile-pressure Tactile-attribute Having a feeling of heaviness.
+HED_0012857 4 Tactile-temperature Tactile-attribute Having a feeling of hotness or coldness.
+HED_0012858 4 Tactile-texture Tactile-attribute Having a feeling of roughness.
+HED_0012859 4 Tactile-vibration Tactile-attribute Having a feeling of mechanical oscillation.
+HED_0012860 3 Vestibular-attribute Sensory-attribute Pertaining to the sense of balance or body position.
+HED_0012861 3 Visual-attribute Sensory-attribute Pertaining to the sense of sight.
+HED_0012862 4 Color Visual-attribute The appearance of objects (or light sources) described in terms of perception of their hue and lightness (or brightness) and saturation.
+HED_0012863 5 CSS-color Color One of 140 colors supported by all browsers. For more details such as the color RGB or HEX values,check:https://www.w3schools.com/colors/colors_groups.asp.
+HED_0012864 6 Blue-color CSS-color CSS color group.
+HED_0012865 7 Blue Blue-color CSS-color 0x0000FF.
+HED_0012866 7 CadetBlue Blue-color CSS-color 0x5F9EA0.
+HED_0012867 7 CornflowerBlue Blue-color CSS-color 0x6495ED.
+HED_0012868 7 DarkBlue Blue-color CSS-color 0x00008B.
+HED_0012869 7 DeepSkyBlue Blue-color CSS-color 0x00BFFF.
+HED_0012870 7 DodgerBlue Blue-color CSS-color 0x1E90FF.
+HED_0012871 7 LightBlue Blue-color CSS-color 0xADD8E6.
+HED_0012872 7 LightSkyBlue Blue-color CSS-color 0x87CEFA.
+HED_0012873 7 LightSteelBlue Blue-color CSS-color 0xB0C4DE.
+HED_0012874 7 MediumBlue Blue-color CSS-color 0x0000CD.
+HED_0012875 7 MidnightBlue Blue-color CSS-color 0x191970.
+HED_0012876 7 Navy Blue-color CSS-color 0x000080.
+HED_0012877 7 PowderBlue Blue-color CSS-color 0xB0E0E6.
+HED_0012878 7 RoyalBlue Blue-color CSS-color 0x4169E1.
+HED_0012879 7 SkyBlue Blue-color CSS-color 0x87CEEB.
+HED_0012880 7 SteelBlue Blue-color CSS-color 0x4682B4.
+HED_0012881 6 Brown-color CSS-color CSS color group.
+HED_0012882 7 Bisque Brown-color CSS-color 0xFFE4C4.
+HED_0012883 7 BlanchedAlmond Brown-color CSS-color 0xFFEBCD.
+HED_0012884 7 Brown Brown-color CSS-color 0xA52A2A.
+HED_0012885 7 BurlyWood Brown-color CSS-color 0xDEB887.
+HED_0012886 7 Chocolate Brown-color CSS-color 0xD2691E.
+HED_0012887 7 Cornsilk Brown-color CSS-color 0xFFF8DC.
+HED_0012888 7 DarkGoldenRod Brown-color CSS-color 0xB8860B.
+HED_0012889 7 GoldenRod Brown-color CSS-color 0xDAA520.
+HED_0012890 7 Maroon Brown-color CSS-color 0x800000.
+HED_0012891 7 NavajoWhite Brown-color CSS-color 0xFFDEAD.
+HED_0012892 7 Olive Brown-color CSS-color 0x808000.
+HED_0012893 7 Peru Brown-color CSS-color 0xCD853F.
+HED_0012894 7 RosyBrown Brown-color CSS-color 0xBC8F8F.
+HED_0012895 7 SaddleBrown Brown-color CSS-color 0x8B4513.
+HED_0012896 7 SandyBrown Brown-color CSS-color 0xF4A460.
+HED_0012897 7 Sienna Brown-color CSS-color 0xA0522D.
+HED_0012898 7 Tan Brown-color CSS-color 0xD2B48C.
+HED_0012899 7 Wheat Brown-color CSS-color 0xF5DEB3.
+HED_0012900 6 Cyan-color CSS-color CSS color group.
+HED_0012901 7 Aqua Cyan-color CSS-color 0x00FFFF.
+HED_0012902 7 Aquamarine Cyan-color CSS-color 0x7FFFD4.
+HED_0012903 7 Cyan Cyan-color CSS-color 0x00FFFF.
+HED_0012904 7 DarkTurquoise Cyan-color CSS-color 0x00CED1.
+HED_0012905 7 LightCyan Cyan-color CSS-color 0xE0FFFF.
+HED_0012906 7 MediumTurquoise Cyan-color CSS-color 0x48D1CC.
+HED_0012907 7 PaleTurquoise Cyan-color CSS-color 0xAFEEEE.
+HED_0012908 7 Turquoise Cyan-color CSS-color 0x40E0D0.
+HED_0012909 6 Gray-color CSS-color CSS color group.
+HED_0012910 7 Black Gray-color CSS-color 0x000000.
+HED_0012911 7 DarkGray Gray-color CSS-color 0xA9A9A9.
+HED_0012912 7 DarkSlateGray Gray-color CSS-color 0x2F4F4F.
+HED_0012913 7 DimGray Gray-color CSS-color 0x696969.
+HED_0012914 7 Gainsboro Gray-color CSS-color 0xDCDCDC.
+HED_0012915 7 Gray Gray-color CSS-color 0x808080.
+HED_0012916 7 LightGray Gray-color CSS-color 0xD3D3D3.
+HED_0012917 7 LightSlateGray Gray-color CSS-color 0x778899.
+HED_0012918 7 Silver Gray-color CSS-color 0xC0C0C0.
+HED_0012919 7 SlateGray Gray-color CSS-color 0x708090.
+HED_0012920 6 Green-color CSS-color CSS color group.
+HED_0012921 7 Chartreuse Green-color CSS-color 0x7FFF00.
+HED_0012922 7 DarkCyan Green-color CSS-color 0x008B8B.
+HED_0012923 7 DarkGreen Green-color CSS-color 0x006400.
+HED_0012924 7 DarkOliveGreen Green-color CSS-color 0x556B2F.
+HED_0012925 7 DarkSeaGreen Green-color CSS-color 0x8FBC8F.
+HED_0012926 7 ForestGreen Green-color CSS-color 0x228B22.
+HED_0012927 7 Green Green-color CSS-color 0x008000.
+HED_0012928 7 GreenYellow Green-color CSS-color 0xADFF2F.
+HED_0012929 7 LawnGreen Green-color CSS-color 0x7CFC00.
+HED_0012930 7 LightGreen Green-color CSS-color 0x90EE90.
+HED_0012931 7 LightSeaGreen Green-color CSS-color 0x20B2AA.
+HED_0012932 7 Lime Green-color CSS-color 0x00FF00.
+HED_0012933 7 LimeGreen Green-color CSS-color 0x32CD32.
+HED_0012934 7 MediumAquaMarine Green-color CSS-color 0x66CDAA.
+HED_0012935 7 MediumSeaGreen Green-color CSS-color 0x3CB371.
+HED_0012936 7 MediumSpringGreen Green-color CSS-color 0x00FA9A.
+HED_0012937 7 OliveDrab Green-color CSS-color 0x6B8E23.
+HED_0012938 7 PaleGreen Green-color CSS-color 0x98FB98.
+HED_0012939 7 SeaGreen Green-color CSS-color 0x2E8B57.
+HED_0012940 7 SpringGreen Green-color CSS-color 0x00FF7F.
+HED_0012941 7 Teal Green-color CSS-color 0x008080.
+HED_0012942 7 YellowGreen Green-color CSS-color 0x9ACD32.
+HED_0012943 6 Orange-color CSS-color CSS color group.
+HED_0012944 7 Coral Orange-color CSS-color 0xFF7F50.
+HED_0012945 7 DarkOrange Orange-color CSS-color 0xFF8C00.
+HED_0012946 7 Orange Orange-color CSS-color 0xFFA500.
+HED_0012947 7 OrangeRed Orange-color CSS-color 0xFF4500.
+HED_0012948 7 Tomato Orange-color CSS-color 0xFF6347.
+HED_0012949 6 Pink-color CSS-color CSS color group.
+HED_0012950 7 DeepPink Pink-color CSS-color 0xFF1493.
+HED_0012951 7 HotPink Pink-color CSS-color 0xFF69B4.
+HED_0012952 7 LightPink Pink-color CSS-color 0xFFB6C1.
+HED_0012953 7 MediumVioletRed Pink-color CSS-color 0xC71585.
+HED_0012954 7 PaleVioletRed Pink-color CSS-color 0xDB7093.
+HED_0012955 7 Pink Pink-color CSS-color 0xFFC0CB.
+HED_0012956 6 Purple-color CSS-color CSS color group.
+HED_0012957 7 BlueViolet Purple-color CSS-color 0x8A2BE2.
+HED_0012958 7 DarkMagenta Purple-color CSS-color 0x8B008B.
+HED_0012959 7 DarkOrchid Purple-color CSS-color 0x9932CC.
+HED_0012960 7 DarkSlateBlue Purple-color CSS-color 0x483D8B.
+HED_0012961 7 DarkViolet Purple-color CSS-color 0x9400D3.
+HED_0012962 7 Fuchsia Purple-color CSS-color 0xFF00FF.
+HED_0012963 7 Indigo Purple-color CSS-color 0x4B0082.
+HED_0012964 7 Lavender Purple-color CSS-color 0xE6E6FA.
+HED_0012965 7 Magenta Purple-color CSS-color 0xFF00FF.
+HED_0012966 7 MediumOrchid Purple-color CSS-color 0xBA55D3.
+HED_0012967 7 MediumPurple Purple-color CSS-color 0x9370DB.
+HED_0012968 7 MediumSlateBlue Purple-color CSS-color 0x7B68EE.
+HED_0012969 7 Orchid Purple-color CSS-color 0xDA70D6.
+HED_0012970 7 Plum Purple-color CSS-color 0xDDA0DD.
+HED_0012971 7 Purple Purple-color CSS-color 0x800080.
+HED_0012972 7 RebeccaPurple Purple-color CSS-color 0x663399.
+HED_0012973 7 SlateBlue Purple-color CSS-color 0x6A5ACD.
+HED_0012974 7 Thistle Purple-color CSS-color 0xD8BFD8.
+HED_0012975 7 Violet Purple-color CSS-color 0xEE82EE.
+HED_0012976 6 Red-color CSS-color CSS color group.
+HED_0012977 7 Crimson Red-color CSS-color 0xDC143C.
+HED_0012978 7 DarkRed Red-color CSS-color 0x8B0000.
+HED_0012979 7 DarkSalmon Red-color CSS-color 0xE9967A.
+HED_0012980 7 FireBrick Red-color CSS-color 0xB22222.
+HED_0012981 7 IndianRed Red-color CSS-color 0xCD5C5C.
+HED_0012982 7 LightCoral Red-color CSS-color 0xF08080.
+HED_0012983 7 LightSalmon Red-color CSS-color 0xFFA07A.
+HED_0012984 7 Red Red-color CSS-color 0xFF0000.
+HED_0012985 7 Salmon Red-color CSS-color 0xFA8072.
+HED_0012986 6 White-color CSS-color CSS color group.
+HED_0012987 7 AliceBlue White-color CSS-color 0xF0F8FF.
+HED_0012988 7 AntiqueWhite White-color CSS-color 0xFAEBD7.
+HED_0012989 7 Azure White-color CSS-color 0xF0FFFF.
+HED_0012990 7 Beige White-color CSS-color 0xF5F5DC.
+HED_0012991 7 FloralWhite White-color CSS-color 0xFFFAF0.
+HED_0012992 7 GhostWhite White-color CSS-color 0xF8F8FF.
+HED_0012993 7 HoneyDew White-color CSS-color 0xF0FFF0.
+HED_0012994 7 Ivory White-color CSS-color 0xFFFFF0.
+HED_0012995 7 LavenderBlush White-color CSS-color 0xFFF0F5.
+HED_0012996 7 Linen White-color CSS-color 0xFAF0E6.
+HED_0012997 7 MintCream White-color CSS-color 0xF5FFFA.
+HED_0012998 7 MistyRose White-color CSS-color 0xFFE4E1.
+HED_0012999 7 OldLace White-color CSS-color 0xFDF5E6.
+HED_0013000 7 SeaShell White-color CSS-color 0xFFF5EE.
+HED_0013001 7 Snow White-color CSS-color 0xFFFAFA.
+HED_0013002 7 White White-color CSS-color 0xFFFFFF.
+HED_0013003 7 WhiteSmoke White-color CSS-color 0xF5F5F5.
+HED_0013004 6 Yellow-color CSS-color CSS color group.
+HED_0013005 7 DarkKhaki Yellow-color CSS-color 0xBDB76B.
+HED_0013006 7 Gold Yellow-color CSS-color 0xFFD700.
+HED_0013007 7 Khaki Yellow-color CSS-color 0xF0E68C.
+HED_0013008 7 LemonChiffon Yellow-color CSS-color 0xFFFACD.
+HED_0013009 7 LightGoldenRodYellow Yellow-color CSS-color 0xFAFAD2.
+HED_0013010 7 LightYellow Yellow-color CSS-color 0xFFFFE0.
+HED_0013011 7 Moccasin Yellow-color CSS-color 0xFFE4B5.
+HED_0013012 7 PaleGoldenRod Yellow-color CSS-color 0xEEE8AA.
+HED_0013013 7 PapayaWhip Yellow-color CSS-color 0xFFEFD5.
+HED_0013014 7 PeachPuff Yellow-color CSS-color 0xFFDAB9.
+HED_0013015 7 Yellow Yellow-color CSS-color 0xFFFF00.
+HED_0013016 5 Color-shade Color A slight degree of difference between colors, especially with regard to how light or dark it is or as distinguished from one nearly like it.
+HED_0013017 6 Dark-shade Color-shade A color tone not reflecting much light.
+HED_0013018 6 Light-shade Color-shade A color tone reflecting more light.
+HED_0013019 5 Grayscale Color Using a color map composed of shades of gray, varying from black at the weakest intensity to white at the strongest.
+HED_0013020 6 Grayscale-# Grayscale takesValue, valueClass=numericClass White intensity between 0 and 1.
+HED_0013021 5 HSV-color Color A color representation that models how colors appear under light.
+HED_0013022 6 HSV-value HSV-color An attribute of a visual sensation according to which an area appears to emit more or less light.
+HED_0013023 7 HSV-value-# HSV-value takesValue, valueClass=numericClass
+HED_0013024 6 Hue HSV-color Attribute of a visual sensation according to which an area appears to be similar to one of the perceived colors.
+HED_0013025 7 Hue-# Hue takesValue, valueClass=numericClass Angular value between 0 and 360.
+HED_0013026 6 Saturation HSV-color Colorfulness of a stimulus relative to its own brightness.
+HED_0013027 7 Saturation-# Saturation takesValue, valueClass=numericClass B value of RGB between 0 and 1.
+HED_0013028 5 RGB-color Color A color from the RGB schema.
+HED_0013029 6 RGB-blue RGB-color The blue component.
+HED_0013030 7 RGB-blue-# RGB-blue takesValue, valueClass=numericClass B value of RGB between 0 and 1.
+HED_0013031 6 RGB-green RGB-color The green component.
+HED_0013032 7 RGB-green-# RGB-green takesValue, valueClass=numericClass G value of RGB between 0 and 1.
+HED_0013033 6 RGB-red RGB-color The red component.
+HED_0013034 7 RGB-red-# RGB-red takesValue, valueClass=numericClass R value of RGB between 0 and 1.
+HED_0013035 4 Luminance Visual-attribute A quality that exists by virtue of the luminous intensity per unit area projected in a given direction.
+HED_0013036 4 Luminance-contrast Visual-attribute suggestedTag=Percentage, suggestedTag=Ratio The difference in luminance in specific portions of a scene or image.
+HED_0013037 5 Luminance-contrast-# Luminance-contrast takesValue, valueClass=numericClass A non-negative value, usually in the range 0 to 1 or alternative 0 to 100, if representing a percentage.
+HED_0013038 4 Opacity Visual-attribute A measure of impenetrability to light.
+HED_0013039 2 Sensory-presentation Sensory-property The entity has a sensory manifestation.
+HED_0013040 3 Auditory-presentation Sensory-presentation The sense of hearing is used in the presentation to the user.
+HED_0013041 4 Loudspeaker-separation Auditory-presentation suggestedTag=Distance The distance between two loudspeakers. Grouped with the Distance tag.
+HED_0013042 4 Monophonic Auditory-presentation Relating to sound transmission, recording, or reproduction involving a single transmission path.
+HED_0013043 4 Silent Auditory-presentation The absence of ambient audible sound or the state of having ceased to produce sounds.
+HED_0013044 4 Stereophonic Auditory-presentation Relating to, or constituting sound reproduction involving the use of separated microphones and two transmission channels to achieve the sound separation of a live hearing.
+HED_0013045 3 Gustatory-presentation Sensory-presentation The sense of taste used in the presentation to the user.
+HED_0013046 3 Olfactory-presentation Sensory-presentation The sense of smell used in the presentation to the user.
+HED_0013047 3 Somatic-presentation Sensory-presentation The nervous system is used in the presentation to the user.
+HED_0013048 3 Tactile-presentation Sensory-presentation The sense of touch used in the presentation to the user.
+HED_0013049 3 Vestibular-presentation Sensory-presentation The sense balance used in the presentation to the user.
+HED_0013050 3 Visual-presentation Sensory-presentation The sense of sight used in the presentation to the user.
+HED_0013051 4 2D-view Visual-presentation A view showing only two dimensions.
+HED_0013052 4 3D-view Visual-presentation A view showing three dimensions.
+HED_0013053 4 Background-view Visual-presentation Parts of the view that are farthest from the viewer and usually the not part of the visual focus.
+HED_0013054 4 Bistable-view Visual-presentation Something having two stable visual forms that have two distinguishable stable forms as in optical illusions.
+HED_0013055 4 Foreground-view Visual-presentation Parts of the view that are closest to the viewer and usually the most important part of the visual focus.
+HED_0013056 4 Foveal-view Visual-presentation Visual presentation directly on the fovea. A view projected on the small depression in the retina containing only cones and where vision is most acute.
+HED_0013057 4 Map-view Visual-presentation A diagrammatic representation of an area of land or sea showing physical features, cities, roads.
+HED_0013058 5 Aerial-view Map-view Elevated view of an object from above, with a perspective as though the observer were a bird.
+HED_0013059 5 Satellite-view Map-view A representation as captured by technology such as a satellite.
+HED_0013060 5 Street-view Map-view A 360-degrees panoramic view from a position on the ground.
+HED_0013061 4 Peripheral-view Visual-presentation Indirect vision as it occurs outside the point of fixation.
+HED_0013062 1 Task-property Property extensionAllowed Something that pertains to a task.
+HED_0013063 2 Task-action-type Task-property How an agent action should be interpreted in terms of the task specification.
+HED_0013064 3 Appropriate-action Task-action-type relatedTag=Inappropriate-action An action suitable or proper in the circumstances.
+HED_0013065 3 Correct-action Task-action-type relatedTag=Incorrect-action, relatedTag=Indeterminate-action An action that was a correct response in the context of the task.
+HED_0013066 3 Correction Task-action-type An action offering an improvement to replace a mistake or error.
+HED_0013067 3 Done-indication Task-action-type relatedTag=Ready-indication An action that indicates that the participant has completed this step in the task.
+HED_0013068 3 Imagined-action Task-action-type Form a mental image or concept of something. This is used to identity something that only happened in the imagination of the participant as in imagined movements in motor imagery paradigms.
+HED_0013069 3 Inappropriate-action Task-action-type relatedTag=Appropriate-action An action not in keeping with what is correct or proper for the task.
+HED_0013070 3 Incorrect-action Task-action-type relatedTag=Correct-action, relatedTag=Indeterminate-action An action considered wrong or incorrect in the context of the task.
+HED_0013071 3 Indeterminate-action Task-action-type relatedTag=Correct-action, relatedTag=Incorrect-action, relatedTag=Miss, relatedTag=Near-miss An action that cannot be distinguished between two or more possibilities in the current context. This tag might be applied when an outside evaluator or a classification algorithm cannot determine a definitive result.
+HED_0013072 3 Miss Task-action-type relatedTag=Near-miss An action considered to be a failure in the context of the task. For example, if the agent is supposed to try to hit a target and misses.
+HED_0013073 3 Near-miss Task-action-type relatedTag=Miss An action barely satisfied the requirements of the task. In a driving experiment for example this could pertain to a narrowly avoided collision or other accident.
+HED_0013074 3 Omitted-action Task-action-type An expected response was skipped.
+HED_0013075 3 Ready-indication Task-action-type relatedTag=Done-indication An action that indicates that the participant is ready to perform the next step in the task.
+HED_0013076 2 Task-attentional-demand Task-property Strategy for allocating attention toward goal-relevant information.
+HED_0013077 3 Bottom-up-attention Task-attentional-demand relatedTag=Top-down-attention Attentional guidance purely by externally driven factors to stimuli that are salient because of their inherent properties relative to the background. Sometimes this is referred to as stimulus driven.
+HED_0013078 3 Covert-attention Task-attentional-demand relatedTag=Overt-attention Paying attention without moving the eyes.
+HED_0013079 3 Divided-attention Task-attentional-demand relatedTag=Focused-attention Integrating parallel multiple stimuli. Behavior involving responding simultaneously to multiple tasks or multiple task demands.
+HED_0013080 3 Focused-attention Task-attentional-demand relatedTag=Divided-attention Responding discretely to specific visual, auditory, or tactile stimuli.
+HED_0013081 3 Orienting-attention Task-attentional-demand Directing attention to a target stimulus.
+HED_0013082 3 Overt-attention Task-attentional-demand relatedTag=Covert-attention Selectively processing one location over others by moving the eyes to point at that location.
+HED_0013083 3 Selective-attention Task-attentional-demand Maintaining a behavioral or cognitive set in the face of distracting or competing stimuli. Ability to pay attention to a limited array of all available sensory information.
+HED_0013084 3 Sustained-attention Task-attentional-demand Maintaining a consistent behavioral response during continuous and repetitive activity.
+HED_0013085 3 Switched-attention Task-attentional-demand Having to switch attention between two or more modalities of presentation.
+HED_0013086 3 Top-down-attention Task-attentional-demand relatedTag=Bottom-up-attention Voluntary allocation of attention to certain features. Sometimes this is referred to goal-oriented attention.
+HED_0013087 2 Task-effect-evidence Task-property The evidence supporting the conclusion that the event had the specified effect.
+HED_0013088 3 Behavioral-evidence Task-effect-evidence An indication or conclusion based on the behavior of an agent.
+HED_0013089 3 Computational-evidence Task-effect-evidence A type of evidence in which data are produced, and/or generated, and/or analyzed on a computer.
+HED_0013090 3 External-evidence Task-effect-evidence A phenomenon that follows and is caused by some previous phenomenon.
+HED_0013091 3 Intended-effect Task-effect-evidence A phenomenon that is intended to follow and be caused by some previous phenomenon.
+HED_0013092 2 Task-event-role Task-property The purpose of an event with respect to the task.
+HED_0013104 3 Cue Task-event-role A signal for an action usually indicating a particular response.
+HED_0013093 3 Experimental-stimulus Task-event-role Part of something designed to elicit a response in the experiment.
+HED_0013108 3 Feedback Task-event-role An evaluative response to an inquiry, process, event, or activity.
+HED_0013094 3 Incidental Task-event-role A sensory or other type of event that is unrelated to the task or experiment.
+HED_0013095 3 Instructional Task-event-role Usually associated with a sensory event intended to give instructions to the participant about the task or behavior.
+HED_0013096 3 Mishap Task-event-role Unplanned disruption such as an equipment or experiment control abnormality or experimenter error.
+HED_0013097 3 Participant-response Task-event-role Something related to a participant actions in performing the task.
+HED_0013098 3 Task-activity Task-event-role Something that is part of the overall task or is necessary to the overall experiment but is not directly part of a stimulus-response cycle. Examples would be taking a survey or provided providing a silva sample.
+HED_0013099 3 Warning Task-event-role Something that should warn the participant that the parameters of the task have been or are about to be exceeded such as a warning message about getting too close to the shoulder of the road in a driving task.
+HED_0013100 2 Task-relationship Task-property Specifying organizational importance of sub-tasks.
+HED_0013101 3 Background-subtask Task-relationship A part of the task which should be performed in the background as for example inhibiting blinks due to instruction while performing the primary task.
+HED_0013102 3 Primary-subtask Task-relationship A part of the task which should be the primary focus of the participant.
+HED_0013103 2 Task-stimulus-role Task-property The role the stimulus or other type of sensory event, such as feedback, plays in the task.
+HED_0013105 3 Distractor Task-stimulus-role A person or thing that distracts or a plausible but incorrect option in a multiple-choice question. In psychological studies this is sometimes referred to as a foil.
+HED_0013106 3 Expected Task-stimulus-role relatedTag=Unexpected, suggestedTag=Target Considered likely, probable or anticipated. Something of low information value as in frequent non-targets in an RSVP paradigm.
+HED_0013107 3 Extraneous Task-stimulus-role Irrelevant or unrelated to the subject being dealt with.
+HED_0013109 3 Go-signal Task-stimulus-role relatedTag=Stop-signal An indicator to proceed with a planned action.
+HED_0013110 3 Meaningful Task-stimulus-role Conveying significant or relevant information.
+HED_0013111 3 Newly-learned Task-stimulus-role Representing recently acquired information or understanding.
+HED_0013112 3 Non-informative Task-stimulus-role Something that is not useful in forming an opinion or judging an outcome.
+HED_0013113 3 Non-target Task-stimulus-role relatedTag=Target Something other than that done or looked for. Also tag Expected if the Non-target is frequent.
+HED_0013114 3 Not-meaningful Task-stimulus-role Not having a serious, important, or useful quality or purpose.
+HED_0013115 3 Novel Task-stimulus-role Having no previous example or precedent or parallel.
+HED_0013116 3 Oddball Task-stimulus-role relatedTag=Unexpected, suggestedTag=Target Something unusual, or infrequent.
+HED_0013117 3 Penalty Task-stimulus-role A disadvantage, loss, or hardship due to some action.
+HED_0013118 3 Planned Task-stimulus-role relatedTag=Unplanned Something that was decided on or arranged in advance.
+HED_0013119 3 Priming Task-stimulus-role An implicit memory effect in which exposure to a stimulus influences response to a later stimulus.
+HED_0013120 3 Query Task-stimulus-role A sentence of inquiry that asks for a reply.
+HED_0013121 3 Reward Task-stimulus-role A positive reinforcement for a desired action, behavior or response.
+HED_0013122 3 Stop-signal Task-stimulus-role relatedTag=Go-signal An indicator that the agent should stop the current activity.
+HED_0013123 3 Target Task-stimulus-role Something fixed as a goal, destination, or point of examination.
+HED_0013124 3 Threat Task-stimulus-role An indicator that signifies hostility and predicts an increased probability of attack.
+HED_0013125 3 Timed Task-stimulus-role Something planned or scheduled to be done at a particular time or lasting for a specified amount of time.
+HED_0013126 3 Unexpected Task-stimulus-role relatedTag=Expected Something that is not anticipated.
+HED_0013127 3 Unplanned Task-stimulus-role relatedTag=Planned Something that has not been planned as part of the task.
+HED_0013128 0 Relation HedTag extensionAllowed Concerns the way in which two or more people or things are connected.
+HED_0013129 1 Comparative-relation Relation Something considered in comparison to something else. The first entity is the focus.
+HED_0013130 2 Approximately-equal-to Comparative-relation (A, (Approximately-equal-to, B)) indicates that A and B have almost the same value. Here A and B could refer to sizes, orders, positions or other quantities.
+HED_0013131 2 Equal-to Comparative-relation (A, (Equal-to, B)) indicates that the size or order of A is the same as that of B.
+HED_0013132 2 Greater-than Comparative-relation (A, (Greater-than, B)) indicates that the relative size or order of A is bigger than that of B.
+HED_0013133 2 Greater-than-or-equal-to Comparative-relation (A, (Greater-than-or-equal-to, B)) indicates that the relative size or order of A is bigger than or the same as that of B.
+HED_0013134 2 Less-than Comparative-relation (A, (Less-than, B)) indicates that A is smaller than B. Here A and B could refer to sizes, orders, positions or other quantities.
+HED_0013135 2 Less-than-or-equal-to Comparative-relation (A, (Less-than-or-equal-to, B)) indicates that the relative size or order of A is smaller than or equal to B.
+HED_0013136 2 Not-equal-to Comparative-relation (A, (Not-equal-to, B)) indicates that the size or order of A is not the same as that of B.
+HED_0013137 1 Connective-relation Relation Indicates two entities are related in some way. The first entity is the focus.
+HED_0013138 2 Belongs-to Connective-relation (A, (Belongs-to, B)) indicates that A is a member of B.
+HED_0013139 2 Connected-to Connective-relation (A, (Connected-to, B)) indicates that A is related to B in some respect, usually through a direct link.
+HED_0013140 2 Contained-in Connective-relation (A, (Contained-in, B)) indicates that A is completely inside of B.
+HED_0013141 2 Described-by Connective-relation (A, (Described-by, B)) indicates that B provides information about A.
+HED_0013142 2 From-to Connective-relation (A, (From-to, B)) indicates a directional relation from A to B. A is considered the source.
+HED_0013143 2 Group-of Connective-relation (A, (Group-of, B)) indicates A is a group of items of type B.
+HED_0013144 2 Implied-by Connective-relation (A, (Implied-by, B)) indicates B is suggested by A.
+HED_0013145 2 Includes Connective-relation (A, (Includes, B)) indicates that A has B as a member or part.
+HED_0013146 2 Interacts-with Connective-relation (A, (Interacts-with, B)) indicates A and B interact, possibly reciprocally.
+HED_0013147 2 Member-of Connective-relation (A, (Member-of, B)) indicates A is a member of group B.
+HED_0013148 2 Part-of Connective-relation (A, (Part-of, B)) indicates A is a part of the whole B.
+HED_0013149 2 Performed-by Connective-relation (A, (Performed-by, B)) indicates that the action or procedure A was carried out by agent B.
+HED_0013150 2 Performed-using Connective-relation (A, (Performed-using, B)) indicates that the action or procedure A was accomplished using B.
+HED_0013151 2 Related-to Connective-relation (A, (Related-to, B)) indicates A has some relationship to B.
+HED_0013152 2 Unrelated-to Connective-relation (A, (Unrelated-to, B)) indicates that A is not related to B.For example, A is not related to Task.
+HED_0013153 1 Directional-relation Relation A relationship indicating direction of change of one entity relative to another. The first entity is the focus.
+HED_0013154 2 Away-from Directional-relation (A, (Away-from, B)) indicates that A is going or has moved away from B. The meaning depends on A and B.
+HED_0013155 2 Towards Directional-relation (A, (Towards, B)) indicates that A is going to or has moved to B. The meaning depends on A and B.
+HED_0013156 1 Logical-relation Relation Indicating a logical relationship between entities. The first entity is usually the focus.
+HED_0013157 2 And Logical-relation (A, (And, B)) means A and B are both in effect.
+HED_0013158 2 Or Logical-relation (A, (Or, B)) means at least one of A and B are in effect.
+HED_0013159 1 Spatial-relation Relation Indicating a relationship about position between entities.
+HED_0013160 2 Above Spatial-relation (A, (Above, B)) means A is in a place or position that is higher than B.
+HED_0013161 2 Across-from Spatial-relation (A, (Across-from, B)) means A is on the opposite side of something from B.
+HED_0013162 2 Adjacent-to Spatial-relation (A, (Adjacent-to, B)) indicates that A is next to B in time or space.
+HED_0013163 2 Ahead-of Spatial-relation (A, (Ahead-of, B)) indicates that A is further forward in time or space in B.
+HED_0013164 2 Around Spatial-relation (A, (Around, B)) means A is in or near the present place or situation of B.
+HED_0013165 2 Behind Spatial-relation (A, (Behind, B)) means A is at or to the far side of B, typically so as to be hidden by it.
+HED_0013166 2 Below Spatial-relation (A, (Below, B)) means A is in a place or position that is lower than the position of B.
+HED_0013167 2 Between Spatial-relation (A, (Between, (B, C))) means A is in the space or interval separating B and C.
+HED_0013168 2 Bilateral-to Spatial-relation (A, (Bilateral, B)) means A is on both sides of B or affects both sides of B.
+HED_0013169 2 Bottom-edge-of Spatial-relation relatedTag=Left-edge-of, relatedTag=Right-edge-of, relatedTag=Top-edge-of (A, (Bottom-edge-of, B)) means A is on the bottom most part or or near the boundary of B.
+HED_0013170 2 Boundary-of Spatial-relation (A, (Boundary-of, B)) means A is on or part of the edge or boundary of B.
+HED_0013171 2 Center-of Spatial-relation (A, (Center-of, B)) means A is at a point or or in an area that is approximately central within B.
+HED_0013172 2 Close-to Spatial-relation (A, (Close-to, B)) means A is at a small distance from or is located near in space to B.
+HED_0013173 2 Far-from Spatial-relation (A, (Far-from, B)) means A is at a large distance from or is not located near in space to B.
+HED_0013174 2 In-front-of Spatial-relation (A, (In-front-of, B)) means A is in a position just ahead or at the front part of B, potentially partially blocking B from view.
+HED_0013175 2 Left-edge-of Spatial-relation relatedTag=Bottom-edge-of, relatedTag=Right-edge-of, relatedTag=Top-edge-of (A, (Left-edge-of, B)) means A is located on the left side of B on or near the boundary of B.
+HED_0013176 2 Left-side-of Spatial-relation relatedTag=Right-side-of (A, (Left-side-of, B)) means A is located on the left side of B usually as part of B.
+HED_0013177 2 Lower-center-of Spatial-relation relatedTag=Center-of, relatedTag=Lower-left-of, relatedTag=Lower-right-of, relatedTag=Upper-center-of, relatedTag=Upper-right-of (A, (Lower-center-of, B)) means A is situated on the lower center part of B (due south). This relation is often used to specify qualitative information about screen position.
+HED_0013178 2 Lower-left-of Spatial-relation relatedTag=Center-of, relatedTag=Lower-center-of, relatedTag=Lower-right-of, relatedTag=Upper-center-of, relatedTag=Upper-left-of, relatedTag=Upper-right-of (A, (Lower-left-of, B)) means A is situated on the lower left part of B. This relation is often used to specify qualitative information about screen position.
+HED_0013179 2 Lower-right-of Spatial-relation relatedTag=Center-of, relatedTag=Lower-center-of, relatedTag=Lower-left-of, relatedTag=Upper-left-of, relatedTag=Upper-center-of, relatedTag=Upper-left-of, relatedTag=Lower-right-of (A, (Lower-right-of, B)) means A is situated on the lower right part of B. This relation is often used to specify qualitative information about screen position.
+HED_0013180 2 Outside-of Spatial-relation (A, (Outside-of, B)) means A is located in the space around but not including B.
+HED_0013181 2 Over Spatial-relation (A, (Over, B)) means A above is above B so as to cover or protect or A extends over the a general area as from a from a vantage point.
+HED_0013182 2 Right-edge-of Spatial-relation relatedTag=Bottom-edge-of, relatedTag=Left-edge-of, relatedTag=Top-edge-of (A, (Right-edge-of, B)) means A is located on the right side of B on or near the boundary of B.
+HED_0013183 2 Right-side-of Spatial-relation relatedTag=Left-side-of (A, (Right-side-of, B)) means A is located on the right side of B usually as part of B.
+HED_0013184 2 To-left-of Spatial-relation (A, (To-left-of, B)) means A is located on or directed toward the side to the west of B when B is facing north. This term is used when A is not part of B.
+HED_0013185 2 To-right-of Spatial-relation (A, (To-right-of, B)) means A is located on or directed toward the side to the east of B when B is facing north. This term is used when A is not part of B.
+HED_0013186 2 Top-edge-of Spatial-relation relatedTag=Left-edge-of, relatedTag=Right-edge-of, relatedTag=Bottom-edge-of (A, (Top-edge-of, B)) means A is on the uppermost part or or near the boundary of B.
+HED_0013187 2 Top-of Spatial-relation (A, (Top-of, B)) means A is on the uppermost part, side, or surface of B.
+HED_0013188 2 Underneath Spatial-relation (A, (Underneath, B)) means A is situated directly below and may be concealed by B.
+HED_0013189 2 Upper-center-of Spatial-relation relatedTag=Center-of, relatedTag=Lower-center-of, relatedTag=Lower-left-of, relatedTag=Lower-right-of, relatedTag=Upper-center-of, relatedTag=Upper-right-of (A, (Upper-center-of, B)) means A is situated on the upper center part of B (due north). This relation is often used to specify qualitative information about screen position.
+HED_0013190 2 Upper-left-of Spatial-relation relatedTag=Center-of, relatedTag=Lower-center-of, relatedTag=Lower-left-of, relatedTag=Lower-right-of, relatedTag=Upper-center-of, relatedTag=Upper-right-of (A, (Upper-left-of, B)) means A is situated on the upper left part of B. This relation is often used to specify qualitative information about screen position.
+HED_0013191 2 Upper-right-of Spatial-relation relatedTag=Center-of, relatedTag=Lower-center-of, relatedTag=Lower-left-of, relatedTag=Upper-left-of, relatedTag=Upper-center-of, relatedTag=Lower-right-of (A, (Upper-right-of, B)) means A is situated on the upper right part of B. This relation is often used to specify qualitative information about screen position.
+HED_0013192 2 Within Spatial-relation (A, (Within, B)) means A is on the inside of or contained in B.
+HED_0013193 1 Temporal-relation Relation A relationship that includes a temporal or time-based component.
+HED_0013194 2 After Temporal-relation (A, (After, B)) means A happens at a time subsequent to a reference time related to B.
+HED_0013195 2 Asynchronous-with Temporal-relation (A, (Asynchronous-with, B)) means A happens at times not occurring at the same time or having the same period or phase as B.
+HED_0013196 2 Before Temporal-relation (A, (Before, B)) means A happens at a time earlier in time or order than B.
+HED_0013197 2 During Temporal-relation (A, (During, B)) means A happens at some point in a given period of time in which B is ongoing.
+HED_0013198 2 Synchronous-with Temporal-relation (A, (Synchronous-with, B)) means A happens at occurs at the same time or rate as B.
+HED_0013199 2 Waiting-for Temporal-relation (A, (Waiting-for, B)) means A pauses for something to happen in B.
diff --git a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_Unit.tsv b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_Unit.tsv
index f7a362db..1e19d771 100644
--- a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_Unit.tsv
+++ b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_Unit.tsv
@@ -1,2 +1,47 @@
hedId rdfs:label omn:SubClassOf Attributes dc:description hasUnitClass
- deg TestlibUnit SIUnit, conversionFactor=1.0 myAngleUnits
+HED_0011600 m-per-s^2 TestlibUnit SIUnit, unitSymbol, conversionFactor=1.0, allowedCharacter=caret accelerationUnits
+HED_0011601 radian TestlibUnit SIUnit, conversionFactor=1.0 angleUnits
+HED_0011602 rad TestlibUnit SIUnit, unitSymbol, conversionFactor=1.0 angleUnits
+HED_0011603 degree TestlibUnit conversionFactor=0.0174533 angleUnits
+HED_0011604 m^2 TestlibUnit SIUnit, unitSymbol, conversionFactor=1.0, allowedCharacter=caret areaUnits
+HED_0011605 dollar TestlibUnit conversionFactor=1.0 currencyUnits
+HED_0011606 $ TestlibUnit unitPrefix, unitSymbol, conversionFactor=1.0, allowedCharacter=dollar currencyUnits
+HED_0011607 euro TestlibUnit The official currency of a large subset of member countries of the European Union. currencyUnits
+HED_0011608 point TestlibUnit An arbitrary unit of value, usually an integer indicating reward or penalty. currencyUnits
+HED_0011609 V TestlibUnit SIUnit, unitSymbol, conversionFactor=0.000001 electricPotentialUnits
+HED_0011644 uV TestlibUnit conversionFactor=1.0 Added as a direct unit because it is the default unit. electricPotentialUnits
+HED_0011610 volt TestlibUnit SIUnit, conversionFactor=0.000001 electricPotentialUnits
+HED_0011611 hertz TestlibUnit SIUnit, conversionFactor=1.0 frequencyUnits
+HED_0011612 Hz TestlibUnit SIUnit, unitSymbol, conversionFactor=1.0 frequencyUnits
+HED_0011613 dB TestlibUnit unitSymbol, conversionFactor=1.0 Intensity expressed as ratio to a threshold. May be used for sound intensity. intensityUnits
+HED_0011614 candela TestlibUnit SIUnit Units used to express light intensity. intensityUnits
+HED_0011615 cd TestlibUnit SIUnit, unitSymbol Units used to express light intensity. intensityUnits
+HED_0011616 m-per-s^3 TestlibUnit unitSymbol, conversionFactor=1.0, allowedCharacter=caret jerkUnits
+HED_0011617 tesla TestlibUnit SIUnit, conversionFactor=10e-15 magneticFieldUnits
+HED_0011618 T TestlibUnit SIUnit, unitSymbol, conversionFactor=10e-15 magneticFieldUnits
+HED_0011619 byte TestlibUnit SIUnit, conversionFactor=1.0 memorySizeUnits
+HED_0011620 B TestlibUnit SIUnit, unitSymbol, conversionFactor=1.0 memorySizeUnits
+HED_0011621 foot TestlibUnit conversionFactor=0.3048 physicalLengthUnits
+HED_0011622 inch TestlibUnit conversionFactor=0.0254 physicalLengthUnits
+HED_0011623 meter TestlibUnit SIUnit, conversionFactor=1.0 physicalLengthUnits
+HED_0011624 metre TestlibUnit SIUnit, conversionFactor=1.0 physicalLengthUnits
+HED_0011625 m TestlibUnit SIUnit, unitSymbol, conversionFactor=1.0 physicalLengthUnits
+HED_0011626 mile TestlibUnit conversionFactor=1609.34 physicalLengthUnits
+HED_0011627 m-per-s TestlibUnit SIUnit, unitSymbol, conversionFactor=1.0 speedUnits
+HED_0011628 mph TestlibUnit unitSymbol, conversionFactor=0.44704 speedUnits
+HED_0011629 kph TestlibUnit unitSymbol, conversionFactor=0.277778 speedUnits
+HED_0011630 degree-Celsius TestlibUnit SIUnit, conversionFactor=1.0 temperatureUnits
+HED_0011631 degree Celsius TestlibUnit deprecatedFrom=8.2.0, SIUnit, conversionFactor=1.0 Units are not allowed to have spaces. Use degree-Celsius or oC. temperatureUnits
+HED_0011632 oC TestlibUnit SIUnit, unitSymbol, conversionFactor=1.0 temperatureUnits
+HED_0011633 second TestlibUnit SIUnit, conversionFactor=1.0 timeUnits
+HED_0011634 s TestlibUnit SIUnit, unitSymbol, conversionFactor=1.0 timeUnits
+HED_0011635 day TestlibUnit conversionFactor=86400 timeUnits
+HED_0011645 month TestlibUnit timeUnits
+HED_0011636 minute TestlibUnit conversionFactor=60 timeUnits
+HED_0011637 hour TestlibUnit conversionFactor=3600 Should be in 24-hour format. timeUnits
+HED_0011638 year TestlibUnit Years do not have a constant conversion factor to seconds. timeUnits
+HED_0011639 m^3 TestlibUnit SIUnit, unitSymbol, conversionFactor=1.0, allowedCharacter=caret volumeUnits
+HED_0011640 g TestlibUnit SIUnit, unitSymbol, conversionFactor=1.0 weightUnits
+HED_0011641 gram TestlibUnit SIUnit, conversionFactor=1.0 weightUnits
+HED_0011642 pound TestlibUnit conversionFactor=453.592 weightUnits
+HED_0011643 lb TestlibUnit conversionFactor=453.592 weightUnits
diff --git a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_UnitClass.tsv b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_UnitClass.tsv
index 5c8be334..8954fd5d 100644
--- a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_UnitClass.tsv
+++ b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_UnitClass.tsv
@@ -1,2 +1,17 @@
hedId rdfs:label omn:SubClassOf Attributes dc:description
- myAngleUnits TestlibUnitClass defaultUnits=deg
+HED_0011500 accelerationUnits TestlibUnitClass defaultUnits=m-per-s^2
+HED_0011501 angleUnits TestlibUnitClass defaultUnits=radian
+HED_0011502 areaUnits TestlibUnitClass defaultUnits=m^2
+HED_0011503 currencyUnits TestlibUnitClass defaultUnits=$ Units indicating the worth of something.
+HED_0011504 electricPotentialUnits TestlibUnitClass defaultUnits=uV
+HED_0011505 frequencyUnits TestlibUnitClass defaultUnits=Hz
+HED_0011506 intensityUnits TestlibUnitClass defaultUnits=dB
+HED_0011507 jerkUnits TestlibUnitClass defaultUnits=m-per-s^3
+HED_0011508 magneticFieldUnits TestlibUnitClass defaultUnits=T
+HED_0011509 memorySizeUnits TestlibUnitClass defaultUnits=B
+HED_0011510 physicalLengthUnits TestlibUnitClass defaultUnits=m
+HED_0011511 speedUnits TestlibUnitClass defaultUnits=m-per-s
+HED_0011512 temperatureUnits TestlibUnitClass defaultUnits=degree-Celsius
+HED_0011513 timeUnits TestlibUnitClass defaultUnits=s
+HED_0011514 volumeUnits TestlibUnitClass defaultUnits=m^3
+HED_0011515 weightUnits TestlibUnitClass defaultUnits=g
diff --git a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_UnitModifier.tsv b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_UnitModifier.tsv
index 3fcdf05b..67ed9923 100644
--- a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_UnitModifier.tsv
+++ b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_UnitModifier.tsv
@@ -1 +1,41 @@
hedId rdfs:label omn:SubClassOf Attributes dc:description
+HED_0011400 deca TestlibUnitModifier SIUnitModifier, conversionFactor=10.0 SI unit multiple representing 10e1.
+HED_0011401 da TestlibUnitModifier SIUnitSymbolModifier, conversionFactor=10.0 SI unit multiple representing 10e1.
+HED_0011402 hecto TestlibUnitModifier SIUnitModifier, conversionFactor=100.0 SI unit multiple representing 10e2.
+HED_0011403 h TestlibUnitModifier SIUnitSymbolModifier, conversionFactor=100.0 SI unit multiple representing 10e2.
+HED_0011404 kilo TestlibUnitModifier SIUnitModifier, conversionFactor=1000.0 SI unit multiple representing 10e3.
+HED_0011405 k TestlibUnitModifier SIUnitSymbolModifier, conversionFactor=1000.0 SI unit multiple representing 10e3.
+HED_0011406 mega TestlibUnitModifier SIUnitModifier, conversionFactor=10e6 SI unit multiple representing 10e6.
+HED_0011407 M TestlibUnitModifier SIUnitSymbolModifier, conversionFactor=10e6 SI unit multiple representing 10e6.
+HED_0011408 giga TestlibUnitModifier SIUnitModifier, conversionFactor=10e9 SI unit multiple representing 10e9.
+HED_0011409 G TestlibUnitModifier SIUnitSymbolModifier, conversionFactor=10e9 SI unit multiple representing 10e9.
+HED_0011410 tera TestlibUnitModifier SIUnitModifier, conversionFactor=10e12 SI unit multiple representing 10e12.
+HED_0011411 T TestlibUnitModifier SIUnitSymbolModifier, conversionFactor=10e12 SI unit multiple representing 10e12.
+HED_0011412 peta TestlibUnitModifier SIUnitModifier, conversionFactor=10e15 SI unit multiple representing 10e15.
+HED_0011413 P TestlibUnitModifier SIUnitSymbolModifier, conversionFactor=10e15 SI unit multiple representing 10e15.
+HED_0011414 exa TestlibUnitModifier SIUnitModifier, conversionFactor=10e18 SI unit multiple representing 10e18.
+HED_0011415 E TestlibUnitModifier SIUnitSymbolModifier, conversionFactor=10e18 SI unit multiple representing 10e18.
+HED_0011416 zetta TestlibUnitModifier SIUnitModifier, conversionFactor=10e21 SI unit multiple representing 10e21.
+HED_0011417 Z TestlibUnitModifier SIUnitSymbolModifier, conversionFactor=10e21 SI unit multiple representing 10e21.
+HED_0011418 yotta TestlibUnitModifier SIUnitModifier, conversionFactor=10e24 SI unit multiple representing 10e24.
+HED_0011419 Y TestlibUnitModifier SIUnitSymbolModifier, conversionFactor=10e24 SI unit multiple representing 10e24.
+HED_0011420 deci TestlibUnitModifier SIUnitModifier, conversionFactor=0.1 SI unit submultiple representing 10e-1.
+HED_0011421 d TestlibUnitModifier SIUnitSymbolModifier, conversionFactor=0.1 SI unit submultiple representing 10e-1.
+HED_0011422 centi TestlibUnitModifier SIUnitModifier, conversionFactor=0.01 SI unit submultiple representing 10e-2.
+HED_0011423 c TestlibUnitModifier SIUnitSymbolModifier, conversionFactor=0.01 SI unit submultiple representing 10e-2.
+HED_0011424 milli TestlibUnitModifier SIUnitModifier, conversionFactor=0.001 SI unit submultiple representing 10e-3.
+HED_0011425 m TestlibUnitModifier SIUnitSymbolModifier, conversionFactor=0.001 SI unit submultiple representing 10e-3.
+HED_0011426 micro TestlibUnitModifier SIUnitModifier, conversionFactor=10e-6 SI unit submultiple representing 10e-6.
+HED_0011427 u TestlibUnitModifier SIUnitSymbolModifier, conversionFactor=10e-6 SI unit submultiple representing 10e-6.
+HED_0011428 nano TestlibUnitModifier SIUnitModifier, conversionFactor=10e-9 SI unit submultiple representing 10e-9.
+HED_0011429 n TestlibUnitModifier SIUnitSymbolModifier, conversionFactor=10e-9 SI unit submultiple representing 10e-9.
+HED_0011430 pico TestlibUnitModifier SIUnitModifier, conversionFactor=10e-12 SI unit submultiple representing 10e-12.
+HED_0011431 p TestlibUnitModifier SIUnitSymbolModifier, conversionFactor=10e-12 SI unit submultiple representing 10e-12.
+HED_0011432 femto TestlibUnitModifier SIUnitModifier, conversionFactor=10e-15 SI unit submultiple representing 10e-15.
+HED_0011433 f TestlibUnitModifier SIUnitSymbolModifier, conversionFactor=10e-15 SI unit submultiple representing 10e-15.
+HED_0011434 atto TestlibUnitModifier SIUnitModifier, conversionFactor=10e-18 SI unit submultiple representing 10e-18.
+HED_0011435 a TestlibUnitModifier SIUnitSymbolModifier, conversionFactor=10e-18 SI unit submultiple representing 10e-18.
+HED_0011436 zepto TestlibUnitModifier SIUnitModifier, conversionFactor=10e-21 SI unit submultiple representing 10e-21.
+HED_0011437 z TestlibUnitModifier SIUnitSymbolModifier, conversionFactor=10e-21 SI unit submultiple representing 10e-21.
+HED_0011438 yocto TestlibUnitModifier SIUnitModifier, conversionFactor=10e-24 SI unit submultiple representing 10e-24.
+HED_0011439 y TestlibUnitModifier SIUnitSymbolModifier, conversionFactor=10e-24 SI unit submultiple representing 10e-24.
diff --git a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_ValueClass.tsv b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_ValueClass.tsv
index 1f5156de..bb29a1a7 100644
--- a/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_ValueClass.tsv
+++ b/tests/data/schema_tests/test_merge/HED_testlib_4.0.0/HED_testlib_4.0.0_ValueClass.tsv
@@ -1,2 +1,6 @@
hedId rdfs:label omn:SubClassOf Attributes dc:description
- digitClass TestlibValueClass allowedCharacter=digits Values that can only have digits.
+HED_0011301 dateTimeClass TestlibValueClass allowedCharacter=digits, allowedCharacter=T, allowedCharacter=hyphen, allowedCharacter=colon Date-times should conform to ISO8601 date-time format YYYY-MM-DDThh:mm:ss.000000Z (year, month, day, hour (24h), minute, second, optional fractional seconds, and optional UTC time indicator. Any variation on the full form is allowed.
+HED_0011302 nameClass TestlibValueClass allowedCharacter=letters, allowedCharacter=digits, allowedCharacter=underscore, allowedCharacter=hyphen Value class designating values that have the characteristics of node names. The allowed characters are alphanumeric, hyphen, and underscore.
+HED_0011303 numericClass TestlibValueClass allowedCharacter=digits, allowedCharacter=E, allowedCharacter=e, allowedCharacter=plus, allowedCharacter=hyphen, allowedCharacter=period Value must be a valid numerical value.
+HED_0011304 posixPath TestlibValueClass allowedCharacter=digits, allowedCharacter=letters, allowedCharacter=slash, allowedCharacter=colon Posix path specification.
+HED_0011305 textClass TestlibValueClass allowedCharacter=text Values that have the characteristics of text such as in descriptions. The text characters include printable characters (32 <= ASCII< 127) excluding comma, square bracket and curly braces as well as non ASCII (ASCII codes > 127).
diff --git a/tests/schema/test_hed_schema_io.py b/tests/schema/test_hed_schema_io.py
index a1dd251f..5597df81 100644
--- a/tests/schema/test_hed_schema_io.py
+++ b/tests/schema/test_hed_schema_io.py
@@ -243,6 +243,22 @@ def setUpClass(cls):
new_filename = f"HED_{cls.dupe_library_name}.xml"
loaded_schema.save_as_xml(os.path.join(cls.hed_cache_dir, new_filename), save_merged=False)
+ # Also copy testlib schemas from spec_tests/hed-schemas if available for testing library merging
+ testlib_spec_path = os.path.join(
+ os.path.dirname(os.path.realpath(__file__)), "../../spec_tests/hed-schemas/library_schemas/testlib"
+ )
+ if os.path.exists(testlib_spec_path):
+ for root, _dirs, files in os.walk(testlib_spec_path):
+ for filename in files:
+ if filename.endswith(".xml"):
+ testlib_file = os.path.join(root, filename)
+ try:
+ loaded_schema = schema.load_schema(testlib_file)
+ loaded_schema.save_as_xml(os.path.join(cls.hed_cache_dir, filename), save_merged=False)
+ except Exception:
+ # Skip if there's an issue loading this particular testlib schema
+ pass
+
@classmethod
def tearDownClass(cls):
shutil.rmtree(cls.hed_cache_dir)
@@ -574,6 +590,58 @@ def test_saving_in_library_xml(self):
# One extra because this also finds the attribute definition, whereas in wiki it's a different format.
self.assertEqual(score_count, 854, "There should be 854 in library entries in the saved score schema")
+ def test_save_merged_raises_when_base_schema_unavailable(self):
+ """Test that HedFileError is raised when saving merged output with non-existent base schema."""
+ # Create a temporary schema file with a non-existent withStandard version.
+ # The schema must be syntactically valid and marked as merged (no unmerged="True")
+ # to trigger the save_merged code path in schema2base.
+ # This validates the fail-fast behavior: when saving merged output, an exception is raised
+ # immediately if the base schema cannot be loaded, preventing silent production of partial output.
+ temp_schema_content = """HED version="1.1.0" library="score" withStandard="99.99.99"
+
+'''Prologue'''
+Test schema for exception handling.
+
+!# start schema
+
+'''Test-tag'''
+* Test-subtag
+
+!# end schema
+
+'''Unit classes'''
+
+'''Unit modifiers'''
+
+'''Value classes'''
+
+'''Schema attributes'''
+
+'''Properties'''
+
+'''Epilogue'''
+
+!# end hed
+"""
+ temp_schema_file = get_temp_filename(".mediawiki")
+ with open(temp_schema_file, "w", encoding="utf-8", newline="\n") as f:
+ f.write(temp_schema_content)
+
+ try:
+ # Load the schema successfully (it's syntactically valid and marked as merged)
+ schema_obj = load_schema(temp_schema_file)
+
+ # Attempting to save the merged schema should raise HedFileError because the base schema
+ # version (99.99.99) doesn't exist. The fail-fast design in schema2base.__init__
+ # intentionally does NOT wrap the load_schema_version() call in try/except, ensuring
+ # this error is raised immediately rather than silently producing an incomplete output.
+ with self.assertRaises(HedFileError):
+ schema_obj.get_as_mediawiki_string(save_merged=True)
+ finally:
+ # Clean up the temporary schema file
+ if os.path.exists(temp_schema_file):
+ os.remove(temp_schema_file)
+
class TestParseVersionList(unittest.TestCase):
def test_empty_and_single_library(self):
@@ -652,10 +720,10 @@ def test_load_prerelease_schema(self):
def test_load_prerelease_library(self):
"""Test loading a prerelease library schema."""
- schema = load_schema_version("testlib_2.1.0", xml_folder=self.schema_dir)
+ schema = load_schema_version("testliba_2.1.0", xml_folder=self.schema_dir)
self.assertIsInstance(schema, HedSchema)
self.assertEqual(schema.version_number, "2.1.0")
- self.assertEqual(schema.library, "testlib")
+ self.assertEqual(schema.library, "testliba")
self.assertIn("prerelease-item", schema.tags.all_names)
def test_mixed_regular_and_prerelease_schemas(self):
diff --git a/tests/schema/test_schema_compliance.py b/tests/schema/test_schema_compliance.py
index bf8beac8..ba44ad3f 100644
--- a/tests/schema/test_schema_compliance.py
+++ b/tests/schema/test_schema_compliance.py
@@ -538,7 +538,6 @@ def test_dc_source_check_valid(self):
# Set annotation to dc:source Wikipedia is great
test_entry = test_schema[HedSectionKey.Tags]["Event"]
test_entry.attributes["annotation"] = "dc:source Wikipedia is great"
-
sv = SchemaValidator(test_schema, ErrorHandler())
issues = sv.check_annotation_attribute_values()
source_issues = [i for i in issues if i["code"] == "SCHEMA_ANNOTATION_SOURCE_MISSING"]
diff --git a/tests/schema/test_schema_extras_comprehensive.py b/tests/schema/test_schema_extras_comprehensive.py
index ec16cc51..2a7bae54 100644
--- a/tests/schema/test_schema_extras_comprehensive.py
+++ b/tests/schema/test_schema_extras_comprehensive.py
@@ -83,7 +83,7 @@ def test_01_all_formats_load_extras_correctly(self):
self.assertEqual(schema.library, "testlib")
self.assertEqual(schema.version_number, "4.0.0")
self.assertEqual(schema.with_standard, "8.4.0")
- self.assertFalse(schema.merged)
+ self.assertTrue(schema.merged) # Test files are saved merged
# Verify Sources
sources = schema.get_extras(df_constants.SOURCES_KEY)