Skip to content

how to link to pubdb

Bradley Huffaker edited this page Oct 7, 2020 · 1 revision

CAIDA maintains a separate paper and presentation database called pubdb. Objects represented in pubdb should not be directly updated in this repo. Links for these objects need to be in added to pubdb or added to the objects which are actually in the repository.

The IDs for objects in pubdb can be inferred from their URL with the year and directory name. So www.caida.org/publications/papers/2020/spoofed_traffic_inference_ixps's ID is 2020_spoofed_traffic_inference_ixps.

Mapping between pubdb and catalog representation

pubdb

    "links": [
        {
           "from": "PubDBlinkId:1241",
           "label": "Data Supplement",
           "to": "http://data.caida.org/datasets/2013-asrank-data-supplement/"
        },
        {
           "from": "PubDBlinkId:1242",
           "label": "DOI",
           "to": "http://dx.doi.org/10.1145/2504730.2504735"
        },
        {
           "from": "PubDBlinkId:1243",
           "label": "PDF",
           "to": "https://www.caida.org/publications/papers/2013/asrank/asrank.pdf"
        },
        {
           "from": "PubDBlinkId:1541",
           "label": "Related Presentation",
           "to": "https://www.caida.org/publications/presentations/2013/as_relationships_imc/"
        }
     ]

catalog

     "links": [
        {
           "pubdb_id": "PubDBlinkId:1541",
            "to":"media:2013_as_relaitonships_imc"
        },
        {
            "to": "dataset:asrank",
            "label": "defines"
        }
    ],
    "resources": [
        {
           "pubdb_id": "PubDBlinkId:1243",
           "name": "PDF",
           "to": "https://www.caida.org/publications/papers/2013/asrank/asrank.pdf"
        }
     ],
     "urls": [
        {
           "pubdb_id": "PubDBlinkId:1241",
           "name": "Data Supplement",
           "to": "http://data.caida.org/datasets/2013-asrank-data-supplement/"
        },
        {
           "pubdb_id": "PubDBlinkId:1242",
           "name": "DOI",
           "to": "http://dx.doi.org/10.1145/2504730.2504735"
        }
     ]
  ```