0

我有以下杨模型

container PORT {

    description "PORT part of config_db.json";

    list PORT_LIST {

        key "name";

        leaf name {
            type string {
                length 1..128;
            }
        }

        leaf-list lanes {
            type string {
                length 1..128;
            }
        }
    }
}

和下面的配置

PORT": {
    "PORT_LIST": [
        {
            "name": "Ethernet8",
            "lanes": ["65", "66"]
        },
        {
            "name": "Ethernet9",
            "lanes": ["65", "67"]
        }
    ]
}

如何添加约束,“必须”或“唯一”,以使叶列表“通道”的元素在 PORT_LIST 中的所有节点中都是唯一的。在上面的示例中,“lanes”字段中的值“65”应该只允许在一个节点中使用。

4

0 回答 0