Showing 497 of 497 total issues

Function connect has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
Open

  connect(reconnectInterval?: number, clientId?: number): void {
    // create the IBApiNext object

    const port = (this.cmdLineArgs.port as number) ?? configuration.ib_port;
    const host = (this.cmdLineArgs.host as string) ?? configuration.ib_host;
Severity: Minor
Found in src/tools/common/ib-api-next-app.ts - About 2 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Similar blocks of code found in 4 locations. Consider refactoring.
Open

  private decodeMsg_REROUTE_MKT_DEPTH(): void {
    const reqId = this.readInt();
    const conId = this.readInt();
    const exchange = this.readStr();
    this.emit(EventName.rerouteMktDepthReq, reqId, conId, exchange);
Severity: Major
Found in src/core/io/decoder.ts and 3 other locations - About 2 hrs to fix
src/core/io/decoder.ts on lines 1372..1377
src/core/io/decoder.ts on lines 2208..2214
src/core/io/decoder.ts on lines 2521..2527

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 76.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 4 locations. Consider refactoring.
Open

  private decodeMsg_REROUTE_MKT_DATA(): void {
    const reqId = this.readInt();
    const conId = this.readInt();
    const exchange = this.readStr();
    this.emit(EventName.rerouteMktDataReq, reqId, conId, exchange);
Severity: Major
Found in src/core/io/decoder.ts and 3 other locations - About 2 hrs to fix
src/core/io/decoder.ts on lines 1382..1387
src/core/io/decoder.ts on lines 2208..2214
src/core/io/decoder.ts on lines 2521..2527

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 76.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 4 locations. Consider refactoring.
Open

  private decodeMsg_ORDER_BOUND(): void {
    const orderId = this.readInt();
    const apiClientId = this.readDouble();
    const apiOrderId = this.readInt();

Severity: Major
Found in src/core/io/decoder.ts and 3 other locations - About 2 hrs to fix
src/core/io/decoder.ts on lines 1372..1377
src/core/io/decoder.ts on lines 1382..1387
src/core/io/decoder.ts on lines 2208..2214

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 76.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 4 locations. Consider refactoring.
Open

  private decodeMsg_NEWS_ARTICLE(): void {
    const reqId = this.readInt();
    const articleType = this.readInt();
    const articleText = this.readStr();

Severity: Major
Found in src/core/io/decoder.ts and 3 other locations - About 2 hrs to fix
src/core/io/decoder.ts on lines 1372..1377
src/core/io/decoder.ts on lines 1382..1387
src/core/io/decoder.ts on lines 2521..2527

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 76.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Function decodeMsg_PORTFOLIO_VALUE has 50 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  private decodeMsg_PORTFOLIO_VALUE(): void {
    const version = this.readInt();

    const contract: Contract = {};
    if (version >= 6) {
Severity: Minor
Found in src/core/io/decoder.ts - About 2 hrs to fix

    Similar blocks of code found in 5 locations. Consider refactoring.
    Open

      private decodeMsg_RECEIVE_FA(): void {
        this.readInt(); // version
        const faDataType = this.readInt();
        const xml = this.readStr();
    
    
    Severity: Major
    Found in src/core/io/decoder.ts and 4 other locations - About 2 hrs to fix
    src/core/io/decoder.ts on lines 1755..1761
    src/core/io/decoder.ts on lines 1830..1836
    src/core/io/decoder.ts on lines 1923..1929
    src/core/io/decoder.ts on lines 1934..1940

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 75.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 5 locations. Consider refactoring.
    Open

      private decodeMsg_FUNDAMENTAL_DATA(): void {
        this.readInt(); // version
        const reqId = this.readInt();
        const data = this.readStr();
    
    
    Severity: Major
    Found in src/core/io/decoder.ts and 4 other locations - About 2 hrs to fix
    src/core/io/decoder.ts on lines 1262..1268
    src/core/io/decoder.ts on lines 1830..1836
    src/core/io/decoder.ts on lines 1923..1929
    src/core/io/decoder.ts on lines 1934..1940

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 75.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 5 locations. Consider refactoring.
    Open

      private decodeMsg_DISPLAY_GROUP_LIST(): void {
        this.readInt(); // version
        const reqId = this.readInt();
        const list = this.readStr();
    
    
    Severity: Major
    Found in src/core/io/decoder.ts and 4 other locations - About 2 hrs to fix
    src/core/io/decoder.ts on lines 1262..1268
    src/core/io/decoder.ts on lines 1755..1761
    src/core/io/decoder.ts on lines 1830..1836
    src/core/io/decoder.ts on lines 1934..1940

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 75.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 5 locations. Consider refactoring.
    Open

      private decodeMsg_MARKET_DATA_TYPE(): void {
        this.readInt(); // version
        const reqId = this.readInt();
        const marketDataType = this.readInt();
    
    
    Severity: Major
    Found in src/core/io/decoder.ts and 4 other locations - About 2 hrs to fix
    src/core/io/decoder.ts on lines 1262..1268
    src/core/io/decoder.ts on lines 1755..1761
    src/core/io/decoder.ts on lines 1923..1929
    src/core/io/decoder.ts on lines 1934..1940

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 75.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 5 locations. Consider refactoring.
    Open

      private decodeMsg_DISPLAY_GROUP_UPDATED(): void {
        this.readInt(); // version
        const reqId = this.readInt();
        const contractInfo = this.readStr();
    
    
    Severity: Major
    Found in src/core/io/decoder.ts and 4 other locations - About 2 hrs to fix
    src/core/io/decoder.ts on lines 1262..1268
    src/core/io/decoder.ts on lines 1755..1761
    src/core/io/decoder.ts on lines 1830..1836
    src/core/io/decoder.ts on lines 1923..1929

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 75.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Function reqWshEventData has 49 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      reqWshEventData(reqId: number, wshEventData: WshEventData): void {
        if (this.serverVersion < MIN_SERVER_VER.WSHE_CALENDAR) {
          return this.emitError(
            "It does not support WSHE Calendar API.",
            ErrorCode.UPDATE_TWS,
    Severity: Minor
    Found in src/core/io/encoder.ts - About 1 hr to fix

      Function constructor has 48 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        constructor(options?: IBApiNextCreationOptions) {
          this.logger = new IBApiNextLogger(options?.logger ?? new ConsoleLogger());
      
          // create the IBApiAutoConnection and subscription registry
      
      
      Severity: Minor
      Found in src/api-next/api-next.ts - About 1 hr to fix

        Function reqMktDepth has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
        Open

          reqMktDepth(
            tickerId: number,
            contract: Contract,
            numRows: number,
            isSmartDepth: boolean,
        Severity: Minor
        Found in src/core/io/encoder.ts - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function onData has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
        Open

          private onData(data: Buffer): void {
            if (this.useV100Plus) {
              let dataToParse = data;
              if (this._v100MessageBuffer.length > 0) {
                dataToParse = Buffer.concat([this._v100MessageBuffer, data]);
        Severity: Minor
        Found in src/core/io/socket.ts - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function decodeMsg_BOND_CONTRACT_DATA has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
        Open

          private decodeMsg_BOND_CONTRACT_DATA(): void {
            let version = 6;
            if (this.serverVersion < MIN_SERVER_VER.SIZE_RULES) {
              version = this.readInt();
            }
        Severity: Minor
        Found in src/core/io/decoder.ts - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Identical blocks of code found in 2 locations. Consider refactoring.
        Open

            if (this.serverVersion >= MIN_SERVER_VER.SIZE_RULES) {
              contract.minSize = this.readDecimal();
              contract.sizeIncrement = this.readDecimal();
              contract.suggestedSizeIncrement = this.readDecimal();
            }
        Severity: Major
        Found in src/core/io/decoder.ts and 1 other location - About 1 hr to fix
        src/core/io/decoder.ts on lines 1490..1494

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 73.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 7 locations. Consider refactoring.
        Open

          cancelTickByTickData(reqId: number): void {
            if (this.serverVersion < MIN_SERVER_VER.TICK_BY_TICK) {
              return this.emitError(
                "It does not support tick-by-tick data cancels.",
                ErrorCode.UPDATE_TWS,
        Severity: Major
        Found in src/core/io/encoder.ts and 6 other locations - About 1 hr to fix
        src/core/io/encoder.ts on lines 1801..1811
        src/core/io/encoder.ts on lines 1836..1846
        src/core/io/encoder.ts on lines 3001..3011
        src/core/io/encoder.ts on lines 3187..3197
        src/core/io/encoder.ts on lines 3202..3212
        src/core/io/encoder.ts on lines 3217..3227

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 73.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Identical blocks of code found in 2 locations. Consider refactoring.
        Open

            if (this.serverVersion >= MIN_SERVER_VER.SIZE_RULES) {
              contract.minSize = this.readDecimal();
              contract.sizeIncrement = this.readDecimal();
              contract.suggestedSizeIncrement = this.readDecimal();
            }
        Severity: Major
        Found in src/core/io/decoder.ts and 1 other location - About 1 hr to fix
        src/core/io/decoder.ts on lines 1050..1054

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 73.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 7 locations. Consider refactoring.
        Open

          cancelHeadTimestamp(tickerId: number): void {
            if (this.serverVersion < MIN_SERVER_VER.CANCEL_HEADTIMESTAMP) {
              return this.emitError(
                "It does not support head time stamp requests canceling.",
                ErrorCode.UPDATE_TWS,
        Severity: Major
        Found in src/core/io/encoder.ts and 6 other locations - About 1 hr to fix
        src/core/io/encoder.ts on lines 1801..1811
        src/core/io/encoder.ts on lines 1836..1846
        src/core/io/encoder.ts on lines 2388..2398
        src/core/io/encoder.ts on lines 3001..3011
        src/core/io/encoder.ts on lines 3187..3197
        src/core/io/encoder.ts on lines 3217..3227

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 73.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Severity
        Category
        Status
        Source
        Language