glossary.schema.json
A framework-scoped glossary: the set of terms a specific authority (a regulation, standard, or framework) defines, with the sense each term carries inside that authority's text. The same term may appear in many glossaries with different senses; a glossary records what one authority means, not what a word means in general.
type · thingOpen Controls vocabularystatus · publishedv1
{
"Glossary": {
"@type": "Glossary",
"schemaVersion": 1,
"glossaryName": "String",
"glossaryEntries": [
{
"glossaryEntries(item)": {
"@type": "GlossaryEntries(item)",
"term": "String",
"partOfSpeech": "String",
"senseNumber": "Integer",
"senseLabel": "String",
"senseDefinition": "String",
"mandatory": "Boolean",
"status": "String",
"confidenceScore": "Decimal"
}
}
]
}
}{
"Glossary": {
"@type": "Glossary",
"schemaVersion": 1,
"description": "A framework-scoped glossary: the set of terms a specific authority (a regulation, standard, or framework) defines, with the sense each term carries inside that authority's text. The same term may appear in many glossaries with different senses; a glossary records what one authority means, not what a word means in general.",
"glossaryName": {
"description": "Display name of the authority this glossary belongs to.",
"type": "String"
},
"glossaryEntries": [
{
"description": "The terms this authority defines.",
"glossaryEntries(item)": {
"@type": "GlossaryEntries(item)",
"term": {
"description": "Canonical form of the term being defined.",
"type": "String"
},
"partOfSpeech": {
"description": "Grammatical class of the term. Allowed values: noun, verb, adjective, adverb.",
"type": "String"
},
"senseNumber": {
"description": "Ordinal of this sense within the authority's usage of the term; 1 unless the authority itself uses the term in more than one sense.",
"type": "Integer"
},
"senseLabel": {
"description": "Short label distinguishing this sense from the term's other senses, when one exists.",
"nullable": true,
"type": "String"
},
"senseDefinition": {
"description": "The definition as this authority uses the term — quoted or closely paraphrased from the authority's own text.",
"type": "String"
},
"mandatory": {
"description": "True when the authority mandates this exact sense (a defined term in the legal sense) rather than merely using the word.",
"nullable": true,
"type": "Boolean"
},
"status": {
"description": "Release status: Released, In Review, or On Hold.",
"type": "String"
},
"confidenceScore": {
"description": "A numeric representation of the level of confidence that was found during an operation.",
"type": "Decimal"
}
}
}
]
}
}