ধরে নিন আমাদের মতো সম্পদ রয়েছে,
book:
type: object
properties:
author: {type: string}
isbn: {type: string}
title: {type: string}
books:
type: array
items: book
সুতরাং, যখন কেউ GET
বইয়ের সংস্থানগুলি চালু করে, আমরা নিম্নলিখিতগুলি ফিরে আসব
[{"author": "Dan Brown", "isbn": "123456", "title": "Digital Fortress"},
{"author": "JK Rowling", "isbn": "234567", "title": "Harry Potter and the Chamber of Secrets"}]
আমি কর্মস্থলের কারও কাছ থেকে শুনেছি যে প্রস্তাবিত আরআরইএসটি অনুশীলন হ'ল জেএসওএন অবজেক্ট হিসাবে সর্বদা প্রতিক্রিয়া ফিরিয়ে দেওয়া, যার অর্থ এই যে আমাদের স্কিমাটি এর books
মতো দেখাবে,
books:
type: object
properties:
list:
type: array
items: book
সুতরাং, এখন, প্রতিক্রিয়া দেখতে এই মত হবে,
{
"list": [{"author": "Dan Brown", "isbn": "123456", "title": "Digital Fortress"},
{"author": "JK Rowling", "isbn": "234567", "title": "Harry Potter and the Chamber of Secrets"}]
}
এর মধ্যে কোনটি রেষ্ট রিস্টের সেরা?