# complex objects have schema definitions
definitions:
  User:
    type: object
    properties:
      ID:
        type: string
        description: 用户ID
      jobNumber:
        type: string
        description: 员工号
      ddUserId:
        type: string
        description: 国泰钉钉ID
      name:
        type: string
        description: 姓名
      mobile:
        type: string
        description: 手机号码
      email:
        type: string
        format: email
        description: 邮箱
  Error400:
    required:
      - code
      - message
    properties:
      code:
        type: string
        description: 业务出错码，请参见 http://wiki.cathay-inc.com:8090/pages/viewpage.action?pageId=68927
      message:
        type: string
