StackOne · Schema

Interviewer

IntegrationsiPaaS

Properties

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

JSON Schema

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