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
The @ext_doc_id modifier was added in #3028
While using it in #3023, it was noticeable that some occurrences were correctly shown in the schema.json (by running make generate) but missing from the OpenAPI documents (by running make transform-to-openapi).
For example, if I add the following in specification/_global/search/_types/FieldCollapse.ts:
/**
* @ext_doc_id collapse-search-results
*/
export class FieldCollapse {
...
But there is no corresponding change to the OpenAPI document.
I did not identify the pattern of why certain occurrences were missing, but it will warrant further investigation if we implement more of those links. It might be as simple as neglecting to add support for @ext_doc_id on one of the specification data types. Alternatively, it seems to me it might reasonably be related to the sibling issue described in #2918
This issue serves as a reminder to dig deeper into this issue so we make full use of all those links we're adding.
The text was updated successfully, but these errors were encountered:
The @ext_doc_id modifier was added in #3028
While using it in #3023, it was noticeable that some occurrences were correctly shown in the
schema.json
(by running make generate) but missing from the OpenAPI documents (by running make transform-to-openapi).For example, if I add the following in specification/_global/search/_types/FieldCollapse.ts:
... The schema.json contains:
But there is no corresponding change to the OpenAPI document.
I did not identify the pattern of why certain occurrences were missing, but it will warrant further investigation if we implement more of those links. It might be as simple as neglecting to add support for @ext_doc_id on one of the specification data types. Alternatively, it seems to me it might reasonably be related to the sibling issue described in #2918
This issue serves as a reminder to dig deeper into this issue so we make full use of all those links we're adding.
The text was updated successfully, but these errors were encountered: