jira.js
    Preparing search index...

    Function findSchemaObjectTypes

    • Find all object types for this object schema

      Parameters

      • client: Client
      • parameters: { excludeAbstract?: boolean; id: string }
        • OptionalexcludeAbstract?: boolean

          If true, filters out Abstract Object Types from the results

        • id: string

          The object schema id

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              abstractObjectType: boolean;
              created: Date;
              description?: string;
              globalId: string;
              icon: {
                  id: string;
                  name: string;
                  url16: string;
                  url48: string;
                  [key: string]: unknown;
              };
              id: string;
              inherited: boolean;
              name: string;
              objectCount: number;
              objectSchemaId: string;
              parentObjectTypeId?: number;
              parentObjectTypeInherited: boolean;
              position: number;
              type?: number;
              updated: Date;
              workspaceId: string;
              [key: string]: unknown;
          }[],
      >