The project and issue type mappings.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProjectIssueTypeMappings", "title": "ProjectIssueTypeMappings", "additionalProperties": false, "description": "The project and issue type mappings.", "properties": { "mappings": { "description": "The project and issue type mappings.", "items": { "$ref": "#/components/schemas/ProjectIssueTypeMapping" }, "type": "array", "writeOnly": true } }, "required": [ "mappings" ], "type": "object" }