Dassault Systèmes · Schema

Business Unit

Details of the sales business unit.

3DEXPERIENCEPLMProduct Lifecycle ManagementCADManufacturingSolidWorksCATIAENOVIAEngineering3D Collaboration

Properties

Name Type Description
id string Unique identifier of the sales business unit.
name string Name of the sales business unit.
localTimezone object
View JSON Schema on GitHub

JSON Schema

business_unit.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/dassault/json-schema/business_unit.json",
  "title": "Business Unit",
  "type": "object",
  "description": "Details of the sales business unit.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the sales business unit.",
      "minLength": 5,
      "maxLength": 5,
      "example": "BU001"
    },
    "name": {
      "type": "string",
      "description": "Name of the sales business unit.",
      "maxLength": 25,
      "example": "Corporate Sales Unit A"
    },
    "localTimezone": {
      "$ref": "#/components/schemas/local_time_zone"
    }
  },
  "required": [
    "id",
    "name",
    "localTimezone"
  ]
}