LogicalPortState (type)

{
  "additionalProperties": false, 
  "description": "Contians realized state of the logical port. For example, transport node on which the port is located, discovered and realized address bindings of the logical port.", 
  "id": "LogicalPortState", 
  "module_id": "LogicalPort", 
  "properties": {
    "attachment": {
      "$ref": "LogicalPortAttachmentState, 
      "readonly": true, 
      "required": false, 
      "title": "Logical port attachment state"
    }, 
    "discovered_bindings": {
      "description": "Contains the list of address bindings for a logical port that were automatically dicovered using various snooping methods like ARP, DHCP etc.", 
      "items": {
        "$ref": "AddressBindingEntry
      }, 
      "title": "Logical port bindings discovered automatically", 
      "type": "array"
    }, 
    "duplicate_bindings": {
      "description": "If any address binding discovered on the port is also found on other port on the same logical switch, then it is included in the duplicate bindings list along with the ID of the port with which it conflicts.", 
      "items": {
        "$ref": "DuplicateAddressBindingEntry
      }, 
      "title": "Duplicate logical port address bindings", 
      "type": "array"
    }, 
    "id": {
      "required": true, 
      "title": "Id of the logical port", 
      "type": "string"
    }, 
    "realized_bindings": {
      "description": "List of logical port bindings that are realized. This list may be populated from the discovered bindings or manual user specified bindings. This binding configuration can be used by features such as firewall, spoof-guard, traceflow etc.", 
      "items": {
        "$ref": "AddressBindingEntry
      }, 
      "title": "Realized logical port bindings", 
      "type": "array"
    }, 
    "transport_node_ids": {
      "items": {
        "type": "string"
      }, 
      "required": false, 
      "title": "Identifiers of the transport node where the port is located", 
      "type": "array"
    }
  }, 
  "title": "Realized state of the logical port.", 
  "type": "object"
}