export interface GetScreensForField {
  /** The ID of the field to return screens for. */
  fieldId: string;
  /** The index of the first item to return in a page of results (page offset). */
  startAt?: number;
  /** The maximum number of items to return per page. */
  maxResults?: number;
  /**
   * Use [expand](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#expansion) to include additional
   * information about screens in the response. This parameter accepts `tab` which returns details about the screen tabs
   * the field is used in.
   */
  expand?: string;
}
