github.com/optim-corp/cios-golang-sdk@v0.5.1/openapi/components/auth-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      ConnectTokenRequest:
    12        type: object
    13        properties:
    14          grant_type:
    15            type: string
    16          refresh_token:
    17            type: string
    18          client_id:
    19            type: string
    20          client_secret:
    21            type: string
    22          scope:
    23            type: string
    24      ConnectTokenResponse:
    25        type: object
    26        properties:
    27          access_token:
    28            type: string
    29          token_type:
    30            type: string
    31          refresh_token:
    32            type: string
    33          expires_in:
    34            type: integer
    35          id_token:
    36            type: string
    37          scope:
    38            type: string
    39        required:
    40          - access_token
    41          - token_type
    42          - refresh_token
    43          - expires_in
    44          - scope
    45