-
Notifications
You must be signed in to change notification settings - Fork 9.2k
Expand file tree
/
Copy pathspec.config.json
More file actions
61 lines (61 loc) · 2.38 KB
/
Copy pathspec.config.json
File metadata and controls
61 lines (61 loc) · 2.38 KB
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
{
"slug": "oas",
"shortName": "OAS",
"titleName": "OpenAPI Specification",
"specSrc": "oas.md",
"titleSuffix": "| Introduction, Definitions, & More",
"abstractQuestion": "What is the OpenAPI Specification?",
"abstractText": "The OpenAPI Specification (OAS) defines a standard, programming language-agnostic interface description for HTTP APIs, which allows both humans and computers to discover and understand the capabilities of a service without requiring access to source code, additional documentation, or inspection of network traffic. When properly defined via OpenAPI, a consumer can understand and interact with the remote service with a minimal amount of implementation logic. Similar to what interface descriptions have done for lower-level programming, the OpenAPI Specification removes guesswork in calling a service.",
"metaDescription": "The OpenAPI Specification (OAS) defines a standard, programming language-agnostic interface description for HTTP APIs.",
"copyright": "the Linux Foundation",
"edDraftURI": "https://github.com/OAI/OpenAPI-Specification/",
"logo": {
"src": "https://raw.githubusercontent.com/OAI/OpenAPI-Style-Guide/master/graphics/bitmap/OpenAPI_Logo_Pantone.png",
"alt": "OpenAPI Initiative",
"height": 48,
"url": "https://openapis.org/"
},
"participateLinks": [
{
"value": "GitHub OAI/OpenAPI-Specification",
"href": "https://github.com/OAI/OpenAPI-Specification/"
},
{
"value": "File a bug",
"href": "https://github.com/OAI/OpenAPI-Specification/issues"
},
{
"value": "Commit history",
"href": "https://github.com/OAI/OpenAPI-Specification/commits/main/versions/30.0.1.md"
},
{
"value": "Pull requests",
"href": "https://github.com/OAI/OpenAPI-Specification/pulls"
}
],
"schemas": [
"meta.yaml",
"dialect.yaml",
"schema.yaml",
"schema-base.yaml"
],
"release": {
"sourcePath": "src/oas.md",
"releaseHistoryNote": "$releaseType of the OpenAPI Specification $version",
"removeOnReleaseBranch": [
"src",
"tests/schema/pass",
"tests/schema/fail",
"tests/schema/schema.test.mjs"
],
"schemaVersionRewrite": {
"enabled": true,
"paths": [
"src/schemas/validation/*.yaml",
"tests/schema/schema.test.mjs",
"tests/schema/pass/*.yaml",
"tests/schema/fail/*.yaml"
]
}
}
}