Summary
Creates a new resource model
Description
Creates a new resource model
Route
No Northbound API Available
Roles
admin
apiwrite
designer
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
name |
string |
yes |
- |
description |
string |
no |
- |
schema |
object |
no |
- |
actions |
array |
no |
- |
Copied to Clipboard
{
"name": "quis adipisicing nulla laborum",
"description": "ullamco",
"schema": null,
"actions": []
}
Copied to Clipboard
{
"type": "object",
"properties": {
"name": {
"title": "name",
"$ref": "resource-model-create-data#/properties/name"
},
"description": {
"title": "description",
"$ref": "resource-model-create-data#/properties/description"
},
"schema": {
"title": "schema",
"$ref": "resource-model-create-data#/properties/schema"
},
"actions": {
"title": "actions",
"$ref": "resource-model-create-data#/properties/actions"
}
},
"required": [
"name"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
model |
object |
- |
Copied to Clipboard
{
"model": true
}