Part of the WebMEM Protocol
Location: /specification/sdt/yaml-in-html/classes/definedtermfragment/
Last Updated: 2025-07-28
Overview
A DefinedTermFragment is a semantic memory unit that encapsulates the canonical definition of a glossary term. It includes the term’s name, formal definition, provenance metadata, and semantic context via glossary scope and linked related terms.
Each fragment is scoped to a unique entity representing the term ID (e.g., gtp:trust_fragment) and is designed to enable AI systems to resolve, cite, and align terminology consistently across fragments, digests, and domains.
Unlike DataFragment, which presents facts, the DefinedTermFragment defines meaning and plays a foundational role in glossary federation, AI retrievability, and memory disambiguation in GTP-aligned systems.
Required Provenance Fields
| Field | Description |
|---|---|
ID |
Unique identifier for the ProvenanceMeta block; reused across glossary terms. |
Title |
Name of the glossary or term set (e.g., “TrustPublishing Glossary”). |
Description |
Purpose or coverage of the glossary for agents and indexers. |
Creator |
Person or org responsible for defining the term (e.g., TrustPublishing). |
Home |
Canonical homepage or index page for the glossary. |
License |
Terms of reuse for the content (e.g., CC0, CC-BY). |
Published |
ISO 8601 date the term was last updated or defined. |
Retrieved |
Date the fragment was exported or reflected. |
Entity |
Canonical ID of the term (e.g., gtp:trust_fragment). |
GlossaryScope |
Namespace the term belongs to (e.g., gtp). |
FragmentScope |
Declares the function or trust layer this term supports. |
Optional Provenance Fields
| Field | Description |
|---|---|
Tags |
Semantic labels for filtering and classification. |
RelatedTerms |
Canonical glossary terms that relate to this entry (e.g., gtp:trust_layer). |
Guidelines |
URL to editorial or usage policy documentation. |
Default fragment_scope
This fragment class defaults to gtp. It should be used for glossary terms published via the Glossary Term Protocol (GTP). Use this scope to ensure AI systems resolve terms in the correct semantic namespace.
Full Example: DefinedTermFragment Template
<template
id="fragment-gtp-trust-fragment"
data-visibility-fragment
data-sdt-class="DefinedTermFragment"
data-type="text/yaml"
data-entity="gtp:trust_fragment"
data-digest="trust-glossary-2025"
data-glossary-scope="gtp"
data-fragment-scope="gtp">
# YAML Header
data-sdt-class: DefinedTermFragment
entity: gtp:trust_fragment
digest: trust-glossary-2025
glossary_scope: gtp
fragment_scope: gtp
# Definition Block
definition: >
A trust fragment is a machine-ingestible unit of structured knowledge that includes provenance, citation, and retrieval logic. It is used to condition AI systems to reflect on source structure, reason over entity alignment, and preserve trust scoring during model interaction or citation.
# Related Terms
related_terms:
- gtp:semantic_digest
- gtp:trust_layer
- gtp:ai_visibility
tags:
- ai
- trust
- glossary
# Provenance Block
ProvenanceMeta:
ID: gtp-core-terms
Title: Glossary Term Protocol Core Vocabulary
Description: Canonical glossary terms used to define the foundational concepts of GTP.
Creator: TrustPublishing.com
Home: https://trustpublishing.com/glossary/
License: CC-BY
Published: 2025-07-01
Retrieved: 2025-07-28
Digest: trust-glossary-2025
Entity: gtp:trust_fragment
GlossaryScope: gtp
FragmentScope: gtp
Guidelines: https://trustpublishing.com/glossary/guidelines
Tags:
- trust
- memory
- ai
</template>