Atlassian · Schema
ProjectIssueCreateMetadata
Details of the issue creation metadata for a project.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| avatarUrls | object | List of the project's avatars, returning the avatar size and associated URL. |
| expand | string | Expand options that include additional project issue create metadata details in the response. |
| id | string | The ID of the project. |
| issuetypes | array | List of the issue types supported by the project. |
| key | string | The key of the project. |
| name | string | The name of the project. |
| self | string | The URL of the project. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProjectIssueCreateMetadata",
"title": "ProjectIssueCreateMetadata",
"additionalProperties": false,
"description": "Details of the issue creation metadata for a project.",
"properties": {
"avatarUrls": {
"allOf": [
{
"$ref": "#/components/schemas/AvatarUrlsBean"
}
],
"description": "List of the project's avatars, returning the avatar size and associated URL.",
"readOnly": true
},
"expand": {
"description": "Expand options that include additional project issue create metadata details in the response.",
"readOnly": true,
"type": "string",
"xml": {
"attribute": true
}
},
"id": {
"description": "The ID of the project.",
"readOnly": true,
"type": "string"
},
"issuetypes": {
"description": "List of the issue types supported by the project.",
"items": {
"$ref": "#/components/schemas/IssueTypeIssueCreateMetadata"
},
"readOnly": true,
"type": "array"
},
"key": {
"description": "The key of the project.",
"readOnly": true,
"type": "string"
},
"name": {
"description": "The name of the project.",
"readOnly": true,
"type": "string"
},
"self": {
"description": "The URL of the project.",
"readOnly": true,
"type": "string"
}
},
"type": "object"
}