All Downloads are FREE. Search and download functionalities are using the official Maven repository.

raml.examples.stub-mappings.example.json Maven / Gradle / Ivy

{
    "mappings": [ {
        "request": {
            "method": "GET",
            "url": "/search?q=things",
            "headers": {
                "Accept": {
                    "equalTo": "application/json"
                }
            }
        },
        "response": {
            "status": 200,
            "jsonBody": [
                "thing1",
                "thing2"
            ],
            "headers": {
                "Content-Type": "application/json"
            }
        }
    },
    {
        "request": {
            "method": "POST",
            "urlPath": "/some/things",
            "bodyPatterns": [
                {
                    "equalToXml": ""
                }
            ]
        },
        "response": {
            "status": 201
        }
    } ],

    "meta": {
        "total": 2
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy