meta { name: Create Ebook with ISBN (with spaces) type: http seq: 10 } post { url: {{base_url}}/api/ebooks body: json auth: inherit } body:json { { "title": "Ebook with ISBN-13 (with spaces)", "author": "Test Author", "isbn": "978 0123456789", "description": "Testing ISBN normalization with spaces", "file_path": "/path/to/ebook2.epub", "file_size": 1048576, "mime_type": "application/epub+zip" } } settings { encodeUrl: true timeout: 0 } docs { ## Create Ebook with ISBN-13 (with spaces) **Expected Behavior:** ISBN should be normalized to `9780123456789` This test demonstrates that ISBNs with spaces are automatically normalized. }