DreamFactory · Schema
DreamFactory App
An application registered in a DreamFactory instance, associated with an API key and optional default role for access control.
AutomationDeploymentDocumentationGenerationSecurity
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique identifier for the application. |
| name | string | Name of the application. |
| api_key | string | API key assigned to the application. |
| description | string | Description of the application. |
| is_active | boolean | Whether the application is active. |
| type | integer | Application type identifier. |
| role_id | integer | Default role ID assigned to the application. |
| created_date | string | Timestamp when the application was created. |
| last_modified_date | string | Timestamp when the application was last modified. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/dreamfactory/refs/heads/main/json-schema/dreamfactory-app.json",
"title": "DreamFactory App",
"description": "An application registered in a DreamFactory instance, associated with an API key and optional default role for access control.",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique identifier for the application."
},
"name": {
"type": "string",
"description": "Name of the application."
},
"api_key": {
"type": "string",
"description": "API key assigned to the application."
},
"description": {
"type": "string",
"description": "Description of the application."
},
"is_active": {
"type": "boolean",
"description": "Whether the application is active."
},
"type": {
"type": "integer",
"description": "Application type identifier."
},
"role_id": {
"type": "integer",
"description": "Default role ID assigned to the application."
},
"created_date": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the application was created."
},
"last_modified_date": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the application was last modified."
}
},
"required": [
"name"
]
}