ISO-5055 Characteristics
Get the ISO-5055 Characteristics summary of an application.
The service returns the number of impacted objects for each Characteristic: Efficiency, Maintainability, Reliability, Security.
URI
GET /rest/applications/{name}/insights/iso-5055/characteristics
Path parameters
name (string)
This parameter identifies the analyzed application. The application name must be properly encoded if it is required. Character back-quote is not allowed.
Responses
application/json
Example:
[
    {
        "id": "ISO-5055-Performance-Efficiency"
        "name":"Efficiency",
        "nbObjects":1644
    },
    {
        "id": "ISO-5055-Reliability"
        "name": "Reliability",
        "nbObjects":21
    },
    {
        "id": "ISO-5055-Security"
        "name": "Security",
        "nbObjects":5
    },
    {
        "id": "ISO-5055-Maintainability"
        "name": "Maintainability",
        "nbObjects":5
    }
]
JSON representation
| Property | Type | Description | 
|---|---|---|
| id | string | The characteristic ID. | 
| name | string | The characteristic name. | 
| nbObjects | integer | The number of impacted objects |