-
-
Notifications
You must be signed in to change notification settings - Fork 325
/
categories.yml
71 lines (54 loc) · 2.76 KB
/
categories.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
- name: Auto Generators
description: Tools that will take your code and turn it into an OpenAPI Specification document
slug: auto-generators
- name: Converters
description: Various tools to convert to and from OpenAPI and other API description formats.
slug: converters
- name: Data Validators
description: Check to see if API requests and responses are lining up with the API description.
slug: data-validators
- name: Documentation
description: Render API Description as HTML (or maybe a PDF) so slightly less technical people can figure out how to work with the API.
slug: documentation
- name: DSL
description: Writing YAML by hand is no fun, and maybe you don't want a GUI, so use a Domain Specific Language to write OpenAPI in your language of choice.
slug: dsl
- name: Text Editors
description: Text editors give you visual feedback whilst you write OpenAPI, so you can see what docs might look like.
slug: text-editors
- name: GUI Editors
description: Visual editors help you design APIs without needing to memorize the entire OpenAPI specification.
slug: gui-editors
- name: Learning
description: Whether you're trying to get documentation for a third party API based on traffic, or are trying to switch to design-first at an organization with no OpenAPI at all, learning can help you move your API spec forward and keep it up to date.
slug: learning
- name: Mock Servers
description: Fake servers that take description document as input, then route incoming HTTP requests to example responses or dynamically generates examples.
slug: mock
- name: Description Validators
description: Check your API description to see if it is valid OpenAPI.
slug: description-validators
- name: Security
description: By poking around your OpenAPI description, some tools can look out for attack vectors you might not have noticed.
slug: security
- name: SDK Generators
description: Generate code to give to consumers, to help them avoid interacting at a HTTP level.
slug: sdk
- name: Server Implementations
description: Easily create and implement resources and routes for your APIs.
slug: server
- name: Miscellaneous
description: Anything else that does stuff with OpenAPI but hasn't quite got enough to warrant its own category.
slug: miscellaneous
- name: Parsers
description: Loads and read OpenAPI descriptions, so you can work with them programmatically.
slug: parsers
- name: Testing
description: Quickly execute API requests and validate responses on the fly through command line or GUI interfaces.
slug: testing
- name: Gateways
description: API Gateways and related tools that have integrated support for OpenAPI.
slug: gateway
- name: Monitoring
description: Monitoring tools let you know what is going on in your API.
slug: monitoring