多言語サポートを備えたレキシコンドキュメントを保存するための主要なレコードタイプです。
Record Key
nsid
Properties
createdAt
string
datetime
Required
このドキュメントレコードが作成されたタイムスタンプです。ISO 8601の日時形式を使用します。
definitions
array
of
ref
#definitionDoc
Optional
「main」、名前付き型、またはその他のスキーマコンポーネントなど、レキシコン内の特定の定義に関するドキュメントです。
description
array
of
ref
#localizedString
Optional
レキシコン全体のローカライズされた説明です。各エントリは特定の言語での説明を提供します。
lexicon
string
nsid
Required
ドキュメント化されるレキシコンのNSIDです。有効な名前空間識別子である必要があります。
View raw schema
{
"key": "nsid",
"type": "record",
"record": {
"type": "object",
"required": [
"lexicon",
"createdAt"
],
"properties": {
"lexicon": {
"type": "string",
"format": "nsid",
"description": "The NSID of the lexicon being documented."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when this documentation was created."
},
"definitions": {
"type": "array",
"items": {
"ref": "#definitionDoc",
"type": "ref"
},
"description": "Documentation for specific definitions within the lexicon (e.g., main, replyRef)."
},
"description": {
"type": "array",
"items": {
"ref": "#localizedString",
"type": "ref"
},
"description": "Localized descriptions for the lexicon."
}
}
},
"description": "Auxiliary documentation for a lexicon schema, supporting localized descriptions for the lexicon and its properties."
}