***Antipattern***
Count: 5
POST  /auth/token [Singular last node with POST method.] 
POST  /auth/revoke [Singular last node with POST method.] 
POST  /flows [Singular last node with POST method.] 
POST  /flow [Singular last node with POST method.] 
POST  /nodes [Singular last node with POST method.] 

***Pattern***
Count: 12
GET  /auth/loginregular methods.
GET  /settingsregular methods.
GET  /flowsregular methods.
GET  /flow/:idregular methods.
PUT  /flow/:id [Pluralized last node with PUT|DELETE method.] 
DELETE  /flow/:id [Pluralized last node with PUT|DELETE method.] 
GET  /nodesregular methods.
GET  /nodes/:moduleregular methods.
PUT  /nodes/:module [Pluralized last node with PUT|DELETE method.] 
DELETE  /nodes/:module [Pluralized last node with PUT|DELETE method.] 
GET  /nodes/:module/:setregular methods.
PUT  /nodes/:module/:set [Pluralized last node with PUT|DELETE method.] 
