***Antipattern***
Count: 2
POST  /create?accessKey={accessKey}&name={name}&ownerId={ownerId} [Singular last node with POST method.] 
POST  /setUseCookies/{id}?accessKey={accessKey}&useCookies={useCookies} [Singular last node with POST method.] 

***Pattern***
Count: 30
PUT  /setResultSummaryState?accessKey={accessKey} [Pluralized last node with PUT|DELETE method.] 
GET  /getResultSummaryState/{id}?accessKey={accessKey}regular methods.
GET  /getPublicResultSummaryState/{id}regular methods.
GET  /getSurveyResults/{id}?accessKey={accessKey}&from={from}&till={till}regular methods.
GET  /getSurveyPublicResults/{id}?from={from}&till={till}regular methods.
GET  /generateAccessKey?accessKey={accessKey}regular methods.
GET  /getSurveyInfo?accessKey={accessKey}&surveyId={surveyId}&ownerId={ownerId}regular methods.
GET  /getActive?accessKey={accessKey}&ownerId={ownerId}regular methods.
GET  /getArchive?accessKey={accessKey}&ownerId={ownerId}regular methods.
PUT  /archive/{id}?accessKey={accessKey} [Pluralized last node with PUT|DELETE method.] 
PUT  /restore/{id}?accessKey={accessKey} [Pluralized last node with PUT|DELETE method.] 
DELETE  /delete/{id}?accessKey={accessKey} [Pluralized last node with PUT|DELETE method.] 
PUT  /changeName/{id}?accessKey={accessKey}&name={name} [Pluralized last node with PUT|DELETE method.] 
PUT  /changeJson?accessKey={accessKey} [Pluralized last node with PUT|DELETE method.] 
PUT  /publish/{id}?accessKey={accessKey} [Pluralized last node with PUT|DELETE method.] 
PUT  /unPublish/{id}?accessKey={accessKey} [Pluralized last node with PUT|DELETE method.] 
PUT  /setUseCookies/{id}?accessKey={accessKey}&useCookies={useCookies} [Pluralized last node with PUT|DELETE method.] 
GET  /getIsResultPublic/{id}?accessKey={accessKey}regular methods.
PUT  /makeResultPublic/{id}?accessKey={accessKey}&makeResultPublic={makeResultPublic} [Pluralized last node with PUT|DELETE method.] 
PUT  /storeIPAddressInResult/{id}?accessKey={accessKey}&storeIPAddress={storeIPAddress} [Pluralized last node with PUT|DELETE method.] 
DELETE  /deleteResult?accessKey={accessKey}&postId={postId}&instanceId={instanceId} [Pluralized last node with PUT|DELETE method.] 
DELETE  /deleteAllResults/{id}?accessKey={accessKey} [Pluralized last node with PUT|DELETE method.] 
GET  /getResultColumns/{id}?accessKey={accessKey}regular methods.
PUT  /setResultColumns?accessKey={accessKey} [Pluralized last node with PUT|DELETE method.] 
GET  /getResultPublicColumns/{id}regular methods.
GET  /getResultTableState/{id}?accessKey={accessKey}regular methods.
PUT  /setResultTableState?accessKey={accessKey} [Pluralized last node with PUT|DELETE method.] 
GET  /getPublicResultTableState/{id}regular methods.
PUT  /setResultPermissions?accessKey={accessKey} [Pluralized last node with PUT|DELETE method.] 
PUT  /makeResultPublic/{id}?accessKey={accessKey}&makeResultPublic={makeResultPublic} [Pluralized last node with PUT|DELETE method.] 
