github.com/go-swagger/go-swagger@v0.31.0/fixtures/bugs/2919/edge-api/client/current-api-session-service-updates.yml (about)

     1  ---
     2  paths:
     3    current-api-session-service-updates:
     4      get:
     5        summary: Returns data indicating whether a client should updates it service list
     6        description: |
     7          Retrieves data indicating the last time data relevant to this API Session was altered that would necessitate
     8          service refreshes.
     9        security:
    10          - ztSession: [ ]
    11        tags:
    12          - Current API Session
    13          - Services
    14        operationId: listServiceUpdates
    15        responses:
    16          '200':
    17            $ref: '#/responses/listCurrentApiSessionServiceUpdates'
    18          '401':
    19            $ref: '../shared/standard-responses.yml#/responses/unauthorizedResponse'
    20  
    21  responses:
    22    listCurrentApiSessionServiceUpdates:
    23      description: Data indicating necessary service updates
    24      schema:
    25        $ref: '#/definitions/listCurrentApiSessionServiceUpdatesEnvelope'
    26  
    27  definitions:
    28    listCurrentApiSessionServiceUpdatesEnvelope:
    29      type: object
    30      required:
    31        - meta
    32        - data
    33      properties:
    34        meta:
    35          $ref: '../shared/standard-responses.yml#/definitions/meta'
    36        data:
    37          $ref: '#/definitions/CurrentApiSessionServiceUpdateList'
    38    CurrentApiSessionServiceUpdateList:
    39      type: object
    40      required:
    41        - lastChangeAt
    42      properties:
    43        lastChangeAt:
    44          type: string
    45          format: 'date-time'