soil-schema / soil

REST api schema and code generator
MIT License
1 stars 0 forks source link

Shared response schema #80

Open niaeashes opened 2 years ago

niaeashes commented 2 years ago
entity Actor {
    shared response ListResponse {
        schema {
            field actors: List<Actor>
            field total: Integer
        }
    }
    endpoint GET /users/search {
        success ListResponse
    }
    endpoint GET /users/human {
        success ListResponse
    }
    endpoint GET /users/navi {
        success ListResponse
    }
}