An institutional certificate defining the data sharing limitations for data authorized for submission to the IGVF portal.
| Name | Type | Description | Notes |
|---|---|---|---|
| release_timestamp | str | The date the object was released. | [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] |
| 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] |
| certificate_identifier | str | A unique identifier for the certificate. | [optional] |
| controlled_access | bool | Indicator of whether the samples are under controlled access. | [optional] |
| data_use_limitation | str | Code indicating the limitations on data use for data generated from the applicable samples. GRU (General research use): Use of the data is limited only by the terms of the Data Use Certification: these data will be added to the dbGaP Collection. HMB (Health/medical/biomedical): Use of the data is limited to health/medical/biomedical purposes, does not include the study of population origins or ancestry. DS (Disease specific): Use of the data must be related to the specified disease. Other: any other customized limitation. | [optional] |
| data_use_limitation_modifiers | List[str] | Code indicating a modifier on the limitations on data use for data generated from the applicable samples. COL: Requestor must provide a letter of collaboration with the primary study investigator(s). GSO: Use of the data is limited to genetic studies only. IRB: Approval Required IRB Requestor must provide documentation of local IRB approval. MDS: Use of the data includes methods development research (e.g., development and testing of software or algorithms). NPU: Use of the data is limited to not-for-profit organizations. PUB: Requestor agrees to make results of studies using the data available to the larger scientific community. | [optional] |
| samples | List[str] | Samples covered by this institutional certificate. | [optional] |
| urls | List[str] | Link to the institutional certification form. | [optional] |
| id | str | [optional] | |
| type | List[str] | [optional] | |
| summary | str | A summary of the object. | [optional] |
from igvf_client.models.institutional_certificate import InstitutionalCertificate
# TODO update the JSON string below
json = "{}"
# create an instance of InstitutionalCertificate from a JSON string
institutional_certificate_instance = InstitutionalCertificate.from_json(json)
# print the JSON string representation of the object
print(InstitutionalCertificate.to_json())
# convert the object into a dict
institutional_certificate_dict = institutional_certificate_instance.to_dict()
# create an instance of InstitutionalCertificate from a dict
institutional_certificate_from_dict = InstitutionalCertificate.from_dict(institutional_certificate_dict)