Application Details


Overview

Get the details of an application.

URI

GET /rest/applications/{name}/details

Path parameters

name (string)

The application name.

Responses

application/json

Example:

[
  {
    "name": "src",
    "nb_interactions": 1500,
    "nb_elements": 6037,
    "CRUD_interactions": "create, update, delete",
    "nb_LOC": 72168,
    "Data_Sentitivity_levels": [
        "High",
        "Medium"
    ],
    "technologies": [
        "Java",
        ".NET"
    ],
    "interaction_types": [
        "HTTP call",
        "SQL Query"
    ],
    "element_types": [
        "C# Class",
        "Java Method"
    ],
    "custom_tags": [
        "critical",
        "frontend"
    ]
  }
]

JSON representation

Property Type Description
[].name string The application name.
[].nb_interactions integer The total number of interactions (links) within the application.
[].nb_elements integer The total number of objects in the application.
[].CRUD_interactions string CRUD interaction types present.
[].nb_LOC integer or string The total number of lines of code, or “N/A” if unavailable.
[].Data_Sentitivity_levels array of strings List of data sensitivity levels.
[].technologies array of strings List of technologies used within the application.
[].interaction_types array of strings List of interaction types present in the application.
[].element_types array of strings List of object types present in the application.
[].custom_tags array of strings List of custom tags associated with the application.