create_application
Create a new application in the SD Elements platform by defining its name, description, and associated business unit ID for secure development lifecycle management.
Instructions
Create a new application in SD Elements
Input Schema
Name | Required | Description | Default |
---|---|---|---|
business_unit_id | No | ID of the business unit this application belongs to | |
description | No | Application description | |
name | Yes | Application name |
Input Schema (JSON Schema)
{
"properties": {
"business_unit_id": {
"description": "ID of the business unit this application belongs to",
"type": "integer"
},
"description": {
"description": "Application description",
"type": "string"
},
"name": {
"description": "Application name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}