StackOne · Schema

User

IntegrationsiPaaS

Properties

Name Type Description
last_name string
name string
phone string
id string
email string
first_name string
View JSON Schema on GitHub

JSON Schema

stackone-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/User",
  "title": "User",
  "type": "object",
  "properties": {
    "last_name": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "phone": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "first_name": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "email",
    "first_name",
    "last_name",
    "name",
    "phone"
  ]
}