2021-08-11 17:17:55 +00:00
|
|
|
# Team
|
|
|
|
|
|
|
|
This schema defines the Team entity. A Team is a group of zero or more users. Teams can own zero or more data assets.
|
|
|
|
|
2021-11-15 21:35:54 +05:30
|
|
|
**$id:**[**https://open-metadata.org/schema/entity/teams/team.json**](https://open-metadata.org/schema/entity/teams/team.json)
|
2021-08-11 17:17:55 +00:00
|
|
|
|
|
|
|
Type: `object`
|
|
|
|
|
2021-12-09 18:19:32 +05:30
|
|
|
This schema <u>does not</u> accept additional properties.
|
|
|
|
|
2021-08-11 17:17:55 +00:00
|
|
|
## Properties
|
2022-01-25 22:19:15 +05:30
|
|
|
- **id** `required`
|
|
|
|
- $ref: [../../type/basic.json#/definitions/uuid](../types/basic.md#uuid)
|
|
|
|
- **name** `required`
|
|
|
|
- $ref: [#/definitions/teamName](#teamname)
|
|
|
|
- **displayName**
|
|
|
|
- Name used for display purposes. Example 'Data Science team'.
|
|
|
|
- Type: `string`
|
|
|
|
- **description**
|
|
|
|
- Description of the team.
|
|
|
|
- Type: `string`
|
|
|
|
- **version**
|
|
|
|
- Metadata version of the entity.
|
|
|
|
- $ref: [../../type/entityHistory.json#/definitions/entityVersion](../types/entityhistory.md#entityversion)
|
|
|
|
- **updatedAt**
|
|
|
|
- Last update time corresponding to the new version of the entity in Unix epoch time milliseconds.
|
|
|
|
- $ref: [../../type/basic.json#/definitions/timestamp](../types/basic.md#timestamp)
|
|
|
|
- **updatedBy**
|
|
|
|
- User who made the update.
|
|
|
|
- Type: `string`
|
|
|
|
- **href** `required`
|
|
|
|
- Link to the resource corresponding to this entity.
|
|
|
|
- $ref: [../../type/basic.json#/definitions/href](../types/basic.md#href)
|
|
|
|
- **profile**
|
|
|
|
- Team profile information.
|
|
|
|
- $ref: [../../type/profile.json](../types/profile.md)
|
|
|
|
- **users**
|
|
|
|
- Users that are part of the team.
|
|
|
|
- $ref: [../../type/entityReference.json#/definitions/entityReferenceList](../types/entityreference.md#entityreferencelist)
|
|
|
|
- **owns**
|
|
|
|
- List of entities owned by the team.
|
|
|
|
- $ref: [../../type/entityReference.json#/definitions/entityReferenceList](../types/entityreference.md#entityreferencelist)
|
|
|
|
- **changeDescription**
|
|
|
|
- Change that lead to this version of the entity.
|
|
|
|
- $ref: [../../type/entityHistory.json#/definitions/changeDescription](../types/entityhistory.md#changedescription)
|
|
|
|
- **deleted**
|
|
|
|
- When `true` indicates the entity has been soft deleted.
|
|
|
|
- Type: `boolean`
|
|
|
|
- Default: _false_
|
2022-03-08 09:23:53 +05:30
|
|
|
- **defaultRoles**
|
|
|
|
- Roles to be assigned to all users that are part of this team.
|
|
|
|
- $ref: [../../type/entityReference.json#/definitions/entityReferenceList](../types/entityreference.md#entityreferencelist)
|
2021-08-26 13:33:44 +05:30
|
|
|
|
|
|
|
|
2022-01-25 22:19:15 +05:30
|
|
|
## Type definitions in this schema
|
2021-11-13 23:03:20 +05:30
|
|
|
### teamName
|
2021-09-19 08:43:31 +05:30
|
|
|
|
2022-01-25 22:19:15 +05:30
|
|
|
- A unique name of the team typically the team ID from an identity provider. Example - group Id from LDAP.
|
|
|
|
- Type: `string`
|
|
|
|
- Length: between 1 and 128
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-08-26 13:33:44 +05:30
|
|
|
|
2022-03-10 12:55:35 +05:30
|
|
|
_This document was updated on: Wednesday, March 9, 2022_
|