Ordoro · Schema
User Schema
Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics
Properties
| Name | Type | Description |
|---|---|---|
| _link | string | |
| id | integer | |
| company_id | integer | |
| name | string | |
| string | ||
| is_active | boolean | |
| is_api_user | boolean | |
| last_login | string | |
| date_joined | object | |
| email_verified | object | |
| permissions | object | |
| settings | object |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-user-schema.json",
"title": "User Schema",
"additionalProperties": false,
"type": "object",
"properties": {
"_link": {
"type": "string"
},
"id": {
"type": "integer"
},
"company_id": {
"type": "integer"
},
"name": {
"type": "string"
},
"email": {
"type": "string"
},
"is_active": {
"type": "boolean"
},
"is_api_user": {
"type": "boolean"
},
"last_login": {
"type": "string",
"format": "date-time"
},
"date_joined": {
"format": "date-time",
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"email_verified": {
"format": "date-time",
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"permissions": {
"type": "object"
},
"settings": {
"type": "object"
}
},
"required": [
"id",
"company_id",
"name",
"email",
"is_active",
"is_api_user",
"last_login",
"date_joined",
"permissions",
"settings"
]
}