A publication related to IGVF.
| Name | Type | Description | Notes |
|---|---|---|---|
| release_timestamp | str | The date the object was released. | [optional] |
| publication_identifiers | List[str] | The publication identifiers that provide more information about the object. | [optional] |
| status | str | The status of the metadata object. | [optional] |
| lab | str | Lab associated with the submission. | [optional] |
| award | str | Grant associated with the submission. | [optional] |
| attachment | Attachment | [optional] | |
| schema_version | str | The version of the JSON schema that the server uses to validate the object. | [optional] |
| uuid | str | The unique identifier associated with every object. | [optional] |
| notes | str | DACC internal notes. | [optional] |
| aliases | List[str] | Lab specific identifiers to reference an object. | [optional] |
| creation_timestamp | str | The date the object was created. | [optional] |
| submitted_by | str | The user who submitted the object. | [optional] |
| submitter_comment | str | Additional information specified by the submitter to be displayed as a comment on the portal. | [optional] |
| description | str | A plain text description of the object. | [optional] |
| title | str | Title of the publication or communication. | [optional] |
| abstract | str | Abstract of the publication or communication. | [optional] |
| authors | str | The authors of the publication. | [optional] |
| date_published | str | The date the publication or communication was published; must be in YYYY-MM-DD format. | [optional] |
| date_revised | str | The date the publication was revised. | [optional] |
| issue | str | The issue of the publication. | [optional] |
| page | str | Pagination of the reference | [optional] |
| volume | str | The volume of the publication. | [optional] |
| journal | str | The journal of the publication. | [optional] |
| published_by | List[str] | The affiliation of the lab with a larger organization, such as IGVF. | [optional] |
| id | str | [optional] | |
| type | List[str] | [optional] | |
| summary | str | A summary of the object. | [optional] |
| publication_year | int | The year the publication was published. | [optional] |
from igvf_client.models.publication import Publication
# TODO update the JSON string below
json = "{}"
# create an instance of Publication from a JSON string
publication_instance = Publication.from_json(json)
# print the JSON string representation of the object
print(Publication.to_json())
# convert the object into a dict
publication_dict = publication_instance.to_dict()
# create an instance of Publication from a dict
publication_from_dict = Publication.from_dict(publication_dict)