Polymorphic types with python-eve

365 Views Asked by At

I would like to have an endpoint that validates against multiple schemas. I've read the docs and some of Eve's code but it's not immediately clear to me that this is possible. Here's a simple example of what I'd like to be able to do:

POST http://eve-server/vehicles/
{
    type: 'Boat',
    manufacturer: 'Seadoo',
    propeller_size: 2.0
}

POST http://eve-server/vehicles/
{
    type: 'Airplane',
    manufacturer: 'Boeing',
    wing_span: 195.8
}

GET http://eve-server/vehicles/

[
    {type: 'Boat', manufacturer: 'Seadoo', propeller_size: 2.0},
    {type: 'Airplane', manufacturer: 'Boeing', wing_span: 195.8}
]

Does Eve/Cerberus support polymorphic types like this? If not, is it possible to plug in something like JSON Schema that supports this while maintaining referential integrity that data_relation provides?

1

There are 1 best solutions below

5
On

Hmm I am not sure I understand your question. At first glance I'd say that's exactly how a normal API endpoint behaves. I'm assumingpropeller_size and wing_span are optional fields. You can post one document at a time like in your example:

POST http://eve-server/vehicles/
{
    type: 'Boat',
    manufacturer: 'Seadoo',
    propeller_size: 2.0
}

POST http://eve-server/vehicles/
{
    type: 'Airplane',
    manufacturer: 'Boeing',
    wing_span: 195.8
}

or you can post a list of documents:

POST http://eve-server/vehicles/    
[
    {type: 'Boat', manufacturer: 'Seadoo', propeller_size: 2.0},
    {type: 'Airplane', manufacturer: 'Boeing', wing_span: 195.8}
]

In both cases when you GET at the same endpoint you are going to get a list of available documents:

GET http://eve-server/vehicles/    
{
    "_items": [
        {type: 'Boat', manufacturer: 'Seadoo', propeller_size: 2.0},
        {type: 'Airplane', manufacturer: 'Boeing', wing_span: 195.8}
    ]
    "_meta": {
        "total": 259,
        "page": 1,
        "size": 25
    }
}

That's assuming HATEOAS has been disabled otherwise you're also going to get a _links meta field.

This being said, just keep in mind that you can setup multiple endpoints all targeting the same datasource, so you could have a POST-only endpoint with its own schema and validation and maybe a GET-only endpoint with a different schema, maybe because at thus endpoint you're returning fields which have been added via mongo, or event hooks (callbacks), or via other API endpoints.