Label
Organiza tus páginas con colecciones
Guarda y categoriza el contenido según tus preferencias.
Es la representación de una etiqueta y sus campos.
Representación JSON |
{
"fields": {
string: {
object (Field )
},
...
},
"id": string,
"revisionId": string,
"kind": string
} |
Campos |
fields |
map (key: string, value: object (Field ))
Es un mapa de los campos de la etiqueta, con el ID del campo como clave. Es un objeto que contiene una lista de pares "key": value . Ejemplo: { "name": "wrench", "mass": "1.3kg", "count": "3" } .
|
id |
string
Es el ID de la etiqueta.
|
revisionId |
string
Es el ID de revisión de la etiqueta.
|
kind |
string
Siempre es drive#label .
|
Campo
Es la representación del campo, que es un par clave-valor escrito.
Representación JSON |
{
"dateString": [
string
],
"integer": [
string
],
"selection": [
string
],
"text": [
string
],
"user": [
{
object (User )
}
],
"kind": string,
"id": string,
"valueType": string
} |
Campos |
dateString[] |
string
Solo está presente si valueType es dateString . Fecha con formato RFC 3339: AAAA-MM-DD.
|
integer[] |
string (int64 format)
Solo está presente si valueType es integer .
|
selection[] |
string
Solo está presente si valueType es selection .
|
text[] |
string
Solo está presente si valueType es text .
|
user[] |
object (User )
Solo está presente si valueType es user .
|
kind |
string
Siempre es drive#labelField .
|
id |
string
Es el identificador de este campo de etiqueta.
|
valueType |
string
Es el tipo de campo. Si bien es posible que se admitan valores nuevos en el futuro, actualmente se permiten los siguientes:
dateString
integer
selection
text
user
|
Salvo que se indique lo contrario, el contenido de esta página está sujeto a la licencia Atribución 4.0 de Creative Commons, y los ejemplos de código están sujetos a la licencia Apache 2.0. Para obtener más información, consulta las políticas del sitio de Google Developers. Java es una marca registrada de Oracle o sus afiliados.
Última actualización: 2025-07-24 (UTC)
[null,null,["Última actualización: 2025-07-24 (UTC)"],[],[],null,["# Label\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n- [Field](#Field)\n - [JSON representation](#Field.SCHEMA_REPRESENTATION)\n\nRepresentation of a label and label fields.\n\n| JSON representation |\n|------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"fields\": { string: { object (/workspace/drive/api/reference/rest/v2/Label#Field) }, ... }, \"id\": string, \"revisionId\": string, \"kind\": string } ``` |\n\n| Fields ||\n|--------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `fields` | `map (key: string, value: object (`[Field](/workspace/drive/api/reference/rest/v2/Label#Field)`))` A map of the fields on the label, keyed by the field's ID. An object containing a list of `\"key\": value` pairs. Example: `{ \"name\": \"wrench\", \"mass\": \"1.3kg\", \"count\": \"3\" }`. |\n| `id` | `string` The ID of the label. |\n| `revisionId` | `string` The revision ID of the label. |\n| `kind` | `string` This is always `drive#label` |\n\nField\n-----\n\nRepresentation of field, which is a typed key-value pair.\n\n| JSON representation |\n|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"dateString\": [ string ], \"integer\": [ string ], \"selection\": [ string ], \"text\": [ string ], \"user\": [ { object (/workspace/drive/api/reference/rest/v2/User) } ], \"kind\": string, \"id\": string, \"valueType\": string } ``` |\n\n| Fields ||\n|----------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `dateString[]` | `string` Only present if `valueType` is `dateString`. RFC 3339 formatted date: YYYY-MM-DD. |\n| `integer[]` | `string (`[int64](https://developers.google.com/discovery/v1/type-format)` format)` Only present if `valueType` is `integer`. |\n| `selection[]` | `string` Only present if `valueType` is `selection` |\n| `text[]` | `string` Only present if `valueType` is `text`. |\n| `user[]` | `object (`[User](/workspace/drive/api/reference/rest/v2/User)`)` Only present if `valueType` is `user`. |\n| `kind` | `string` This is always `drive#labelField`. |\n| `id` | `string` The identifier of this label field. |\n| `valueType` | `string` The field type. While new values may be supported in the future, the following are currently allowed: - `dateString` - `integer` - `selection` - `text` - `user` |"]]