***Antipattern***
Count: 3
POST  /accounts/[account_id]/addons [Singular last node with POST method.] 
POST  /accounts [Singular last node with POST method.] 
POST  /licenses/[license_code]/addons [Singular last node with POST method.] 

***Pattern***
Count: 18
GET  /accounts/[account_id]/addons?apikey=[value]regular methods.
GET  /accounts?apikey=[value]regular methods.
GET  /accounts/[account_id]?apikey=[value]regular methods.
GET  /accounts/[account_id]/status?apikey=[value]regular methods.
PUT  /accounts/[account_id]/status [Pluralized last node with PUT|DELETE method.] 
PUT  /accounts/[account_id]/variation [Pluralized last node with PUT|DELETE method.] 
GET  /signupcheck/domain?productid=[value]&subdomain=[value]&apikey=[value]regular methods.
GET  /signupcheck/email?productid=[value]&email=[value]&apikey=[value]regular methods.
GET  /variations?apikey=[value]regular methods.
GET  /accounts/[account_id]/attributes/[attribute_name]?apikey=[value]regular methods.
PUT  /accounts/[account_id]/attributes/[attribute_name] [Pluralized last node with PUT|DELETE method.] 
DELETE  /accounts/[account_id]/users/[userid]?apikey=[value] [Pluralized last node with PUT|DELETE method.] 
GET  /accounts/[account_id]/users?apikey=[value]regular methods.
GET  /licenses/[license_code]/addons?apikey=[value]regular methods.
PUT  /licenses/[license_code]/addons/[addon_license]/validity [Pluralized last node with PUT|DELETE method.] 
GET  /licenses?apikey=[value]regular methods.
GET  /licenses/[license_code]/attributes/[attribute_name]?apikey=[value]regular methods.
PUT  /licenses/[license_code]/attributes/[attribute_name] [Pluralized last node with PUT|DELETE method.] 
