diff --git a/frontend/src/api/model.ts b/frontend/src/api/model.ts index 8cfe329e9..50ce66b3b 100644 --- a/frontend/src/api/model.ts +++ b/frontend/src/api/model.ts @@ -76,6 +76,16 @@ export interface Association { sex_qualifier?: string, stage_qualifier?: string, /** The name of the frequency_qualifier entity */ + qualifiers_label?: string, + /** The namespace/prefix of the frequency_qualifier entity */ + qualifiers_namespace?: string, + /** The category of the frequency_qualifier entity */ + qualifiers_category?: string, + /** Field containing frequency_qualifier id and the ids of all of it's ancestors */ + qualifiers_closure?: string[], + /** Field containing frequency_qualifier name and the names of all of it's ancestors */ + qualifiers_closure_label?: string[], + /** The name of the frequency_qualifier entity */ frequency_qualifier_label?: string, /** The namespace/prefix of the frequency_qualifier entity */ frequency_qualifier_namespace?: string, @@ -236,6 +246,16 @@ export interface DirectionalAssociation extends Association { sex_qualifier?: string, stage_qualifier?: string, /** The name of the frequency_qualifier entity */ + qualifiers_label?: string, + /** The namespace/prefix of the frequency_qualifier entity */ + qualifiers_namespace?: string, + /** The category of the frequency_qualifier entity */ + qualifiers_category?: string, + /** Field containing frequency_qualifier id and the ids of all of it's ancestors */ + qualifiers_closure?: string[], + /** Field containing frequency_qualifier name and the names of all of it's ancestors */ + qualifiers_closure_label?: string[], + /** The name of the frequency_qualifier entity */ frequency_qualifier_label?: string, /** The namespace/prefix of the frequency_qualifier entity */ frequency_qualifier_namespace?: string,