Blame schema/bridge_fdb_schema.json

Packit Service 3880ab
{
Packit Service 3880ab
    "$schema": "http://json-schema.org/draft-04/schema#",
Packit Service 3880ab
    "description": "bridge fdb show",
Packit Service 3880ab
    "type": "array",
Packit Service 3880ab
    "items": {
Packit Service 3880ab
        "type": "object",
Packit Service 3880ab
        "properties": {
Packit Service 3880ab
            "dev": {
Packit Service 3880ab
                "type": "string"
Packit Service 3880ab
            },
Packit Service 3880ab
            "dst": {
Packit Service 3880ab
                "description" : "host name or ip address",
Packit Service 3880ab
                "type": "string"
Packit Service 3880ab
            },
Packit Service 3880ab
            "flags": {
Packit Service 3880ab
                "type": "array",
Packit Service 3880ab
                "items": {
Packit Service 3880ab
                    "enum": ["self", "master", "router", "offload"]
Packit Service 3880ab
                },
Packit Service 3880ab
                "uniqueItems": true
Packit Service 3880ab
            },
Packit Service 3880ab
            "linkNetNsId": {
Packit Service 3880ab
                "type": "integer"
Packit Service 3880ab
            },
Packit Service 3880ab
            "mac": {
Packit Service 3880ab
                "type": "string"
Packit Service 3880ab
            },
Packit Service 3880ab
            "master": {
Packit Service 3880ab
                "type": "string"
Packit Service 3880ab
            },
Packit Service 3880ab
            "opCode": {
Packit Service 3880ab
                "description" : "used to indicate fdb entry del",
Packit Service 3880ab
                "enum": ["deleted"]
Packit Service 3880ab
            },
Packit Service 3880ab
            "port": {
Packit Service 3880ab
                "type": "integer"
Packit Service 3880ab
            },
Packit Service 3880ab
            "state": {
Packit Service 3880ab
                "description" : "permanent, static, stale, state=#x",
Packit Service 3880ab
                "type": "string"
Packit Service 3880ab
            },
Packit Service 3880ab
            "updated": {
Packit Service 3880ab
                "type": "integer"
Packit Service 3880ab
            },
Packit Service 3880ab
            "used": {
Packit Service 3880ab
                "type": "integer"
Packit Service 3880ab
            },
Packit Service 3880ab
            "viaIf": {
Packit Service 3880ab
                "type": "string"
Packit Service 3880ab
            },
Packit Service 3880ab
            "viaIfIndex": {
Packit Service 3880ab
                "type": "integer"
Packit Service 3880ab
            },
Packit Service 3880ab
            "vlan": {
Packit Service 3880ab
                "type": "integer"
Packit Service 3880ab
            },
Packit Service 3880ab
            "vni": {
Packit Service 3880ab
                "type": "integer"
Packit Service 3880ab
            }
Packit Service 3880ab
        }
Packit Service 3880ab
    }
Packit Service 3880ab
}