meta { name: Create Library, type: http, seq: 1 } post { url: "/api/libraries" headers: { Authorization: "Bearer {{ _.token }}", Content-Type: "application/json" } body: { name: "My Ebook Library", description: "A collection of technical books and novels", type: "ebooks" } } tests: { test_create_library_success: { status: 201, headers: { "content-type": "application/json" } } }