poppy/tests/functional/transport/pecan/controllers/data_create_flavor_bad.json

53 lines
1.2 KiB
JSON

{
"no_body": {
},
"no_flavor_id": {
"x_id" : "asia"
},
"invalid_fields": {
"id" : "asia",
"providers" : [
{
"invalid_field" : "fastly",
"links": [
{
"href": "http://www.chinacache.com",
"rel": "invalid_url"
}
]
}
]
},
"nonexistant_provider": {
"id" : "doesnt_exist",
"providers" : [
{
"provider" : "idontexist",
"links": [
{
"href": "http://www.idontexist.com",
"rel": "provider_url"
}
]
}
]
},
"empty_provider_list": {
"id" : "empty_providers",
"providers" : []
},
"missing_uri_in_provider": {
"id" : "doesnt_exist",
"providers" : [
{
"provider" : "mock",
"links": [
{
"href": "",
"rel": "provider_url"
}
]
}
]
}
}