{
    "$schema": "https://unpkg.com/@squiz/dx-json-schema-lib@latest/lib/manifest/userApiManifest/UserApiManifestV1.json",
    "name": "integration-sample-api",
    "displayName": "Integration sample API",
    "description": "Fixture used only by filesystem-backed integration tests",
    "filesDir": "src",
    "entry": "index.ts",
    "manifest": {
        "endpoints": [
            {
                "path": "/integration/hello",
                "method": "GET",
                "handler": "index.helloWorld"
            },
            {
                "path": "/integration/items",
                "method": "POST",
                "handler": "handlers.createItem"
            }
        ]
    }
}
