Developer

API ManagementCloud IntegrationEnterprise IntegrationEvent MeshiPaaSSAPSAP BTP

Properties

Name Type Description
email string Developer email address (unique identifier)
firstName string First name
lastName string Last name
status string Developer status
createdAt string
updatedAt string
View JSON Schema on GitHub

JSON Schema

sap-integration-suite-developer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Developer",
  "title": "Developer",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "description": "Developer email address (unique identifier)"
    },
    "firstName": {
      "type": "string",
      "description": "First name"
    },
    "lastName": {
      "type": "string",
      "description": "Last name"
    },
    "status": {
      "type": "string",
      "description": "Developer status",
      "enum": [
        "ACTIVE",
        "INACTIVE"
      ]
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}