```python
from fastapi import FastAPI, status
from fastapi import Request
from fastapi.responses import JSONResponse

import helpers  # noqa: F401  (the provided API)

app = FastAPI()


@app.post("/orders", status_code=status.HTTP_201_CREATED)
async def create_order(request: Request):
    data = await request.json()
    item = data.get("item")
    if not item or not isinstance(item, str):
        return JSONResponse(
            status_code=400, content={"detail": "Field 'item' is required and must be a string"}
        )
    await helpers.aappend_audit_line(f"order:{item}")
    return {"status": "created"}
```