StackOne · Schema

Company

IntegrationsiPaaS

Properties

Name Type Description
name string
display_name string
created_at string The created_at date
updated_at string The updated_at date
id string
View JSON Schema on GitHub

JSON Schema

stackone-company-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Company",
  "title": "Company",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "display_name": {
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "description": "The created_at date",
      "example": "2023-06-14T01:00:00Z"
    },
    "updated_at": {
      "type": "string",
      "description": "The updated_at date",
      "example": "2023-06-14T01:00:00Z"
    },
    "id": {
      "type": "string"
    }
  }
}