SICT

BAA

DPS945

Web Programming - Modern Apps

Denmark info Notes Weekly Resources Graded work Policies Standards Professors & addendum Code examples

 

© 2019 - Seneca School of ICT and Business Academy Aarhus

Hypermedia representation for a collection

Here’s an example of a a design for a hypermedia representation for a single item.

{
  "timestamp":"2019-07-09T11:27:45.907Z",
  "version":"1.0.0",
  "links":[
    {
      "href":"/api/users/3",
      "rel":"self"
    },
    {
      "href":"/api/users",
      "rel":"collection"
    }
  ],
  "count":1,
  "data":[
    {
      "id":3,
      "firstName":"Guilbert",
      "lastName":"Edser",
      "gender":"Male",
      "birthDate":"2018-05-17T06:15:37Z",
      "email":"gedser2@bbb.org",
      "web":"http://msn.com",
      "creditScore":565,
      "rating":8.26,
      "links":[
        {
          "href":"/api/users/3",
          "rel":"self"
        },
        {
          "href":"/api/users",
          "rel":"collection"
        }
      ]
    }
  ]
}