OpenMetadata · Schema
Team
Data CatalogMetadataData GovernanceData LineageData QualityOpen SourceData DiscoveryData Observability
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| teamType | string | |
| name | string | |
| string | ||
| fullyQualifiedName | string | |
| displayName | string | |
| externalId | string | |
| description | string | |
| version | number | |
| updatedAt | integer | |
| updatedBy | string | |
| impersonatedBy | string | |
| href | string | |
| profile | object | |
| parents | array | |
| children | array | |
| users | array | |
| childrenCount | integer | |
| userCount | integer | |
| owns | array | |
| owners | array | |
| isJoinable | boolean | |
| changeDescription | object | |
| incrementalChangeDescription | object | |
| deleted | boolean | |
| defaultRoles | array | |
| inheritedRoles | array | |
| defaultPersona | object | |
| policies | array | |
| domains | array | |
| provider | string | |
| extension | object | |
| service | object | |
| style | object | |
| tags | array | |
| followers | array | |
| experts | array | |
| reviewers | array | |
| dataProducts | array | |
| dataContract | object | |
| usageSummary | object | |
| entityStatus | string | |
| votes | object | |
| lifeCycle | object | |
| certification | object |
JSON Schema
{
"required": [
"id",
"name"
],
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"teamType": {
"type": "string",
"enum": [
"Group",
"Department",
"Division",
"BusinessUnit",
"Organization"
]
},
"name": {
"maxLength": 256,
"minLength": 1,
"pattern": "^((?!::).)*$",
"type": "string"
},
"email": {
"maxLength": 127,
"minLength": 6,
"pattern": "^[\\S.!#$%&\u2019*+/=?^_`{|}~-]+@\\S+\\.\\S+$",
"type": "string"
},
"fullyQualifiedName": {
"maxLength": 3072,
"minLength": 1,
"type": "string"
},
"displayName": {
"type": "string"
},
"externalId": {
"type": "string"
},
"description": {
"type": "string"
},
"version": {
"type": "number",
"format": "double"
},
"updatedAt": {
"type": "integer",
"format": "int64"
},
"updatedBy": {
"type": "string"
},
"impersonatedBy": {
"type": "string"
},
"href": {
"type": "string",
"format": "uri"
},
"profile": {
"$ref": "#/components/schemas/Profile"
},
"parents": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EntityReference"
}
},
"children": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EntityReference"
}
},
"users": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EntityReference"
}
},
"childrenCount": {
"type": "integer",
"format": "int32"
},
"userCount": {
"type": "integer",
"format": "int32"
},
"owns": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EntityReference"
}
},
"owners": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EntityReference"
}
},
"isJoinable": {
"type": "boolean"
},
"changeDescription": {
"$ref": "#/components/schemas/ChangeDescription"
},
"incrementalChangeDescription": {
"$ref": "#/components/schemas/ChangeDescription"
},
"deleted": {
"type": "boolean"
},
"defaultRoles": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EntityReference"
}
},
"inheritedRoles": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EntityReference"
}
},
"defaultPersona": {
"$ref": "#/components/schemas/EntityReference"
},
"policies": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EntityReference"
}
},
"domains": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EntityReference"
}
},
"provider": {
"type": "string",
"enum": [
"system",
"user",
"automation"
]
},
"extension": {
"type": "object"
},
"service": {
"$ref": "#/components/schemas/EntityReference"
},
"style": {
"$ref": "#/components/schemas/Style"
},
"tags": {
"type": "array",
"items": {
"$ref": "#/components/schemas/TagLabel"
}
},
"followers": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EntityReference"
}
},
"experts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EntityReference"
}
},
"reviewers": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EntityReference"
}
},
"dataProducts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EntityReference"
}
},
"dataContract": {
"$ref": "#/components/schemas/EntityReference"
},
"usageSummary": {
"$ref": "#/components/schemas/UsageDetails"
},
"entityStatus": {
"type": "string",
"enum": [
"Draft",
"In Review",
"Approved",
"Archived",
"Deprecated",
"Rejected",
"Unprocessed"
]
},
"votes": {
"$ref": "#/components/schemas/Votes"
},
"lifeCycle": {
"$ref": "#/components/schemas/LifeCycle"
},
"certification": {
"$ref": "#/components/schemas/AssetCertification"
}
},
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/openmetadata/main/json-schema/team.json"
}