453 lines
19 KiB
Markdown
Raw Normal View History

2021-08-04 06:53:40 +00:00
# user
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
```txt
2021-08-04 13:18:14 +05:30
https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json
2021-08-01 14:27:44 -07:00
```
User entity that is part of an organization
2021-08-04 06:53:40 +00:00
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :------------------ | :--------- | :------------- | :----------- | :---------------- | :-------------------- | :------------------ | :------------------------------------------------------------------------- |
2021-08-04 13:18:14 +05:30
| Can be instantiated | Yes | Unknown status | No | Forbidden | Allowed | none | [user.json](../../https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json "open original schema") |
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
## User entity Type
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
`object` ([User entity](user.md))
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
# User entity Properties
2021-08-01 14:27:44 -07:00
2021-08-04 07:49:14 +00:00
| Property | Type | Required | Nullable | Defined by |
| :-------------------------- | :-------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
2021-08-04 06:53:40 +00:00
| [id](#id) | `string` | Required | cannot be null | [Basic type](../types/basic.md#basic-definitions-uuid) |
2021-08-04 13:18:14 +05:30
| [name](#name) | `string` | Required | cannot be null | [User entity](#user-properties-name "https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json#/properties/name") |
| [displayName](#displayname) | `string` | Optional | cannot be null | [User entity](#user-properties-displayname "https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json#/properties/displayName") |
2021-08-04 06:53:40 +00:00
| [email](#email) | `string` | Required | cannot be null | [Basic type](../types/basic.md#basic-definitions-email) |
| [href](#href) | `string` | Required | cannot be null | [Basic type](../types/basic.md#basic-definitions-href) |
2021-08-04 13:18:14 +05:30
| [timezone](#timezone) | `string` | Optional | cannot be null | [User entity](#user-properties-timezone "https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json#/properties/timezone") |
| [deactivated](#deactivated) | `boolean` | Optional | cannot be null | [User entity](#user-properties-deactivated "https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json#/properties/deactivated") |
| [isBot](#isbot) | `boolean` | Optional | cannot be null | [User entity](#user-properties-isbot "https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json#/properties/isBot") |
| [isAdmin](#isadmin) | `boolean` | Optional | cannot be null | [User entity](#user-properties-isAdmin "https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json#/properties/isAdmin") |
2021-08-04 06:53:40 +00:00
| [profile](#profile) | `object` | Optional | cannot be null | [Profile type](../types/profile.md) |
| [teams](#teams) | `array` | Optional | cannot be null | [Entity Reference type](../types/entityreference.md#entityreference-definitions-entityreferencelist) |
| [owns](#owns) | `array` | Optional | cannot be null | [Entity Reference type](../types/entityreference.md#entityreference-definitions-entityreferencelist) |
| [follows](#follows) | `array` | Optional | cannot be null | [Entity Reference type](../types/entityreference.md#entityreference-definitions-entityreferencelist) |
## id
2021-08-01 14:27:44 -07:00
Unique id used to identify an entity
`id`
2021-08-04 06:53:40 +00:00
* is required
* Type: `string`
* cannot be null
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
* defined in: [Basic type](../types/basic.md#basic-definitions-uuid)
### id Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-04 06:53:40 +00:00
### id Constraints
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
**UUID**: the string must be a UUID, according to [RFC 4122](https://tools.ietf.org/html/rfc4122 "check the specification")
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
## name
2021-08-01 14:27:44 -07:00
Unique name of the user typically the user ID from the identify provider. Example - uid from ldap.
`name`
2021-08-04 06:53:40 +00:00
* is required
* Type: `string`
* cannot be null
2021-08-01 14:27:44 -07:00
2021-08-04 13:18:14 +05:30
* defined in: [User entity](#user-properties-name "https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json#/properties/name")
2021-08-04 06:53:40 +00:00
### name Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-04 06:53:40 +00:00
### name Constraints
2021-08-01 14:27:44 -07:00
**maximum length**: the maximum number of characters for this string is: `64`
**minimum length**: the minimum number of characters for this string is: `1`
2021-08-04 06:53:40 +00:00
## displayName
2021-08-01 14:27:44 -07:00
Name used for display purposes. Example 'FirstName LastName'
`displayName`
2021-08-04 06:53:40 +00:00
* is optional
* Type: `string`
* cannot be null
2021-08-01 14:27:44 -07:00
2021-08-04 13:18:14 +05:30
* defined in: [User entity](#user-properties-displayname "https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json#/properties/displayName")
2021-08-04 06:53:40 +00:00
### displayName Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-04 06:53:40 +00:00
## email
2021-08-01 14:27:44 -07:00
Email address of user or other entities
`email`
2021-08-04 06:53:40 +00:00
* is required
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
* Type: `string`
* cannot be null
* defined in: [Basic type](../types/basic.md#basic-definitions-email)
### email Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-04 06:53:40 +00:00
### email Constraints
2021-08-01 14:27:44 -07:00
**maximum length**: the maximum number of characters for this string is: `127`
**minimum length**: the minimum number of characters for this string is: `6`
2021-08-04 06:53:40 +00:00
**pattern**: the string must match the following regular expression:
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
```regexp
2021-08-01 14:27:44 -07:00
^\S+@\S+\.\S+$
```
2021-08-04 06:53:40 +00:00
[try pattern](https://regexr.com/?expression=%5E%5CS%2B%40%5CS%2B%5C.%5CS%2B%24 "try regular expression with regexr.com")
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
**email**: the string must be an email address, according to [RFC 5322, section 3.4.1](https://tools.ietf.org/html/rfc5322 "check the specification")
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
## href
2021-08-01 14:27:44 -07:00
Link to the resource corresponding to this entity
> Link to the resource
`href`
2021-08-04 06:53:40 +00:00
* is required
* Type: `string`
* cannot be null
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
* defined in: [Basic type](../types/basic.md#basic-definitions-href)
### href Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-04 06:53:40 +00:00
### href Constraints
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
**URI**: the string must be a URI, according to [RFC 3986](https://tools.ietf.org/html/rfc3986 "check the specification")
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
## timezone
2021-08-01 14:27:44 -07:00
Timezone of the user
`timezone`
2021-08-04 06:53:40 +00:00
* is optional
* Type: `string`
* cannot be null
2021-08-01 14:27:44 -07:00
2021-08-04 13:18:14 +05:30
* defined in: [User entity](#user-properties-timezone "https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json#/properties/timezone")
2021-08-04 06:53:40 +00:00
### timezone Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-04 06:53:40 +00:00
### timezone Constraints
2021-08-01 14:27:44 -07:00
**unknown format**: the value of this string must follow the format: `timezone`
2021-08-04 06:53:40 +00:00
## deactivated
2021-08-01 14:27:44 -07:00
`deactivated`
2021-08-04 06:53:40 +00:00
* is optional
* Type: `boolean`
* cannot be null
2021-08-01 14:27:44 -07:00
2021-08-04 13:18:14 +05:30
* defined in: [User entity](#user-properties-deactivated "https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json#/properties/deactivated")
2021-08-04 06:53:40 +00:00
### deactivated Type
2021-08-01 14:27:44 -07:00
`boolean`
2021-08-04 06:53:40 +00:00
## isBot
2021-08-01 14:27:44 -07:00
`isBot`
2021-08-04 06:53:40 +00:00
* is optional
* Type: `boolean`
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
* cannot be null
2021-08-04 13:18:14 +05:30
* defined in: [User entity](#user-properties-isbot "https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json#/properties/isBot")
2021-08-04 06:53:40 +00:00
### isBot Type
2021-08-01 14:27:44 -07:00
`boolean`
2021-08-04 06:53:40 +00:00
## isAdmin
2021-08-01 14:27:44 -07:00
When true indicates user is an adiministrator for the sytem with superuser privileges
`isAdmin`
2021-08-04 06:53:40 +00:00
* is optional
* Type: `boolean`
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
* cannot be null
2021-08-04 13:18:14 +05:30
* defined in: [User entity](#user-properties-isAdmin "https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json#/properties/isAdmin")
2021-08-04 06:53:40 +00:00
### isAdmin Type
2021-08-01 14:27:44 -07:00
`boolean`
2021-08-04 06:53:40 +00:00
## profile
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
Type used to capture profile of a user, team, or an organization
2021-08-01 14:27:44 -07:00
`profile`
2021-08-04 06:53:40 +00:00
* is optional
* Type: `object` ([Type used to capture profile of a user, team, or an organization](profile.md))
* cannot be null
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
* defined in: [Profile type](../types/profile.md)
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
### profile Type
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
`object` ([Type used to capture profile of a user, team, or an organization](profile.md))
## teams
2021-08-01 14:27:44 -07:00
Teams that the user belongs to
`teams`
2021-08-04 06:53:40 +00:00
* is optional
* Type: `object[]` ([Entity Reference](entityreference.md))
* cannot be null
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
* defined in: [Entity Reference type](../types/entityreference.md#entityreference-definitions-entityreferencelist)
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
### teams Type
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
`object[]` ([Entity Reference](entityreference.md))
## owns
2021-08-01 14:27:44 -07:00
Entities owned by the user
`owns`
2021-08-04 06:53:40 +00:00
* is optional
* Type: `object[]` ([Entity Reference](entityreference.md))
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
* cannot be null
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
* defined in: [Entity Reference type](../types/entityreference.md#entityreference-definitions-entityreferencelist)
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
### owns Type
`object[]` ([Entity Reference](entityreference.md))
## follows
2021-08-01 14:27:44 -07:00
Entities followed by the user
`follows`
2021-08-04 06:53:40 +00:00
* is optional
* Type: `object[]` ([Entity Reference](entityreference.md))
* cannot be null
* defined in: [Entity Reference type](../types/entityreference.md#entityreference-definitions-entityreferencelist)
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
### follows Type
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
`object[]` ([Entity Reference](entityreference.md))
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
# User entity Definitions
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
## Definitions group userName
2021-08-01 14:27:44 -07:00
Reference this group by using
2021-08-04 06:53:40 +00:00
```json
2021-08-04 13:18:14 +05:30
{"$ref":"https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json#/definitions/userName"}
2021-08-01 14:27:44 -07:00
```
| Property | Type | Required | Nullable | Defined by |
2021-08-04 06:53:40 +00:00
| :------- | :--- | :------- | :------- | :--------- |
# user-definitions-username
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
```txt
2021-08-04 13:18:14 +05:30
https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/api/teams/createUser.json#/properties/name
2021-08-01 14:27:44 -07:00
```
Unique name of the user typically the user ID from the identify provider. Example - uid from ldap.
2021-08-04 06:53:40 +00:00
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :----------------------------------------------------------------------------------- |
2021-08-04 13:18:14 +05:30
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [createUser.json*](../../https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/api/teams/createUser.json "open original schema") |
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
## name Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-04 06:53:40 +00:00
## name Constraints
2021-08-01 14:27:44 -07:00
**maximum length**: the maximum number of characters for this string is: `64`
**minimum length**: the minimum number of characters for this string is: `1`
2021-08-04 06:53:40 +00:00
# user-definitions
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
```txt
2021-08-04 13:18:14 +05:30
https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json#/definitions
2021-08-01 14:27:44 -07:00
```
2021-08-04 06:53:40 +00:00
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------- |
2021-08-04 13:18:14 +05:30
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [user.json*](../../https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json "open original schema") |
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
## definitions Type
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
unknown
# user-properties-deactivated
```txt
2021-08-04 13:18:14 +05:30
https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json#/properties/deactivated
2021-08-01 14:27:44 -07:00
```
2021-08-04 06:53:40 +00:00
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------- |
2021-08-04 13:18:14 +05:30
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [user.json*](../../https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json "open original schema") |
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
## deactivated Type
`boolean`
# user-properties-displayname
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
```txt
2021-08-04 13:18:14 +05:30
https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json#/properties/displayName
2021-08-01 14:27:44 -07:00
```
Name used for display purposes. Example 'FirstName LastName'
2021-08-04 06:53:40 +00:00
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------- |
2021-08-04 13:18:14 +05:30
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [user.json*](../../https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json "open original schema") |
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
## displayName Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-04 06:53:40 +00:00
# user-properties-isadmin
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
```txt
2021-08-04 13:18:14 +05:30
https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json#/properties/isAdmin
2021-08-01 14:27:44 -07:00
```
When true indicates user is an adiministrator for the sytem with superuser privileges
2021-08-04 06:53:40 +00:00
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------- |
2021-08-04 13:18:14 +05:30
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [user.json*](../../https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json "open original schema") |
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
## isAdmin Type
2021-08-01 14:27:44 -07:00
`boolean`
2021-08-04 06:53:40 +00:00
# user-properties-isbot
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
```txt
2021-08-04 13:18:14 +05:30
https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json#/properties/isBot
2021-08-01 14:27:44 -07:00
```
2021-08-04 06:53:40 +00:00
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------- |
2021-08-04 13:18:14 +05:30
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [user.json*](../../https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json "open original schema") |
2021-08-04 06:53:40 +00:00
## isBot Type
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
`boolean`
# user-properties-name
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
```txt
2021-08-04 13:18:14 +05:30
https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json#/properties/name
2021-08-01 14:27:44 -07:00
```
Unique name of the user typically the user ID from the identify provider. Example - uid from ldap.
2021-08-04 06:53:40 +00:00
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------- |
2021-08-04 13:18:14 +05:30
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [user.json*](../../https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json "open original schema") |
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
## name Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-04 06:53:40 +00:00
## name Constraints
2021-08-01 14:27:44 -07:00
**maximum length**: the maximum number of characters for this string is: `64`
**minimum length**: the minimum number of characters for this string is: `1`
2021-08-04 06:53:40 +00:00
# user-properties-timezone
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
```txt
2021-08-04 13:18:14 +05:30
https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json#/properties/timezone
2021-08-01 14:27:44 -07:00
```
Timezone of the user
2021-08-04 06:53:40 +00:00
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------- |
2021-08-04 13:18:14 +05:30
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [user.json*](../../https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/teams/user.json "open original schema") |
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
## timezone Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-04 06:53:40 +00:00
## timezone Constraints
2021-08-01 14:27:44 -07:00
**unknown format**: the value of this string must follow the format: `timezone`