APIs.io Engineering Platform · Schema
Team
Groups of organization members that gives permissions on specified repositories.
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| deleted | boolean | |
| description | string | Description of the team |
| html_url | string | |
| id | integer | Unique identifier of the team |
| members_url | string | |
| name | string | Name of the team |
| node_id | string | |
| parent | object | |
| permission | string | Permission that the team will have for its repositories |
| privacy | string | |
| repositories_url | string | |
| slug | string | |
| url | string | URL for the team |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/webhooks_team_1",
"title": "Team",
"description": "Groups of organization members that gives permissions on specified repositories.",
"type": "object",
"properties": {
"deleted": {
"type": "boolean"
},
"description": {
"description": "Description of the team",
"type": "string",
"nullable": true
},
"html_url": {
"type": "string",
"format": "uri"
},
"id": {
"description": "Unique identifier of the team",
"type": "integer"
},
"members_url": {
"type": "string",
"format": "uri-template"
},
"name": {
"description": "Name of the team",
"type": "string"
},
"node_id": {
"type": "string"
},
"parent": {
"type": "object",
"nullable": true,
"properties": {
"description": {
"description": "Description of the team",
"type": "string",
"nullable": true
},
"html_url": {
"type": "string",
"format": "uri"
},
"id": {
"description": "Unique identifier of the team",
"type": "integer"
},
"members_url": {
"type": "string",
"format": "uri-template"
},
"name": {
"description": "Name of the team",
"type": "string"
},
"node_id": {
"type": "string"
},
"permission": {
"description": "Permission that the team will have for its repositories",
"type": "string"
},
"privacy": {
"type": "string",
"enum": [
"open",
"closed",
"secret"
]
},
"repositories_url": {
"type": "string",
"format": "uri"
},
"slug": {
"type": "string"
},
"url": {
"description": "URL for the team",
"type": "string",
"format": "uri"
}
},
"required": [
"name",
"id",
"node_id",
"slug",
"description",
"privacy",
"url",
"html_url",
"members_url",
"repositories_url",
"permission"
]
},
"permission": {
"description": "Permission that the team will have for its repositories",
"type": "string"
},
"privacy": {
"type": "string",
"enum": [
"open",
"closed",
"secret"
]
},
"repositories_url": {
"type": "string",
"format": "uri"
},
"slug": {
"type": "string"
},
"url": {
"description": "URL for the team",
"type": "string",
"format": "uri"
}
},
"required": [
"name",
"id"
]
}