VirtualLink.json 1.05 KB
{
  "type": "object",
  "title": "vlink",
  "required": [
    "networkId",
    "src",
    "dst",
    "type",
    "state"
  ],
  "properties": {
    "networkId": {
      "type": "int64",
      "description": "Network identifier",
      "example": 3
    },
    "src": {
      "type": "object",
      "title": "src",
      "required": [
        "port",
        "device"
      ],
      "properties": {
        "port": {
          "type": "int64",
          "example": 3
        },
        "device": {
          "type": "string",
          "example": "of:0000000000000002"
        }
      }
    },
    "dst": {
      "type": "object",
      "title": "dst",
      "required": [
        "port",
        "device"
      ],
      "properties": {
        "port": {
          "type": "int64",
          "example": 2
        },
        "device": {
          "type": "string",
          "example": "of:0000000000000003"
        }
      }
    },
    "type": {
      "type": "string",
      "example": "DIRECT"
    },
    "state": {
      "type": "string",
      "example": "ACTIVE"
    }
  }
}