Error: File topology.json for version 8.9.1 of Cardano Node

For version 8.9.1 of the Node, I need to add my Relay nodes in the topology.json file, but I can’t find documentation on how to add the two IPs and ports of my two Relays in the Block Producer. Can someone please tell me how to add them?


{
  "bootstrapPeers": [
    {
      "address": "backbone.cardano.iog.io",
      "port": 3001
    },
    {
      "address": "backbone.mainnet.emurgornd.com",
      "port": 3001
    }
  ],
  "localRoots": [
    {
      "accessPoints": [],
      "advertise": false,
      "trustable": false,
      "valency": 1
    }
  ],
  "publicRoots": [
    {
      "accessPoints": [],
      "advertise": false
    }
  ],
  "useLedgerAfterSlot": 116812831
}

You can find all the conf files here : Mainnet - The Cardano Operations Book

Thank you for your response, but where exactly should I put the IPs and ports of my two relays? In localRoots?

Is it correct this way?

{
  "bootstrapPeers": [
    {
      "address": "backbone.cardano.iog.io",
      "port": 3001
    },
    {
      "address": "backbone.mainnet.emurgornd.com",
      "port": 3001
    }
  ],
  "localRoots": [
    {
      "accessPoints": [{ "address": "xxx.xxx.xxx.xxx"
              , "port": 3001
		{ "address": "yyy.yyy.yyy.yyy"
              , "port": 3001
              }],
      "advertise": false,
      "trustable": false,
      "valency": 1
    }
  ],
  "publicRoots": [
    {
      "accessPoints": [],
      "advertise": false
    }
  ],
  "useLedgerAfterSlot": 116812831
}

Issue resolved, thank you very much.