You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ you can find them inside [`/specification`](./specification).
5
5
The [`/compiler`](./compiler) folder contains a TypeScript program that compiles the entire definition
6
6
in a JSON representation that can be used for generating language clients.
7
7
8
-
This JSON representation is formally defined by [a set of TypeScript definitions (a meta-model)](./compiler/model/metamodel.ts)
8
+
This JSON representation is formally defined by [a set of TypeScript definitions (a meta-model)](./compiler/src/model/metamodel.ts)
9
9
that also explains the various properties and their values.
10
10
11
11
## Prepare the environment
@@ -64,7 +64,7 @@ Usage:
64
64
65
65
### Structure of the JSON representation
66
66
67
-
The JSON representation is [formally defined as TypeScript definitions](./compiler/model/metamodel.ts).
67
+
The JSON representation is [formally defined as TypeScript definitions](./compiler/src/model/metamodel.ts).
68
68
Refer to them for the full details. It is an object with two top level keys:
69
69
70
70
```jsonc
@@ -163,7 +163,7 @@ the `request` and `response` value will be `null`.
163
163
## How to validate the specification
164
164
165
165
The specification is validated daily by the [client-flight-recorder](https://github.com/elastic/clients-flight-recorder) project.
166
-
The validation result can be found [here](https://github.com/elastic/clients-flight-recorder/blob/dev/recordings/types-validation/types-validation.md).
166
+
The validation result can be found [here](https://github.com/elastic/clients-flight-recorder/blob/main/recordings/types-validation/types-validation.md).
0 commit comments