Skip to content
Snippets Groups Projects
Commit 992d0839 authored by Jueun Park's avatar Jueun Park
Browse files

Edited index.md

parent 1f2f5f33
No related branches found
No related tags found
1 merge request!7Resolve "Add documentation in pages"
Pipeline #13249 passed
......@@ -28,9 +28,14 @@ OpenAPIObject ::= <OpenAPI> <JsonSchemaDialect> I:InfoObject Serv:ServerObject
There are some implementation details developers must consider:
- JastAdd doesn't support `Map`. So, it must be constructed in a tuple (AST-Node). e.g. `ServerVariablesTuple ::= <Name> S:ServerVariableObject;` <-> `variables` in [Server Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#serverObject)
- JastAdd doesn't support `Map`. So, it must be constructed in a tuple (AST-Node). e.g.
- `ServerVariablesTuple ::= <Name> S:ServerVariableObject;`
- `variables` in [Server Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#serverObject)
- In OAS, several objects can be replaced by [Reference Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#referenceObject). In `RAGO`, we implemented this structure in an abstract node to every concerned object. e.g.
- [Parameter Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#parameterObject)
- following abstract node in JastAdd
- In OAS, several objects can be replaced by [Reference Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#referenceObject). In `RAGO`, we implemented this structure in an abstract node to every concerned object. e.g. [Parameter Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#parameterObject)
```
abstract ParameterOb;
ParameterReference : ParameterOb ::= <Ref> ...;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment