diff --git a/docs/guides/10-preparation-git.md b/docs/guides/10-preparation-git.md index 4e709250b3..8c1be0bd67 100644 --- a/docs/guides/10-preparation-git.md +++ b/docs/guides/10-preparation-git.md @@ -208,13 +208,6 @@ scope: navpath: /terms # Path to the directory where Curated Texts are rendered. What `curatedir` is for Curated Texts is, `navpath` is for the rendered versions of Curated Texts. navid: id # Name of the field in the [front matter](@) of a body file used by your static site generator in a URL, to uniquely identify that file (e.g., "id", "slug", "permalink"). If not specified, the filename of the body file will be used. license: LICENSE.md # file that contains the (default) licensing conditions. Full URL is `scopedir`/`license` - statuses: [ proposed, approved, deprecated ] # list of status tags that are defined for semantic units in this scope - issues: https://github.com/tno-terminology-design/tev2-specifications/issues # URL where issues can be raised and handled - curators: # contacting individual curators - - name: RieksJ - email: # we split up the email address to reduce the likelihood of the address being harvested for spamming - id: rieks.joosten - at: tno.nl # # The second section contains a mapping between scopetags that are used within the scope, and the associated scopedirs. # This enables tools to find the SAF of these scopes, and from there all other directories, files etc. diff --git a/docs/mrgen.py b/docs/mrgen.py deleted file mode 100644 index 33ea0aa40a..0000000000 --- a/docs/mrgen.py +++ /dev/null @@ -1,263 +0,0 @@ -# ChatGPT intro: I'm trying to build a machine readable glossary (MRG) from markdown files. The structure of the files and other things is found in the SAF.yaml file, e.g. where these markdown files are located (`curatedir`), and where the MRG is to be written (`glossarydir`). Here is the script I use: - -import argparse -import os -import yaml -import copy -from ruamel.yaml import YAML -import re -import glob -import datetime -import sys - -import ruamel.yaml -import yaml - -print(ruamel.yaml.__version__) -print(yaml.__version__) - -# Create Terminology section - -def construct_terminology_section(saf_data, version_tag): - today = datetime.datetime.now().strftime("%Y%m%d") - yaml = YAML() - yaml.indent(mapping=2, sequence=4, offset=2) - - if not version_tag: - raise Exception(f"Error: `version_tag` should have been provided, but is not") - - versions = saf_data.get("versions", []) - found_version = None - for version in versions: - vsntag = version.get("vsntag", "") - altvsntags = version.get("altvsntags", []) - if vsntag == version_tag or version_tag in altvsntags: - found_version = version - break - - print(yaml.dump(found_version, sys.stdout)) - - if not found_version: - raise Exception(f"Error: Invalid version_tag provided: {version_tag}") - - terminology_section = { - "scopetag": saf_data.get("scope", {}).get("scopetag"), - "scopedir": saf_data.get("scope", {}).get("scopedir"), - "curatedir": saf_data.get("scope", {}).get("curatedir"), - "glossarydir": saf_data.get("scope", {}).get("glossarydir"), - "website": saf_data.get("scope", {}).get("website"), - "navpath": saf_data.get("scope", {}).get("navpath"), - "license": saf_data.get("scope", {}).get("license", ""), - "vsntag": vsntag, - "altversions": altvsntags, - "date": today - } - - if not terminology_section["scopetag"]: - raise Exception("Error: 'scopetag' field missing in SAF.yaml.") - - if not terminology_section["scopedir"]: - raise Exception("Error: 'scopedir' field missing in SAF.yaml.") - - if not terminology_section["curatedir"]: - raise Exception("Error: 'curatedir' field missing in SAF.yaml.") - - # Set other missing fields to empty string - terminology_section.setdefault("website", "") - terminology_section.setdefault("navpath", "") - terminology_section.setdefault("license", "") - - return terminology_section - -# Create Scopes section - -def construct_scopes_section(saf_data): - # Code to generate the scopes section - scopes_section = { - "scopes": [] # Scopes section data - } - return scopes_section - -# Create Entries section - -def process_markdown_file(md_file, saf_data, error_messages): - with open(md_file, 'r', encoding='utf-8') as f: - content = f.read() - - # Find front matter - start_index = content.find('---') - end_index = content.find('---', start_index + 3) - - if start_index == -1 or end_index == -1: - error_messages.append(f"Error: No YAML front matter found in {md_file}") - return None - - front_matter = content[start_index+3:end_index].strip() - - # Construct MRG entry - yaml = YAML() - try: - mrg_entry = yaml.load(front_matter) - except Exception as e: - error_messages.append(f"Error in YAML front matter of {md_file}: {str(e)}") - return None - - if not isinstance(mrg_entry, dict): - error_messages.append(f"Error: Invalid YAML front matter in {md_file}") - return None - - # Raise error if 'term' is missing - if 'term' not in mrg_entry: - error_messages.append(f"Error: 'term' field is missing in {md_file}") - return None - - mrg_entry['scopetag'] = saf_data.get("scope", {}).get("scopetag") # Use the actual scopetag value - mrg_entry['locator'] = '/' + mrg_entry['term'] - mrg_entry['navurl'] = '/' + mrg_entry['term'] - - # Find heading tags in the markdown body - body_content = content[end_index+3:] - heading_tags = [] - heading_regex = r'^(?P#+)\s*(?P.*?)\s*(?:{#(?P[A-Za-z0-9-_]+)})?$' - - for match in re.finditer(heading_regex, body_content, re.MULTILINE): - heading_level = len(match.group('heading_level')) - heading_text = match.group('heading_text') - heading_id = match.group('heading_id') - - if heading_id: - heading_id = heading_id.strip() - else: - heading_id = generate_heading_id(heading_text) - - if heading_id == '': - heading_id = None - - heading_tags.append(heading_id) - - if heading_tags: - mrg_entry['headingids'] = heading_tags - - # Replace glossaryText placeholders if it exists - glossary_text = mrg_entry.get('glossaryText') - - if glossary_text: - glossary_text_match = re.findall(r'%%(.*?)\^(.*?)%%', glossary_text) - for match in glossary_text_match: - show_text = match[0] - ref_text = match[1] - placeholder = f"%%{show_text}^{ref_text}%%" - replacement = f"[{show_text}](@)" - glossary_text = glossary_text.replace(placeholder, replacement) - mrg_entry['glossaryText'] = glossary_text - - # Replace hoverText placeholders if it exists - hover_text = mrg_entry.get('hoverText') - - if hover_text: - def capitalize_first_letters(match): - text = match.group(1) - words = text.split() - capitalized_words = [word.capitalize() if word.islower() else word for word in words] - return ' '.join(capitalized_words) - - hover_text = re.sub(r'\[([^\]]+?)\]\(.*?@[^@]*\)', capitalize_first_letters, hover_text) - - mrg_entry['hoverText'] = hover_text - - return mrg_entry - -def generate_heading_id(heading_text): - generated_id = heading_text.lower() - generated_id = re.sub(r'\W+', ' ', generated_id) - generated_id = generated_id.replace(' ', '-') - generated_id = re.sub(r'-{2,}', '-', generated_id) - generated_id = generated_id.strip('-') - if generated_id == '': - return None - return generated_id - -def construct_entries_section(saf_data): - directory = saf_data.get("scope", {}).get("curatedir") - if not directory: - print("Error: 'curatedir' field missing in SAF.yaml.") - return - - if not os.path.exists(directory): - print(f"Error: Directory '{directory}' does not exist.") - return [] - - print(f"Processing files in directory: {directory}") - - markdown_files = glob.glob(os.path.join(directory, '*.md')) - - if not markdown_files: - print(f"Error: No Markdown files found in directory '{directory}'.") - return [] - - mrg_entries = [] - error_messages = [] - - for md_file in markdown_files: - mrg_entry = process_markdown_file(md_file, saf_data, error_messages) - if mrg_entry: - mrg_entries.append(mrg_entry) - - if error_messages: - print("\n".join(error_messages)) - - return mrg_entries - -# Main program - -def main(version_tag=None): - saf_path = os.path.join(os.getcwd(), "SAF.yaml") - if not os.path.exists(saf_path): - print("Error: SAF.yaml file not found.") - return - - with open(saf_path, "r", encoding="utf-8") as saf_file: - saf_data = yaml.safe_load(saf_file) - - if version_tag is None: - version_tag = saf_data.get("scope", {}).get("defaultvsn") - - print(f"Version tag: {version_tag}") - - scope_tag = saf_data.get("scope", {}).get("scopetag", "") - - # Generate YAML filename and path - file_name = f"mrg.{scope_tag}.{version_tag}.yaml" - - # Check if glossarydir exists - glossary_dir = saf_data.get("scope", {}).get("glossarydir", "") - if not os.path.exists(os.path.join(os.getcwd(), glossary_dir)): - print(f"Error: 'glossarydir' directory '{glossary_dir}' does not exist in {os.path.join(os.getcwd())}.") - return - - # Create the full path for the MRG file - file_path = os.path.join(os.getcwd(), glossary_dir, file_name) - - # Generate the contents of the MRG file - mrg_terminology = construct_terminology_section(saf_data, version_tag) - mrg_scopes = construct_scopes_section(saf_data) - mrg_entries = construct_entries_section(saf_data) - - yaml_data = { - "terminology": mrg_terminology, - "scopes": mrg_scopes, - "entries": mrg_entries - } - - ruamel = YAML() - ruamel.indent(mapping=2, sequence=4, offset=2) - ruamel.dump(yaml_data, open(file_path, 'w', encoding='utf-8')) - - print(f"Generated YAML file: {file_path}") - -if __name__ == "__main__": - parser = argparse.ArgumentParser() - parser.add_argument('-v', '--version', help='Version tag', default=None) - args = parser.parse_args() - - main(version_tag=args.version) diff --git a/docs/saf.yaml b/docs/saf.yaml index c0173a12b0..17206f23c0 100644 --- a/docs/saf.yaml +++ b/docs/saf.yaml @@ -14,7 +14,6 @@ scope: navpath: /terms # Path to the directory where Curated Texts are rendered. What `curatedir` is for Curated Texts is, `navpath` is for the rendered versions of Curated Texts. navid: id # Name of the field in the front matter of a body file used by your static site generator in a URL, to uniquely identify that file (e.g., "id", "slug", "permalink"). If not specified, the filename of the body file will be used. | license: LICENSE.md # file that contains the (default) licensing conditions. Full URL is `scopedir`/`license` - statuses: [ proposed, approved, deprecated ] # list of status tags that are defined for semantic units in this scope # The subsection `mappings` is not yet functional - see tev2-tools/issue#. mappings: mrgt: diff --git a/docs/specs/files/10-curated-text-file.md b/docs/specs/files/10-curated-text-file.md index 4a3075c56c..904830bbe6 100644 --- a/docs/specs/files/10-curated-text-file.md +++ b/docs/specs/files/10-curated-text-file.md @@ -28,12 +28,7 @@ termType: concept glossaryTerm: Curated Text glossaryText: a text that documents a [concept](@) or other [semantic unit](@) of a particular [party](@), and specifies, e.g., the [term(s)](@) by which the [party](@) refers thereto, its [definition](@), and any other relevant information. formPhrases: [ "curated-text{ss}" ] -# TEv2 Curation status -status: proposed -created: 20220602 -updated: 20230814 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/specs/files/12-saf.md b/docs/specs/files/12-saf.md index d899f4177f..3a1fc057e9 100644 --- a/docs/specs/files/12-saf.md +++ b/docs/specs/files/12-saf.md @@ -144,9 +144,6 @@ versions: - "[party,community](@essif-lab:0.9.4)" # import the terms `party` and `community` from the mrg of `essif-lab:0.9.4`. - "tags[management]@essif-lab" # import all terms from the mrg of `essif-lab:latest` that have grouptag `management`. - "*" # import all terms defined in the scope `tev2` - status: proposed - from: 20220312 - to: - vsntag: terms # a versiontag that identifies this version from all other versions in the SAF termselection: - "*" # import all terms that are curated in the current scope. @@ -175,9 +172,6 @@ The following fields are defined for the `versions` section of a [SAF](@): | `altvsntags` | n | List of alternative [versiontags](@) that may be used to refer to this version of the [scope's](@) [terminology](@). A typical use of this field would be to tag a version as the 'latest' version. | | `termselection` | Y | List of [term selection instructions](@) that are used to generate (this version of) the [scope's](@) [terminology](@). See the [Terminology Construction page](/docs/manuals/curator/terminology-construction) and the [term selection syntax page](/docs/specs/syntax/term-selection) for details. | | `license` | n | File that contains the (default) licensing conditions. Full URL is `scopedir`/`license`. If not specified, its value defaults to the value of the `license` field in the `scope` section (of this [SAF](@)). The purpose of this field is to allow different versions of the [scope's](@) [terminology](@) to have different licenses. | -| `status` | n | Text that identifies the status of the [term](@). ([Communities](@) of) [scopes](@) may specify values for this field. If not specified, the status SHOULD be assumed to be 'concept', 'draft', 'proposed', or similar. An example is the [status tags used by ToIP](https://github.com/trustoverip/concepts-and-terminology-wg/blob/master/docs/status-tags.md). | -| `from` | F | Date at which it was decided to establish this version. | -| `to` | F | Date at which this version will expire (or has expired). | ```mdx-code-block diff --git a/docs/specs/files/ingestion.profile b/docs/specs/files/ingestion.profile deleted file mode 100644 index 53539fe0c2..0000000000 --- a/docs/specs/files/ingestion.profile +++ /dev/null @@ -1,20 +0,0 @@ ---- -# TEv2 Curated Text Header -# Documented at: https://tno-terminology-design.github.io/tev2-specifications/docs-profile-templates#ingestion-profile -term: {{term}} # (required) word/phrase that represents a concept. -termType: {{#if termType}}{{termType}}{{else}}concept{{/if}} # (optional) kind of concept (e.g. `concept` (default), or `mental model`). -isa: {{isa}} # (optional) concept of which this is a specialization. -glossaryTerm: -glossaryText: {{glossaryText}} # (required) text that summarizes the meaning of the term. -synonyms: {{commaSeparatedSynonyms}} # (optional) other words/phrases that mean the same. -groupTags: {{commaSeparatedKeywords}} # (optional) list of tags/keywords to which the term belongs. -formPhrases: {{commaSeparatedFormPhrases}} # (optional) list of formPhrases (see https://tno-terminology-design.github.io/tev2-specifications/docs/spec-syntax/form-phrase-syntax) -# Curation status -status: {{#if status}}{{status}}{{else}}proposed{{/if}} # (optional) status/phase in the lifecycle of the term. Defaults to `proposed`. -created: {{created}} # (optional) date when the term was first conceived/documented. Defaults to today's date. -updated: {{updated}} # (optional) date when the term was last updated. Defaults to today's date. -# Origins/Acknowledgements -contributors: {{commaSeparatedContributors}} # (optional) list of texts, each of which somehow represents a contributor. -attribution: {{attribution}} # (optional) text that credits the original creation of the texts in the document. -originalLicense: {{originalLicense}} # (optional) reference to the license of the work from which the texts were derived. ---- diff --git a/docs/terms/author.md b/docs/terms/author.md index 35b2c965ac..ea2178b7aa 100644 --- a/docs/terms/author.md +++ b/docs/terms/author.md @@ -10,12 +10,7 @@ glossaryTerm: Author glossaryText: "a person that creates a text that is meant to be read and understood by others - usually, a particular audience." grouptags: [ ] formPhrases: [ "author{ss}" ] -# Curation status -status: proposed -created: 20230723 -updated: 20230723 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/body-file.md b/docs/terms/body-file.md index 076a51b85a..62ac3fcb41 100644 --- a/docs/terms/body-file.md +++ b/docs/terms/body-file.md @@ -13,12 +13,7 @@ glossaryNotes: - "The [header](@) of that [curated text](@) has a field `bodyFile` that specifies its location within the [scopedir](@)." grouptags: [ ] formPhrases: [ "body-file{ss}" ] -# Curation status -status: proposed -created: 20230723 -updated: 20230723 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/body.md b/docs/terms/body.md index f044bf0731..2f378da001 100644 --- a/docs/terms/body.md +++ b/docs/terms/body.md @@ -12,12 +12,7 @@ glossaryNotes: - "Bodies live either in [curated text files](@) (behind the [header](@)), or in separate so-called [body files](@)." grouptags: [ ] formPhrases: [ "bod{yies}" ] -# Curation status -status: proposed -created: 20230723 -updated: 20230723 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/concept.md b/docs/terms/concept.md index b0cdc76c86..388266bb18 100644 --- a/docs/terms/concept.md +++ b/docs/terms/concept.md @@ -12,12 +12,7 @@ glossaryNotes: - "the term '[concept](@)' is often conflated with the term '[semantic unit](@)'." grouptags: [ ] formPhrases: [ "concept{ss}" ] -# Curation status -status: proposed -created: 20220606 -updated: 20220606 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/conceptualization.md b/docs/terms/conceptualization.md index bce8d909b0..b8593985bc 100644 --- a/docs/terms/conceptualization.md +++ b/docs/terms/conceptualization.md @@ -10,12 +10,7 @@ glossaryTerm: Conceptualization glossaryText: "a mental representation or abstract idea formed by a [party](@) to categorize, organize, and make sense of information, experiences, objects, or abstract notions; it allows the [party](@) to recognize similarities and differences between [entities](@) or events." grouptags: [ ] formPhrases: [ "conceptualization{ss}" ] -# Curation status -status: proposed -created: 20230723 -updated: 20230723 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/contributor.md b/docs/terms/contributor.md index cffbbeac35..70c0444556 100644 --- a/docs/terms/contributor.md +++ b/docs/terms/contributor.md @@ -10,12 +10,7 @@ glossaryTerm: Contributor glossaryText: "a person that contributes to the creation and maintenance of a [terminology](@) all [terms](@) of which have a [definition](@) that links these [terms](@) with a [criterion](@) that is used within the [scope](@) of that [terminology](@) for determining whether or not something is an instance (example) of the [semantic unit](@) to which the [term](@) refers." grouptags: [ ] formPhrases: [ "contributor{ss}" ] -# Curation status -status: proposed -created: 20240408 -updated: 20240408 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/converter-profile.md b/docs/terms/converter-profile.md index 98e283f38e..98bfb90a7e 100644 --- a/docs/terms/converter-profile.md +++ b/docs/terms/converter-profile.md @@ -6,17 +6,13 @@ displayed_sidebar: tev2SideBar term: converter-profile termType: concept glossaryTerm: Converter Profile +glossaryAlias: Converter Profile Object glossaryText: "the specification of a class of [data objects](handlebars-object@), instances of which are used by specific [text conversion tools](@) to generate text fragments from." glossaryNotes: - "Converter profiles exist, e.g., for the [TRRT](@) and the [HRGT](@)." - "Converter profiles are used by [converters](@), which are (predefined or custom) [handlebars templates](@) that produce the generated text fragments." formPhrases: [ "converter-profile-object{ss}", "converter-profile{ss}", "profile{ss}" ] -# Curation status -status: proposed -created: 20231218 -updated: 20240301 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- @@ -34,7 +30,7 @@ The text fragments that are generated by the [text conversion tool](@) are creat The generic workings of [converter profiles](@) is documented in the [TEv2 Text Conversion pattern](/docs/overview/tev2-text-conversion). -## Converter Profile Object {#object-spec} +## Converter Profile Object (Specification) {#object-spec} The [converter profile object](@) can be envisaged as a YAML object, that has a number of sections. Every [converter profile object](@) has the following sections, but individual [text-conversion-tool](@) may specify additional sections (or fields), which can be found in the section "Converter Profile" of their specifications. @@ -71,7 +67,6 @@ entry: - "converter-profile-object" - "converter-profile-objects" - "converter-profile-object-s" - status: "proposed" scopetag: "termdsn" locator: "converter-profile.md" navurl: "https://tno-terminology-design.github.io/tev2-specifications/docs/terms/converter-profile" @@ -97,11 +92,6 @@ mrg: navpath: "/terms" navid: "id" license: "LICENSE.md" - statuses: - - "proposed" - - "approved" - - "deprecated" - defaulttype: "concept" vsntag: "documentation" altvsntags: - "latest" @@ -324,11 +314,6 @@ mrg: navpath: "/terms" navid: "id" license: "LICENSE.md" - statuses: - - "proposed" - - "approved" - - "deprecated" - defaulttype: "concept" vsntag: "documentation" altvsntags: - "latest" diff --git a/docs/terms/converter.md b/docs/terms/converter.md index 55c1b8eef6..6c743cc5d9 100644 --- a/docs/terms/converter.md +++ b/docs/terms/converter.md @@ -13,12 +13,7 @@ glossaryNotes: - A [HRGT](@) converter constructs a text that replaces an [MRGRef](@). That text typically renders as a [human readable glossary](@). grouptags: [ ] formPhrases: [ "converter{ss}" ] -# Curation status -status: proposed -created: 20230731 -updated: 20240108 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/corpus.md b/docs/terms/corpus.md index efe0635daa..714a30f3fd 100644 --- a/docs/terms/corpus.md +++ b/docs/terms/corpus.md @@ -10,12 +10,7 @@ glossaryTerm: glossaryText: "the documentation that describes the [knowledge](@essif-lab) around a set of [terms](@) and [concepts](@)." grouptags: [ ] formPhrases: [ "corpus", "corpora", "corpus-of-terminology", "corpus-of-a-terminology", "terminology corpus" ] -# Curation status -status: proposed -created: 20220606 -updated: 20220606 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/criterion.md b/docs/terms/criterion.md index 441b6ec3bd..e0c03fdb7e 100644 --- a/docs/terms/criterion.md +++ b/docs/terms/criterion.md @@ -13,12 +13,7 @@ glossaryNotes: - "Conforming ourselves to [currently common practices](https://www.merriam-webster.com/dictionary/criteria), we use the term 'criteria' both as the plural form, and as a [synonym](@) for [criterion](@)." grouptags: [ ] formPhrases: [ criteria ] -# Curation status -status: proposed -created: 20240408 -updated: 20240408 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/curate.md b/docs/terms/curate.md index 29c47290e2..788cf222f8 100644 --- a/docs/terms/curate.md +++ b/docs/terms/curate.md @@ -10,12 +10,7 @@ glossaryTerm: Curate glossaryText: "to select, organize, and present [terms](@), [definitions](@), and other, related content in a thoughtful and purposeful manner to establish shared understanding among a [community](@) working together on a particular set of [objectives](@essif-lab)." grouptags: [ "terminology", "cm-party-actor-action" ] formPhrases: [ "curates", "curated", "curating", "curation" ] -# Curation status -status: proposed -created: 20230723 -updated: 20230723 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/curated-file.md b/docs/terms/curated-file.md index ef9c0c9800..30bf5b9028 100644 --- a/docs/terms/curated-file.md +++ b/docs/terms/curated-file.md @@ -9,12 +9,7 @@ glossaryTerm: "Curated File" glossaryText: "a file that is located in the [scopedir](@) of a specific [scope](@), and is (therefore) [curated](@) by (one of) the [curators](@) of that [scope](@)." grouptags: [ ] formPhrases: [ "curated-file{ss}" ] -# Curation status -status: proposed -created: 20231009 -updated: 20231009 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/curated-text-file.md b/docs/terms/curated-text-file.md index b061271572..9e6a30e75e 100644 --- a/docs/terms/curated-text-file.md +++ b/docs/terms/curated-text-file.md @@ -11,12 +11,7 @@ glossaryTerm: "Curated Text File" glossaryText: "a file that contains either a (complete) [curated text](@), or the [header](@) of that [curated text](@) and a reference to the [file](body-file@) that contains its [body](@)." grouptags: [ ] formPhrases: [ "curated-text-file{ss}", "ctext-file{ss}" ] -# Curation status -status: proposed -created: 20231009 -updated: 20231009 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/curated-text.md b/docs/terms/curated-text.md index 3bd5f5bccc..65f6c6e408 100644 --- a/docs/terms/curated-text.md +++ b/docs/terms/curated-text.md @@ -10,12 +10,7 @@ glossaryTerm: "Curated Text" glossaryText: "a text that documents a [concept](@) or other [semantic unit](@) of a particular [party](@), and specifies, e.g., the [term(s)](@) by which the [party](@) refers thereto, its [definition](@), and any other relevant information." grouptags: [ ] formPhrases: [ "curated-text{ss}", "ctext{ss}" ] -# Curation status -status: proposed -created: 20220602 -updated: 20220804 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/curatedir.md b/docs/terms/curatedir.md index 17b1040026..36e9a0f1fa 100644 --- a/docs/terms/curatedir.md +++ b/docs/terms/curatedir.md @@ -10,12 +10,7 @@ glossaryTerm: "Curatedir" glossaryText: "a directory within a [scopedir](@) within which every file contains a [curated text](@) for that [scope](@)." grouptags: [ ] formPhrases: [ "curatedir{ss}", "curate-director{yies}" ] -# Curation status -status: proposed -created: 20220729 -updated: 20220729 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/curator.md b/docs/terms/curator.md index 8056ef337e..e77ce3c741 100644 --- a/docs/terms/curator.md +++ b/docs/terms/curator.md @@ -10,12 +10,7 @@ glossaryTerm: "Curator (of a Scope)" glossaryText: "a person responsible for curating, managing, and maintaining the [terminologies](@), to ensure shared understanding among a [community](@) working together on a particular set of [objectives](@essif-lab)." grouptags: [ "terminology" ] formPhrases: [ "curator{ss}", "terminology-curator{ss}" ] -# Curation status -status: proposed -created: 20230723 -updated: 20230723 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/current-scope.md b/docs/terms/current-scope.md index 758ff184d6..ad0e21a563 100644 --- a/docs/terms/current-scope.md +++ b/docs/terms/current-scope.md @@ -10,12 +10,7 @@ glossaryTerm: "Current Scope" glossaryText: "the [scope](@) that is the context within which a [curator](@) is acting, or a tool is being called." grouptags: [ ] formPhrases: [ "current-scope{ss}" ] -# Curation status -status: proposed -created: 20231009 -updated: 20231009 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/define.md b/docs/terms/define.md index 65b6b43bda..f838aea613 100644 --- a/docs/terms/define.md +++ b/docs/terms/define.md @@ -10,12 +10,7 @@ glossaryTerm: Define glossaryText: "to provide a [criterion](@) and a [term](@), where the [criterion](@) can be used by people to determine whether or not something is an instance/example of a [concept](@) (or other [semantic unit](@)), and the [term](@) is used to refer to that [concept](@), or an arbitrary instance thereof." grouptags: [ "terminology" ] formPhrases: [ "defines", "defined", "defining" ] -# Curation status -status: proposed -created: 20230723 -updated: 20230723 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/definition.md b/docs/terms/definition.md index 5c008b12a2..d681b6e2d5 100644 --- a/docs/terms/definition.md +++ b/docs/terms/definition.md @@ -10,12 +10,7 @@ glossaryTerm: glossaryText: "the combination of a [term](@) and a descriptive text, where the [term](@) refers to a [concept](@) or other [semantic unit](@), and the descriptive text enables a set of [parties](@) to have the same understanding about that [concept](@). Ideally, the descriptive text is a [criterion](@) that such [parties](@) can use to determine what is, and what is not, an instance (or example) of that [concept](@)." grouptags: [ ] formPhrases: [ "definition{ss}", "good-definition{ss}" ] -# Curation status -status: proposed -created: 20220606 -updated: 20220606 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/dictionary.md b/docs/terms/dictionary.md index acc69d296c..a40d8f00c7 100644 --- a/docs/terms/dictionary.md +++ b/docs/terms/dictionary.md @@ -10,12 +10,7 @@ glossaryTerm: "Dictionary" glossaryText: "an alphabetically sorted list of [terms](@) with various meanings that they may have in different contexts." grouptags: [ ] formPhrases: [ "dictionar{yies}" ] -# Curation status -status: proposed -created: 20220606 -updated: 20220606 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/form-phrase-macro-map.md b/docs/terms/form-phrase-macro-map.md index d69448fa19..0cdf842b54 100644 --- a/docs/terms/form-phrase-macro-map.md +++ b/docs/terms/form-phrase-macro-map.md @@ -13,12 +13,7 @@ glossaryNotes: - "Form-phrase macro maps can be specified in the `scope` section of a [SAF](@)" - "Form-phrase macro maps can be specified in (the `mrgt` section) of a [configuration file](/docs/specs/files/configuration-file) that is used when calling the [MRGT](@)." formPhrases: [ "formphrase macro map{ss}", "formphrase macromap{ss}", "form-phrase macro map{ss}", "form-phrase macromap{ss}", "macro map{ss}", "macromap{ss}" ] -# Curation status -status: proposed -created: 20240228 -updated: 20240228 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/form-phrase-macro.md b/docs/terms/form-phrase-macro.md index 591ba66900..64e69bf845 100644 --- a/docs/terms/form-phrase-macro.md +++ b/docs/terms/form-phrase-macro.md @@ -9,12 +9,7 @@ isa: glossaryTerm: "Form Phrase Macro" glossaryText: "a sequence of characters (the macro name) that identifies a sequence (map) of character strings that specify typical variations of a [form phrase](@), such as plural forms, possessie extensions, verb-conjugation forms, etc." formPhrases: [ "formphrase macro{ss}", "form-phrase macro{ss}" ] -# Curation status -status: proposed -created: 20240108 -updated: 20240108 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/form-phrase.md b/docs/terms/form-phrase.md index 438a13232a..9b0cd965c2 100644 --- a/docs/terms/form-phrase.md +++ b/docs/terms/form-phrase.md @@ -13,12 +13,7 @@ glossaryNotes: - "For looking up the [semantic unit](@) (documentation, as specified in its corresponding [MRG entry](@)), [TEv2 tools](@) can match words or phrases they encounter with the [regularized texts](@) that are listed in the `formPhrases` field of [MRG entries](@). Such [regularized texts](@) do not contain [form-phrase macros](@)." - "The [MRGT](@) ensures that the texts in the `formPhrases` field of a [curated text](@) are [properly converted](mrgt#processing-form-phrases@), and listed in the `formPhrases` field of the corresponding [MRG entry](@)." formPhrases: [ "formphrase{ss}", "form-phrase{ss}" ] -# Curation status -status: proposed -created: 20230731 -updated: 20230731 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/formatted-text.md b/docs/terms/formatted-text.md index 6ffff32958..d81c0cb8d4 100644 --- a/docs/terms/formatted-text.md +++ b/docs/terms/formatted-text.md @@ -10,12 +10,7 @@ glossaryTerm: "Formatted Text" glossaryText: "a text that has been processed and arranged to have a specific layout, style, and presentation, making it visually appealing and easy to read." grouptags: [ ] formPhrases: [ "formatted-text{ss}" ] -# Curation status -status: proposed -created: 20230731 -updated: 20230731 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- @@ -42,6 +37,4 @@ The [criterion](@) for identifying "Formatted Text" is whether the document or t The hover text provides a concise description of the term when users hover over it. Synonyms for this term include "styled-text" and "visually-appealing-text." -The term is classified under the "text-format" concept, which means it belongs to a category related to different text formatting methods. Additionally, it is grouped under "document-format" to indicate its association with processed documents. - -The curation status of this term is "proposed," indicating that it is still under review and subject to potential changes. +The term is classified under the "text-format" concept, which means it belongs to a category related to different text formatting methods. Additionally, it is grouped under "document-format" to indicate its association with processed documents. \ No newline at end of file diff --git a/docs/terms/front-matter.md b/docs/terms/front-matter.md index 0fb2257467..43d276b274 100644 --- a/docs/terms/front-matter.md +++ b/docs/terms/front-matter.md @@ -11,12 +11,7 @@ glossaryText: "a section at the top of a file that contains YAML (or similarly f glossaryNotes: - "Front matter is also commonly used by various static site generators (not just by [TEv2](@))." - "The front-matter must be the first thing in the file and must be enclosed in triple-dashed lines for YAML." -# Curation status -status: proposed -created: 20240121 -updated: 20240121 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/glossary.md b/docs/terms/glossary.md index cd0fd1816f..646637c0dd 100644 --- a/docs/terms/glossary.md +++ b/docs/terms/glossary.md @@ -10,12 +10,7 @@ glossaryTerm: glossaryText: "an alphabetically sorted list of [terms](@) with the (single) meaning it has in (at least) one context." grouptags: [ ] formPhrases: [ "glossar{yies}" ] -# Curation status -status: proposed -created: 20220606 -updated: 20220606 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/glossarydir.md b/docs/terms/glossarydir.md index 14ad30f25b..9d2ce623d4 100644 --- a/docs/terms/glossarydir.md +++ b/docs/terms/glossarydir.md @@ -10,12 +10,7 @@ glossaryTerm: "Glossarydir" glossaryText: "a directory within a [scopedir](@) within which the different versions of its ([machine readable](mrg@) and [human readable](hrg@)) [glossaries](@) are created and maintained." grouptags: [ ] formPhrases: [ "glossarydir{ss}", "glossary-director{yies}" ] -# Curation status -status: proposed -created: 20220729 -updated: 20220729 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/grouptag.md b/docs/terms/grouptag.md index 25d841cf87..090a8c8b94 100644 --- a/docs/terms/grouptag.md +++ b/docs/terms/grouptag.md @@ -10,12 +10,7 @@ glossaryTerm: glossaryText: "a [tag](@) that is used to group [terms](@) within a specific [scope](@)." grouptags: [ ] formPhrases: [ "grouptag{ss}", "group-tag{ss}" ] -# Curation status -status: proposed -created: 20220606 -updated: 20220728 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/handlebars-object.md b/docs/terms/handlebars-object.md index 7c2668d1d6..242ced8cea 100644 --- a/docs/terms/handlebars-object.md +++ b/docs/terms/handlebars-object.md @@ -11,12 +11,7 @@ glossaryText: "a data object, that serves as the source of (context dependent) d glossaryNotes: - "The [converter profile](@) of a [text conversion tool](@) specifies the structure (type) of the data objects that it will pass to its [converters](@)" formPhrases: [ "handlebar{ss}-object{ss}", "converter-profile-object{ss}" ] -# Curation status -status: proposed -created: 20240318 -updated: 20240318 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/handlebars-template.md b/docs/terms/handlebars-template.md index 1bf8d9b3b4..701e39ce84 100644 --- a/docs/terms/handlebars-template.md +++ b/docs/terms/handlebars-template.md @@ -14,12 +14,7 @@ glossaryNotes: - "Handlebars templates ([converters](@)) are characterized by their use of Handlebars expressions within the templates." grouptags: [ ] formPhrases: [ "handlebar{ss} template{ss}", "handlebar{ss}" ] -# Curation status -status: proposed -created: 20230731 -updated: 20230731 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/header.md b/docs/terms/header.md index 3354ecfeb4..78e6c0c8b9 100644 --- a/docs/terms/header.md +++ b/docs/terms/header.md @@ -13,12 +13,7 @@ glossaryNotes: - "Headers live in [curated text files](@)." grouptags: [ ] formPhrases: [ "header{ss}" ] -# Curation status -status: proposed -created: 20230723 -updated: 20230723 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/hrd.md b/docs/terms/hrd.md index a5f40edc78..c498a58760 100644 --- a/docs/terms/hrd.md +++ b/docs/terms/hrd.md @@ -11,12 +11,7 @@ glossaryAbbr: HRD glossaryText: "a [dictionary](@) that presents terms and their meanings in a format that is easily understandable and accessible to humans, typically organized alphabetically." grouptags: [ "dictionary", "reference-materials" ] formPhrases: [ "hrd{ss}", "human-readable-dictionar{yies}", "human-readable-dictionar{yies}-hrd{ss}" ] -# Curation status -status: proposed -created: 20230731 -updated: 20230731 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/hrdt.md b/docs/terms/hrdt.md index 6384ba08d6..c9ae31286c 100644 --- a/docs/terms/hrdt.md +++ b/docs/terms/hrdt.md @@ -11,12 +11,7 @@ glossaryAbbr: HRDT glossaryText: "a software tool designed to create, manage, and process [Human Readable Dictionaries (HRDs)](hrd@)." grouptags: [ "tools", "dictionary-tools" ] formPhrases: [ "human-readable-dictionary-tool{ss}", "hrd-tool{ss}", "hrdt{ss}" ] -# Curation status -status: proposed -created: 20230731 -updated: 20230731 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/hrg-entry.md b/docs/terms/hrg-entry.md index 2abaacae1c..faca27896f 100644 --- a/docs/terms/hrg-entry.md +++ b/docs/terms/hrg-entry.md @@ -10,12 +10,7 @@ glossaryTerm: HRG Entry glossaryText: "A specific kind of (human-readable) rendering of the combination of a [term](@) and a means that helps [readers](@) to understand the meaning of that [term](@) when it is used in a sentence." grouptags: [ "glossary-entries", "reference-materials" ] formPhrases: [ "hrg-entr{yies}" ] -# Curation status -status: proposed -created: 20230731 -updated: 20230731 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/hrg-list.md b/docs/terms/hrg-list.md index 9d31ee0048..5ec6b08e4c 100644 --- a/docs/terms/hrg-list.md +++ b/docs/terms/hrg-list.md @@ -10,12 +10,7 @@ glossaryTerm: HRG List glossaryText: "a list of alphabetically sorted [HRG entries](@) that can be further processed by tools such as the [TRRT](@), as well as rendering tools such as GitHub pages, Docusaurus, etc." grouptags: [ ] formPhrases: [ "hrg-list{ss}" ] -# Curation status -status: proposed -created: 20230731 -updated: 20230731 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/hrg.md b/docs/terms/hrg.md index 8741799bc2..c8fbc661f6 100644 --- a/docs/terms/hrg.md +++ b/docs/terms/hrg.md @@ -11,12 +11,7 @@ glossaryAbbr: HRG glossaryText: "a [glossary](@) that is designed to be easily understandable and accessible to humans. HRGs present terms and their meanings in a format that prioritizes human comprehension and may include additional contextual information to aid understanding." grouptags: [ "glossaries", "data-structures" ] formPhrases: [ "hrg{ss}", "human-readable-glossar{yies}", "human-readable-glossar{yies}-hrg{ss}" ] -# Curation status -status: proposed -created: 20230731 -updated: 20230731 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/hrgt.md b/docs/terms/hrgt.md index 3edb83b898..c6aae0dea3 100644 --- a/docs/terms/hrgt.md +++ b/docs/terms/hrgt.md @@ -12,12 +12,7 @@ glossaryAbbr: HRGT glossaryText: "a software tool designed to create, manage, and process [Human Readable Glossaries (HRGs)](@), as [specified by TEv2](hrgt@). HRGTs offer features for selecting [terms](@) that are [curated](@) within the [scope](@) it is run in, or from other [scopes](@)." grouptags: [ "tools", "glossary-tools" ] formPhrases: [ "hrgt{ss}", "human-readable-glossary-tool{ss}", "human-readable-glossary-tool{ss}-hrgt{ss}", "hrgt{ss}-human-readable-glossary-tool{ss}" ] -# Curation status -status: proposed -created: 20230731 -updated: 20230731 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/ict.md b/docs/terms/ict.md index 26a695c378..f2d2bc2818 100644 --- a/docs/terms/ict.md +++ b/docs/terms/ict.md @@ -12,12 +12,7 @@ glossaryAbbr: ICT glossaryText: "a software tool designed to check the integrity and conformity of various files used in the curation and management of [glossaries](@), [dictionaries](@), [curated texts](@), and other data within a terminology project. The ICT verifies that the files adhere to the [TEv2 file specifications](/docs/specs/files), ensuring the consistency and accuracy of the terminology data." grouptags: [ "tools", "quality-assurance" ] formPhrases: [ "ict", "integrity-checker" ] -# Curation status -status: proposed -created: 20230731 -updated: 20230731 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/ingestion-profile.md b/docs/terms/ingestion-profile.md deleted file mode 100644 index 19ae411947..0000000000 --- a/docs/terms/ingestion-profile.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -# Docusaurus header -id: ingestion-profile -displayed_sidebar: tev2SideBar -# TEv2 Curated Text Header -term: ingestion-profile -termType: concept -isa: -glossaryTerm: "Ingestion Profile" -glossaryText: "the specification of a method by which files that are in a particular place and format (e.g., wiki files) are turned into a [curated text](@)." -grouptags: [ ] -formPhrases: [ "ingestion-profile{ss}" ] -# Curation status -status: proposed -created: 20220817 -updated: 20220817 -# Origins/Acknowledgements -contributors: RieksJ -attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" -originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" ---- - -# Ingestion Profile - -## Summary - -An **[ingestion profile](@)** is the specification of a method by which files that are in a particular place and format (e.g., wiki files) are turned into a [curated text](@). - -The manuals for [contributors](/docs/manuals/contributor/contributor-overview), [authors](/docs/manuals/author/author-overview) and [curators](/docs/manuals/curator/curator-overview) will provide guidance for people that act in these respective roles as they work with [curated texts](@). - -:::info Editor's Note -Text needs to be revised. Here are some ideas to mention: - -- contributors can suggest contents as per the curators instructions; -- [authors](@) can write the body of [curated texts](@); -- curators update the header of [curated texts](@) (conforming to the ctext specs); -- curators specify the process by which [curated texts](@) progress/mature, and get statuses assigned; -- curators generate artifacts from 'decided on' [curated texts](@), so that - - rendering tools or generation tools used in other scopes can generate artifacts and - - people can subsequently access nicely rendered, human readable versions -::: - -The [terminology pattern](pattern:terminology@) provides an overview of how this concept fits in with related concepts. - -## Purpose - -[Curated texts](@) are intended to be processable by a variety of tools, that are chosen by the [curators](@). Together, these tools not only enable the [curation](@) of the [scope's](@) [terminology](@), but also the generation of [glossaries](@), and a better handling of [terms](@) in documentation, whitepapers and the like. - -The precise conditions that [headers](@) and [bodies](@) of [curated texts](@) must satisfy will differ across [scopes](@) as [curators](@) are autonomous in choosing their tools and ways of working. To support other participants of their [terms community](@) in making contributions, they will define an [ingestion process](@) for the [scope(s)](@) they [curate](@), enabling such participants to contribute in ways that are easy for them. - -## Notes - -The intention of [curated texts](@) is to document a [semantic unit](@), which is something that has a place in the way of thinking within a [scope](@). Ways of working (e.g. installation procedures), reports on research to be published in papers, etc., are NOT thought of as part of the [scope's](@) [terminology](@), and hence should not be documented as a [curated text](@). Having said that, this is not a closed discussion; we can think of arguments to the opposite, so who knows... \ No newline at end of file diff --git a/docs/terms/ingestion.md b/docs/terms/ingestion.md index 700540902b..6fa81e5d5f 100644 --- a/docs/terms/ingestion.md +++ b/docs/terms/ingestion.md @@ -10,12 +10,7 @@ glossaryTerm: "Ingestion (Process)" glossaryText: "the process that is run by a [terms-community](@), in which their members suggest, draft, and discuss [definitions](@) ([terms](@) + [criteria](@)) that are relevant for a particular [scope](@), and converting such contributions into [curated texts](@) that accurately document the [concepts](@) and other [semantic units](@) and that adhere to the [TEv2-specifications](/docs/specs/files/curated-text-file)." grouptags: [ ] formPhrases: [ "ingestion-process", "ingestion-processes","ingest", "ingests", "ingested", "ingestion" ] -# Curation status" -status": proposed -created: 20230731 -updated: 20230731 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/interpreter-profile.md b/docs/terms/interpreter-profile.md index a0e0af4424..94d9bf85db 100644 --- a/docs/terms/interpreter-profile.md +++ b/docs/terms/interpreter-profile.md @@ -10,12 +10,7 @@ glossaryTerm: "Interpreter Profile" glossaryText: "the set of [named capturing groups](@) that are an [interpreter](@) is expected to populate when it is used in the context of a specific [TEv2 tool](@) (such as the [TRRT](@) or [HRGT](@))." grouptags: [ ] formPhrases: [ "interpreter-profile{ss}" ] -# Curation status -status: proposed -created: 20231218 -updated: 20240108 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/interpreter.md b/docs/terms/interpreter.md index 76ed8f6cca..6125826eb1 100644 --- a/docs/terms/interpreter.md +++ b/docs/terms/interpreter.md @@ -10,12 +10,7 @@ glossaryTerm: Interpreter glossaryText: "a [regex](@) that is used to locate a particular text construct (such as a [TermRef](@) or [MRGRef](@)) in a text, and that populates [named capturing groups](@) as specified in the [interpreter profile](@) of the particular [text conversion tool](@) for which it is designed." grouptags: [ ] formPhrases: [ "interpreter{ss}" ] -# Curation status -status: proposed -created: 20230731 -updated: 20240108 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/mental-model.md b/docs/terms/mental-model.md index c823a8beef..970fdb1a79 100644 --- a/docs/terms/mental-model.md +++ b/docs/terms/mental-model.md @@ -10,12 +10,7 @@ glossaryTerm: Mental Model glossaryText: "a [semantic unit](@) that relates a set of [concepts](@) (ideas), [relations](@) between them, and constraints about a certain topic, into a coherent and consistent whole (sometimes called 'viewpoint', or 'way of thinking')." grouptags: [ ] formPhrases: [ "mental-model{ss}", "pattern{ss}", "conceptual-model{ss}" ] -# Curation status -status: proposed -created: 20220606 -updated: 20220607 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/moustache-variable.md b/docs/terms/moustache-variable.md index 4aa79d6040..00353ac2d0 100644 --- a/docs/terms/moustache-variable.md +++ b/docs/terms/moustache-variable.md @@ -10,12 +10,7 @@ glossaryTerm: Moustache Variable glossaryText: "a placeholder in the form of a 'moustache' tag, e.g.: `{{variable_name}}`, that are used by [converters](@) to produce a text by which a text construct that is located by an [interpreter](@) will be replaced. See also https://mustache.github.io/mustache.5.html" grouptags: [ ] formPhrases: [ "moustache-variable{ss}" ] -# Curation status -status: proposed -created: 20230731 -updated: 20240108 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/mrd.md b/docs/terms/mrd.md index a9e9cb174d..0793f06400 100644 --- a/docs/terms/mrd.md +++ b/docs/terms/mrd.md @@ -11,12 +11,7 @@ glossaryAbbr: MRD glossaryText: "a type of [dictionary](@) that is formatted in a way that can be easily processed and interpreted by computers or software programs. It uses the YAML format to represent the [terms](@) and their meanings." grouptags: [ ] formPhrases: [ "machine-readable-dictionar{yies}", "mrd{ss}", "machine-readable-dictionary-mrd{ss}" ] -# Curation status -status: proposed -created: 20230731 -updated: 20230731 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/mrdt.md b/docs/terms/mrdt.md index 322088a8b4..0d28f836c3 100644 --- a/docs/terms/mrdt.md +++ b/docs/terms/mrdt.md @@ -11,12 +11,7 @@ glossaryAbbr: MRDT glossaryText: "a software tool designed to create, manage, and process [Machine Readable Dictionaries (MRDs)](mrd@)." grouptags: [ "tools", "dictionary-tools" ] formPhrases: [ "machine-readable-dictionary-tool{ss}", "mrd-tool{ss}", "mrdt{ss}" ] -# Curation status -status: proposed -created: 20230731 -updated: 20230731 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/named-capturing-group.md b/docs/terms/named-capturing-group.md index 80a152623c..e4ccf9f5ef 100644 --- a/docs/terms/named-capturing-group.md +++ b/docs/terms/named-capturing-group.md @@ -10,12 +10,7 @@ glossaryTerm: "Named Capturing Group" glossaryText: "a sub-pattern within a [regex](@) (called a '[capturing group](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Capturing_group)') that has been given a name, allowing one to refer to that sub-pattern." grouptags: [ ] formPhrases: [ "named-capturing-group{ss}", "capturing-group{ss}" ] -# Curation status -status: proposed -created: 20231220 -updated: 20231220 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/navpath.md b/docs/terms/navpath.md index 7d20b13b5c..60ff8cd66e 100644 --- a/docs/terms/navpath.md +++ b/docs/terms/navpath.md @@ -12,12 +12,7 @@ glossaryNotes: - "The (value of this field) is for the rendered versions of [curated texts](@) what [curatedir](@) is for the [curated texts](@) themselves." grouptags: [ ] formPhrases: [ "navpath{ss}" ] -# Curation status -status: proposed -created: 20221006 -updated: 20221006 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/patterns/pattern-definition.md b/docs/terms/patterns/pattern-definition.md index 5df46d9c3b..e249f4f6aa 100644 --- a/docs/terms/patterns/pattern-definition.md +++ b/docs/terms/patterns/pattern-definition.md @@ -9,12 +9,7 @@ glossaryTerm: "Definition Pattern" glossaryText: "a [mental model](@) that describes the relations between a [concept](@) (or any other [semantic unit](@)), the [term(s)](@) that are used to refer to it, and the [criteria](@) to use for determining whether or not something is an instance (example) of that [semantic unit](@)." grouptags: [ ] formPhrases: [ "definition{ss}-pattern{ss}" ] -# Curation status -status: proposed -created: 20240316 -updated: 20240316 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/patterns/pattern-terminology.md b/docs/terms/patterns/pattern-terminology.md index 5b5574b568..691f74f98c 100644 --- a/docs/terms/patterns/pattern-terminology.md +++ b/docs/terms/patterns/pattern-terminology.md @@ -10,12 +10,7 @@ glossaryTerm: "Terminology Pattern" glossaryText: "a [mental model](@) that describes the relations between a [community](@), its (intangible) [knowledge](@essif-lab), and the artifacts we use to document that [knowledge](@essif-lab), such as [terms](@), [definitions](@), [mental models](@), [glossaries](@), etc." grouptags: [ ] formPhrases: [ "terminology-pattern{ss}" ] -# Curation status -status: proposed -created: 20220606 -updated: 20220606 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/property.md b/docs/terms/property.md index bda8954b20..d1a1f15330 100644 --- a/docs/terms/property.md +++ b/docs/terms/property.md @@ -10,12 +10,7 @@ glossaryTerm: Property (of a Concept) glossaryText: "a connection or association between a [concept](@) and a primitive data element, such as a text or a number, that represents some characteristic that instances of the [concept](@) may have." grouptags: [ "conceptual-modeling" ] formPhrases: [ "propert{yies}" ] -# Curation status -status: proposed -created: 20230731 -updated: 20230731 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/provisional-mrg-entry.md b/docs/terms/provisional-mrg-entry.md index e86bb99fe5..bd86fcc9a7 100644 --- a/docs/terms/provisional-mrg-entry.md +++ b/docs/terms/provisional-mrg-entry.md @@ -10,12 +10,7 @@ glossaryTerm: Provisional MRG Entry glossaryText: "an [MRG entry](@) that is part of a [provisional MRG](@) (under construction); it contains 'raw' data that documents (the [semantic unit](@) referred to by) a [term](@), that is obtained either from (the [header](@) of) a [curated text](@), or from an [MRG entry](@) of some existing [MRG](@)." grouptags: [ ] formPhrases: [ "provisional-mrg-entr{yies}", "provisional-mrgentr{yies}" ] -# Curation status -status: proposed -created: 20231010 -updated: 20231010 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/provisional-mrg.md b/docs/terms/provisional-mrg.md index 4e2c918fb8..b545dcff24 100644 --- a/docs/terms/provisional-mrg.md +++ b/docs/terms/provisional-mrg.md @@ -10,12 +10,7 @@ glossaryTerm: Provisional MRG glossaryText: "a set of [provisional MRG entries](@), to which such [entries](provisional-mrg-entry@) can be added, removed or modified, as specified by [term selection instructions](@), and that are ultimately [further processed](mrgt#post-processing@) to result in a proper [MRG](@)." grouptags: [ ] formPhrases: [ "provisional-mrg{ss}" ] -# Curation status -status: proposed -created: 20231010 -updated: 20231010 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/reader.md b/docs/terms/reader.md index 252a61e886..d025e8700c 100644 --- a/docs/terms/reader.md +++ b/docs/terms/reader.md @@ -10,12 +10,7 @@ glossaryTerm: Reader glossaryText: "a person that reads a text that is authored by another person (its [author](@)), and that tries to understand the meaning of this text in the way its [author](@) intended." grouptags: [ ] formPhrases: [ "reader{ss}" ] -# Curation status -status: proposed -created: 20230723 -updated: 20230723 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/regex.md b/docs/terms/regex.md index 349025e8b4..edbf10848b 100644 --- a/docs/terms/regex.md +++ b/docs/terms/regex.md @@ -13,12 +13,7 @@ glossaryNotes: - "Within [TEv2](@), we use a [JavaScript flavor (ECMAScript 2022)](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp)." grouptags: [ ] formPhrases: [ "regex", "regexes", "regexp{ss}", "regular-expression{ss}" ] -# Curation status -status: proposed -created: 20231219 -updated: 20240108 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/regularized-form-phrase.md b/docs/terms/regularized-form-phrase.md index 2d1c29ab86..e667fad760 100644 --- a/docs/terms/regularized-form-phrase.md +++ b/docs/terms/regularized-form-phrase.md @@ -9,12 +9,7 @@ isa: glossaryTerm: Regularized Form Phrase glossaryText: "a [regularized text](@) that is derived from, and represents a [form phrase](@). They typically appear in the `formPhrases` field of an [MRG entry](@)." formPhrases: [ "regularized-formphrase{ss}", "regularized-form-phrase{ss}" ] -# Curation status -status: proposed -created: 20230731 -updated: 20230731 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/regularized-text.md b/docs/terms/regularized-text.md index 8674080567..f0b015bbb2 100644 --- a/docs/terms/regularized-text.md +++ b/docs/terms/regularized-text.md @@ -11,12 +11,7 @@ glossaryText: "a character string that starts with a lowercase character (`[a-z] glossaryNotes: - "In other words, every text that matches the [regex](@) `^[a-z][a-z_0-9-]*(?<=[^-])$` is a regularized text." formPhrases: [ "regularized-text{ss}", "regulariz{es}" ] -# Curation status -status: proposed -created: 20230731 -updated: 20230731 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/relation.md b/docs/terms/relation.md index 8d0045c815..8a0b84a494 100644 --- a/docs/terms/relation.md +++ b/docs/terms/relation.md @@ -12,12 +12,7 @@ glossaryNotes: - "These connections define the way these [concepts](@) are interrelated, providing insights into how they interact and influence each other." grouptags: [ "conceptual-modeling" ] formPhrases: [ "relation{ss}" ] -# Curation status -status: proposed -created: 20230731 -updated: 20230731 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/renderable-ref.md b/docs/terms/renderable-ref.md index 04c6953be2..7ed55989f1 100644 --- a/docs/terms/renderable-ref.md +++ b/docs/terms/renderable-ref.md @@ -10,12 +10,7 @@ glossaryTerm: Renderable Ref glossaryText: "a text with which the [TRRT](@) replaces a [TermRef](@), that can be processed by specific third party rendering tools, the result of which is a rendering of the original [TermRef](@) that has additional characteristics that help [readers](@) to (better) understand the intention of its [author](@)." grouptags: [ ] formPhrases: [ "renderable-ref{ss}", "renderableref{ss}", "renderable-reference{ss}" ] -# Curation status -status: proposed -created: 20220606 -updated: 20220804 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/saf.md b/docs/terms/saf.md index d55e4babe4..6be1ab2b0e 100644 --- a/docs/terms/saf.md +++ b/docs/terms/saf.md @@ -11,12 +11,7 @@ glossaryAbbr: SAF glossaryText: "a YAML file that contains essential data about a particular [scope](@) (e.g., specifying where its [curated texts](@), [glossaries](@) etc. live), the relationships this [scope](@) has with other [scopes](@), and the specifications of the different [terminologies](@) that are [curated](@) within that [scope](@). The SAF of a [scope](@) is located in its [scopedir](@)." grouptags: [ "terminology-management" ] formPhrases: [ "saf{ss}", "scope-administration-file{ss}", "scope-administration-file{ss}-saf{ss}", "saf{ss}-scope-administration-file{ss}" ] -# Curation status -status: proposed -created: 20230731 -updated: 20230731 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/scope.md b/docs/terms/scope.md index b416a72a23..3e09470673 100644 --- a/docs/terms/scope.md +++ b/docs/terms/scope.md @@ -10,12 +10,7 @@ glossaryTerm: glossaryText: "the extent of the [terms](@), [definitions](@) and other documentation that a [community](@) (or [party](@), which we call the [owner](@essif-lab) of the [scope](@)) needs to express, communicate and validate its [knowledge](@essif-lab) as relevant to achieving a specific subset of its [objectives](@essif-lab)." grouptags: [ ] formPhrases: [ "scope{ss}", "scope-context{ss}" ] -# Curation status -status: proposed -created: 20220606 -updated: 20220804 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/scoped-term.md b/docs/terms/scoped-term.md index db29e2ac67..f88f53b3d1 100644 --- a/docs/terms/scoped-term.md +++ b/docs/terms/scoped-term.md @@ -10,12 +10,7 @@ glossaryTerm: Scoped Term glossaryText: "a [term](@) that represents (and identifies) a specific [semantic unit](@) of a particular [community](@) (or [party](@))." grouptags: [ ] formPhrases: [ "scoped-term{ss}" ] -# Curation status -status: proposed -created: 20220606 -updated: 20220804 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/scopedir.md b/docs/terms/scopedir.md index 0e542f30ff..25de05742c 100644 --- a/docs/terms/scopedir.md +++ b/docs/terms/scopedir.md @@ -10,12 +10,7 @@ glossaryTerm: glossaryText: "a directory in a computer file system that contains all files that are either being [curated](@) within a particular [scope](@), or generated to serve some purpose within that [scope](@)." grouptags: [ ] formPhrases: [ "scopedir{ss}", "scope-director{yies}" ] -# Curation status -status: proposed -created: 20220729 -updated: 20220729 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/scopetag.md b/docs/terms/scopetag.md index 0234ff1532..35ec3089d0 100644 --- a/docs/terms/scopetag.md +++ b/docs/terms/scopetag.md @@ -10,12 +10,7 @@ glossaryTerm: glossaryText: "a [tag](@) that is used to identify [scopes](@) from within a specific [scope](@)" grouptags: [ ] formPhrases: [ "scopetag{ss}", "scope-tag{ss}" ] -# Curation status -status: proposed -created: 20220606 -updated: 20220728 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/semantic-unit.md b/docs/terms/semantic-unit.md index 2766c01dbc..452674fab6 100644 --- a/docs/terms/semantic-unit.md +++ b/docs/terms/semantic-unit.md @@ -13,12 +13,7 @@ glossaryNotes: - "the term '[semantic unit](@)' is often conflated with the term '[concept](@)'." grouptags: [ ] formPhrases: [ "semantic-unit{ss}" ] -# Curation status -status: proposed -created: 20220727 -updated: 20220727 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/semantics.md b/docs/terms/semantics.md index b6b9da0c3c..9e9ad59d7b 100644 --- a/docs/terms/semantics.md +++ b/docs/terms/semantics.md @@ -10,12 +10,7 @@ glossaryTerm: glossaryText: "a mapping between the (tangible/textual) [terms](@) and (intangible) ideas/[concepts](@) - their meaning." grouptags: [ ] formPhrases: [ "semantics" ] -# Curation status -status: proposed -created: 20220606 -updated: 20220606 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/sorter.md b/docs/terms/sorter.md index 4cf2301fc2..a1cbf8b28d 100644 --- a/docs/terms/sorter.md +++ b/docs/terms/sorter.md @@ -10,12 +10,7 @@ glossaryTerm: Sorter glossaryText: "a specification, in the form of a predefined value or a [handlebars template](@), of the value that is to be used for sorting a list, e.g., for sorting [HRG entries](@) within a [HRG list](@)." grouptags: [ ] formPhrases: [ "sorter{ss}" ] -# Curation status -status: proposed -created: 20230731 -updated: 20240108 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/synonym.md b/docs/terms/synonym.md index 6bbe4284bc..f6cc6cba89 100644 --- a/docs/terms/synonym.md +++ b/docs/terms/synonym.md @@ -10,12 +10,7 @@ glossaryTerm: Synonym (of a [term](@)) glossaryText: "a [term](@) that has the same (or sufficiently similar) meaning as another [term](@) (i.e., the [term](@) of which it is a [synonym](@)." grouptags: [ ] formPhrases: [ "synonym{ss}" ] -# Curation status -status: proposed -created: 20221127 -updated: 20221127 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/tag.md b/docs/terms/tag.md index 33e14e35b6..dc01df4058 100644 --- a/docs/terms/tag.md +++ b/docs/terms/tag.md @@ -10,12 +10,7 @@ glossaryTerm: glossaryText: "an alphanumeric string that is used to identify [scopes](@) (so called 'scopetags'), group [terms](@) (so called 'grouptags'), or identify a specific version of a [terminology](@) (so called 'versiontags') from within a specific [scope](@)." grouptags: [ ] formPhrases: [ "tag{ss}" ] -# Curation status -status: proposed -created: 20220606 -updated: 20220606 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/term-identifier.md b/docs/terms/term-identifier.md index 055c49f8ed..9e67e79bac 100644 --- a/docs/terms/term-identifier.md +++ b/docs/terms/term-identifier.md @@ -8,12 +8,7 @@ glossaryText: "a [text](identifier@), of the form `@` is omitted, the current (or default) [terminology](@) is assumed." formPhrases: [ "term-identifier{ss}" ] -# Curation status -status: proposed -created: 20221124 -updated: 20231124 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/term-ref.md b/docs/terms/term-ref.md index ae4fab81ee..7a9a84e43b 100644 --- a/docs/terms/term-ref.md +++ b/docs/terms/term-ref.md @@ -10,12 +10,7 @@ glossaryTerm: TermRef glossaryText: "a word or phrase that is [marked up (in a specific way)](/docs/specs/syntax/term-refs) so that it refers to a particular [concept](@) (or other [semantic unit](@)), enabling it to be rendered in a variety of ways for the purpose of helping [readers](@) to (better) understand the intention of its [author](@)." grouptags: [ ] formPhrases: [ "term-ref{ss}", "termref{ss}", "term-reference{ss}" ] -# Curation status -status: proposed -created: 20220606 -updated: 20220804 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/term-selection-instruction.md b/docs/terms/term-selection-instruction.md index 64ee592fc0..d41b55e188 100644 --- a/docs/terms/term-selection-instruction.md +++ b/docs/terms/term-selection-instruction.md @@ -10,12 +10,7 @@ glossaryTerm: Term Selection Instruction glossaryText: "an instruction that is used to select one or more [terms](scoped-term@) for the purpose of processing their documentation, e.g., to create an [MRG](@)." grouptags: [ "glossary-entries", "terminology-management" ] formPhrases: [ "term-selection-instruction{ss}", "selection-instruction{ss}" ] -# Curation status -status: proposed -created: 20230731 -updated: 20230731 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/term-type.md b/docs/terms/term-type.md index 3a3c8c80c0..455db9e218 100644 --- a/docs/terms/term-type.md +++ b/docs/terms/term-type.md @@ -10,12 +10,7 @@ glossaryTerm: Term Type glossaryText: "a [(regularized) text](regularized-text@) that identifies a particular *kind* of [semantic unit](@) within a particular [scope](@). Examples include `concept`, `relation`, `pattern` (or `mental-model`)." grouptags: [ ] formPhrases: [ "term-type{ss}", "termtype{ss}" ] -# Curation status -status: proposed -created: 20220606 -updated: 20230801 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/term.md b/docs/terms/term.md index ea5a190166..36df93bccb 100644 --- a/docs/terms/term.md +++ b/docs/terms/term.md @@ -15,12 +15,7 @@ glossaryNotes: - "the contents of `term` fields in [headers](@) or [MRG entries](@) are expected to be [regularized texts](@)." grouptags: [ ] formPhrases: [ "term{ss}", "word{ss}", "phrase{ss}" ] -# Curation status -status: proposed -created: 20220606 -updated: 20220809 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/termid.md b/docs/terms/termid.md index eff01903d0..7780d2117f 100644 --- a/docs/terms/termid.md +++ b/docs/terms/termid.md @@ -10,12 +10,7 @@ glossaryTerm: glossaryText: "a text of the form `:` that serves as an unambiguous identifier for a specific [semantic unit](@) in some given [scope](@)." grouptags: [ ] formPhrases: [ "termid{ss}", "term-id{ss}" ] -# Curation status -status: proposed -created: 20220606 -updated: 20220809 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/terminology-identifier.md b/docs/terms/terminology-identifier.md index d7f38cb323..0537a51148 100644 --- a/docs/terms/terminology-identifier.md +++ b/docs/terms/terminology-identifier.md @@ -9,12 +9,7 @@ glossaryNotes: - "If `` and/or `:` is omitted, their values are taken be the current (or default) ones." grouptags: [ ] formPhrases: [ "terminology-identifier{ss}" ] -# Curation status -status: proposed -created: 20230929 -updated: 20230929 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/terminology-process.md b/docs/terms/terminology-process.md index 0ec1d704f9..a290cb245f 100644 --- a/docs/terms/terminology-process.md +++ b/docs/terms/terminology-process.md @@ -10,12 +10,7 @@ glossaryTerm: Terminology Process glossaryText: "a method for recognizing misunderstandings as such, and creating or maintaining [definitions](@) that resolve them." grouptags: [ ] formPhrases: [ "terminology-processes" ] -# Curation status -status: proposed -created: 20230723 -updated: 20230723 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/terminology.md b/docs/terms/terminology.md index e7c74dce46..548c6bf0f8 100644 --- a/docs/terms/terminology.md +++ b/docs/terms/terminology.md @@ -9,12 +9,7 @@ glossaryTerm: glossaryText: "a set of [terms](scoped-term@) that are used within a single [scope](@) to refer to [concepts](@) and other [semantic units](@) of a single [party](@) (e.g. a [community](@)), enabling [parties](@) to reason and communicate ideas they have about one or more specific topics." grouptags: [ ] formPhrases: [ "terminolog{yies}" ] -# Curation status -status: proposed -created: 20220606 -updated: 20220811 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/terms-community.md b/docs/terms/terms-community.md index 342ccdc93e..c960cf746e 100644 --- a/docs/terms/terms-community.md +++ b/docs/terms/terms-community.md @@ -10,12 +10,7 @@ glossaryTerm: Terms Community glossaryText: "a [community](@) that maintains a [terminology](@) for the purpose of avoiding misunderstandings between its members as they collaborate." grouptags: [ ] formPhrases: [ "terms-communit{yies}" ] -# Curation status -status: proposed -created: 20220606 -updated: 20220606 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/tev2-configuration-file.md b/docs/terms/tev2-configuration-file.md index 5c2911b007..44d46128c5 100644 --- a/docs/terms/tev2-configuration-file.md +++ b/docs/terms/tev2-configuration-file.md @@ -6,10 +6,6 @@ bodyFile: /specs/files/90-configuration-file.md glossaryTerm: TEv2 Configuration File glossaryText: "a file that specifies parameters that [TEv2 tools](@) is expected to use when that file is specified when the [tool](tev2-tool@) is called." formPhrases: [ "config file{ss}", "tev2 config file{ss}", "configuration file{ss}", "tev2 configuration file{ss}", ] -status: proposed -created: 20240411 -updated: 20240411 -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/tev2-text-conversion-tool.md b/docs/terms/tev2-text-conversion-tool.md index 96512da3b0..bac30a7cb3 100644 --- a/docs/terms/tev2-text-conversion-tool.md +++ b/docs/terms/tev2-text-conversion-tool.md @@ -10,12 +10,7 @@ glossaryTerm: TEv2 Text Conversion Tool glossaryText: "a [TEv2 tool](@) whose purpose is to convert particular text constructs (such as [TermRefs](@) or [MRGRefs](@)) that exist in one or more files with other texts, the contents of which consists of some fixed construct that is populated with elements derived from existing text constructs and/or other resources." grouptags: [ ] formPhrases: [ "tev2-text-conversion-tool{ss}", "text-conversion-tool{ss}", "conversion-tool{ss}" ] -# Curation status -status: proposed -created: 20240108 -updated: 20240108 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/tev2-tool.md b/docs/terms/tev2-tool.md index e48c8f51cd..6ceeb8bee6 100644 --- a/docs/terms/tev2-tool.md +++ b/docs/terms/tev2-tool.md @@ -10,12 +10,7 @@ glossaryTerm: "TEv2 Tool" glossaryText: "any software application or utility designed to support and streamline various tasks related to terminology management following the TEv2 specifications." grouptags: [ ] formPhrases: [ "tev2-tool{ss}", "tool" ] # NOTE: 'tools' is a formPhrase in `tev2-toolbox` -# Curation status -status: proposed -created: 20230731 -updated: 20230731 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/tev2-toolbox.md b/docs/terms/tev2-toolbox.md index 2d406aa7a4..6c0d843cde 100644 --- a/docs/terms/tev2-toolbox.md +++ b/docs/terms/tev2-toolbox.md @@ -12,12 +12,7 @@ glossaryNotes: - "These tools assist [curators](@) in various tasks related to the curation, creation, and maintenance of terminological assets." grouptags: [ ] formPhrases: [ "tev2-toolbox", "toolbox", "tools" ] # NOTE: 'tool' is a formPhrase in `tev2-tool` -# Curation status -status: proposed -created: 20230731 -updated: 20230731 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/tev2.md b/docs/terms/tev2.md index 3542170242..a439bff388 100644 --- a/docs/terms/tev2.md +++ b/docs/terms/tev2.md @@ -8,12 +8,7 @@ termType: concept isa: glossaryTerm: TEv2 glossaryText: "a set of specifications and [tools](@) that caters for the [curation](@) of [terminologies](@), as well as for its subsequent use in publications of different types (e.g. websites, whitepapers) and formats (e.g. html, LaTeX), as appropriate for different, individual [scopes](@)." -# Curation status -status: proposed -created: 20220919 -updated: 20220919 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/trrt.md b/docs/terms/trrt.md index a34f7ee18b..de7a3c7af2 100644 --- a/docs/terms/trrt.md +++ b/docs/terms/trrt.md @@ -9,10 +9,6 @@ glossaryAbbr: TRRT glossaryText: "a [TEv2 tool](@) that is designed to facilitate the visualization and rendering of [TermRefs](@)." grouptags: [ "tev2-tool", "tev2-toolbox" ] formPhrases: [ "trrt{ss}", "termref-rendering-tool{ss}", "term-ref-rendering-tool{ss}", "termref-resolution-tool{ss}", "term-ref-resolution-tool{ss}" ] -status: proposed -created: 20230731 -updated: 20230731 -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/use-case.md b/docs/terms/use-case.md index 8a006e15c3..f70ca144cc 100644 --- a/docs/terms/use-case.md +++ b/docs/terms/use-case.md @@ -10,12 +10,7 @@ glossaryTerm: "Use-Case" glossaryText: "a [semantic unit](@) that captures a specific situation or example used to illustrate how a [mental model](@) (or other [semantic units](@)) can be used." grouptags: [ ] formPhrases: [ "use-case{ss}", "usecase{ss}" ] -# Curation status -status: proposed -created: 20240130 -updated: 20240130 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/versiontag.md b/docs/terms/versiontag.md index e2b2b588eb..7d3b3550f6 100644 --- a/docs/terms/versiontag.md +++ b/docs/terms/versiontag.md @@ -10,12 +10,7 @@ glossaryTerm: glossaryText: "a [tag](@) that is used to identify a specific version of a [terminology](@) from within a specific [scope](@)." grouptags: [ ] formPhrases: [ "versiontag{ss}", "version tag{ss}", "vsntag{ss}" ] -# Curation status -status: proposed -created: 20220606 -updated: 20220728 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" --- diff --git a/docs/terms/vocabulary.md b/docs/terms/vocabulary.md index 68cc64771d..8259c8fda1 100644 --- a/docs/terms/vocabulary.md +++ b/docs/terms/vocabulary.md @@ -10,12 +10,7 @@ glossaryTerm: glossaryText: "the sum or stock of words employed by a language, group, individual, or work or in a field of knowledge." grouptags: [ ] formPhrases: [ "vocabular{yies}" ] -# Curation status -status: proposed -created: 20220606 -updated: 20220606 # Origins/Acknowledgements -contributors: RieksJ attribution: "[TNO Terminology Design](https://tno-terminology-design.github.io/tev2-specifications/docs)" originalLicense: "[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1)" ---