github.com/optim-corp/cios-golang-sdk@v0.5.1/openapi/components/account-component.openapi.yml (about)

     1  openapi: 3.0.3
     2  info:
     3    title: Auth Component
     4    description: Component
     5    version: 1.0.0
     6  
     7  paths: {}
     8  
     9  components:
    10    schemas:
    11      Me:
    12        type: object
    13        required:
    14          - id
    15          - type
    16          - email
    17        properties:
    18          id:
    19            type: string
    20            format: uuid
    21          type:
    22            type: string
    23          name:
    24            type: string
    25          family_name:
    26            type: string
    27          given_name:
    28            type: string
    29          phonetic_family_name:
    30            type: string
    31          phonetic_given_name:
    32            type: string
    33          phone_number:
    34            type: string
    35          phone_number_2:
    36            type: string
    37          language:
    38            type: string
    39            enum:
    40              - ja
    41              - en
    42              - en-US
    43              - de-DE
    44              - fe-FR
    45              - es-ES
    46          email:
    47            type: string
    48  
    49          emails:
    50            type: array
    51            items:
    52              type: string
    53  
    54          picture:
    55            type: string
    56            format: uri
    57          corporation:
    58            type: object
    59            properties:
    60              id:
    61                type: string
    62                format: uuid
    63              name:
    64                type: string
    65          groups:
    66            type: array
    67            items:
    68              type: object
    69              required:
    70                - id
    71                - name
    72                - type
    73                - corporation_id
    74              properties:
    75                id:
    76                  type: string
    77                name:
    78                  type: string
    79                type:
    80                  type: string
    81                  enum:
    82                    - Corporation
    83                    - Group
    84                corporation_id:
    85                  type: string
    86                  nullable: true