An example value for a lexicon schema
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"lexicon",
"value",
"createdAt"
],
"properties": {
"value": {
"type": "unknown",
"description": "The example itself."
},
"lexicon": {
"type": "string",
"format": "nsid",
"description": "The NSID that the example is of."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "The user-supplied date and time the example was created."
},
"description": {
"type": "string",
"description": "A description of the example."
}
}
},
"description": "An example value for a lexicon schema"
}