日付メタデータフィールド
日付メタデータフィールド
date
タイプのメタデータフィールドは、日付選択機能としてユーザーに表示されます。
日付フィールドの作成
date
フィールドは、メタデータテンプレートの作成時、ま たはaddField
操作によるテンプレートの更新時にメタデータテンプレートに追加できます。
date
フィールドの必須属性は、type
、displayName
、およびkey
です。
{
"scope": "enterprise",
"displayName": "Contract",
"fields": [
{
"type": "date",
"key": "effective_date",
"displayName": "Effective Date",
"description": "The effective date when the contract goes in effect",
"hidden": false
}
]
}
必要に応じて、UIでユーザーに表示されるdescription
を指定できます。また、このフィールドをhidden
に設定して、ウェブアプリとモバイルアプリでユーザーに表示されないようにすることもできます。
日付フィールドの更新
date
テンプレートフィールドは、このフィールドが属するテンプレートを更新することで更新できます。テンプレートの更新は、ファイルまたはフォルダにすでに割り当てられているテンプレートも確実に更新される操作によって行われます。
date
メタデータフィールドを更新する際、関連する操作は、フィールドのkey
、displayName
、description
、およびhidden
の値を変更するのに使用できるeditField
操作のみです。
[
{
"op": "editField",
"fieldKey": "effective_date",
"data": {
"displayName": "Effective Contract Date",
"description": "The contract's effective date",
"key": "effective_contract_date",
"hidden": true
}
}
]