Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| workspace_id | string | |
| alg | string | |
| key | string | |
| last_used | string | |
| created_at | string | |
| created_by | string | |
| created_by_name | string | |
| created_by_photo_url | string | |
| string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WorkspaceToken",
"title": "WorkspaceToken",
"description": "A workspace token",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"workspace_id": {
"type": "string"
},
"alg": {
"type": "string"
},
"key": {
"type": "string"
},
"last_used": {
"nullable": true,
"type": "string",
"format": "date-time"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"created_by": {
"type": "string",
"nullable": true
},
"created_by_name": {
"type": "string",
"nullable": true
},
"created_by_photo_url": {
"type": "string",
"nullable": true
},
"email": {
"nullable": true,
"type": "string"
}
},
"required": [
"id",
"name",
"alg",
"key",
"created_at",
"workspace_id"
]
}