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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
# Heading 1
Text for first chapter
## Version 30.0.1
This is the conformance section
## Heading 2
Text for <a name="first-anchor"></a>first section
## Definitions
### Foo
Definition of Foo.
## Another Heading 2
Text for second section
[Relative link to example](../examples/foo.yaml)
[Relative link to something else](../something/else)
### Heading 3
Text for first subsection
[RFC3986](https://datatracker.ietf.org/doc/html/rfc3986)
[RFC9110](https://www.rfc-editor.org/rfc/rfc9110.html#section-4)
```json
{
"foo": true
}
```
```yaml
foo: true
```
```text
text/plain
```
```
no language
```
```unknown
unknown language
```
```uri
https://foo.com/bar?baz=qux&fred=waldo#fragment
```
```uritemplate
https://foo.com/bar{?baz*,qux}
```
```multipart
--boundary-example
Content-Type: application/openapi+yaml
Content-Location: https://inaccessible-domain.com/api/openapi.yaml
openapi: 3.2.0
info:
title: Example API
version: 1.0
externalDocs:
url: docs.html
--boundary-example
Content-Type: text/html
Content-Location: https://example.com/api/docs.html
<html>
<head>
<title>API Documentation</title>
</head>
<body>
<p>Awesome documentation goes here</p>
</body>
</html>
```
```eventstream
event: addString
data: This data is formatted
data: across two lines
retry: 5
event: addNumber
data: 1234.5678
unknownField: this is ignored
: This is a comment
event: addJSON
data: {"foo": 42}
```
```jsonl
{"event": "addString", "data": "This data is formatted\nacross two lines", "retry": 5}
{"event": "addNumber", "data": "1234.5678"}
{"event": "addJSON", "data": "{\"foo\": 42}"}
```
```ndjson
{"event": "addString", "data": "This data is formatted\nacross two lines", "retry": 5}
{"event": "addNumber", "data": "1234.5678"}
{"event": "addJSON", "data": "{\"foo\": 42}"}
```
```jsonseq
0x1E{
"timestamp": "1985-04-12T23:20:50.52Z",
"level": 1,
"message": "Hi!"
}
0x1E{
"timestamp": "1985-04-12T23:20:51.37Z",
"level": 1,
"message": "Bye!"
}
```
## Appendix A: Revision History
Version | Date
--------|-----------
30.0.1 | 3001-04-01
|