- HTTP リクエスト
- クエリ パラメータ
- リクエストの本文
- レスポンスの本文
- 認可スコープ
- FieldLimits
<ph type="x-smartling-placeholder">
- </ph>
- JSON 表現
- TextLimits
<ph type="x-smartling-placeholder">
- </ph>
- JSON 表現
- LongTextLimits
<ph type="x-smartling-placeholder">
- </ph>
- JSON 表現
- IntegerLimits
<ph type="x-smartling-placeholder">
- </ph>
- JSON 表現
- DateLimits
<ph type="x-smartling-placeholder">
- </ph>
- JSON 表現
- UserLimits
<ph type="x-smartling-placeholder">
- </ph>
- JSON 表現
- ListLimits
<ph type="x-smartling-placeholder">
- </ph>
- JSON 表現
- SelectionLimits
<ph type="x-smartling-placeholder">
- </ph>
- JSON 表現
- 試してみる
ラベルの構造に関する制約を取得します。たとえば、許可されるフィールドの最大数やラベル タイトルの最大長などです。
HTTP リクエスト
GET https://drivelabels.googleapis.com/v2beta/limits/label
この URL は gRPC Transcoding 構文を使用します。
クエリ パラメータ
パラメータ | |
---|---|
name |
必須。ラベル リビジョンのリソース名: 「limits/label」 |
リクエスト本文
リクエストの本文は空にする必要があります。
レスポンスの本文
ラベルの構造を管理するラベルの制約。たとえば、許可されるフィールドの最大数やラベル タイトルの最大長などです。
成功した場合、レスポンスの本文には次の構造のデータが含まれます。
JSON 表現 |
---|
{
"name": string,
"maxTitleLength": integer,
"maxDescriptionLength": integer,
"maxFields": integer,
"maxDeletedFields": integer,
"maxDraftRevisions": integer,
"fieldLimits": {
object ( |
フィールド | |
---|---|
name |
リソース名。 |
maxTitleLength |
タイトルに使用できる最大文字数。 |
maxDescriptionLength |
説明文の最大文字数。 |
maxFields |
ラベル内で許可されるフィールドの最大数。 |
maxDeletedFields |
削除できる公開済みフィールドの最大数。 |
maxDraftRevisions |
古い下書きを削除する前に保持される下書きのリビジョンの最大数。 |
fieldLimits |
フィールドの上限。 |
認可スコープ
次の OAuth スコープのいずれかが必要です。
https://www.googleapis.com/auth/drive.labels
https://www.googleapis.com/auth/drive.labels.readonly
https://www.googleapis.com/auth/drive.admin.labels
https://www.googleapis.com/auth/drive.admin.labels.readonly
詳細については、承認ガイドをご覧ください。
FieldLimits
フィールドの構造を制御するフィールド定数。たとえば、タイトルの最大長、最小と最大のフィールド値、長さなどです。
JSON 表現 |
---|
{ "maxIdLength": integer, "maxDisplayNameLength": integer, "maxDescriptionLength": integer, "textLimits": { object ( |
フィールド | |
---|---|
maxIdLength |
ID の最大長。 |
maxDisplayNameLength |
[項目のタイトル] の制限事項 |
maxDescriptionLength |
フィールドの説明(ヘルプテキストとも呼ばれます)の上限。 |
textLimits |
指定された Field.Type に関連する制限。テキスト フィールドの上限 |
longTextLimits |
長いテキスト フィールドの制限。 |
integerLimits |
整数フィールドの上限。 |
dateLimits |
日付フィールドの制限。 |
userLimits |
ユーザー フィールドの制限。 |
selectionLimits |
選択フィールドの上限。 |
TextLimits
テキスト フィールド タイプの制限。
JSON 表現 |
---|
{ "minLength": integer, "maxLength": integer } |
フィールド | |
---|---|
minLength |
テキスト フィールド タイプに使用できる最小文字数。 |
maxLength |
テキスト フィールド タイプの最大文字数です。 |
LongTextLimits
長いテキストのフィールド タイプに関する制限
JSON 表現 |
---|
{ "minLength": integer, "maxLength": integer } |
フィールド | |
---|---|
minLength |
長いテキスト フィールド タイプに使用できる最小文字数。 |
maxLength |
長いテキスト フィールド タイプで使用できる最大文字数。 |
IntegerLimits
整数型のフィールドに対する制限。
JSON 表現 |
---|
{ "minValue": string, "maxValue": string } |
フィールド | |
---|---|
minValue |
整数フィールド タイプの最小値。 |
maxValue |
整数フィールド タイプの最大値。 |
DateLimits
date フィールド タイプの制限。
JSON 表現 |
---|
{ "minValue": { object ( |
フィールド | |
---|---|
minValue |
日付フィールド タイプの最小値。 |
maxValue |
日付フィールド タイプの最大値。 |
UserLimits
Field.Type.USER の上限。
JSON 表現 |
---|
{
"listLimits": {
object ( |
フィールド | |
---|---|
listLimits |
フィールド型の list-variant に関する制限。 |
ListLimits
フィールド型の list-variant に関する制限。
JSON 表現 |
---|
{ "maxEntries": integer } |
フィールド | |
---|---|
maxEntries |
フィールド タイプに指定できる値の最大数。 |
SelectionLimits
選択フィールド タイプに関する制限。
JSON 表現 |
---|
{
"listLimits": {
object ( |
フィールド | |
---|---|
listLimits |
フィールド型の list-variant に関する制限。 |
maxIdLength |
選択オプションの ID の最大長。 |
maxDisplayNameLength |
表示名の最大長。 |
maxChoices |
選択肢の最大数。 |
maxDeletedChoices |
削除する選択肢の最大数。 |