***Antipattern***
Count: 12
POST  /account/logoff [Singular last node with POST method.] 
POST  /auth/shortcode/create [Singular last node with POST method.] 
POST  /auth/shortcode/consume [Singular last node with POST method.] 
POST  /clients/ [Singular last node with POST method.] 
POST  /clients/:id/tokens [Singular last node with POST method.] 
POST  /clients/:id/tokens/:tokenId/regenerate [Singular last node with POST method.] 
POST  /conduits/:id/conduit-activations [Singular last node with POST method.] 
POST  /conduits/:id/conduit-activations/:activationId/reactivate [Singular last node with POST method.] 
POST  /conduits/:id/tokens [Singular last node with POST method.] 
POST  /deleted/:sessionId/undelete [Singular last node with POST method.] 
POST  /devices/ [Singular last node with POST method.] 
POST  /devices/:id/services/:selector [Singular last node with POST method.] 

***Pattern***
Count: 40
GET  /account/regular methods.
PUT  /account/ [Pluralized last node with PUT|DELETE method.] 
GET  /ecosystems/:id/assetsregular methods.
GET  /ecosystems/:id/assets/:nameregular methods.
PUT  /ecosystems/:id/assets/:name [Pluralized last node with PUT|DELETE method.] 
DELETE  /ecosystems/:id/assets/:name [Pluralized last node with PUT|DELETE method.] 
GET  /clients/regular methods.
GET  /clients/:idregular methods.
PUT  /clients/:id [Pluralized last node with PUT|DELETE method.] 
DELETE  /clients/:id [Pluralized last node with PUT|DELETE method.] 
GET  /clients/:id/tokensregular methods.
GET  /clients/:id/tokens/:tokenIdregular methods.
PUT  /clients/:id/tokens/:tokenId [Pluralized last node with PUT|DELETE method.] 
DELETE  /clients/:id/tokens/:tokenId [Pluralized last node with PUT|DELETE method.] 
GET  /conduits/regular methods.
GET  /conduits/:idregular methods.
PUT  /conduits/:id [Pluralized last node with PUT|DELETE method.] 
DELETE  /conduits/:id [Pluralized last node with PUT|DELETE method.] 
GET  /conduits/:id/conduit-activationsregular methods.
GET  /conduits/:id/conduit-activations/:activationIdregular methods.
DELETE  /conduits/:id/conduit-activations/:activationId [Pluralized last node with PUT|DELETE method.] 
GET  /conduits/:id/conduit-activations/:activationId/local-devicesregular methods.
GET  /conduits/:id/conduit-activations/:activationId/local-devices/:localIdregular methods.
GET  /conduits/:id/tokensregular methods.
GET  /conduits/:id/tokens/:tokenIdregular methods.
DELETE  /conduits/:id/tokens/:tokenId [Pluralized last node with PUT|DELETE method.] 
GET  /deletedregular methods.
GET  /deleted/:sessionId.regular methods.
DELETE  /deleted/:sessionId [Pluralized last node with PUT|DELETE method.] 
GET  /deleted/:sessionId/recordsregular methods.
GET  /devices/regular methods.
GET  /devices/:idregular methods.
PUT  /devices/:id [Pluralized last node with PUT|DELETE method.] 
DELETE  /devices/:id [Pluralized last node with PUT|DELETE method.] 
GET  /devices/:id/historyregular methods.
GET  /devices/:id/servicesregular methods.
GET  /devices/:id/services/:selectorregular methods.
PUT  /devices/:id/services/:selector [Pluralized last node with PUT|DELETE method.] 
PUT  /devices/:id/services [Pluralized last node with PUT|DELETE method.] 
DELETE  /devices/:id/services/:selector [Pluralized last node with PUT|DELETE method.] 
