Recently, spacing https://github.com/before-interop/common/issues/44 fixed spacing and schemas nested parts, especially for those using the allOf keywords. Some of these schemas in https://github.com/before-interop/common were referenced in this project using the $ref keyword. Since $ref links uses a common syntax not specific for OpenApi files, it is not aware that properties nested in allOf elements are part of the schema itself. That's why we need to explicitly specify that these properties are nested in allOf/1 where 1 is the second element of the schemas nested under allOf.
Recently, spacing https://github.com/before-interop/common/issues/44 fixed spacing and schemas nested parts, especially for those using the
allOf
keywords. Some of these schemas in https://github.com/before-interop/common were referenced in this project using the$ref
keyword. Since$ref
links uses a common syntax not specific for OpenApi files, it is not aware that properties nested inallOf
elements are part of the schema itself. That's why we need to explicitly specify that these properties are nested inallOf/1
where1
is the second element of the schemas nested underallOf
.