Fortify Application
Represents an application in the Fortify platform that is subject to security testing. An application contains one or more releases and may be organized with microservices. Applications are the primary organizational unit for managing security assessments.
Properties
| Name | Type | Description |
|---|---|---|
| applicationId | integer | Unique identifier of the application |
| applicationName | string | Name of the application |
| applicationDescription | string | Description of the application and its purpose |
| applicationCreatedDate | string | Date and time when the application was created in ISO 8601 format |
| businessCriticalityType | string | Business criticality classification indicating the importance of the application |
| sdlcStatusType | string | Current software development lifecycle status of the application |
| emailList | string | Comma-separated list of email addresses for notifications |
| hasMicroservices | boolean | Whether the application has microservices configured |
| attributes | array | Custom attributes assigned to the application |
| releases | array | Releases associated with this application |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/api-search/fortify/json-schema/fortify-application-schema.json",
"title": "Fortify Application",
"description": "Represents an application in the Fortify platform that is subject to security testing. An application contains one or more releases and may be organized with microservices. Applications are the primary organizational unit for managing security assessments.",
"type": "object",
"required": [
"applicationName"
],
"properties": {
"applicationId": {
"type": "integer",
"format": "int32",
"description": "Unique identifier of the application"
},
"applicationName": {
"type": "string",
"description": "Name of the application",
"minLength": 1,
"maxLength": 255
},
"applicationDescription": {
"type": "string",
"description": "Description of the application and its purpose"
},
"applicationCreatedDate": {
"type": "string",
"format": "date-time",
"description": "Date and time when the application was created in ISO 8601 format"
},
"businessCriticalityType": {
"type": "string",
"description": "Business criticality classification indicating the importance of the application",
"enum": [
"High",
"Medium",
"Low"
]
},
"sdlcStatusType": {
"type": "string",
"description": "Current software development lifecycle status of the application",
"enum": [
"Development",
"QA",
"Production",
"Retired"
]
},
"emailList": {
"type": "string",
"description": "Comma-separated list of email addresses for notifications"
},
"hasMicroservices": {
"type": "boolean",
"description": "Whether the application has microservices configured",
"default": false
},
"attributes": {
"type": "array",
"description": "Custom attributes assigned to the application",
"items": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"format": "int32",
"description": "Attribute definition identifier"
},
"name": {
"type": "string",
"description": "Attribute name"
},
"value": {
"type": "string",
"description": "Attribute value"
}
}
}
},
"releases": {
"type": "array",
"description": "Releases associated with this application",
"items": {
"$ref": "fortify-release-schema.json"
}
}
},
"additionalProperties": true
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
curl "https://apis.io/api/v1/json-schemas/fortify-application"
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.