Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 16 additions & 8 deletions generated/jsonschema/allianceModel.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -22205,7 +22205,10 @@
},
"current_version": {
"description": "The current version of the entity, generated by this nomenclature event. It starts at one, and is incremented by one with every major change.",
"type": "integer"
"type": [
"integer",
"null"
]
},
"date_created": {
"description": "The date on which an entity was created. This can be applied to nodes or edges.",
Expand Down Expand Up @@ -22241,7 +22244,10 @@
},
"event_status": {
"description": "Status for an event change: provisional or approved.",
"type": "string"
"type": [
"string",
"null"
]
},
"event_type": {
"description": "Category of major change event for an entity.",
Expand Down Expand Up @@ -22352,8 +22358,6 @@
"required": [
"single_gene",
"event_type",
"event_status",
"current_version",
"internal"
],
"title": "GeneChangeEventSlotAnnotation",
Expand Down Expand Up @@ -22382,7 +22386,10 @@
},
"current_version": {
"description": "The current version of the entity, generated by this nomenclature event. It starts at one, and is incremented by one with every major change.",
"type": "integer"
"type": [
"integer",
"null"
]
},
"date_created": {
"description": "The date on which an entity was created. This can be applied to nodes or edges.",
Expand Down Expand Up @@ -22418,7 +22425,10 @@
},
"event_status_name": {
"description": "Name of the VocabularyTerm describing the status of an event change: provisional or approved.",
"type": "string"
"type": [
"string",
"null"
]
},
"event_type_name": {
"description": "Name of the VocabularyTerm describing the category of major change event for an entity.",
Expand Down Expand Up @@ -22521,8 +22531,6 @@
"required": [
"gene_identifier",
"event_type_name",
"event_status_name",
"current_version",
"internal"
],
"title": "GeneChangeEventSlotAnnotationDTO",
Expand Down
13 changes: 10 additions & 3 deletions model/schema/core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,11 @@ classes:
- symbol_renamed_from
- full_name_renamed_to
- full_name_renamed_from
slot_usage:
event_status:
required: false
current_version:
required: false

ChangeEventSlotAnnotationDTO:
is_a: SlotAnnotationDTO
Expand All @@ -431,6 +436,11 @@ classes:
- symbol_renamed_from
- full_name_renamed_to
- full_name_renamed_from
slot_usage:
event_status_name:
required: false
current_version:
required: false

Association:
is_a: AuditedObject
Expand Down Expand Up @@ -1096,23 +1106,20 @@ slots:
Status for an event change: provisional or approved.
range: VocabularyTerm
multivalued: false
required: true

event_status_name:
description: >-
Name of the VocabularyTerm describing the status of an event change:
provisional or approved.
range: string
multivalued: false
required: true

current_version:
description: >-
The current version of the entity, generated by this nomenclature event.
It starts at one, and is incremented by one with every major change.
range: integer
multivalued: false
required: true

acquires_in_merge:
description: >-
Expand Down
Loading