/** The project and issue type mapping with a matching custom field context. */
export interface ContextForProjectAndIssueType {
  /** The ID of the custom field context. */
  contextId: string;
  /** The ID of the issue type. */
  issueTypeId: string;
  /** The ID of the project. */
  projectId: string;
}
