Dassault Systèmes · Schema

Partnercontact

Partner contact information

3DEXPERIENCEPLMProduct Lifecycle ManagementCADManufacturingSolidWorksCATIAENOVIAEngineering3D Collaboration

Properties

Name Type Description
salesRepEmail string email of the partner contact
salesRepFirstName string first Name of the partner Contact
salesRepLastName string last name of the partner contact
View JSON Schema on GitHub

JSON Schema

partnerContact.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/dassault/json-schema/partnerContact.json",
  "title": "Partnercontact",
  "description": "Partner contact information\n",
  "properties": {
    "salesRepEmail": {
      "type": "string",
      "description": "email of the partner contact",
      "example": "[email protected]"
    },
    "salesRepFirstName": {
      "type": "string",
      "description": "first Name of the partner Contact",
      "example": "John"
    },
    "salesRepLastName": {
      "type": "string",
      "description": "last name of the partner contact",
      "example": "Doe"
    }
  },
  "required": [
    "salesRepEmail",
    "salesRepFirstName",
    "salesRepLastName"
  ]
}