json.schema.entity.teams.team.json Maven / Gradle / Ivy
The newest version!
{
"$id": "https://open-metadata.org/schema/entity/teams/team.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Team",
"description": "This schema defines the Team entity. A Team is a group of zero or more users. Teams can own zero or more data assets.",
"type": "object",
"javaType": "org.openmetadata.catalog.entity.teams.Team",
"javaInterfaces": ["org.openmetadata.core.entity.interfaces.EntityInterface"],
"properties": {
"id": {
"$ref": "../../type/basic.json#/definitions/uuid"
},
"name": {
"description": "A unique name of the team typically the team ID from an identity provider. Example - group Id from LDAP.",
"$ref": "../../type/basic.json#/definitions/entityName"
},
"fullyQualifiedName": {
"description": "FullyQualifiedName same as `name`.",
"$ref": "../../type/basic.json#/definitions/fullyQualifiedEntityName"
},
"displayName": {
"description": "Name used for display purposes. Example 'Data Science team'.",
"type": "string"
},
"description": {
"description": "Description of the team.",
"$ref": "../../type/basic.json#/definitions/markdown"
},
"version": {
"description": "Metadata version of the entity.",
"$ref": "../../type/entityHistory.json#/definitions/entityVersion"
},
"updatedAt": {
"description": "Last update time corresponding to the new version of the entity in Unix epoch time milliseconds.",
"$ref": "../../type/basic.json#/definitions/timestamp"
},
"updatedBy": {
"description": "User who made the update.",
"type": "string"
},
"href": {
"description": "Link to the resource corresponding to this entity.",
"$ref": "../../type/basic.json#/definitions/href"
},
"profile": {
"description": "Team profile information.",
"$ref": "../../type/profile.json"
},
"users": {
"description": "Users that are part of the team.",
"$ref": "../../type/entityReference.json#/definitions/entityReferenceList",
"default": null
},
"owns": {
"description": "List of entities owned by the team.",
"$ref": "../../type/entityReference.json#/definitions/entityReferenceList"
},
"owner": {
"description": "Owner of this team. ",
"$ref": "../../type/entityReference.json",
"default": null
},
"isJoinable": {
"description": "Can any user join this team during sign up? Value of true indicates yes, and false no.",
"type": "boolean",
"default": true
},
"changeDescription": {
"description": "Change that lead to this version of the entity.",
"$ref": "../../type/entityHistory.json#/definitions/changeDescription"
},
"deleted": {
"description": "When `true` indicates the entity has been soft deleted.",
"type": "boolean",
"default": false
},
"defaultRoles": {
"description": "Default roles of a team. These roles will be inherited by all the users that are part of this team.",
"$ref": "../../type/entityReference.json#/definitions/entityReferenceList"
}
},
"required": ["id", "name", "href"],
"additionalProperties": false
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy