Commit b3e176c4 authored by Walter Featherstone's avatar Walter Featherstone
Browse files

host and port are required for an EndPointInfo addresses array instance

parent c6b25b4b
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
@@ -717,6 +717,10 @@
      "EndPointInfo.Address": {
      "EndPointInfo.Address": {
        "description": "A IP address and port pair",
        "description": "A IP address and port pair",
        "type": "object",
        "type": "object",
        "required": [
          "host",
          "port"
        ],
        "properties": {
        "properties": {
          "host": {
          "host": {
            "$ref": "#/components/schemas/EndPointInfo.Address.Host"
            "$ref": "#/components/schemas/EndPointInfo.Address.Host"
+3 −0
Original line number Original line Diff line number Diff line
@@ -543,6 +543,9 @@ components:
    EndPointInfo.Address:
    EndPointInfo.Address:
      description: A IP address and port pair
      description: A IP address and port pair
      type: object
      type: object
      required:
        - host
        - port
      properties:
      properties:
        host:
        host:
          $ref: '#/components/schemas/EndPointInfo.Address.Host'
          $ref: '#/components/schemas/EndPointInfo.Address.Host'