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: src/include_access_model/datamodel/include_access_model_pydantic.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -622,7 +622,7 @@ class SubjectAssertion(Record):
622
622
encounter_id: Optional[str] =Field(default=None, title="Encounter ID", description="""Unique identifier for this Encounter.""", json_schema_extra= { "linkml_meta": {'domain_of': ['SubjectAssertion', 'BiospecimenCollection', 'Encounter']} })
623
623
assertion_provenance: Optional[EnumAssertionProvenance] =Field(default=None, title="Assertion Provenance", description="""The original source of this assertion""", json_schema_extra= { "linkml_meta": {'domain_of': ['SubjectAssertion']} })
624
624
age_at_assertion: Optional[int] =Field(default=None, title="Age at assertion", description="""The age in days of the Subject when the assertion was made.""", json_schema_extra= { "linkml_meta": {'domain_of': ['SubjectAssertion'], 'unit': {'ucum_code': 'd'}} })
625
-
age_at_event: Optional[int] =Field(default=None, title="Age at event", description="""The age in days of the Subject at the time point which the assertion describes, | eg, age of onset or when a measurement was performed.""", json_schema_extra= { "linkml_meta": {'domain_of': ['SubjectAssertion', 'Encounter'], 'unit': {'ucum_code': 'd'}} })
625
+
age_at_event: Optional[int] =Field(default=None, title="Age at event", description="""The age in days of the Subject at the time point which the assertion describes, eg, age of onset or when a measurement was performed.""", json_schema_extra= { "linkml_meta": {'domain_of': ['SubjectAssertion', 'Encounter'], 'unit': {'ucum_code': 'd'}} })
626
626
age_at_resolution: Optional[int] =Field(default=None, title="Age at resolution", description="""The age in days of the Subject when the asserted state was resolved.""", json_schema_extra= { "linkml_meta": {'domain_of': ['SubjectAssertion'], 'unit': {'ucum_code': 'd'}} })
627
627
concept: Optional[list[str]] =Field(default=[], title="Concept", description="""The structured term defining the meaning of the assertion.""", json_schema_extra= { "linkml_meta": {'domain_of': ['SubjectAssertion']} })
628
628
concept_source: Optional[str] =Field(default=None, title="Concept Source Text", description="""The source text yielding the standardized concept.""", json_schema_extra= { "linkml_meta": {'domain_of': ['SubjectAssertion']} })
@@ -737,7 +737,7 @@ class Encounter(Record):
737
737
'Encounter',
738
738
'File']} })
739
739
encounter_definition_id: Optional[str] =Field(default=None, title="Encounter Definition ID", description="""Unique identifier for this Encounter Definition.""", json_schema_extra= { "linkml_meta": {'domain_of': ['Encounter', 'EncounterDefinition']} })
740
-
age_at_event: Optional[int] =Field(default=None, title="Age at event", description="""The age in days of the Subject at the time point which the assertion describes, | eg, age of onset or when a measurement was performed.""", json_schema_extra= { "linkml_meta": {'domain_of': ['SubjectAssertion', 'Encounter'], 'unit': {'ucum_code': 'd'}} })
740
+
age_at_event: Optional[int] =Field(default=None, title="Age at event", description="""The age in days of the Subject at the time point which the assertion describes, eg, age of onset or when a measurement was performed.""", json_schema_extra= { "linkml_meta": {'domain_of': ['SubjectAssertion', 'Encounter'], 'unit': {'ucum_code': 'd'}} })
741
741
external_id: Optional[list[str]] =Field(default=[], title="External Identifiers", description="""Other identifiers for this entity, eg, from the submitting study or in systems like dbGaP""", json_schema_extra= { "linkml_meta": {'domain_of': ['Record']} })
0 commit comments