{ "$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" }