One of the downsides of being self-taught is that you're forever reinventing the wheel.
I'm working more and more on RESTful architectures and, as a result, need to define resources and how one can interact with them.
Are there any standard (and effective) design methods or templates that help enumerate the various HTTP verbs and potential responses for resources to help ensure that all of the permutations are covered?
Even something as basic as:
+----------------+---------------------------------------------+
| Resource Name: | |
+----------------+---------------------------------------------+
| HTTP METHODS |
+------------+-------------------------------------------------+
| Method | Supported |
+------------+-------------------------------------------------+
| GET | X |
| PUT | X |
| POST | |
| DELETE | |
+------------+-------------------------------------------------+
| RESPONSES |
+--------------------------------------------------------------+
| GET |
+--------------------------------------------------------------+
| Details of valid and necessary parameters for GETs and the |
| possible responses... |
| ... |
+--------------------------------------------------------------+
Sure... I could roll my own, but wondering if there are any broadly recognised methodologies out there that I could adopt.