filestack/filestack-swift

View on GitHub

Showing 260 of 260 total issues

Function handleResponse has 29 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    func handleResponse(response: JSONResponse) {
        // Ensure that there's a response and JSON payload or fail.
        guard let json = response.json else {
            finish(with: .failure(.custom("Unable to obtain JSON from /multipart/start response.")))
            return
Severity: Minor
Found in Sources/FilestackSDK/Internal/Operations/StartUploadOperation.swift - About 1 hr to fix

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

            stub(condition: cdnStubConditions) { _ in
                let stubPath = Helpers.url(forResource: "sample", withExtension: "jpg", subdirectory: "Fixtures")!.path
    
                let httpHeaders: [AnyHashable: Any] = [
                    "Content-Type": "image/jpeg",
    Severity: Major
    Found in Tests/FilestackSDKTests/FileLinkTests.swift and 1 other location - About 1 hr to fix
    Tests/FilestackSDKTests/FileLinkTests.swift on lines 67..76

    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 78.

    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

            stub(condition: cdnStubConditions) { _ in
                let stubPath = Helpers.url(forResource: "sample", withExtension: "jpg", subdirectory: "Fixtures")!.path
    
                let httpHeaders: [AnyHashable: Any] = [
                    "Content-Type": "image/jpeg",
    Severity: Major
    Found in Tests/FilestackSDKTests/FileLinkTests.swift and 1 other location - About 1 hr to fix
    Tests/FilestackSDKTests/FileLinkTests.swift on lines 264..273

    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 78.

    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 2 locations. Consider refactoring.
    Open

        func testConvertTransformationWithOptionalsURL() {
            transformable.add(transform: ConvertTransform()
                .format(.jpg)
                .compress()
                .strip()
    Severity: Major
    Found in Tests/FilestackSDKTests/TransformableTests.swift and 1 other location - About 1 hr to fix
    Tests/FilestackSDKTests/TransformableTests.swift on lines 945..957

    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 78.

    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 3 locations. Consider refactoring.
    Open

        func testResizeTransformationWithOptionalsURL() {
            transformable.add(transform: ResizeTransform().width(50).fit(.crop).align(.center))
    
            let expectedURL = Constants.cdnURL
                .appendingPathComponent("resize=width:50,fit:crop,align:center")
    Severity: Major
    Found in Tests/FilestackSDKTests/TransformableTests.swift and 2 other locations - About 1 hr to fix
    Tests/FilestackSDKTests/TransformableTests.swift on lines 641..649
    Tests/FilestackSDKTests/TransformableTests.swift on lines 786..794

    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 78.

    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 3 locations. Consider refactoring.
    Open

        func testBorderTransformationURL() {
            transformable.add(transform: BorderTransform().width(3).color(.white).background(.red))
    
            let expectedURL = Constants.cdnURL
                .appendingPathComponent("border=width:3,color:FFFFFFFF,background:FF0000FF")
    Severity: Major
    Found in Tests/FilestackSDKTests/TransformableTests.swift and 2 other locations - About 1 hr to fix
    Tests/FilestackSDKTests/TransformableTests.swift on lines 269..277
    Tests/FilestackSDKTests/TransformableTests.swift on lines 641..649

    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 78.

    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 3 locations. Consider refactoring.
    Open

        func testVignetteTransformationURL() {
            transformable.add(transform: VignetteTransform().amount(80).blurMode(.gaussian).background(.black))
    
            let expectedURL = Constants.cdnURL
                .appendingPathComponent("vignette=amount:80,blurmode:gaussian,background:000000FF")
    Severity: Major
    Found in Tests/FilestackSDKTests/TransformableTests.swift and 2 other locations - About 1 hr to fix
    Tests/FilestackSDKTests/TransformableTests.swift on lines 269..277
    Tests/FilestackSDKTests/TransformableTests.swift on lines 786..794

    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 78.

    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 2 locations. Consider refactoring.
    Open

        func testConvertPreservingInputQualityTransformationURL() {
            transformable.add(transform: ConvertTransform()
                .format(.jpg)
                .compress()
                .preserveInputQuality()
    Severity: Major
    Found in Tests/FilestackSDKTests/TransformableTests.swift and 1 other location - About 1 hr to fix
    Tests/FilestackSDKTests/TransformableTests.swift on lines 931..943

    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 78.

    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 store has 9 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        public func store(fileName: String? = nil,
                          location: StorageLocation,
                          path: String? = nil,
                          container: String? = nil,
                          region: String? = nil,

      Function download has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          @objc func download(destinationURL: URL,
                              parameters: [String: Any]? = nil,
                              queue: DispatchQueue? = .main,
                              downloadProgress: ((Progress) -> Void)? = nil,
                              completionHandler: @escaping (DownloadResponse) -> Void) {
      Severity: Minor
      Found in Sources/FilestackSDK/Public/Models/FileLink.swift - 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 upload has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          @discardableResult
          func upload(data: Data,
                      to url: URL,
                      method: String,
                      headers: [String: String]? = nil,
      Severity: Minor
      Found in Sources/FilestackSDK/Internal/Services/UploadService.swift - 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 stubMultipartCompleteRequest has 27 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          func stubMultipartCompleteRequest(requestTime: TimeInterval = 0,
                                            responseTime: TimeInterval = 0,
                                            workflows: [String]? = nil,
                                            uploadTags: [String: String]? = nil) {
              let uploadMultipartCompleteStubConditions = isScheme(Constants.uploadURL.scheme!) &&
      Severity: Minor
      Found in Tests/FilestackSDKTests/UploadTests.swift - About 1 hr to fix

        Function testMultiFileUploadWithOneFile has 27 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            func testMultiFileUploadWithOneFile() {
                var hitCount = 0
                stubRegularMultipartRequest(hitCount: &hitCount)
        
                let expectation = self.expectation(description: "request should succeed")
        Severity: Minor
        Found in Tests/FilestackSDKTests/UploadTests.swift - About 1 hr to fix

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

              func testASCIIWithReverseTransformationUrl() {
                  transformable.add(transform: ASCIITransform().background(.red).foreground(.blue).reverse())
          
                  let expectedUrl = Constants.cdnURL
                      .appendingPathComponent("ascii=background:FF0000FF,foreground:0000FFFF,colored:true,reverse:true")
          Severity: Major
          Found in Tests/FilestackSDKTests/TransformableTests.swift and 1 other location - About 1 hr to fix
          Tests/FilestackSDKTests/TransformableTests.swift on lines 239..247

          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 74.

          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 2 locations. Consider refactoring.
          Open

              func testWatermarkTransformationURL() {
                  transformable.add(transform: WatermarkTransform(file: "WATERMARK-HANDLE").size(50).position(.top))
          
                  let expectedURL = Constants.cdnURL
                      .appendingPathComponent("watermark=file:WATERMARK-HANDLE,size:50,position:[top]")
          Severity: Major
          Found in Tests/FilestackSDKTests/TransformableTests.swift and 1 other location - About 1 hr to fix
          Tests/FilestackSDKTests/TransformableTests.swift on lines 309..317

          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 74.

          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 2 locations. Consider refactoring.
          Open

              func testRotateTransformationURL() {
                  transformable.add(transform: RotateTransform(deg: 320).exif(true).background(.white))
          
                  let expectedURL = Constants.cdnURL
                      .appendingPathComponent("rotate=deg:320,exif:true,background:FFFFFFFF")
          Severity: Major
          Found in Tests/FilestackSDKTests/TransformableTests.swift and 1 other location - About 1 hr to fix
          Tests/FilestackSDKTests/TransformableTests.swift on lines 359..367

          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 74.

          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 2 locations. Consider refactoring.
          Open

              func testUpscaleTransformationUrl() {
                  transformable.add(transform: UpscaleTransform().noise(.low).style(.artwork).noUpscale())
          
                  let expectedUrl = Constants.cdnURL
                      .appendingPathComponent("upscale=noise:low,style:artwork,upscale:false")
          Severity: Major
          Found in Tests/FilestackSDKTests/TransformableTests.swift and 1 other location - About 1 hr to fix
          Tests/FilestackSDKTests/TransformableTests.swift on lines 73..81

          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 74.

          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 3 locations. Consider refactoring.
          Open

              func toArray() -> [String] {
                  let ops: [String] = type(of: self).all().compactMap {
                      guard contains($0) else {
                          return nil
                      }
          Severity: Major
          Found in Sources/FilestackSDK/Public/Enums/TransformPosition.swift and 2 other locations - About 1 hr to fix
          Sources/FilestackSDK/Public/Enums/MetadataOptions.swift on lines 84..92
          Sources/FilestackSDK/Public/Enums/PolicyCall.swift on lines 60..69

          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 3 locations. Consider refactoring.
          Open

              func toArray() -> [String] {
                  let ops: [String] = type(of: self).all().compactMap {
                      guard contains($0) else {
                          return nil
                      }
          Severity: Major
          Found in Sources/FilestackSDK/Public/Enums/PolicyCall.swift and 2 other locations - About 1 hr to fix
          Sources/FilestackSDK/Public/Enums/MetadataOptions.swift on lines 84..92
          Sources/FilestackSDK/Public/Enums/TransformPosition.swift on lines 46..55

          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 3 locations. Consider refactoring.
          Open

              func toArray() -> [String] {
                  let ops: [String] = type(of: self).all().compactMap {
                      guard contains($0) else { return nil}
          
                      return $0.stringValue()
          Severity: Major
          Found in Sources/FilestackSDK/Public/Enums/MetadataOptions.swift and 2 other locations - About 1 hr to fix
          Sources/FilestackSDK/Public/Enums/PolicyCall.swift on lines 60..69
          Sources/FilestackSDK/Public/Enums/TransformPosition.swift on lines 46..55

          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