Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The data received from the RAN should be updated in the CPS DB. The CPS currently supports the persist of the data in the format below. eg: stores:bookstore in the format <module>:<top level container>

The PNF simulator returns multiple resources but the actual RAN will return just one resource. So it is agreed to persist the first resource that is received from the RAN. 

Code Block
languagexml
titleData from RAN
{
  "stores:bookstore": {
    "categories": [
      {
        "code": "05",
        "books": [
          {
            "title": "A Romance Book",
            "price": "2000",
            "pub_year": 2002,
            "lang": "English",
            "authors": [
              "Lathish"
            ]
          }
        ],
        "name": "Romance"
      }
    ]
  }
}

...