Convention for API: Difference between revisions
Jump to navigation
Jump to search
(Created page with " {| | valign="top" | /context/path/ ├─ api/ │ ├─ auth/ [OAUTH2 ] │ ├─ docs/ [MANUAL ] │ ├─ ghql/ [GraphQL ] │ ├─ rest...") |
|||
(6 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
| valign="top" | | | valign="top" | | ||
/context/path/ | /context/path/ | ||
├─ api/ | ├─ api/main/ | ||
│ ├─ auth/ [ | │ ├─ auth/ [OAuth2 ] | ||
│ ├─ docs/ [MANUAL ] | │ ├─ docs/ [MANUAL ] | ||
│ ├─ ghql/ [GraphQL ] | │ ├─ ghql/ [GraphQL ] | ||
Line 12: | Line 12: | ||
| valign="top" | | | valign="top" | | ||
│ | |||
├─ api/peer/ | |||
│ ├─ ghql/ | |||
│ └─ rest/ | |||
│ ├─ facbook/ | |||
│ ├─ google/map/ | |||
│ └─ yahoo/weather/ | |||
│ | │ | ||
│ | |||
├─ static/ | | valign="top" | | ||
│ | │ | ||
│ | ├─ gui/main/ | ||
│ | │ ├─ strict/ | ||
│ └─ static/ | |||
│ ├─ *.js | |||
│ ├─ **/*.css | |||
│ └─ **/*.png | |||
│ | │ | ||
| valign="top" | | | valign="top" | | ||
│ | │ | ||
├─ gui/peer/ | |||
├─ strict/ | │ ├─ strict/ | ||
│ ├─ *.js | │ └─ static/ | ||
│ | │ ├─ *.js | ||
│ | │ ├─ **/*.css | ||
│ └─ **/*.png | |||
│ | │ | ||
|} | |} | ||
==Main Alternatives== | |||
/context/path/api/main/ => | |||
├─ /context/path/api/ours/ | |||
└─ /context/path/api/self/ | |||
==References== | |||
* [[Convention for JavaScript Packages and Classes]] | |||
* [[Convention for Cascading Style Sheets]] | |||
* [[Convention for Java Web Start Project]] | |||
* [[Convention for Database Tables]] | |||
* [[Convention for Port]] | |||
* [[Convention for API]] |
Latest revision as of 20:53, 26 July 2020
/context/path/ ├─ api/main/ │ ├─ auth/ [OAuth2 ] │ ├─ docs/ [MANUAL ] │ ├─ ghql/ [GraphQL ] │ ├─ rest/ [REST API] │ └─ soap/ [SOAP API] │ |
│ ├─ api/peer/ │ ├─ ghql/ │ └─ rest/ │ ├─ facbook/ │ ├─ google/map/ │ └─ yahoo/weather/ │ |
│ ├─ gui/main/ │ ├─ strict/ │ └─ static/ │ ├─ *.js │ ├─ **/*.css │ └─ **/*.png │ |
│ ├─ gui/peer/ │ ├─ strict/ │ └─ static/ │ ├─ *.js │ ├─ **/*.css │ └─ **/*.png │ |
Main Alternatives
/context/path/api/main/ => ├─ /context/path/api/ours/ └─ /context/path/api/self/