create_collection
Set up a new collection by specifying its name and properties to organize and manage threat modeling resources effectively within the Devici API framework.
Instructions
Create a new collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
name | Yes | ||
other_properties | Yes |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"default": null,
"title": "Description",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"other_properties": {
"title": "other_properties",
"type": "string"
}
},
"required": [
"name",
"other_properties"
],
"title": "create_collectionArguments",
"type": "object"
}