@esm-js/jira.js
Version:
A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.
16 lines (15 loc) • 573 B
text/typescript
/** The schema of a field. */
export interface JsonType {
/** The data type of the field. */
type: string;
/** When the data type is an array, the name of the field items within the array. */
items?: string;
/** If the field is a system field, the name of the field. */
system?: string;
/** If the field is a custom field, the URI of the field. */
custom?: string;
/** If the field is a custom field, the custom ID of the field. */
customId?: number;
/** If the field is a custom field, the configuration of the field. */
configuration?: unknown;
}