dxFeed / dxLink

Market Data API
https://demo.dxfeed.com/dxlink-ws/
Mozilla Public License 2.0
7 stars 2 forks source link

minor ref fix #10

Closed nickchen closed 4 months ago

nickchen commented 5 months ago

Description

https://github.com/dxFeed/dxLink/blob/1eaefd9341ddde5ba0cb4b4690f84ead20fa073e/dxlink-specification/asyncapi.yml#L886

      payload:
        allOf:
          - $ref: "#/components/schemas/Message"
          - type: object
            properties:
              type:
                const: FEED_DATA
              events:
                description: Batch of events.
                oneOf:
                  - description: |
                      List of events in full mode.
                      Empty fields are omitted from the json.
                    type: array
                    items:
                      - $ref: "#/components/schemas/FeedEvent"

items doesn't accept a list per spec, the dash - should be omitted.

Fyzu commented 4 months ago

Thank you for the reporting! Will fix it!

Fyzu commented 4 months ago

Updated