Organization
Properties
| Property | Type | Required | Description |
created_at |
string |
Yes |
|
created_by |
string |
Yes |
|
deleted_at |
string,null |
No |
|
id |
string |
Yes |
|
is_personal |
boolean |
Yes |
|
name |
string |
Yes |
|
slug |
Slug |
Yes |
|
stripe_customer_id |
string,null |
No |
Stripe Customer ID for this organization (if billing is enabled). |
updated_at |
string |
Yes |
|
View JSON Schema
{
"type": "object",
"required": [
"id",
"name",
"slug",
"created_by",
"is_personal",
"created_at",
"updated_at"
],
"properties": {
"created_at": {
"type": "string",
"format": "date-time"
},
"created_by": {
"type": "string",
"format": "uuid"
},
"deleted_at": {
"type": [
"string",
"null"
],
"format": "date-time"
},
"id": {
"type": "string",
"format": "uuid"
},
"is_personal": {
"type": "boolean"
},
"name": {
"type": "string"
},
"slug": {
"$ref": "#/components/schemas/Slug"
},
"stripe_customer_id": {
"type": [
"string",
"null"
],
"description": "Stripe Customer ID for this organization (if billing is enabled)."
},
"updated_at": {
"type": "string",
"format": "date-time"
}
}
}