310 lines
13 KiB
Markdown
Raw Normal View History

2021-08-04 06:53:40 +00:00
# team
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
```txt
https://github.com/open-metadata/OpenMetadata/blob/schema-scripts/catalog-rest-service/src/main/resources/json/schema/entity/teams/team.json
2021-08-01 14:27:44 -07:00
```
Team entity
2021-08-04 06:53:40 +00:00
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :------------------ | :--------- | :------------- | :----------- | :---------------- | :-------------------- | :------------------ | :------------------------------------------------------------------------- |
| Can be instantiated | No | Unknown status | No | Forbidden | Allowed | none | [team.json](../../https://github.com/open-metadata/OpenMetadata/blob/schema-scripts/catalog-rest-service/src/main/resources/json/schema/entity/teams/team.json "open original schema") |
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
## Team entity Type
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
`object` ([Team entity](team.md))
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
# Team entity Properties
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
| Property | Type | Required | Nullable | Defined by |
| :-------------------------- | :-------- | :------- | :------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [id](#id) | `string` | Required | cannot be null | [Basic type](../types/basic.md#basic-definitions-uuid) |
| [name](#name) | `string` | Required | cannot be null | [Team entity](#team-properties-name "https://github.com/open-metadata/OpenMetadata/blob/schema-scripts/catalog-rest-service/src/main/resources/json/schema/entity/teams/team.json#/properties/name") |
| [displayName](#displayname) | `string` | Optional | cannot be null | [Team entity](#team-properties-displayname "https://github.com/open-metadata/OpenMetadata/blob/schema-scripts/catalog-rest-service/src/main/resources/json/schema/entity/teams/team.json#/properties/displayName") |
| [description](#description) | `string` | Optional | cannot be null | [Team entity](#team-properties-description "https://github.com/open-metadata/OpenMetadata/blob/schema-scripts/catalog-rest-service/src/main/resources/json/schema/entity/teams/team.json#/properties/description") |
| [href](#href) | `string` | Required | cannot be null | [Basic type](../types/basic.md#basic-definitions-href) |
| [profile](#profile) | `object` | Optional | cannot be null | [Profile type](../types/profile.md) |
| [deleted](#deleted) | `boolean` | Optional | cannot be null | [Team entity](#team-properties-deleted "https://github.com/open-metadata/OpenMetadata/blob/schema-scripts/catalog-rest-service/src/main/resources/json/schema/entity/teams/team.json#/properties/deleted") |
| [users](#users) | `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) |
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
## 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
* defined in: [Basic type](../types/basic.md#basic-definitions-uuid)
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
### 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 team typically the team ID from the identify provider. Example - group Id from ldap.
`name`
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: [Team entity](#team-properties-name "https://github.com/open-metadata/OpenMetadata/blob/schema-scripts/catalog-rest-service/src/main/resources/json/schema/entity/teams/team.json#/properties/name")
### 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 'Data Science team'
`displayName`
2021-08-04 06:53:40 +00:00
* is optional
* Type: `string`
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
* cannot be null
* defined in: [Team entity](#team-properties-displayname "https://github.com/open-metadata/OpenMetadata/blob/schema-scripts/catalog-rest-service/src/main/resources/json/schema/entity/teams/team.json#/properties/displayName")
### displayName Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-04 06:53:40 +00:00
## description
2021-08-01 14:27:44 -07:00
Description of the team
`description`
2021-08-04 06:53:40 +00:00
* is optional
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
* Type: `string`
* cannot be null
* defined in: [Team entity](#team-properties-description "https://github.com/open-metadata/OpenMetadata/blob/schema-scripts/catalog-rest-service/src/main/resources/json/schema/entity/teams/team.json#/properties/description")
### description Type
2021-08-01 14:27:44 -07:00
`string`
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
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
* Type: `string`
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
* cannot be null
* defined in: [Basic type](../types/basic.md#basic-definitions-href)
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
### href Type
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
`string`
### 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
## 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
* defined in: [Profile type](../types/profile.md)
### 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))
## deleted
2021-08-01 14:27:44 -07:00
`deleted`
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
* defined in: [Team entity](#team-properties-deleted "https://github.com/open-metadata/OpenMetadata/blob/schema-scripts/catalog-rest-service/src/main/resources/json/schema/entity/teams/team.json#/properties/deleted")
### deleted Type
2021-08-01 14:27:44 -07:00
`boolean`
2021-08-04 06:53:40 +00:00
## users
2021-08-01 14:27:44 -07:00
Users that are part of the team
`users`
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
### users 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 team
`owns`
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
### owns Type
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
`object[]` ([Entity Reference](entityreference.md))
# team-defintions-teamname
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
```txt
https://github.com/open-metadata/OpenMetadata/blob/schema-scripts/catalog-rest-service/src/main/resources/json/schema/api/teams/createTeam.json#/properties/name
2021-08-01 14:27:44 -07:00
```
Unique name of the team typically the team ID from the identify provider. Example - group Id from ldap.
2021-08-04 06:53:40 +00:00
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :----------------------------------------------------------------------------------- |
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [createTeam.json*](../../../../out/api/teams/createTeam.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
# team-defintions
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
```txt
https://github.com/open-metadata/OpenMetadata/blob/schema-scripts/catalog-rest-service/src/main/resources/json/schema/entity/teams/team.json#/defintions
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 |
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------- |
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [team.json*](../../https://github.com/open-metadata/OpenMetadata/blob/schema-scripts/catalog-rest-service/src/main/resources/json/schema/entity/teams/team.json "open original schema") |
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
## defintions Type
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
unknown
# team-properties-deleted
```txt
https://github.com/open-metadata/OpenMetadata/blob/schema-scripts/catalog-rest-service/src/main/resources/json/schema/entity/teams/team.json#/properties/deleted
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 |
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------- |
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [team.json*](../../https://github.com/open-metadata/OpenMetadata/blob/schema-scripts/catalog-rest-service/src/main/resources/json/schema/entity/teams/team.json "open original schema") |
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
## deleted Type
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
`boolean`
# team-properties-description
```txt
https://github.com/open-metadata/OpenMetadata/blob/schema-scripts/catalog-rest-service/src/main/resources/json/schema/entity/teams/team.json#/properties/description
2021-08-01 14:27:44 -07:00
```
Description of the team
2021-08-04 06:53:40 +00:00
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------- |
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [team.json*](../../https://github.com/open-metadata/OpenMetadata/blob/schema-scripts/catalog-rest-service/src/main/resources/json/schema/entity/teams/team.json "open original schema") |
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
## description Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-04 06:53:40 +00:00
# team-properties-displayname
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
```txt
https://github.com/open-metadata/OpenMetadata/blob/schema-scripts/catalog-rest-service/src/main/resources/json/schema/entity/teams/team.json#/properties/displayName
2021-08-01 14:27:44 -07:00
```
Name used for display purposes. Example 'Data Science team'
2021-08-04 06:53:40 +00:00
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------- |
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [team.json*](../../https://github.com/open-metadata/OpenMetadata/blob/schema-scripts/catalog-rest-service/src/main/resources/json/schema/entity/teams/team.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
# team-properties-name
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
```txt
https://github.com/open-metadata/OpenMetadata/blob/schema-scripts/catalog-rest-service/src/main/resources/json/schema/entity/teams/team.json#/properties/name
2021-08-01 14:27:44 -07:00
```
Unique name of the team typically the team ID from the identify provider. Example - group Id from ldap.
2021-08-04 06:53:40 +00:00
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------------- |
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [team.json*](../../https://github.com/open-metadata/OpenMetadata/blob/schema-scripts/catalog-rest-service/src/main/resources/json/schema/entity/teams/team.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`