├── .conda.yml ├── .coveragerc ├── .coveralls.yml ├── .deepsource.toml ├── .dockerignore ├── .editorconfig ├── .env.sample ├── .flake8 ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .keys ├── README.md └── extract_keys ├── .nojekyll ├── .readthedocs.yml ├── .travis.yml ├── .travis ├── .deploy.key ├── README.md └── deploy.crt ├── .well-known └── acme-challenge │ └── README.md ├── CNAME ├── Dockerfile ├── Dockerfile.dev ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── README.rst ├── _config.yml ├── _locustfile.sample.py ├── app.conf ├── app.wsgi ├── application.py ├── backup-db.sh ├── conf ├── apache2.conf ├── app.conf ├── app.wsgi ├── attribute-map.xml ├── init-user-db.sh ├── orcid_swagger_v3_config.json ├── render_template └── templates │ └── shibboleth2.xml ├── dev ├── dev_requirements.txt ├── docker-compose.yml ├── docs ├── CNAME ├── Makefile ├── _static │ └── custom.css ├── _templates │ └── page.html ├── app_registration.rst ├── certificates.rst ├── conf.py ├── customising_email_messages.rst ├── db_recovery.rst ├── development_env.rst ├── docker.rst ├── examples │ ├── example_affiliations.csv │ ├── example_affiliations.tsv │ ├── example_fundings.json │ ├── example_fundings.yaml │ ├── example_peer_reviews.json │ ├── example_peer_reviews.yaml │ ├── example_works.json │ └── example_works.yaml ├── fundings_schema.md ├── images │ ├── api_app_registration.png │ ├── app_credentials.png │ ├── app_registration_form.png │ ├── orcid_api_directly.png │ ├── orcid_api_proxy.png │ ├── reset_client_secret.png │ ├── webhooks_form.png │ ├── webhooks_invocation.png │ ├── webhooks_menu.png │ └── webhooks_registration.png ├── index.rst ├── installation.rst ├── modules.rst ├── orcid_api.apis.rst ├── orcid_api.models.rst ├── orcid_api.rst ├── orcid_api_proxy.rst ├── orcid_api_spec.rst ├── orcid_hub.rst ├── peer_review_schema.md ├── pg_upgrade.rst ├── pg_upgrade_15.rst ├── sendmail.rst ├── shibboleth.rst ├── troubleshooting.rst ├── virtualbox.rst ├── webhooks.rst ├── works_schema.md ├── writing_affiliation_items.rst ├── writing_funding_items.rst ├── writing_peer_review_items.rst └── writing_work_items.rst ├── flask.sh ├── gen-keys ├── README.md ├── domains.txt └── genkey.sh ├── install_package.sh ├── instance ├── README.md └── settings.sample.cfg ├── load_testing ├── README.md ├── goaccess.conf └── simple.jmx ├── locustfile.py ├── main.py ├── nginx.conf.sample ├── orcid_api ├── README.md ├── __init__.py ├── api_client.py ├── apis │ ├── __init__.py │ ├── development_member_apiv30_dev1_api.py │ ├── member_apiv20_api.py │ └── member_apiv21_api.py ├── configuration.py ├── docs │ ├── ActivitiesSummary.md │ ├── Address.md │ ├── Amount.md │ ├── AuthorizationUrl.md │ ├── BulkElement.md │ ├── Citation.md │ ├── Contributor.md │ ├── ContributorAttributes.md │ ├── ContributorEmail.md │ ├── ContributorOrcid.md │ ├── Country.md │ ├── CreatedDate.md │ ├── CreditName.md │ ├── Day.md │ ├── DisambiguatedOrganization.md │ ├── Education.md │ ├── EducationSummary.md │ ├── Educations.md │ ├── Employment.md │ ├── EmploymentSummary.md │ ├── Employments.md │ ├── ExternalID.md │ ├── ExternalIDs.md │ ├── Funding.md │ ├── FundingContributor.md │ ├── FundingContributorAttributes.md │ ├── FundingContributors.md │ ├── FundingGroup.md │ ├── FundingSummary.md │ ├── FundingTitle.md │ ├── Fundings.md │ ├── FuzzyDate.md │ ├── GroupIdRecord.md │ ├── GroupIdRecords.md │ ├── Item.md │ ├── Items.md │ ├── Keyword.md │ ├── LastModifiedDate.md │ ├── MemberAPIV20Api.md │ ├── MemberAPIV21Api.md │ ├── Month.md │ ├── Notification.md │ ├── NotificationPermission.md │ ├── Organization.md │ ├── OrganizationAddress.md │ ├── OrganizationDefinedFundingSubType.md │ ├── OtherName.md │ ├── PeerReview.md │ ├── PeerReviewGroup.md │ ├── PeerReviewSummary.md │ ├── PeerReviews.md │ ├── PersonExternalIdentifier.md │ ├── PublicationDate.md │ ├── ResearcherUrl.md │ ├── Source.md │ ├── SourceClientId.md │ ├── SourceName.md │ ├── SourceOrcid.md │ ├── Subtitle.md │ ├── Title.md │ ├── TranslatedTitle.md │ ├── Url.md │ ├── Work.md │ ├── WorkBulk.md │ ├── WorkContributors.md │ ├── WorkGroup.md │ ├── WorkSummary.md │ ├── WorkTitle.md │ ├── Works.md │ └── Year.md ├── models │ ├── __init__.py │ ├── activities_summary.py │ ├── address.py │ ├── amount.py │ ├── authorization_url.py │ ├── bulk_element.py │ ├── citation.py │ ├── contributor.py │ ├── contributor_attributes.py │ ├── contributor_email.py │ ├── contributor_orcid.py │ ├── country.py │ ├── created_date.py │ ├── credit_name.py │ ├── day.py │ ├── disambiguated_organization.py │ ├── education.py │ ├── education_summary.py │ ├── educations.py │ ├── employment.py │ ├── employment_summary.py │ ├── employments.py │ ├── external_i_ds.py │ ├── external_id.py │ ├── funding.py │ ├── funding_contributor.py │ ├── funding_contributor_attributes.py │ ├── funding_contributors.py │ ├── funding_group.py │ ├── funding_summary.py │ ├── funding_title.py │ ├── fundings.py │ ├── fuzzy_date.py │ ├── group_id_record.py │ ├── group_id_records.py │ ├── item.py │ ├── items.py │ ├── keyword.py │ ├── last_modified_date.py │ ├── month.py │ ├── notification.py │ ├── notification_permission.py │ ├── organization.py │ ├── organization_address.py │ ├── organization_defined_funding_sub_type.py │ ├── other_name.py │ ├── peer_review.py │ ├── peer_review_group.py │ ├── peer_review_summary.py │ ├── peer_reviews.py │ ├── person_external_identifier.py │ ├── publication_date.py │ ├── researcher_url.py │ ├── source.py │ ├── source_client_id.py │ ├── source_name.py │ ├── source_orcid.py │ ├── subtitle.py │ ├── title.py │ ├── transient_non_empty_string.py │ ├── translated_title.py │ ├── url.py │ ├── work.py │ ├── work_bulk.py │ ├── work_contributors.py │ ├── work_group.py │ ├── work_summary.py │ ├── work_title.py │ ├── works.py │ └── year.py └── rest.py ├── orcid_api_v3 ├── __init__.py ├── api │ ├── __init__.py │ ├── development_member_api_v3_0_api.py │ ├── development_member_api_v3_0_rc1_api.py │ ├── development_member_api_v3_0_rc2_api.py │ ├── member_api_v2_0_api.py │ └── member_api_v2_1_api.py ├── api_client.py ├── configuration.py ├── docs │ ├── ActivitiesSummaryV20.md │ ├── ActivitiesSummaryV30.md │ ├── ActivitiesSummaryV30Rc1.md │ ├── ActivitiesSummaryV30Rc2.md │ ├── AddressV20.md │ ├── AddressV30.md │ ├── AddressV30Rc1.md │ ├── AddressV30Rc2.md │ ├── AddressesV20.md │ ├── AddressesV30.md │ ├── AddressesV30Rc1.md │ ├── AddressesV30Rc2.md │ ├── AffiliationGroupV30.md │ ├── AffiliationGroupV30DistinctionSummaryV30.md │ ├── AffiliationGroupV30EducationSummaryV30.md │ ├── AffiliationGroupV30EmploymentSummaryV30.md │ ├── AffiliationGroupV30InvitedPositionSummaryV30.md │ ├── AffiliationGroupV30MembershipSummaryV30.md │ ├── AffiliationGroupV30QualificationSummaryV30.md │ ├── AffiliationGroupV30Rc1.md │ ├── AffiliationGroupV30Rc1DistinctionSummaryV30Rc1.md │ ├── AffiliationGroupV30Rc1EducationSummaryV30Rc1.md │ ├── AffiliationGroupV30Rc1EmploymentSummaryV30Rc1.md │ ├── AffiliationGroupV30Rc1InvitedPositionSummaryV30Rc1.md │ ├── AffiliationGroupV30Rc1MembershipSummaryV30Rc1.md │ ├── AffiliationGroupV30Rc1QualificationSummaryV30Rc1.md │ ├── AffiliationGroupV30Rc1ServiceSummaryV30Rc1.md │ ├── AffiliationGroupV30Rc2.md │ ├── AffiliationGroupV30Rc2DistinctionSummaryV30Rc2.md │ ├── AffiliationGroupV30Rc2EducationSummaryV30Rc2.md │ ├── AffiliationGroupV30Rc2EmploymentSummaryV30Rc2.md │ ├── AffiliationGroupV30Rc2InvitedPositionSummaryV30Rc2.md │ ├── AffiliationGroupV30Rc2MembershipSummaryV30Rc2.md │ ├── AffiliationGroupV30Rc2QualificationSummaryV30Rc2.md │ ├── AffiliationGroupV30Rc2ServiceSummaryV30Rc2.md │ ├── AffiliationGroupV30ServiceSummaryV30.md │ ├── AffiliationSummaryV30.md │ ├── AffiliationSummaryV30Rc1.md │ ├── AffiliationSummaryV30Rc2.md │ ├── AmountV20.md │ ├── AmountV30.md │ ├── AmountV30Rc1.md │ ├── AmountV30Rc2.md │ ├── AuthorizationUrlV20.md │ ├── AuthorizationUrlV30.md │ ├── AuthorizationUrlV30Rc1.md │ ├── AuthorizationUrlV30Rc2.md │ ├── BiographyV20.md │ ├── BiographyV30.md │ ├── BiographyV30Rc1.md │ ├── BiographyV30Rc2.md │ ├── BulkElement.md │ ├── Citation.md │ ├── ClientSummary.md │ ├── CompletionDateV20.md │ ├── CompletionDateV30.md │ ├── CompletionDateV30Rc1.md │ ├── CompletionDateV30Rc2.md │ ├── ContributorAttributesV30.md │ ├── ContributorAttributesV30Rc1.md │ ├── ContributorAttributesV30Rc2.md │ ├── ContributorEmailV20.md │ ├── ContributorEmailV30.md │ ├── ContributorEmailV30Rc1.md │ ├── ContributorEmailV30Rc2.md │ ├── ContributorOrcidV20.md │ ├── ContributorOrcidV30.md │ ├── ContributorOrcidV30Rc1.md │ ├── ContributorOrcidV30Rc2.md │ ├── ContributorV20.md │ ├── ContributorV30.md │ ├── ContributorV30Rc1.md │ ├── ContributorV30Rc2.md │ ├── CountryV20.md │ ├── CountryV30.md │ ├── CountryV30Rc1.md │ ├── CountryV30Rc2.md │ ├── CreatedDateV20.md │ ├── CreatedDateV30.md │ ├── CreatedDateV30Rc1.md │ ├── CreatedDateV30Rc2.md │ ├── CreditNameV20.md │ ├── CreditNameV30.md │ ├── CreditNameV30Rc1.md │ ├── CreditNameV30Rc2.md │ ├── Currency.md │ ├── DayV20.md │ ├── DayV30.md │ ├── DayV30Rc1.md │ ├── DayV30Rc2.md │ ├── DeactivationDateV20.md │ ├── DeactivationDateV30.md │ ├── DeactivationDateV30Rc1.md │ ├── DeactivationDateV30Rc2.md │ ├── DevelopmentMemberAPIV30Api.md │ ├── DevelopmentMemberAPIV30Rc1Api.md │ ├── DevelopmentMemberAPIV30Rc2Api.md │ ├── DisambiguatedOrganizationV20.md │ ├── DisambiguatedOrganizationV30.md │ ├── DisambiguatedOrganizationV30Rc1.md │ ├── DisambiguatedOrganizationV30Rc2.md │ ├── DistinctionSummaryV30.md │ ├── DistinctionSummaryV30Rc1.md │ ├── DistinctionSummaryV30Rc2.md │ ├── DistinctionV30.md │ ├── DistinctionV30Rc1.md │ ├── DistinctionV30Rc2.md │ ├── DistinctionsSummaryV30.md │ ├── DistinctionsSummaryV30Rc2.md │ ├── DistinctionsV30Rc1.md │ ├── EducationSummaryV20.md │ ├── EducationSummaryV30.md │ ├── EducationSummaryV30Rc1.md │ ├── EducationSummaryV30Rc2.md │ ├── EducationV20.md │ ├── EducationV30.md │ ├── EducationV30Rc1.md │ ├── EducationV30Rc2.md │ ├── EducationsSummaryV20.md │ ├── EducationsSummaryV30.md │ ├── EducationsSummaryV30Rc1.md │ ├── EducationsSummaryV30Rc2.md │ ├── EmailV20.md │ ├── EmailV30.md │ ├── EmailV30Rc1.md │ ├── EmailV30Rc2.md │ ├── EmailsV20.md │ ├── EmailsV30.md │ ├── EmailsV30Rc1.md │ ├── EmailsV30Rc2.md │ ├── EmploymentSummaryV20.md │ ├── EmploymentSummaryV30.md │ ├── EmploymentSummaryV30Rc1.md │ ├── EmploymentSummaryV30Rc2.md │ ├── EmploymentV20.md │ ├── EmploymentV30.md │ ├── EmploymentV30Rc1.md │ ├── EmploymentV30Rc2.md │ ├── EmploymentsSummaryV20.md │ ├── EmploymentsSummaryV30.md │ ├── EmploymentsSummaryV30Rc1.md │ ├── EmploymentsSummaryV30Rc2.md │ ├── ExternalIDV20.md │ ├── ExternalIDV30.md │ ├── ExternalIDV30Rc1.md │ ├── ExternalIDV30Rc2.md │ ├── ExternalIDsV20.md │ ├── ExternalIDsV30.md │ ├── ExternalIDsV30Rc1.md │ ├── ExternalIDsV30Rc2.md │ ├── FamilyNameV20.md │ ├── FamilyNameV30.md │ ├── FamilyNameV30Rc1.md │ ├── FamilyNameV30Rc2.md │ ├── FundingContributorAttributesV20.md │ ├── FundingContributorAttributesV30.md │ ├── FundingContributorAttributesV30Rc1.md │ ├── FundingContributorAttributesV30Rc2.md │ ├── FundingContributorV20.md │ ├── FundingContributorV30.md │ ├── FundingContributorV30Rc1.md │ ├── FundingContributorV30Rc2.md │ ├── FundingContributorsV20.md │ ├── FundingContributorsV30.md │ ├── FundingContributorsV30Rc1.md │ ├── FundingContributorsV30Rc2.md │ ├── FundingGroupV20.md │ ├── FundingGroupV30.md │ ├── FundingGroupV30Rc1.md │ ├── FundingGroupV30Rc2.md │ ├── FundingSummaryV20.md │ ├── FundingSummaryV30.md │ ├── FundingSummaryV30Rc1.md │ ├── FundingSummaryV30Rc2.md │ ├── FundingTitleV20.md │ ├── FundingTitleV30.md │ ├── FundingTitleV30Rc1.md │ ├── FundingTitleV30Rc2.md │ ├── FundingV20.md │ ├── FundingV30.md │ ├── FundingV30Rc1.md │ ├── FundingV30Rc2.md │ ├── FundingsV20.md │ ├── FundingsV30.md │ ├── FundingsV30Rc1.md │ ├── FundingsV30Rc2.md │ ├── FuzzyDateV20.md │ ├── FuzzyDateV30.md │ ├── FuzzyDateV30Rc1.md │ ├── FuzzyDateV30Rc2.md │ ├── GivenNamesV20.md │ ├── GivenNamesV30.md │ ├── GivenNamesV30Rc1.md │ ├── GivenNamesV30Rc2.md │ ├── GroupIdRecord.md │ ├── GroupIdRecords.md │ ├── HistoryV20.md │ ├── HistoryV30.md │ ├── HistoryV30Rc1.md │ ├── HistoryV30Rc2.md │ ├── InvitedPositionSummaryV30.md │ ├── InvitedPositionSummaryV30Rc1.md │ ├── InvitedPositionSummaryV30Rc2.md │ ├── InvitedPositionV30.md │ ├── InvitedPositionV30Rc1.md │ ├── InvitedPositionV30Rc2.md │ ├── InvitedPositionsV30.md │ ├── InvitedPositionsV30Rc1.md │ ├── InvitedPositionsV30Rc2.md │ ├── ItemV20.md │ ├── ItemV30.md │ ├── ItemV30Rc1.md │ ├── ItemV30Rc2.md │ ├── ItemsV20.md │ ├── ItemsV30.md │ ├── ItemsV30Rc1.md │ ├── ItemsV30Rc2.md │ ├── KeywordV20.md │ ├── KeywordV30.md │ ├── KeywordV30Rc1.md │ ├── KeywordV30Rc2.md │ ├── KeywordsV20.md │ ├── KeywordsV30.md │ ├── KeywordsV30Rc1.md │ ├── KeywordsV30Rc2.md │ ├── LastModifiedDateV20.md │ ├── LastModifiedDateV30.md │ ├── LastModifiedDateV30Rc1.md │ ├── LastModifiedDateV30Rc2.md │ ├── MemberAPIV20Api.md │ ├── MemberAPIV21Api.md │ ├── MembershipSummaryV30.md │ ├── MembershipSummaryV30Rc1.md │ ├── MembershipSummaryV30Rc2.md │ ├── MembershipV30.md │ ├── MembershipV30Rc1.md │ ├── MembershipV30Rc2.md │ ├── MembershipsV30.md │ ├── MembershipsV30Rc1.md │ ├── MembershipsV30Rc2.md │ ├── MonthV20.md │ ├── MonthV30.md │ ├── MonthV30Rc1.md │ ├── MonthV30Rc2.md │ ├── NameV20.md │ ├── NameV30.md │ ├── NameV30Rc1.md │ ├── NameV30Rc2.md │ ├── Notification.md │ ├── NotificationPermissionV20.md │ ├── NotificationPermissionV30.md │ ├── NotificationPermissionV30Rc1.md │ ├── NotificationPermissionV30Rc2.md │ ├── OrcidIdentifierV20.md │ ├── OrcidIdentifierV30.md │ ├── OrcidIdentifierV30Rc1.md │ ├── OrcidIdentifierV30Rc2.md │ ├── OrganizationAddressV20.md │ ├── OrganizationAddressV30.md │ ├── OrganizationAddressV30Rc1.md │ ├── OrganizationAddressV30Rc2.md │ ├── OrganizationDefinedFundingSubTypeV20.md │ ├── OrganizationDefinedFundingSubTypeV30.md │ ├── OrganizationDefinedFundingSubTypeV30Rc1.md │ ├── OrganizationDefinedFundingSubTypeV30Rc2.md │ ├── OrganizationV20.md │ ├── OrganizationV30.md │ ├── OrganizationV30Rc1.md │ ├── OrganizationV30Rc2.md │ ├── OtherNameV20.md │ ├── OtherNameV30.md │ ├── OtherNameV30Rc1.md │ ├── OtherNameV30Rc2.md │ ├── OtherNamesV20.md │ ├── OtherNamesV30.md │ ├── OtherNamesV30Rc1.md │ ├── OtherNamesV30Rc2.md │ ├── PeerReviewDuplicateGroupV30.md │ ├── PeerReviewDuplicateGroupV30Rc1.md │ ├── PeerReviewDuplicateGroupV30Rc2.md │ ├── PeerReviewGroupV20.md │ ├── PeerReviewGroupV30.md │ ├── PeerReviewGroupV30Rc1.md │ ├── PeerReviewGroupV30Rc2.md │ ├── PeerReviewSummaryV20.md │ ├── PeerReviewSummaryV30.md │ ├── PeerReviewSummaryV30Rc1.md │ ├── PeerReviewSummaryV30Rc2.md │ ├── PeerReviewV20.md │ ├── PeerReviewV30.md │ ├── PeerReviewV30Rc1.md │ ├── PeerReviewV30Rc2.md │ ├── PeerReviewsV20.md │ ├── PeerReviewsV30.md │ ├── PeerReviewsV30Rc1.md │ ├── PeerReviewsV30Rc2.md │ ├── PersonExternalIdentifierV20.md │ ├── PersonExternalIdentifierV30.md │ ├── PersonExternalIdentifierV30Rc1.md │ ├── PersonExternalIdentifierV30Rc2.md │ ├── PersonExternalIdentifiersV20.md │ ├── PersonExternalIdentifiersV30.md │ ├── PersonExternalIdentifiersV30Rc1.md │ ├── PersonExternalIdentifiersV30Rc2.md │ ├── PersonV20.md │ ├── PersonV30.md │ ├── PersonV30Rc1.md │ ├── PersonV30Rc2.md │ ├── PersonalDetailsV20.md │ ├── PersonalDetailsV30.md │ ├── PersonalDetailsV30Rc1.md │ ├── PersonalDetailsV30Rc2.md │ ├── PreferencesV20.md │ ├── PreferencesV30.md │ ├── PreferencesV30Rc1.md │ ├── PreferencesV30Rc2.md │ ├── PublicationDateV20.md │ ├── PublicationDateV30.md │ ├── PublicationDateV30Rc1.md │ ├── PublicationDateV30Rc2.md │ ├── QualificationSummaryV30.md │ ├── QualificationSummaryV30Rc1.md │ ├── QualificationSummaryV30Rc2.md │ ├── QualificationV30.md │ ├── QualificationV30Rc1.md │ ├── QualificationV30Rc2.md │ ├── QualificationsV30.md │ ├── QualificationsV30Rc1.md │ ├── QualificationsV30Rc2.md │ ├── RecordV20.md │ ├── RecordV30.md │ ├── RecordV30Rc1.md │ ├── RecordV30Rc2.md │ ├── ResearchResourceGroupV30.md │ ├── ResearchResourceGroupV30Rc1.md │ ├── ResearchResourceGroupV30Rc2.md │ ├── ResearchResourceHostsV30.md │ ├── ResearchResourceHostsV30Rc1.md │ ├── ResearchResourceHostsV30Rc2.md │ ├── ResearchResourceItemV30.md │ ├── ResearchResourceItemV30Rc1.md │ ├── ResearchResourceItemV30Rc2.md │ ├── ResearchResourceProposalV30.md │ ├── ResearchResourceProposalV30Rc1.md │ ├── ResearchResourceProposalV30Rc2.md │ ├── ResearchResourceSummaryV30.md │ ├── ResearchResourceSummaryV30Rc1.md │ ├── ResearchResourceSummaryV30Rc2.md │ ├── ResearchResourceTitleV30.md │ ├── ResearchResourceTitleV30Rc1.md │ ├── ResearchResourceTitleV30Rc2.md │ ├── ResearchResourceV30.md │ ├── ResearchResourceV30Rc1.md │ ├── ResearchResourceV30Rc2.md │ ├── ResearchResourcesV30.md │ ├── ResearchResourcesV30Rc1.md │ ├── ResearchResourcesV30Rc2.md │ ├── ResearcherUrlV20.md │ ├── ResearcherUrlV30.md │ ├── ResearcherUrlV30Rc1.md │ ├── ResearcherUrlV30Rc2.md │ ├── ResearcherUrlsV20.md │ ├── ResearcherUrlsV30.md │ ├── ResearcherUrlsV30Rc1.md │ ├── ResearcherUrlsV30Rc2.md │ ├── ResultV20.md │ ├── ResultV30.md │ ├── ResultV30Rc1.md │ ├── ResultV30Rc2.md │ ├── SearchV20.md │ ├── SearchV30.md │ ├── SearchV30Rc1.md │ ├── SearchV30Rc2.md │ ├── ServiceSummaryV30.md │ ├── ServiceSummaryV30Rc1.md │ ├── ServiceSummaryV30Rc2.md │ ├── ServiceV30.md │ ├── ServiceV30Rc1.md │ ├── ServiceV30Rc2.md │ ├── ServicesV30.md │ ├── ServicesV30Rc1.md │ ├── ServicesV30Rc2.md │ ├── SourceClientIdV20.md │ ├── SourceClientIdV30.md │ ├── SourceClientIdV30Rc1.md │ ├── SourceClientIdV30Rc2.md │ ├── SourceNameV20.md │ ├── SourceNameV30.md │ ├── SourceNameV30Rc1.md │ ├── SourceNameV30Rc2.md │ ├── SourceOrcidV20.md │ ├── SourceOrcidV30.md │ ├── SourceOrcidV30Rc1.md │ ├── SourceOrcidV30Rc2.md │ ├── SourceV20.md │ ├── SourceV30.md │ ├── SourceV30Rc1.md │ ├── SourceV30Rc2.md │ ├── SubjectNameV30.md │ ├── SubjectNameV30Rc2.md │ ├── SubmissionDateV20.md │ ├── SubmissionDateV30.md │ ├── SubmissionDateV30Rc1.md │ ├── SubmissionDateV30Rc2.md │ ├── SubtitleV20.md │ ├── SubtitleV30.md │ ├── SubtitleV30Rc1.md │ ├── SubtitleV30Rc2.md │ ├── TitleV20.md │ ├── TitleV30.md │ ├── TitleV30Rc1.md │ ├── TitleV30Rc2.md │ ├── TransientError.md │ ├── TransientNonEmptyString.md │ ├── TranslatedTitleV20.md │ ├── TranslatedTitleV30.md │ ├── TranslatedTitleV30Rc1.md │ ├── TranslatedTitleV30Rc2.md │ ├── UrlV20.md │ ├── UrlV30.md │ ├── UrlV30Rc1.md │ ├── UrlV30Rc2.md │ ├── WorkBulkV20.md │ ├── WorkBulkV30.md │ ├── WorkBulkV30Rc1.md │ ├── WorkBulkV30Rc2.md │ ├── WorkContributorsV20.md │ ├── WorkContributorsV30.md │ ├── WorkContributorsV30Rc1.md │ ├── WorkContributorsV30Rc2.md │ ├── WorkGroupV20.md │ ├── WorkGroupV30.md │ ├── WorkGroupV30Rc1.md │ ├── WorkGroupV30Rc2.md │ ├── WorkSummaryV20.md │ ├── WorkSummaryV30.md │ ├── WorkSummaryV30Rc1.md │ ├── WorkSummaryV30Rc2.md │ ├── WorkTitleV20.md │ ├── WorkTitleV30.md │ ├── WorkTitleV30Rc1.md │ ├── WorkTitleV30Rc2.md │ ├── WorkV20.md │ ├── WorkV30.md │ ├── WorkV30Rc1.md │ ├── WorkV30Rc2.md │ ├── WorksSummaryV20.md │ ├── WorksSummaryV30.md │ ├── WorksSummaryV30Rc1.md │ ├── WorksSummaryV30Rc2.md │ ├── YearV20.md │ ├── YearV30.md │ ├── YearV30Rc1.md │ └── YearV30Rc2.md ├── models │ ├── __init__.py │ ├── activities_summary_v20.py │ ├── activities_summary_v30.py │ ├── activities_summary_v30_rc1.py │ ├── activities_summary_v30_rc2.py │ ├── address_v20.py │ ├── address_v30.py │ ├── address_v30_rc1.py │ ├── address_v30_rc2.py │ ├── addresses_v20.py │ ├── addresses_v30.py │ ├── addresses_v30_rc1.py │ ├── addresses_v30_rc2.py │ ├── affiliation_group_v30.py │ ├── affiliation_group_v30_distinction_summary_v30.py │ ├── affiliation_group_v30_education_summary_v30.py │ ├── affiliation_group_v30_employment_summary_v30.py │ ├── affiliation_group_v30_invited_position_summary_v30.py │ ├── affiliation_group_v30_membership_summary_v30.py │ ├── affiliation_group_v30_qualification_summary_v30.py │ ├── affiliation_group_v30_rc1.py │ ├── affiliation_group_v30_rc1_distinction_summary_v30_rc1.py │ ├── affiliation_group_v30_rc1_education_summary_v30_rc1.py │ ├── affiliation_group_v30_rc1_employment_summary_v30_rc1.py │ ├── affiliation_group_v30_rc1_invited_position_summary_v30_rc1.py │ ├── affiliation_group_v30_rc1_membership_summary_v30_rc1.py │ ├── affiliation_group_v30_rc1_qualification_summary_v30_rc1.py │ ├── affiliation_group_v30_rc1_service_summary_v30_rc1.py │ ├── affiliation_group_v30_rc2.py │ ├── affiliation_group_v30_rc2_distinction_summary_v30_rc2.py │ ├── affiliation_group_v30_rc2_education_summary_v30_rc2.py │ ├── affiliation_group_v30_rc2_employment_summary_v30_rc2.py │ ├── affiliation_group_v30_rc2_invited_position_summary_v30_rc2.py │ ├── affiliation_group_v30_rc2_membership_summary_v30_rc2.py │ ├── affiliation_group_v30_rc2_qualification_summary_v30_rc2.py │ ├── affiliation_group_v30_rc2_service_summary_v30_rc2.py │ ├── affiliation_group_v30_service_summary_v30.py │ ├── affiliation_summary_v30.py │ ├── affiliation_summary_v30_rc1.py │ ├── affiliation_summary_v30_rc2.py │ ├── amount_v20.py │ ├── amount_v30.py │ ├── amount_v30_rc1.py │ ├── amount_v30_rc2.py │ ├── authorization_url_v20.py │ ├── authorization_url_v30.py │ ├── authorization_url_v30_rc1.py │ ├── authorization_url_v30_rc2.py │ ├── biography_v20.py │ ├── biography_v30.py │ ├── biography_v30_rc1.py │ ├── biography_v30_rc2.py │ ├── bulk_element.py │ ├── citation.py │ ├── client_summary.py │ ├── completion_date_v20.py │ ├── completion_date_v30.py │ ├── completion_date_v30_rc1.py │ ├── completion_date_v30_rc2.py │ ├── contributor_attributes_v30.py │ ├── contributor_attributes_v30_rc1.py │ ├── contributor_attributes_v30_rc2.py │ ├── contributor_email_v20.py │ ├── contributor_email_v30.py │ ├── contributor_email_v30_rc1.py │ ├── contributor_email_v30_rc2.py │ ├── contributor_orcid_v20.py │ ├── contributor_orcid_v30.py │ ├── contributor_orcid_v30_rc1.py │ ├── contributor_orcid_v30_rc2.py │ ├── contributor_v20.py │ ├── contributor_v30.py │ ├── contributor_v30_rc1.py │ ├── contributor_v30_rc2.py │ ├── country_v20.py │ ├── country_v30.py │ ├── country_v30_rc1.py │ ├── country_v30_rc2.py │ ├── created_date_v20.py │ ├── created_date_v30.py │ ├── created_date_v30_rc1.py │ ├── created_date_v30_rc2.py │ ├── credit_name_v20.py │ ├── credit_name_v30.py │ ├── credit_name_v30_rc1.py │ ├── credit_name_v30_rc2.py │ ├── currency.py │ ├── day_v20.py │ ├── day_v30.py │ ├── day_v30_rc1.py │ ├── day_v30_rc2.py │ ├── deactivation_date_v20.py │ ├── deactivation_date_v30.py │ ├── deactivation_date_v30_rc1.py │ ├── deactivation_date_v30_rc2.py │ ├── disambiguated_organization_v20.py │ ├── disambiguated_organization_v30.py │ ├── disambiguated_organization_v30_rc1.py │ ├── disambiguated_organization_v30_rc2.py │ ├── distinction_summary_v30.py │ ├── distinction_summary_v30_rc1.py │ ├── distinction_summary_v30_rc2.py │ ├── distinction_v30.py │ ├── distinction_v30_rc1.py │ ├── distinction_v30_rc2.py │ ├── distinctions_summary_v30.py │ ├── distinctions_summary_v30_rc2.py │ ├── distinctions_v30_rc1.py │ ├── education_summary_v20.py │ ├── education_summary_v30.py │ ├── education_summary_v30_rc1.py │ ├── education_summary_v30_rc2.py │ ├── education_v20.py │ ├── education_v30.py │ ├── education_v30_rc1.py │ ├── education_v30_rc2.py │ ├── educations_summary_v20.py │ ├── educations_summary_v30.py │ ├── educations_summary_v30_rc1.py │ ├── educations_summary_v30_rc2.py │ ├── email_v20.py │ ├── email_v30.py │ ├── email_v30_rc1.py │ ├── email_v30_rc2.py │ ├── emails_v20.py │ ├── emails_v30.py │ ├── emails_v30_rc1.py │ ├── emails_v30_rc2.py │ ├── employment_summary_v20.py │ ├── employment_summary_v30.py │ ├── employment_summary_v30_rc1.py │ ├── employment_summary_v30_rc2.py │ ├── employment_v20.py │ ├── employment_v30.py │ ├── employment_v30_rc1.py │ ├── employment_v30_rc2.py │ ├── employments_summary_v20.py │ ├── employments_summary_v30.py │ ├── employments_summary_v30_rc1.py │ ├── employments_summary_v30_rc2.py │ ├── external_i_ds_v20.py │ ├── external_i_ds_v30.py │ ├── external_i_ds_v30_rc1.py │ ├── external_i_ds_v30_rc2.py │ ├── external_idv20.py │ ├── external_idv30.py │ ├── external_idv30_rc1.py │ ├── external_idv30_rc2.py │ ├── family_name_v20.py │ ├── family_name_v30.py │ ├── family_name_v30_rc1.py │ ├── family_name_v30_rc2.py │ ├── funding_contributor_attributes_v20.py │ ├── funding_contributor_attributes_v30.py │ ├── funding_contributor_attributes_v30_rc1.py │ ├── funding_contributor_attributes_v30_rc2.py │ ├── funding_contributor_v20.py │ ├── funding_contributor_v30.py │ ├── funding_contributor_v30_rc1.py │ ├── funding_contributor_v30_rc2.py │ ├── funding_contributors_v20.py │ ├── funding_contributors_v30.py │ ├── funding_contributors_v30_rc1.py │ ├── funding_contributors_v30_rc2.py │ ├── funding_group_v20.py │ ├── funding_group_v30.py │ ├── funding_group_v30_rc1.py │ ├── funding_group_v30_rc2.py │ ├── funding_summary_v20.py │ ├── funding_summary_v30.py │ ├── funding_summary_v30_rc1.py │ ├── funding_summary_v30_rc2.py │ ├── funding_title_v20.py │ ├── funding_title_v30.py │ ├── funding_title_v30_rc1.py │ ├── funding_title_v30_rc2.py │ ├── funding_v20.py │ ├── funding_v30.py │ ├── funding_v30_rc1.py │ ├── funding_v30_rc2.py │ ├── fundings_v20.py │ ├── fundings_v30.py │ ├── fundings_v30_rc1.py │ ├── fundings_v30_rc2.py │ ├── fuzzy_date_v20.py │ ├── fuzzy_date_v30.py │ ├── fuzzy_date_v30_rc1.py │ ├── fuzzy_date_v30_rc2.py │ ├── given_names_v20.py │ ├── given_names_v30.py │ ├── given_names_v30_rc1.py │ ├── given_names_v30_rc2.py │ ├── group_id_record.py │ ├── group_id_records.py │ ├── history_v20.py │ ├── history_v30.py │ ├── history_v30_rc1.py │ ├── history_v30_rc2.py │ ├── invited_position_summary_v30.py │ ├── invited_position_summary_v30_rc1.py │ ├── invited_position_summary_v30_rc2.py │ ├── invited_position_v30.py │ ├── invited_position_v30_rc1.py │ ├── invited_position_v30_rc2.py │ ├── invited_positions_v30.py │ ├── invited_positions_v30_rc1.py │ ├── invited_positions_v30_rc2.py │ ├── item_v20.py │ ├── item_v30.py │ ├── item_v30_rc1.py │ ├── item_v30_rc2.py │ ├── items_v20.py │ ├── items_v30.py │ ├── items_v30_rc1.py │ ├── items_v30_rc2.py │ ├── keyword_v20.py │ ├── keyword_v30.py │ ├── keyword_v30_rc1.py │ ├── keyword_v30_rc2.py │ ├── keywords_v20.py │ ├── keywords_v30.py │ ├── keywords_v30_rc1.py │ ├── keywords_v30_rc2.py │ ├── last_modified_date_v20.py │ ├── last_modified_date_v30.py │ ├── last_modified_date_v30_rc1.py │ ├── last_modified_date_v30_rc2.py │ ├── membership_summary_v30.py │ ├── membership_summary_v30_rc1.py │ ├── membership_summary_v30_rc2.py │ ├── membership_v30.py │ ├── membership_v30_rc1.py │ ├── membership_v30_rc2.py │ ├── memberships_v30.py │ ├── memberships_v30_rc1.py │ ├── memberships_v30_rc2.py │ ├── month_v20.py │ ├── month_v30.py │ ├── month_v30_rc1.py │ ├── month_v30_rc2.py │ ├── name_v20.py │ ├── name_v30.py │ ├── name_v30_rc1.py │ ├── name_v30_rc2.py │ ├── notification.py │ ├── notification_permission_v20.py │ ├── notification_permission_v30.py │ ├── notification_permission_v30_rc1.py │ ├── notification_permission_v30_rc2.py │ ├── orcid_identifier_v20.py │ ├── orcid_identifier_v30.py │ ├── orcid_identifier_v30_rc1.py │ ├── orcid_identifier_v30_rc2.py │ ├── organization_address_v20.py │ ├── organization_address_v30.py │ ├── organization_address_v30_rc1.py │ ├── organization_address_v30_rc2.py │ ├── organization_defined_funding_sub_type_v20.py │ ├── organization_defined_funding_sub_type_v30.py │ ├── organization_defined_funding_sub_type_v30_rc1.py │ ├── organization_defined_funding_sub_type_v30_rc2.py │ ├── organization_v20.py │ ├── organization_v30.py │ ├── organization_v30_rc1.py │ ├── organization_v30_rc2.py │ ├── other_name_v20.py │ ├── other_name_v30.py │ ├── other_name_v30_rc1.py │ ├── other_name_v30_rc2.py │ ├── other_names_v20.py │ ├── other_names_v30.py │ ├── other_names_v30_rc1.py │ ├── other_names_v30_rc2.py │ ├── peer_review_duplicate_group_v30.py │ ├── peer_review_duplicate_group_v30_rc1.py │ ├── peer_review_duplicate_group_v30_rc2.py │ ├── peer_review_group_v20.py │ ├── peer_review_group_v30.py │ ├── peer_review_group_v30_rc1.py │ ├── peer_review_group_v30_rc2.py │ ├── peer_review_summary_v20.py │ ├── peer_review_summary_v30.py │ ├── peer_review_summary_v30_rc1.py │ ├── peer_review_summary_v30_rc2.py │ ├── peer_review_v20.py │ ├── peer_review_v30.py │ ├── peer_review_v30_rc1.py │ ├── peer_review_v30_rc2.py │ ├── peer_reviews_v20.py │ ├── peer_reviews_v30.py │ ├── peer_reviews_v30_rc1.py │ ├── peer_reviews_v30_rc2.py │ ├── person_external_identifier_v20.py │ ├── person_external_identifier_v30.py │ ├── person_external_identifier_v30_rc1.py │ ├── person_external_identifier_v30_rc2.py │ ├── person_external_identifiers_v20.py │ ├── person_external_identifiers_v30.py │ ├── person_external_identifiers_v30_rc1.py │ ├── person_external_identifiers_v30_rc2.py │ ├── person_v20.py │ ├── person_v30.py │ ├── person_v30_rc1.py │ ├── person_v30_rc2.py │ ├── personal_details_v20.py │ ├── personal_details_v30.py │ ├── personal_details_v30_rc1.py │ ├── personal_details_v30_rc2.py │ ├── preferences_v20.py │ ├── preferences_v30.py │ ├── preferences_v30_rc1.py │ ├── preferences_v30_rc2.py │ ├── publication_date_v20.py │ ├── publication_date_v30.py │ ├── publication_date_v30_rc1.py │ ├── publication_date_v30_rc2.py │ ├── qualification_summary_v30.py │ ├── qualification_summary_v30_rc1.py │ ├── qualification_summary_v30_rc2.py │ ├── qualification_v30.py │ ├── qualification_v30_rc1.py │ ├── qualification_v30_rc2.py │ ├── qualifications_v30.py │ ├── qualifications_v30_rc1.py │ ├── qualifications_v30_rc2.py │ ├── record_v20.py │ ├── record_v30.py │ ├── record_v30_rc1.py │ ├── record_v30_rc2.py │ ├── research_resource_group_v30.py │ ├── research_resource_group_v30_rc1.py │ ├── research_resource_group_v30_rc2.py │ ├── research_resource_hosts_v30.py │ ├── research_resource_hosts_v30_rc1.py │ ├── research_resource_hosts_v30_rc2.py │ ├── research_resource_item_v30.py │ ├── research_resource_item_v30_rc1.py │ ├── research_resource_item_v30_rc2.py │ ├── research_resource_proposal_v30.py │ ├── research_resource_proposal_v30_rc1.py │ ├── research_resource_proposal_v30_rc2.py │ ├── research_resource_summary_v30.py │ ├── research_resource_summary_v30_rc1.py │ ├── research_resource_summary_v30_rc2.py │ ├── research_resource_title_v30.py │ ├── research_resource_title_v30_rc1.py │ ├── research_resource_title_v30_rc2.py │ ├── research_resource_v30.py │ ├── research_resource_v30_rc1.py │ ├── research_resource_v30_rc2.py │ ├── research_resources_v30.py │ ├── research_resources_v30_rc1.py │ ├── research_resources_v30_rc2.py │ ├── researcher_url_v20.py │ ├── researcher_url_v30.py │ ├── researcher_url_v30_rc1.py │ ├── researcher_url_v30_rc2.py │ ├── researcher_urls_v20.py │ ├── researcher_urls_v30.py │ ├── researcher_urls_v30_rc1.py │ ├── researcher_urls_v30_rc2.py │ ├── result_v20.py │ ├── result_v30.py │ ├── result_v30_rc1.py │ ├── result_v30_rc2.py │ ├── search_v20.py │ ├── search_v30.py │ ├── search_v30_rc1.py │ ├── search_v30_rc2.py │ ├── service_summary_v30.py │ ├── service_summary_v30_rc1.py │ ├── service_summary_v30_rc2.py │ ├── service_v30.py │ ├── service_v30_rc1.py │ ├── service_v30_rc2.py │ ├── services_v30.py │ ├── services_v30_rc1.py │ ├── services_v30_rc2.py │ ├── source_client_id_v20.py │ ├── source_client_id_v30.py │ ├── source_client_id_v30_rc1.py │ ├── source_client_id_v30_rc2.py │ ├── source_name_v20.py │ ├── source_name_v30.py │ ├── source_name_v30_rc1.py │ ├── source_name_v30_rc2.py │ ├── source_orcid_v20.py │ ├── source_orcid_v30.py │ ├── source_orcid_v30_rc1.py │ ├── source_orcid_v30_rc2.py │ ├── source_v20.py │ ├── source_v30.py │ ├── source_v30_rc1.py │ ├── source_v30_rc2.py │ ├── subject_name_v30.py │ ├── subject_name_v30_rc2.py │ ├── submission_date_v20.py │ ├── submission_date_v30.py │ ├── submission_date_v30_rc1.py │ ├── submission_date_v30_rc2.py │ ├── subtitle_v20.py │ ├── subtitle_v30.py │ ├── subtitle_v30_rc1.py │ ├── subtitle_v30_rc2.py │ ├── title_v20.py │ ├── title_v30.py │ ├── title_v30_rc1.py │ ├── title_v30_rc2.py │ ├── transient_error.py │ ├── transient_non_empty_string.py │ ├── translated_title_v20.py │ ├── translated_title_v30.py │ ├── translated_title_v30_rc1.py │ ├── translated_title_v30_rc2.py │ ├── url_v20.py │ ├── url_v30.py │ ├── url_v30_rc1.py │ ├── url_v30_rc2.py │ ├── work_bulk_v20.py │ ├── work_bulk_v30.py │ ├── work_bulk_v30_rc1.py │ ├── work_bulk_v30_rc2.py │ ├── work_contributors_v20.py │ ├── work_contributors_v30.py │ ├── work_contributors_v30_rc1.py │ ├── work_contributors_v30_rc2.py │ ├── work_group_v20.py │ ├── work_group_v30.py │ ├── work_group_v30_rc1.py │ ├── work_group_v30_rc2.py │ ├── work_summary_v20.py │ ├── work_summary_v30.py │ ├── work_summary_v30_rc1.py │ ├── work_summary_v30_rc2.py │ ├── work_title_v20.py │ ├── work_title_v30.py │ ├── work_title_v30_rc1.py │ ├── work_title_v30_rc2.py │ ├── work_v20.py │ ├── work_v30.py │ ├── work_v30_rc1.py │ ├── work_v30_rc2.py │ ├── works_summary_v20.py │ ├── works_summary_v30.py │ ├── works_summary_v30_rc1.py │ ├── works_summary_v30_rc2.py │ ├── year_v20.py │ ├── year_v30.py │ ├── year_v30_rc1.py │ └── year_v30_rc2.py └── rest.py ├── orcid_hub ├── __init__.py ├── apis.py ├── authcontroller.py ├── cli.py ├── config.py ├── data_apis.py ├── failover.py ├── forms.py ├── login_provider.py ├── mocks │ ├── __init__.py │ ├── static │ │ ├── saved_resource.html │ │ ├── style.css │ │ ├── tuakiri.png │ │ └── wayf.css │ ├── templates │ │ ├── layout.html │ │ ├── login.html │ │ ├── mocks_layout.html │ │ ├── mocks_login.html │ │ └── select_home_organisation.html │ └── webhook_handler.py ├── models.py ├── oauth.py ├── orcid_client.py ├── pyinfo.py ├── queuing.py ├── reports.py ├── schedule.py ├── schemas.py ├── sql │ └── auditing.sql ├── static │ ├── assets │ │ ├── bootstrap-4.0.0-alpha.6-dist │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ └── css │ │ │ ├── style.css │ │ │ └── trial.css │ ├── css │ │ ├── sticky-footer.css │ │ └── style.css │ ├── favicon.ico │ ├── fonts │ │ ├── News Cycle SIL OFL Font License 1.1.txt │ │ ├── NewsCycle-Regular.eot │ │ └── NewsCycle-Regular.ttf │ ├── images │ │ ├── CC-BY-NC-icon-80x15.png │ │ ├── CC-BY-NC-icon-88x31.png │ │ ├── CC-BY-icon-80x15.png │ │ ├── CC-BY-icon-88x31.png │ │ ├── ORCID Badge AUTHENTICATE 2019.jpg │ │ ├── ORCID Badge COLLECT 2019.jpg │ │ ├── ORCID Badge CONNECT 2019.jpg │ │ ├── ORCID Badge DISPLAY 2019.jpg │ │ ├── ORCID-Badge-00-s-AUTHENTICATE.png │ │ ├── ORCID-Badge-01-s-COLLECT.png │ │ ├── ORCID-Badge-02-s-DISPLAY.png │ │ ├── ORCID-Badge-03-s-CONNECT.png │ │ ├── ORCID_logo.png │ │ ├── REANNZ_Tuakiri_service.png │ │ ├── android-icon-144x144.png │ │ ├── android-icon-192x192.png │ │ ├── android-icon-36x36.png │ │ ├── android-icon-48x48.png │ │ ├── android-icon-72x72.png │ │ ├── android-icon-96x96.png │ │ ├── apple-icon-114x114.png │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-144x144.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-180x180.png │ │ ├── apple-icon-57x57.png │ │ ├── apple-icon-60x60.png │ │ ├── apple-icon-72x72.png │ │ ├── apple-icon-76x76.png │ │ ├── apple-icon-precomposed.png │ │ ├── apple-icon.png │ │ ├── background.png │ │ ├── banner-small.png │ │ ├── banner.png │ │ ├── banner.svg │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── favicon.ico │ │ ├── logo.png │ │ ├── ms-icon-144x144.png │ │ ├── ms-icon-150x150.png │ │ ├── ms-icon-310x310.png │ │ ├── ms-icon-70x70.png │ │ ├── orcid-logo.jpg │ │ ├── orcid-logo.png │ │ ├── orcid_16x16.gif │ │ ├── orcid_16x16.png │ │ ├── screen1.jpg │ │ ├── screen2.jpg │ │ └── transparent.png │ ├── js │ │ ├── bootstrap-confirmation.min.js │ │ ├── image_slide.js │ │ ├── jquery.min.js │ │ └── modernizr-1.5.min.js │ └── manifest.json ├── templates │ ├── 401.html │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── CV.html │ ├── CV │ │ ├── META-INF │ │ │ └── manifest.xml │ │ ├── content.xml │ │ ├── layout-cache │ │ ├── manifest.rdf │ │ ├── meta.xml │ │ ├── mimetype │ │ ├── settings.xml │ │ └── styles.xml │ ├── about.html │ ├── activate_reset_all_form.html │ ├── addEmploymentDetails.html │ ├── admin │ │ ├── index.html │ │ ├── master.html │ │ ├── member_edit.html │ │ ├── organisation_edit.html │ │ └── user_edit.html │ ├── api_credentials.html │ ├── application.html │ ├── confirmation.html │ ├── email │ │ ├── funding_invitation.html │ │ ├── funding_task_completed.html │ │ ├── member_api_registration.html │ │ ├── org_invitation.html │ │ ├── peer_review_invitation.html │ │ ├── property_invitation.html │ │ ├── researcher_invitation.html │ │ ├── researcher_reinvitation.html │ │ ├── resource_invitation.html │ │ ├── task_completed.html │ │ ├── task_expiration.html │ │ ├── test.html │ │ ├── work_invitation.html │ │ └── work_task_completed.html │ ├── email_template.html │ ├── faq.html │ ├── fileUpload.html │ ├── footer.html │ ├── form.html │ ├── funding_record_list.html │ ├── groupid_record_entries.html │ ├── header.html │ ├── index.html │ ├── invitation_summary.html │ ├── invitee_list.html │ ├── layout.html │ ├── linking.html │ ├── login.html │ ├── logo.html │ ├── macros.html │ ├── missing_onboarding_token.html │ ├── oauthorize.html │ ├── orcidLogoutAndCallback.html │ ├── orcid_api_call_report.html │ ├── orgconfirmation.html │ ├── peer_review_record_list.html │ ├── privacy.html │ ├── profile.html │ ├── profile_entry.html │ ├── profile_sync.html │ ├── pyinfo.html │ ├── record_child_list.html │ ├── record_list.html │ ├── registration.html │ ├── section.html │ ├── selectOrganisation.html │ ├── swaggerui.html │ ├── uoa-slo.html │ ├── user_cv.html │ ├── user_invitation.html │ ├── user_organisations.html │ ├── user_summary.html │ ├── viewEmpDetails.html │ ├── viewGroupIdRecords.html │ ├── viewMembers.html │ ├── view_tasks.html │ ├── work_invitee_list.html │ └── work_record_list.html ├── utils.py └── views.py ├── process_tasks.sh ├── pytest.sh ├── requirements.txt ├── run-app ├── run.py ├── scheduler.sh ├── schemas ├── affiliation.yaml ├── funding_schema.yaml ├── orcid_swagger.json ├── orcid_swagger_v3.json ├── peer_review_schema.yaml └── work_schema.yaml ├── setup.cfg ├── setup.py ├── test_requirements.txt ├── tests ├── conftest.py ├── data │ ├── affiliations.csv │ ├── example_other_ids.csv │ ├── example_other_ids.json │ ├── example_other_ids_02.csv │ ├── example_peer_reviews.json │ ├── example_works.json │ ├── othernames.csv │ ├── othernames.json │ ├── properties.csv │ ├── properties.json │ ├── researchurls.json │ ├── resources.csv │ ├── resources.json │ ├── resources.tsv │ └── test1_required_only.csv ├── test_apis.py ├── test_batch.py ├── test_forms.py ├── test_main.py ├── test_models.py ├── test_orcid.py ├── test_reports.py ├── test_utils.py ├── test_views.py ├── test_webhooks.py └── utils.py ├── tuakiri-metadata-cert.pem ├── tuakiri-test-metadata-cert.pem └── worker.sh /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: pOHACCS0uj1JcilXzaHvgTNDXxxV9kStZ -------------------------------------------------------------------------------- /.deepsource.toml: -------------------------------------------------------------------------------- 1 | version = 1 2 | 3 | test_patterns = [ 4 | 'tests/test_*.py' 5 | ] 6 | 7 | exclude_patterns = [ 8 | 'docs', 9 | 'orcid_api', 10 | 'tests/test_*.py', 11 | 'orcid_api_v3' 12 | ] 13 | 14 | [[analyzers]] 15 | name = 'python' 16 | enabled = true 17 | runtime_version = '3.x.x' 18 | dependency_file_paths = [ 19 | 'dev_requirements.txt', 20 | 'requirements.txt' 21 | ] 22 | 23 | # Test coverage analyzer 24 | [[analyzers]] 25 | name = "test-coverage" 26 | enabled = true 27 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .* 2 | *.db 3 | *.json 4 | **/__pycache__ 5 | SAML 6 | *.csv 7 | *.md 8 | tuakiri-mock 9 | tags 10 | tags.tmp 11 | backup* 12 | masterdb 13 | pgdata* 14 | venv 15 | venv7 16 | # orcid 17 | htmlcov 18 | archive 19 | tests 20 | swagger.json 21 | CNAME 22 | instance 23 | docs 24 | gen-keys 25 | migrations 26 | *egg* 27 | dist 28 | load_testing 29 | -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = E126,W503,D105,E722,D205,D208,D400,W504,E231 3 | exclude = .git,__pycache__,venv,orcid_api,migrations,SAML,docs,swagger_client,orcid,setup.py,dist,build 4 | max-line-length = 120 5 | # max-complexity = 10 6 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | orcid_hub/__init__.py ident export-subst 2 | -------------------------------------------------------------------------------- /.keys/README.md: -------------------------------------------------------------------------------- 1 | # Server Key directory 2 | 3 | Copy server key **sp-key.pem** and certificate **sp-cert.pem** to this directory. 4 | **NB!** DON'T ADD THEM TO GIT! 5 | -------------------------------------------------------------------------------- /.keys/extract_keys: -------------------------------------------------------------------------------- 1 | : 2 | # create and secure with a password P12 keystore: 3 | # openssl pkcs12 -export -inkey KEY.pem -in CERT.pem -out STORE.p12 -password pass:PASSWORD 4 | P12=${1:-.keys/${ENV}-sp.p12} 5 | openssl pkcs12 -in $P12 -nocerts -nodes -out .keys/sp-key.pem -passin env:P12_PASSWORD -passout pass: 6 | openssl pkcs12 -in $P12 -clcerts -nokeys -out .keys/sp-cert.pem -passin env:P12_PASSWORD -passout pass: 7 | 8 | -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/.nojekyll -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- 1 | # format: 2 | # - none 3 | # requirements_file: dev_requirements.txt 4 | # python: 5 | # version: 3.6 6 | # extra_requirements: 7 | # - dev 8 | conda: 9 | file: .conda.yml 10 | 11 | -------------------------------------------------------------------------------- /.travis/deploy.crt: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCkqtqGNmXMdP3e+L1v/YC350DLVRMk4cXclQ14fUd6gQZ27eUXMkqv7/idJumHIPshXFdcLlZ+FdMk4T7S10Uhk+wlHubP8RaLFNH/wHZ69r82tslIjzQfS/iuJCo2wb17h8PvM/GieRQrvfvRGA9ZzCpePQHpA7/OnALi+VFHhJzsVkNGtKVikxevQzFdZXf0ZA/Vdf3BwXfZifGYV2vzoGpaChADjfIQlyF5f3yFjggmUYTiBNxdPCvNqXsyApbeo65GXaIeEW5wn/IZ+6wHfdQFXXe0kyu6uuP2O7MUaV903cwiMWi2fDCZcH3uQkdoI6Jpqxk2Y0z7LS42DZPn rcir178@rcir178 2 | -------------------------------------------------------------------------------- /.well-known/acme-challenge/README.md: -------------------------------------------------------------------------------- 1 | for ACME challenges over HTTP 2 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | docs.orcidhub.org.nz -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include orcid_hub/templates * 2 | recursive-include orcid_hub/static * 3 | include LICENSE 4 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-minimal -------------------------------------------------------------------------------- /_locustfile.sample.py: -------------------------------------------------------------------------------- 1 | username = "admin" 2 | password = "*************" 3 | # password = "Epslokl2k$" 4 | -------------------------------------------------------------------------------- /app.wsgi: -------------------------------------------------------------------------------- 1 | # SEE: http://flask.pocoo.org/docs/0.12/deploying/mod_wsgi/ 2 | import sys, os 3 | app_dir = os.path.dirname(__file__) 4 | sys.path.insert(0, app_dir) 5 | 6 | from orcid_hub import app as application 7 | -------------------------------------------------------------------------------- /application.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """Application File.""" 3 | 4 | import os 5 | 6 | from orcid_hub import app 7 | 8 | if __name__ == "__main__": 9 | # This allows us to use a plain HTTP callback 10 | os.environ['DEBUG'] = "1" 11 | os.environ['OAUTHLIB_INSECURE_TRANSPORT'] = '1' 12 | os.environ["ENV"] = "dev0" 13 | app.debug = True 14 | app.run(debug=True, port=5000) 15 | -------------------------------------------------------------------------------- /conf/app.conf: -------------------------------------------------------------------------------- 1 | 2 | #ServerName orcidhub.tk 3 | #ServerAlias www.orcidhub.tk 4 | WSGIScriptAlias / /var/www/html/app.wsgi 5 | 6 | 7 | -------------------------------------------------------------------------------- /conf/orcid_swagger_v3_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "packageName": "orcid_api_v3", 3 | "projectName": "orcid_hub" 4 | } 5 | 6 | -------------------------------------------------------------------------------- /conf/render_template: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # render a template configuration file 4 | # expand variables + preserve formatting 5 | eval "echo \"$(sed 's/\"/\\\"/g' $1)\"" 6 | 7 | -------------------------------------------------------------------------------- /dev: -------------------------------------------------------------------------------- 1 | : 2 | # sets up tmux with running server at the top pane; nvim in the middle and a command pane at the bottom.. 3 | [ -n "$1" ] && cd "$1" 4 | export DEBUG=1 5 | export PYTHONPATH="$PWD" 6 | tmux send-keys 'source ./venv/bin/activate ; export DEBUG=1 PYTHONPATH="$PWD"; flask run' C-m \ 7 | \; split-window -v -p 86 'source ./venv/bin/activate ; nvim -S .session.vim' \ 8 | \; split-window -v -p 12 \; send-keys 'source ./venv/bin/activate' C-m \ 9 | \; select-pane -U 10 | -------------------------------------------------------------------------------- /dev_requirements.txt: -------------------------------------------------------------------------------- 1 | -r test_requirements.txt 2 | mistune<2.0.0 3 | sphinx 4 | sphinx-autobuild 5 | m2r 6 | recommonmark 7 | pyyaml 8 | flask-debugtoolbar>=0.10.1 9 | mccabe>=0.6.1 10 | pep8-naming>=0.4.1 11 | pydocs>=0.2 12 | pydocstyle>=2.0.0,<4.0.0 13 | Pygments>=2.2.0 14 | # robotframework>=3.0.2 15 | # robotframework-seleniumlibrary>=3.0.0 16 | pycrypto>=2.6.1 17 | python-dotenv>=0.6.3 18 | # Online-W3C-Validator>=0.3.2 19 | git+https://github.com/nad2000/W3C-Validator 20 | twine 21 | coloredlogs 22 | #black 23 | black==19.3b0 24 | #neovim 25 | mypy==0.770 26 | isort==4.3.21 27 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | docs.orcidhub.org.nz -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- 1 | .toggle .header { 2 | display: block; 3 | clear: both; 4 | } 5 | 6 | .toggle .header:after { 7 | content: " v"; 8 | } 9 | 10 | .toggle .header.open:after { 11 | content: " ^"; 12 | } 13 | -------------------------------------------------------------------------------- /docs/_templates/page.html: -------------------------------------------------------------------------------- 1 | {% extends "!page.html" %} 2 | 3 | {% set css_files = css_files + ["_static/custom.css"] %} 4 | 5 | {% block footer %} 6 | 16 | {% endblock %} 17 | -------------------------------------------------------------------------------- /docs/examples/example_affiliations.csv: -------------------------------------------------------------------------------- 1 | Identifier,First name,Last name,email address,affiliation type,ORCID iD,organisation,department,City,Region,Country,Course/Title,Start Date,End date,Put-Code 2 | 0001,Alice,Contributor 1,contributor1@mailinator.com,staff,,Home Organisation,Home Department,Ingoa Wāhi,,NZ,Professor,2018-06-01,, 3 | 0002,Alice,Contributor 1,contributor1@mailinator.com,student,,Different Organisation,Different Department,,Placename,NZ,Studying,2016,2017-12, 4 | 0003,Bob,Contributor 2,contributor2@mailinator.com,student,,Different Organisation,Different Department,,Placename,NZ,Studying,2016,2018, -------------------------------------------------------------------------------- /docs/examples/example_affiliations.tsv: -------------------------------------------------------------------------------- 1 | Identifier First name Last name email address affiliation type ORCID iD organisation department City Region Country Course/Title Start Date End date Put-Code 2 | 0001 Alice Contributor 1 contributor1@mailinator.com staff Home Organisation Home Department Ingoa Wāhi NZ Professor 2018-06-01 3 | 0002 Alice Contributor 1 contributor1@mailinator.com student Different Organisation Different Department Placename NZ Studying 2016 2017-12 4 | 0003 Bob Contributor 2 contributor2@mailinator.com student Different Organisation Different Department Placename NZ Studying 2016 2018 -------------------------------------------------------------------------------- /docs/images/api_app_registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/docs/images/api_app_registration.png -------------------------------------------------------------------------------- /docs/images/app_credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/docs/images/app_credentials.png -------------------------------------------------------------------------------- /docs/images/app_registration_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/docs/images/app_registration_form.png -------------------------------------------------------------------------------- /docs/images/orcid_api_directly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/docs/images/orcid_api_directly.png -------------------------------------------------------------------------------- /docs/images/orcid_api_proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/docs/images/orcid_api_proxy.png -------------------------------------------------------------------------------- /docs/images/reset_client_secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/docs/images/reset_client_secret.png -------------------------------------------------------------------------------- /docs/images/webhooks_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/docs/images/webhooks_form.png -------------------------------------------------------------------------------- /docs/images/webhooks_invocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/docs/images/webhooks_invocation.png -------------------------------------------------------------------------------- /docs/images/webhooks_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/docs/images/webhooks_menu.png -------------------------------------------------------------------------------- /docs/images/webhooks_registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/docs/images/webhooks_registration.png -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- 1 | orcid_api 2 | ========= 3 | 4 | .. toctree:: 5 | :maxdepth: 4 6 | 7 | orcid_hub 8 | orcid_api 9 | -------------------------------------------------------------------------------- /docs/orcid_api_spec.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../orcid_api/README.md 2 | -------------------------------------------------------------------------------- /docs/troubleshooting.rst: -------------------------------------------------------------------------------- 1 | .. _troubleshooting: 2 | 3 | Troubleshooting 4 | =============== 5 | 6 | Places to look up, if there is any issues: 7 | 8 | - docker logs, e.g., ``docker-compose logs app`` or 9 | ``docker-compose logs db`` 10 | - application logs, e.g., 11 | ``docker-compose exec app tail /var/log/httpd/test.orcidhub.org.nz-error.log`` 12 | - Shibboleth logs in the container: ``/var/log/shibboleth/`` and 13 | ``/var/log/shibboleth-www/`` 14 | -------------------------------------------------------------------------------- /flask.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Script location directory: 4 | DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 5 | 6 | export PYTHONPATH=$DIR 7 | export FLASK_APP=orcid_hub 8 | export LANG=en_US.UTF-8 9 | 10 | [ -z $RQ_REDIS_URL ] && RQ_REDIS_URL=redis://redis:6379/0 11 | export RQ_REDIS_URL 12 | 13 | [ -z "$DATABASE_URL" ] && DATABASE_URL=postgresql://orcidhub@db:5432/orcidhub?options='-c statement_timeout=3000' 14 | export DATABASE_URL 15 | 16 | exec flask $@ 17 | -------------------------------------------------------------------------------- /gen-keys/README.md: -------------------------------------------------------------------------------- 1 | Scripts for automated key generation for ORCIDHUB 2 | 3 | Run: `cat domains.txt | xargs -n 1 ./genkey.sh` 4 | 5 | -------------------------------------------------------------------------------- /gen-keys/domains.txt: -------------------------------------------------------------------------------- 1 | test.orcidhub.org.nz 2 | demo.orcidhub.org.nz 3 | test.orcidhub.org.nz 4 | dev.orcidhub.org.nz 5 | dev1.orcidhub.org.nz 6 | dev2.orcidhub.org.nz 7 | -------------------------------------------------------------------------------- /install_package.sh: -------------------------------------------------------------------------------- 1 | sudo apt-get install postgresql postgresql-contrib 2 | sudo apt-get install libpq-dev 3 | -------------------------------------------------------------------------------- /instance/README.md: -------------------------------------------------------------------------------- 1 | # Instance Folder 2 | 3 | This is the appliation instance folder designated for a local application configuration file. 4 | See more at: http://flask.pocoo.org/docs/0.12/config/#instance-folders 5 | 6 | 7 | -------------------------------------------------------------------------------- /load_testing/goaccess.conf: -------------------------------------------------------------------------------- 1 | time-format %T 2 | date-format %d/%b/%Y 3 | log-format %h %^[%d:%t %^] "%r" %s %b "%R" "%u" %D 4 | -------------------------------------------------------------------------------- /orcid_api/apis/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | # import apis into api package 4 | from .member_apiv20_api import MemberAPIV20Api 5 | from .member_apiv21_api import MemberAPIV21Api 6 | -------------------------------------------------------------------------------- /orcid_api/docs/Amount.md: -------------------------------------------------------------------------------- 1 | # Amount 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | **currency_code** | **str** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /orcid_api/docs/AuthorizationUrl.md: -------------------------------------------------------------------------------- 1 | # AuthorizationUrl 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | 7 | **path** | **str** | | 8 | **host** | **str** | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /orcid_api/docs/BulkElement.md: -------------------------------------------------------------------------------- 1 | # BulkElement 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 8 | 9 | 10 | -------------------------------------------------------------------------------- /orcid_api/docs/Citation.md: -------------------------------------------------------------------------------- 1 | # Citation 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **citation_type** | **str** | | 7 | **citation_value** | **str** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /orcid_api/docs/ContributorAttributes.md: -------------------------------------------------------------------------------- 1 | # ContributorAttributes 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **contributor_sequence** | **str** | | 7 | **contributor_role** | **str** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /orcid_api/docs/ContributorEmail.md: -------------------------------------------------------------------------------- 1 | # ContributorEmail 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /orcid_api/docs/ContributorOrcid.md: -------------------------------------------------------------------------------- 1 | # ContributorOrcid 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | [optional] 7 | **path** | **str** | | [optional] 8 | **host** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /orcid_api/docs/Country.md: -------------------------------------------------------------------------------- 1 | # Country 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /orcid_api/docs/CreatedDate.md: -------------------------------------------------------------------------------- 1 | # CreatedDate 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **datetime** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /orcid_api/docs/CreditName.md: -------------------------------------------------------------------------------- 1 | # CreditName 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /orcid_api/docs/Day.md: -------------------------------------------------------------------------------- 1 | # Day 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /orcid_api/docs/DisambiguatedOrganization.md: -------------------------------------------------------------------------------- 1 | # DisambiguatedOrganization 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **disambiguated_organization_identifier** | **str** | | 7 | **disambiguation_source** | **str** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /orcid_api/docs/Educations.md: -------------------------------------------------------------------------------- 1 | # Educations 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDate**](LastModifiedDate.md) | | [optional] 7 | **education_summary** | [**list[EducationSummary]**](EducationSummary.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /orcid_api/docs/Employments.md: -------------------------------------------------------------------------------- 1 | # Employments 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDate**](LastModifiedDate.md) | | [optional] 7 | **employment_summary** | [**list[EmploymentSummary]**](EmploymentSummary.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /orcid_api/docs/ExternalID.md: -------------------------------------------------------------------------------- 1 | # ExternalID 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **external_id_type** | **str** | | 7 | **external_id_value** | **str** | | 8 | **external_id_url** | [**Url**](Url.md) | | [optional] 9 | **external_id_relationship** | **str** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /orcid_api/docs/ExternalIDs.md: -------------------------------------------------------------------------------- 1 | # ExternalIDs 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **external_id** | [**list[ExternalID]**](ExternalID.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /orcid_api/docs/FundingContributorAttributes.md: -------------------------------------------------------------------------------- 1 | # FundingContributorAttributes 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **contributor_role** | **str** | | 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /orcid_api/docs/FundingContributors.md: -------------------------------------------------------------------------------- 1 | # FundingContributors 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **contributor** | [**list[FundingContributor]**](FundingContributor.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /orcid_api/docs/FundingGroup.md: -------------------------------------------------------------------------------- 1 | # FundingGroup 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDate**](LastModifiedDate.md) | | [optional] 7 | **external_ids** | [**ExternalIDs**](ExternalIDs.md) | | [optional] 8 | **funding_summary** | [**list[FundingSummary]**](FundingSummary.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /orcid_api/docs/FundingTitle.md: -------------------------------------------------------------------------------- 1 | # FundingTitle 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **title** | [**Title**](Title.md) | | [optional] 7 | **translated_title** | [**TranslatedTitle**](TranslatedTitle.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /orcid_api/docs/Fundings.md: -------------------------------------------------------------------------------- 1 | # Fundings 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDate**](LastModifiedDate.md) | | [optional] 7 | **group** | [**list[FundingGroup]**](FundingGroup.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /orcid_api/docs/FuzzyDate.md: -------------------------------------------------------------------------------- 1 | # FuzzyDate 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **year** | [**Year**](Year.md) | | 7 | **month** | [**Month**](Month.md) | | [optional] 8 | **day** | [**Day**](Day.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /orcid_api/docs/GroupIdRecord.md: -------------------------------------------------------------------------------- 1 | # GroupIdRecord 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **str** | | 7 | **group_id** | **str** | | 8 | **description** | **str** | | 9 | **type** | **str** | | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /orcid_api/docs/GroupIdRecords.md: -------------------------------------------------------------------------------- 1 | # GroupIdRecords 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDate**](LastModifiedDate.md) | | [optional] 7 | **total** | **int** | | 8 | **page** | **int** | | 9 | **page_size** | **int** | | 10 | **group_id_record** | [**list[GroupIdRecord]**](GroupIdRecord.md) | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /orcid_api/docs/Item.md: -------------------------------------------------------------------------------- 1 | # Item 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **put_code** | **str** | | [optional] 7 | **item_type** | **str** | | 8 | **item_name** | **str** | | 9 | **external_id** | [**ExternalID**](ExternalID.md) | | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /orcid_api/docs/Items.md: -------------------------------------------------------------------------------- 1 | # Items 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **item** | [**list[Item]**](Item.md) | | 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /orcid_api/docs/LastModifiedDate.md: -------------------------------------------------------------------------------- 1 | # LastModifiedDate 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **datetime** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /orcid_api/docs/Month.md: -------------------------------------------------------------------------------- 1 | # Month 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /orcid_api/docs/Organization.md: -------------------------------------------------------------------------------- 1 | # Organization 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **str** | | 7 | **address** | [**OrganizationAddress**](OrganizationAddress.md) | | 8 | **disambiguated_organization** | [**DisambiguatedOrganization**](DisambiguatedOrganization.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /orcid_api/docs/OrganizationAddress.md: -------------------------------------------------------------------------------- 1 | # OrganizationAddress 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **city** | **str** | | 7 | **region** | **str** | | [optional] 8 | **country** | **str** | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /orcid_api/docs/OrganizationDefinedFundingSubType.md: -------------------------------------------------------------------------------- 1 | # OrganizationDefinedFundingSubType 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /orcid_api/docs/PeerReviewGroup.md: -------------------------------------------------------------------------------- 1 | # PeerReviewGroup 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDate**](LastModifiedDate.md) | | [optional] 7 | **external_ids** | [**ExternalIDs**](ExternalIDs.md) | | [optional] 8 | **peer_review_summary** | [**list[PeerReviewSummary]**](PeerReviewSummary.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /orcid_api/docs/PeerReviews.md: -------------------------------------------------------------------------------- 1 | # PeerReviews 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDate**](LastModifiedDate.md) | | [optional] 7 | **group** | [**list[PeerReviewGroup]**](PeerReviewGroup.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /orcid_api/docs/PublicationDate.md: -------------------------------------------------------------------------------- 1 | # PublicationDate 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **year** | [**Year**](Year.md) | | 7 | **month** | [**Month**](Month.md) | | [optional] 8 | **day** | [**Day**](Day.md) | | [optional] 9 | **media_type** | **str** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /orcid_api/docs/Source.md: -------------------------------------------------------------------------------- 1 | # Source 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **source_orcid** | [**SourceOrcid**](SourceOrcid.md) | | [optional] 7 | **source_client_id** | [**SourceClientId**](SourceClientId.md) | | [optional] 8 | **source_name** | [**SourceName**](SourceName.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /orcid_api/docs/SourceClientId.md: -------------------------------------------------------------------------------- 1 | # SourceClientId 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | [optional] 7 | **path** | **str** | | [optional] 8 | **host** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /orcid_api/docs/SourceName.md: -------------------------------------------------------------------------------- 1 | # SourceName 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /orcid_api/docs/SourceOrcid.md: -------------------------------------------------------------------------------- 1 | # SourceOrcid 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | [optional] 7 | **path** | **str** | | [optional] 8 | **host** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /orcid_api/docs/Subtitle.md: -------------------------------------------------------------------------------- 1 | # Subtitle 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /orcid_api/docs/Title.md: -------------------------------------------------------------------------------- 1 | # Title 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /orcid_api/docs/TranslatedTitle.md: -------------------------------------------------------------------------------- 1 | # TranslatedTitle 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | **language_code** | **str** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /orcid_api/docs/Url.md: -------------------------------------------------------------------------------- 1 | # Url 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /orcid_api/docs/WorkBulk.md: -------------------------------------------------------------------------------- 1 | # WorkBulk 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **bulk** | [**list[BulkElement]**](BulkElement.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /orcid_api/docs/WorkContributors.md: -------------------------------------------------------------------------------- 1 | # WorkContributors 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **contributor** | [**list[Contributor]**](Contributor.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /orcid_api/docs/WorkGroup.md: -------------------------------------------------------------------------------- 1 | # WorkGroup 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDate**](LastModifiedDate.md) | | [optional] 7 | **external_ids** | [**ExternalIDs**](ExternalIDs.md) | | [optional] 8 | **work_summary** | [**list[WorkSummary]**](WorkSummary.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /orcid_api/docs/WorkTitle.md: -------------------------------------------------------------------------------- 1 | # WorkTitle 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **title** | [**Title**](Title.md) | | [optional] 7 | **subtitle** | [**Subtitle**](Subtitle.md) | | [optional] 8 | **translated_title** | [**TranslatedTitle**](TranslatedTitle.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /orcid_api/docs/Works.md: -------------------------------------------------------------------------------- 1 | # Works 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDate**](LastModifiedDate.md) | | [optional] 7 | **group** | [**list[WorkGroup]**](WorkGroup.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /orcid_api/docs/Year.md: -------------------------------------------------------------------------------- 1 | # Year 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/api/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | # flake8: noqa 4 | 5 | # import apis into api package 6 | from orcid_api_v3.api.development_member_api_v3_0_api import DevelopmentMemberAPIV30Api 7 | from orcid_api_v3.api.development_member_api_v3_0_rc1_api import DevelopmentMemberAPIV30Rc1Api 8 | from orcid_api_v3.api.development_member_api_v3_0_rc2_api import DevelopmentMemberAPIV30Rc2Api 9 | from orcid_api_v3.api.member_api_v2_0_api import MemberAPIV20Api 10 | from orcid_api_v3.api.member_api_v2_1_api import MemberAPIV21Api 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/AddressesV20.md: -------------------------------------------------------------------------------- 1 | # AddressesV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV20**](LastModifiedDateV20.md) | | [optional] 7 | **address** | [**list[AddressV20]**](AddressV20.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/AddressesV30.md: -------------------------------------------------------------------------------- 1 | # AddressesV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30**](LastModifiedDateV30.md) | | [optional] 7 | **address** | [**list[AddressV30]**](AddressV30.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/AddressesV30Rc1.md: -------------------------------------------------------------------------------- 1 | # AddressesV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30Rc1**](LastModifiedDateV30Rc1.md) | | [optional] 7 | **address** | [**list[AddressV30Rc1]**](AddressV30Rc1.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/AddressesV30Rc2.md: -------------------------------------------------------------------------------- 1 | # AddressesV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30Rc2**](LastModifiedDateV30Rc2.md) | | [optional] 7 | **address** | [**list[AddressV30Rc2]**](AddressV30Rc2.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/AffiliationGroupV30.md: -------------------------------------------------------------------------------- 1 | # AffiliationGroupV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30**](LastModifiedDateV30.md) | | [optional] 7 | **external_ids** | [**ExternalIDsV30**](ExternalIDsV30.md) | | [optional] 8 | **summaries** | [**list[AffiliationSummaryV30]**](AffiliationSummaryV30.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/AmountV20.md: -------------------------------------------------------------------------------- 1 | # AmountV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | **currency_code** | **str** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/AmountV30.md: -------------------------------------------------------------------------------- 1 | # AmountV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | **currency_code** | [**Currency**](Currency.md) | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/AmountV30Rc1.md: -------------------------------------------------------------------------------- 1 | # AmountV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | **currency_code** | **str** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/AmountV30Rc2.md: -------------------------------------------------------------------------------- 1 | # AmountV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | **currency_code** | [**Currency**](Currency.md) | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/AuthorizationUrlV20.md: -------------------------------------------------------------------------------- 1 | # AuthorizationUrlV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | 7 | **path** | **str** | | 8 | **host** | **str** | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/AuthorizationUrlV30.md: -------------------------------------------------------------------------------- 1 | # AuthorizationUrlV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | 7 | **path** | **str** | | 8 | **host** | **str** | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/AuthorizationUrlV30Rc1.md: -------------------------------------------------------------------------------- 1 | # AuthorizationUrlV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | 7 | **path** | **str** | | 8 | **host** | **str** | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/AuthorizationUrlV30Rc2.md: -------------------------------------------------------------------------------- 1 | # AuthorizationUrlV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | 7 | **path** | **str** | | 8 | **host** | **str** | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/BulkElement.md: -------------------------------------------------------------------------------- 1 | # BulkElement 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 8 | 9 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/Citation.md: -------------------------------------------------------------------------------- 1 | # Citation 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **citation_type** | **str** | | 7 | **citation_value** | **str** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ClientSummary.md: -------------------------------------------------------------------------------- 1 | # ClientSummary 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **str** | | [optional] 7 | **description** | **str** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/CompletionDateV20.md: -------------------------------------------------------------------------------- 1 | # CompletionDateV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **datetime** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/CompletionDateV30.md: -------------------------------------------------------------------------------- 1 | # CompletionDateV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **datetime** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/CompletionDateV30Rc1.md: -------------------------------------------------------------------------------- 1 | # CompletionDateV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **datetime** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/CompletionDateV30Rc2.md: -------------------------------------------------------------------------------- 1 | # CompletionDateV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **datetime** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ContributorAttributesV30.md: -------------------------------------------------------------------------------- 1 | # ContributorAttributesV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **contributor_sequence** | **str** | | 7 | **contributor_role** | **str** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ContributorAttributesV30Rc1.md: -------------------------------------------------------------------------------- 1 | # ContributorAttributesV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **contributor_sequence** | **str** | | 7 | **contributor_role** | **str** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ContributorAttributesV30Rc2.md: -------------------------------------------------------------------------------- 1 | # ContributorAttributesV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **contributor_sequence** | **str** | | 7 | **contributor_role** | **str** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ContributorEmailV20.md: -------------------------------------------------------------------------------- 1 | # ContributorEmailV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ContributorEmailV30.md: -------------------------------------------------------------------------------- 1 | # ContributorEmailV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ContributorEmailV30Rc1.md: -------------------------------------------------------------------------------- 1 | # ContributorEmailV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ContributorEmailV30Rc2.md: -------------------------------------------------------------------------------- 1 | # ContributorEmailV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ContributorOrcidV20.md: -------------------------------------------------------------------------------- 1 | # ContributorOrcidV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | [optional] 7 | **path** | **str** | | [optional] 8 | **host** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ContributorOrcidV30.md: -------------------------------------------------------------------------------- 1 | # ContributorOrcidV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | [optional] 7 | **path** | **str** | | [optional] 8 | **host** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ContributorOrcidV30Rc1.md: -------------------------------------------------------------------------------- 1 | # ContributorOrcidV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | [optional] 7 | **path** | **str** | | [optional] 8 | **host** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ContributorOrcidV30Rc2.md: -------------------------------------------------------------------------------- 1 | # ContributorOrcidV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | [optional] 7 | **path** | **str** | | [optional] 8 | **host** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/CountryV20.md: -------------------------------------------------------------------------------- 1 | # CountryV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/CountryV30.md: -------------------------------------------------------------------------------- 1 | # CountryV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/CountryV30Rc1.md: -------------------------------------------------------------------------------- 1 | # CountryV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/CountryV30Rc2.md: -------------------------------------------------------------------------------- 1 | # CountryV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/CreatedDateV20.md: -------------------------------------------------------------------------------- 1 | # CreatedDateV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **datetime** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/CreatedDateV30.md: -------------------------------------------------------------------------------- 1 | # CreatedDateV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **datetime** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/CreatedDateV30Rc1.md: -------------------------------------------------------------------------------- 1 | # CreatedDateV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **datetime** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/CreatedDateV30Rc2.md: -------------------------------------------------------------------------------- 1 | # CreatedDateV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **datetime** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/CreditNameV20.md: -------------------------------------------------------------------------------- 1 | # CreditNameV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/CreditNameV30.md: -------------------------------------------------------------------------------- 1 | # CreditNameV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/CreditNameV30Rc1.md: -------------------------------------------------------------------------------- 1 | # CreditNameV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/CreditNameV30Rc2.md: -------------------------------------------------------------------------------- 1 | # CreditNameV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/Currency.md: -------------------------------------------------------------------------------- 1 | # Currency 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **currency_code** | **str** | | [optional] 7 | **default_fraction_digits** | **int** | | [optional] 8 | **numeric_code** | **int** | | [optional] 9 | **symbol** | **str** | | [optional] 10 | **display_name** | **str** | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/DayV20.md: -------------------------------------------------------------------------------- 1 | # DayV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/DayV30.md: -------------------------------------------------------------------------------- 1 | # DayV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/DayV30Rc1.md: -------------------------------------------------------------------------------- 1 | # DayV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/DayV30Rc2.md: -------------------------------------------------------------------------------- 1 | # DayV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/DeactivationDateV20.md: -------------------------------------------------------------------------------- 1 | # DeactivationDateV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **datetime** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/DeactivationDateV30.md: -------------------------------------------------------------------------------- 1 | # DeactivationDateV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **datetime** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/DeactivationDateV30Rc1.md: -------------------------------------------------------------------------------- 1 | # DeactivationDateV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **datetime** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/DeactivationDateV30Rc2.md: -------------------------------------------------------------------------------- 1 | # DeactivationDateV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **datetime** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/DisambiguatedOrganizationV20.md: -------------------------------------------------------------------------------- 1 | # DisambiguatedOrganizationV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **disambiguated_organization_identifier** | **str** | | 7 | **disambiguation_source** | **str** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/DisambiguatedOrganizationV30.md: -------------------------------------------------------------------------------- 1 | # DisambiguatedOrganizationV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **disambiguated_organization_identifier** | **str** | | 7 | **disambiguation_source** | **str** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/DisambiguatedOrganizationV30Rc1.md: -------------------------------------------------------------------------------- 1 | # DisambiguatedOrganizationV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **disambiguated_organization_identifier** | **str** | | 7 | **disambiguation_source** | **str** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/DisambiguatedOrganizationV30Rc2.md: -------------------------------------------------------------------------------- 1 | # DisambiguatedOrganizationV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **disambiguated_organization_identifier** | **str** | | 7 | **disambiguation_source** | **str** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/EducationsSummaryV20.md: -------------------------------------------------------------------------------- 1 | # EducationsSummaryV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV20**](LastModifiedDateV20.md) | | [optional] 7 | **education_summary** | [**list[EducationSummaryV20]**](EducationSummaryV20.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/EducationsSummaryV30.md: -------------------------------------------------------------------------------- 1 | # EducationsSummaryV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30**](LastModifiedDateV30.md) | | [optional] 7 | **affiliation_group** | [**list[AffiliationGroupV30EducationSummaryV30]**](AffiliationGroupV30EducationSummaryV30.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/EmailsV20.md: -------------------------------------------------------------------------------- 1 | # EmailsV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV20**](LastModifiedDateV20.md) | | [optional] 7 | **email** | [**list[EmailV20]**](EmailV20.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/EmailsV30.md: -------------------------------------------------------------------------------- 1 | # EmailsV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30**](LastModifiedDateV30.md) | | [optional] 7 | **email** | [**list[EmailV30]**](EmailV30.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/EmailsV30Rc1.md: -------------------------------------------------------------------------------- 1 | # EmailsV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30Rc1**](LastModifiedDateV30Rc1.md) | | [optional] 7 | **email** | [**list[EmailV30Rc1]**](EmailV30Rc1.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/EmailsV30Rc2.md: -------------------------------------------------------------------------------- 1 | # EmailsV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30Rc2**](LastModifiedDateV30Rc2.md) | | [optional] 7 | **email** | [**list[EmailV30Rc2]**](EmailV30Rc2.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/EmploymentsSummaryV20.md: -------------------------------------------------------------------------------- 1 | # EmploymentsSummaryV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV20**](LastModifiedDateV20.md) | | [optional] 7 | **employment_summary** | [**list[EmploymentSummaryV20]**](EmploymentSummaryV20.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ExternalIDV20.md: -------------------------------------------------------------------------------- 1 | # ExternalIDV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **external_id_type** | **str** | | 7 | **external_id_value** | **str** | | 8 | **external_id_url** | [**UrlV20**](UrlV20.md) | | [optional] 9 | **external_id_relationship** | **str** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ExternalIDsV20.md: -------------------------------------------------------------------------------- 1 | # ExternalIDsV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **external_id** | [**list[ExternalIDV20]**](ExternalIDV20.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ExternalIDsV30.md: -------------------------------------------------------------------------------- 1 | # ExternalIDsV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **external_id** | [**list[ExternalIDV30]**](ExternalIDV30.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ExternalIDsV30Rc1.md: -------------------------------------------------------------------------------- 1 | # ExternalIDsV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **external_id** | [**list[ExternalIDV30Rc1]**](ExternalIDV30Rc1.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ExternalIDsV30Rc2.md: -------------------------------------------------------------------------------- 1 | # ExternalIDsV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **external_id** | [**list[ExternalIDV30Rc2]**](ExternalIDV30Rc2.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FamilyNameV20.md: -------------------------------------------------------------------------------- 1 | # FamilyNameV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FamilyNameV30.md: -------------------------------------------------------------------------------- 1 | # FamilyNameV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FamilyNameV30Rc1.md: -------------------------------------------------------------------------------- 1 | # FamilyNameV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FamilyNameV30Rc2.md: -------------------------------------------------------------------------------- 1 | # FamilyNameV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FundingContributorAttributesV20.md: -------------------------------------------------------------------------------- 1 | # FundingContributorAttributesV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **contributor_role** | **str** | | 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FundingContributorAttributesV30.md: -------------------------------------------------------------------------------- 1 | # FundingContributorAttributesV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **contributor_role** | **str** | | 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FundingContributorAttributesV30Rc1.md: -------------------------------------------------------------------------------- 1 | # FundingContributorAttributesV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **contributor_role** | **str** | | 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FundingContributorAttributesV30Rc2.md: -------------------------------------------------------------------------------- 1 | # FundingContributorAttributesV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **contributor_role** | **str** | | 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FundingContributorsV20.md: -------------------------------------------------------------------------------- 1 | # FundingContributorsV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **contributor** | [**list[FundingContributorV20]**](FundingContributorV20.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FundingContributorsV30.md: -------------------------------------------------------------------------------- 1 | # FundingContributorsV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **contributor** | [**list[FundingContributorV30]**](FundingContributorV30.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FundingContributorsV30Rc1.md: -------------------------------------------------------------------------------- 1 | # FundingContributorsV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **contributor** | [**list[FundingContributorV30Rc1]**](FundingContributorV30Rc1.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FundingContributorsV30Rc2.md: -------------------------------------------------------------------------------- 1 | # FundingContributorsV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **contributor** | [**list[FundingContributorV30Rc2]**](FundingContributorV30Rc2.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FundingGroupV20.md: -------------------------------------------------------------------------------- 1 | # FundingGroupV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV20**](LastModifiedDateV20.md) | | [optional] 7 | **external_ids** | [**ExternalIDsV20**](ExternalIDsV20.md) | | [optional] 8 | **funding_summary** | [**list[FundingSummaryV20]**](FundingSummaryV20.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FundingGroupV30.md: -------------------------------------------------------------------------------- 1 | # FundingGroupV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30**](LastModifiedDateV30.md) | | [optional] 7 | **external_ids** | [**ExternalIDsV30**](ExternalIDsV30.md) | | [optional] 8 | **funding_summary** | [**list[FundingSummaryV30]**](FundingSummaryV30.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FundingTitleV20.md: -------------------------------------------------------------------------------- 1 | # FundingTitleV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **title** | [**TitleV20**](TitleV20.md) | | [optional] 7 | **translated_title** | [**TranslatedTitleV20**](TranslatedTitleV20.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FundingTitleV30.md: -------------------------------------------------------------------------------- 1 | # FundingTitleV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **title** | [**TitleV30**](TitleV30.md) | | [optional] 7 | **translated_title** | [**TranslatedTitleV30**](TranslatedTitleV30.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FundingTitleV30Rc1.md: -------------------------------------------------------------------------------- 1 | # FundingTitleV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **title** | [**TitleV30Rc1**](TitleV30Rc1.md) | | [optional] 7 | **translated_title** | [**TranslatedTitleV30Rc1**](TranslatedTitleV30Rc1.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FundingTitleV30Rc2.md: -------------------------------------------------------------------------------- 1 | # FundingTitleV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **title** | [**TitleV30Rc2**](TitleV30Rc2.md) | | [optional] 7 | **translated_title** | [**TranslatedTitleV30Rc2**](TranslatedTitleV30Rc2.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FundingsV20.md: -------------------------------------------------------------------------------- 1 | # FundingsV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV20**](LastModifiedDateV20.md) | | [optional] 7 | **group** | [**list[FundingGroupV20]**](FundingGroupV20.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FundingsV30.md: -------------------------------------------------------------------------------- 1 | # FundingsV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30**](LastModifiedDateV30.md) | | [optional] 7 | **group** | [**list[FundingGroupV30]**](FundingGroupV30.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FundingsV30Rc1.md: -------------------------------------------------------------------------------- 1 | # FundingsV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30Rc1**](LastModifiedDateV30Rc1.md) | | [optional] 7 | **group** | [**list[FundingGroupV30Rc1]**](FundingGroupV30Rc1.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FundingsV30Rc2.md: -------------------------------------------------------------------------------- 1 | # FundingsV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30Rc2**](LastModifiedDateV30Rc2.md) | | [optional] 7 | **group** | [**list[FundingGroupV30Rc2]**](FundingGroupV30Rc2.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FuzzyDateV20.md: -------------------------------------------------------------------------------- 1 | # FuzzyDateV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **year** | [**YearV20**](YearV20.md) | | 7 | **month** | [**MonthV20**](MonthV20.md) | | [optional] 8 | **day** | [**DayV20**](DayV20.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FuzzyDateV30.md: -------------------------------------------------------------------------------- 1 | # FuzzyDateV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **year** | [**YearV30**](YearV30.md) | | 7 | **month** | [**MonthV30**](MonthV30.md) | | [optional] 8 | **day** | [**DayV30**](DayV30.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FuzzyDateV30Rc1.md: -------------------------------------------------------------------------------- 1 | # FuzzyDateV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **year** | [**YearV30Rc1**](YearV30Rc1.md) | | 7 | **month** | [**MonthV30Rc1**](MonthV30Rc1.md) | | [optional] 8 | **day** | [**DayV30Rc1**](DayV30Rc1.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/FuzzyDateV30Rc2.md: -------------------------------------------------------------------------------- 1 | # FuzzyDateV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **year** | [**YearV30Rc2**](YearV30Rc2.md) | | 7 | **month** | [**MonthV30Rc2**](MonthV30Rc2.md) | | [optional] 8 | **day** | [**DayV30Rc2**](DayV30Rc2.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/GivenNamesV20.md: -------------------------------------------------------------------------------- 1 | # GivenNamesV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/GivenNamesV30.md: -------------------------------------------------------------------------------- 1 | # GivenNamesV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/GivenNamesV30Rc1.md: -------------------------------------------------------------------------------- 1 | # GivenNamesV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/GivenNamesV30Rc2.md: -------------------------------------------------------------------------------- 1 | # GivenNamesV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/GroupIdRecord.md: -------------------------------------------------------------------------------- 1 | # GroupIdRecord 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **str** | | 7 | **group_id** | **str** | | 8 | **description** | **str** | | 9 | **type** | **str** | | 10 | **put_code** | **int** | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ItemV20.md: -------------------------------------------------------------------------------- 1 | # ItemV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **put_code** | **str** | | [optional] 7 | **item_type** | **str** | | 8 | **item_name** | **str** | | 9 | **external_id** | [**ExternalIDV20**](ExternalIDV20.md) | | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ItemV30.md: -------------------------------------------------------------------------------- 1 | # ItemV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **put_code** | **str** | | [optional] 7 | **item_type** | **str** | | 8 | **item_name** | **str** | | 9 | **external_id** | [**ExternalIDV30**](ExternalIDV30.md) | | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ItemV30Rc1.md: -------------------------------------------------------------------------------- 1 | # ItemV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **put_code** | **str** | | [optional] 7 | **item_type** | **str** | | 8 | **item_name** | **str** | | 9 | **external_id** | [**ExternalIDV30Rc1**](ExternalIDV30Rc1.md) | | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ItemV30Rc2.md: -------------------------------------------------------------------------------- 1 | # ItemV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **put_code** | **str** | | [optional] 7 | **item_type** | **str** | | 8 | **item_name** | **str** | | 9 | **external_id** | [**ExternalIDV30Rc2**](ExternalIDV30Rc2.md) | | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ItemsV20.md: -------------------------------------------------------------------------------- 1 | # ItemsV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **item** | [**list[ItemV20]**](ItemV20.md) | | 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ItemsV30.md: -------------------------------------------------------------------------------- 1 | # ItemsV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **item** | [**list[ItemV30]**](ItemV30.md) | | 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ItemsV30Rc1.md: -------------------------------------------------------------------------------- 1 | # ItemsV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **item** | [**list[ItemV30Rc1]**](ItemV30Rc1.md) | | 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ItemsV30Rc2.md: -------------------------------------------------------------------------------- 1 | # ItemsV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **item** | [**list[ItemV30Rc2]**](ItemV30Rc2.md) | | 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/KeywordsV20.md: -------------------------------------------------------------------------------- 1 | # KeywordsV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV20**](LastModifiedDateV20.md) | | [optional] 7 | **keyword** | [**list[KeywordV20]**](KeywordV20.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/KeywordsV30.md: -------------------------------------------------------------------------------- 1 | # KeywordsV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30**](LastModifiedDateV30.md) | | [optional] 7 | **keyword** | [**list[KeywordV30]**](KeywordV30.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/KeywordsV30Rc1.md: -------------------------------------------------------------------------------- 1 | # KeywordsV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30Rc1**](LastModifiedDateV30Rc1.md) | | [optional] 7 | **keyword** | [**list[KeywordV30Rc1]**](KeywordV30Rc1.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/KeywordsV30Rc2.md: -------------------------------------------------------------------------------- 1 | # KeywordsV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30Rc2**](LastModifiedDateV30Rc2.md) | | [optional] 7 | **keyword** | [**list[KeywordV30Rc2]**](KeywordV30Rc2.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/LastModifiedDateV20.md: -------------------------------------------------------------------------------- 1 | # LastModifiedDateV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **datetime** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/LastModifiedDateV30.md: -------------------------------------------------------------------------------- 1 | # LastModifiedDateV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **datetime** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/LastModifiedDateV30Rc1.md: -------------------------------------------------------------------------------- 1 | # LastModifiedDateV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **datetime** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/LastModifiedDateV30Rc2.md: -------------------------------------------------------------------------------- 1 | # LastModifiedDateV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **datetime** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/MembershipsV30.md: -------------------------------------------------------------------------------- 1 | # MembershipsV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30**](LastModifiedDateV30.md) | | [optional] 7 | **affiliation_group** | [**list[AffiliationGroupV30MembershipSummaryV30]**](AffiliationGroupV30MembershipSummaryV30.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/MonthV20.md: -------------------------------------------------------------------------------- 1 | # MonthV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/MonthV30.md: -------------------------------------------------------------------------------- 1 | # MonthV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/MonthV30Rc1.md: -------------------------------------------------------------------------------- 1 | # MonthV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/MonthV30Rc2.md: -------------------------------------------------------------------------------- 1 | # MonthV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/OrcidIdentifierV20.md: -------------------------------------------------------------------------------- 1 | # OrcidIdentifierV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | [optional] 7 | **path** | **str** | | [optional] 8 | **host** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/OrcidIdentifierV30.md: -------------------------------------------------------------------------------- 1 | # OrcidIdentifierV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | [optional] 7 | **path** | **str** | | [optional] 8 | **host** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/OrcidIdentifierV30Rc1.md: -------------------------------------------------------------------------------- 1 | # OrcidIdentifierV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | [optional] 7 | **path** | **str** | | [optional] 8 | **host** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/OrcidIdentifierV30Rc2.md: -------------------------------------------------------------------------------- 1 | # OrcidIdentifierV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | [optional] 7 | **path** | **str** | | [optional] 8 | **host** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/OrganizationAddressV20.md: -------------------------------------------------------------------------------- 1 | # OrganizationAddressV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **city** | **str** | | 7 | **region** | **str** | | [optional] 8 | **country** | **str** | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/OrganizationAddressV30.md: -------------------------------------------------------------------------------- 1 | # OrganizationAddressV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **city** | **str** | | 7 | **region** | **str** | | [optional] 8 | **country** | **str** | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/OrganizationAddressV30Rc1.md: -------------------------------------------------------------------------------- 1 | # OrganizationAddressV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **city** | **str** | | 7 | **region** | **str** | | [optional] 8 | **country** | **str** | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/OrganizationAddressV30Rc2.md: -------------------------------------------------------------------------------- 1 | # OrganizationAddressV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **city** | **str** | | 7 | **region** | **str** | | [optional] 8 | **country** | **str** | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/OrganizationDefinedFundingSubTypeV20.md: -------------------------------------------------------------------------------- 1 | # OrganizationDefinedFundingSubTypeV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/OrganizationDefinedFundingSubTypeV30.md: -------------------------------------------------------------------------------- 1 | # OrganizationDefinedFundingSubTypeV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/OrganizationDefinedFundingSubTypeV30Rc1.md: -------------------------------------------------------------------------------- 1 | # OrganizationDefinedFundingSubTypeV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/OrganizationDefinedFundingSubTypeV30Rc2.md: -------------------------------------------------------------------------------- 1 | # OrganizationDefinedFundingSubTypeV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/OrganizationV20.md: -------------------------------------------------------------------------------- 1 | # OrganizationV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **str** | | 7 | **address** | [**OrganizationAddressV20**](OrganizationAddressV20.md) | | 8 | **disambiguated_organization** | [**DisambiguatedOrganizationV20**](DisambiguatedOrganizationV20.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/OrganizationV30.md: -------------------------------------------------------------------------------- 1 | # OrganizationV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **str** | | 7 | **address** | [**OrganizationAddressV30**](OrganizationAddressV30.md) | | 8 | **disambiguated_organization** | [**DisambiguatedOrganizationV30**](DisambiguatedOrganizationV30.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/OrganizationV30Rc1.md: -------------------------------------------------------------------------------- 1 | # OrganizationV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **str** | | 7 | **address** | [**OrganizationAddressV30Rc1**](OrganizationAddressV30Rc1.md) | | 8 | **disambiguated_organization** | [**DisambiguatedOrganizationV30Rc1**](DisambiguatedOrganizationV30Rc1.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/OrganizationV30Rc2.md: -------------------------------------------------------------------------------- 1 | # OrganizationV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **str** | | 7 | **address** | [**OrganizationAddressV30Rc2**](OrganizationAddressV30Rc2.md) | | 8 | **disambiguated_organization** | [**DisambiguatedOrganizationV30Rc2**](DisambiguatedOrganizationV30Rc2.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/OtherNamesV20.md: -------------------------------------------------------------------------------- 1 | # OtherNamesV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV20**](LastModifiedDateV20.md) | | [optional] 7 | **other_name** | [**list[OtherNameV20]**](OtherNameV20.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/OtherNamesV30.md: -------------------------------------------------------------------------------- 1 | # OtherNamesV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30**](LastModifiedDateV30.md) | | [optional] 7 | **other_name** | [**list[OtherNameV30]**](OtherNameV30.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/OtherNamesV30Rc1.md: -------------------------------------------------------------------------------- 1 | # OtherNamesV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30Rc1**](LastModifiedDateV30Rc1.md) | | [optional] 7 | **other_name** | [**list[OtherNameV30Rc1]**](OtherNameV30Rc1.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/OtherNamesV30Rc2.md: -------------------------------------------------------------------------------- 1 | # OtherNamesV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30Rc2**](LastModifiedDateV30Rc2.md) | | [optional] 7 | **other_name** | [**list[OtherNameV30Rc2]**](OtherNameV30Rc2.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/PeerReviewsV20.md: -------------------------------------------------------------------------------- 1 | # PeerReviewsV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV20**](LastModifiedDateV20.md) | | [optional] 7 | **group** | [**list[PeerReviewGroupV20]**](PeerReviewGroupV20.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/PeerReviewsV30.md: -------------------------------------------------------------------------------- 1 | # PeerReviewsV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30**](LastModifiedDateV30.md) | | [optional] 7 | **group** | [**list[PeerReviewGroupV30]**](PeerReviewGroupV30.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/PeerReviewsV30Rc1.md: -------------------------------------------------------------------------------- 1 | # PeerReviewsV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30Rc1**](LastModifiedDateV30Rc1.md) | | [optional] 7 | **group** | [**list[PeerReviewGroupV30Rc1]**](PeerReviewGroupV30Rc1.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/PeerReviewsV30Rc2.md: -------------------------------------------------------------------------------- 1 | # PeerReviewsV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30Rc2**](LastModifiedDateV30Rc2.md) | | [optional] 7 | **group** | [**list[PeerReviewGroupV30Rc2]**](PeerReviewGroupV30Rc2.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/PersonExternalIdentifiersV20.md: -------------------------------------------------------------------------------- 1 | # PersonExternalIdentifiersV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV20**](LastModifiedDateV20.md) | | [optional] 7 | **external_identifier** | [**list[PersonExternalIdentifierV20]**](PersonExternalIdentifierV20.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/PersonExternalIdentifiersV30.md: -------------------------------------------------------------------------------- 1 | # PersonExternalIdentifiersV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30**](LastModifiedDateV30.md) | | [optional] 7 | **external_identifier** | [**list[PersonExternalIdentifierV30]**](PersonExternalIdentifierV30.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/PreferencesV20.md: -------------------------------------------------------------------------------- 1 | # PreferencesV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **locale** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/PreferencesV30.md: -------------------------------------------------------------------------------- 1 | # PreferencesV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **locale** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/PreferencesV30Rc1.md: -------------------------------------------------------------------------------- 1 | # PreferencesV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **locale** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/PreferencesV30Rc2.md: -------------------------------------------------------------------------------- 1 | # PreferencesV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **locale** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/PublicationDateV20.md: -------------------------------------------------------------------------------- 1 | # PublicationDateV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **year** | [**YearV20**](YearV20.md) | | 7 | **month** | [**MonthV20**](MonthV20.md) | | [optional] 8 | **day** | [**DayV20**](DayV20.md) | | [optional] 9 | **media_type** | **str** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/PublicationDateV30.md: -------------------------------------------------------------------------------- 1 | # PublicationDateV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **year** | [**YearV30**](YearV30.md) | | 7 | **month** | [**MonthV30**](MonthV30.md) | | [optional] 8 | **day** | [**DayV30**](DayV30.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/PublicationDateV30Rc1.md: -------------------------------------------------------------------------------- 1 | # PublicationDateV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **year** | [**YearV30Rc1**](YearV30Rc1.md) | | 7 | **month** | [**MonthV30Rc1**](MonthV30Rc1.md) | | [optional] 8 | **day** | [**DayV30Rc1**](DayV30Rc1.md) | | [optional] 9 | **media_type** | **str** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/PublicationDateV30Rc2.md: -------------------------------------------------------------------------------- 1 | # PublicationDateV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **year** | [**YearV30Rc2**](YearV30Rc2.md) | | 7 | **month** | [**MonthV30Rc2**](MonthV30Rc2.md) | | [optional] 8 | **day** | [**DayV30Rc2**](DayV30Rc2.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ResearchResourceHostsV30.md: -------------------------------------------------------------------------------- 1 | # ResearchResourceHostsV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **organization** | [**list[OrganizationV30]**](OrganizationV30.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ResearchResourceHostsV30Rc1.md: -------------------------------------------------------------------------------- 1 | # ResearchResourceHostsV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **organization** | [**list[OrganizationV30Rc1]**](OrganizationV30Rc1.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ResearchResourceHostsV30Rc2.md: -------------------------------------------------------------------------------- 1 | # ResearchResourceHostsV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **organization** | [**list[OrganizationV30Rc2]**](OrganizationV30Rc2.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ResearchResourceTitleV30.md: -------------------------------------------------------------------------------- 1 | # ResearchResourceTitleV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **title** | [**TitleV30**](TitleV30.md) | | [optional] 7 | **translated_title** | [**TranslatedTitleV30**](TranslatedTitleV30.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ResearchResourceTitleV30Rc1.md: -------------------------------------------------------------------------------- 1 | # ResearchResourceTitleV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **title** | [**TitleV30Rc1**](TitleV30Rc1.md) | | [optional] 7 | **translated_title** | [**TranslatedTitleV30Rc1**](TranslatedTitleV30Rc1.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ResearchResourceTitleV30Rc2.md: -------------------------------------------------------------------------------- 1 | # ResearchResourceTitleV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **title** | [**TitleV30Rc2**](TitleV30Rc2.md) | | [optional] 7 | **translated_title** | [**TranslatedTitleV30Rc2**](TranslatedTitleV30Rc2.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ResearchResourcesV30.md: -------------------------------------------------------------------------------- 1 | # ResearchResourcesV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30**](LastModifiedDateV30.md) | | [optional] 7 | **group** | [**list[ResearchResourceGroupV30]**](ResearchResourceGroupV30.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ResearchResourcesV30Rc1.md: -------------------------------------------------------------------------------- 1 | # ResearchResourcesV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30Rc1**](LastModifiedDateV30Rc1.md) | | [optional] 7 | **group** | [**list[ResearchResourceGroupV30Rc1]**](ResearchResourceGroupV30Rc1.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ResearchResourcesV30Rc2.md: -------------------------------------------------------------------------------- 1 | # ResearchResourcesV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30Rc2**](LastModifiedDateV30Rc2.md) | | [optional] 7 | **group** | [**list[ResearchResourceGroupV30Rc2]**](ResearchResourceGroupV30Rc2.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ResearcherUrlsV20.md: -------------------------------------------------------------------------------- 1 | # ResearcherUrlsV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV20**](LastModifiedDateV20.md) | | [optional] 7 | **researcher_url** | [**list[ResearcherUrlV20]**](ResearcherUrlV20.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ResearcherUrlsV30.md: -------------------------------------------------------------------------------- 1 | # ResearcherUrlsV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30**](LastModifiedDateV30.md) | | [optional] 7 | **researcher_url** | [**list[ResearcherUrlV30]**](ResearcherUrlV30.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ResearcherUrlsV30Rc1.md: -------------------------------------------------------------------------------- 1 | # ResearcherUrlsV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30Rc1**](LastModifiedDateV30Rc1.md) | | [optional] 7 | **researcher_url** | [**list[ResearcherUrlV30Rc1]**](ResearcherUrlV30Rc1.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ResearcherUrlsV30Rc2.md: -------------------------------------------------------------------------------- 1 | # ResearcherUrlsV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30Rc2**](LastModifiedDateV30Rc2.md) | | [optional] 7 | **researcher_url** | [**list[ResearcherUrlV30Rc2]**](ResearcherUrlV30Rc2.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ResultV20.md: -------------------------------------------------------------------------------- 1 | # ResultV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **orcid_identifier** | [**OrcidIdentifierV20**](OrcidIdentifierV20.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ResultV30.md: -------------------------------------------------------------------------------- 1 | # ResultV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **orcid_identifier** | [**OrcidIdentifierV30**](OrcidIdentifierV30.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ResultV30Rc1.md: -------------------------------------------------------------------------------- 1 | # ResultV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **orcid_identifier** | [**OrcidIdentifierV30Rc1**](OrcidIdentifierV30Rc1.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ResultV30Rc2.md: -------------------------------------------------------------------------------- 1 | # ResultV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **orcid_identifier** | [**OrcidIdentifierV30Rc2**](OrcidIdentifierV30Rc2.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SearchV20.md: -------------------------------------------------------------------------------- 1 | # SearchV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **result** | [**list[ResultV20]**](ResultV20.md) | | [optional] 7 | **num_found** | **int** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SearchV30.md: -------------------------------------------------------------------------------- 1 | # SearchV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **result** | [**list[ResultV30]**](ResultV30.md) | | [optional] 7 | **num_found** | **int** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SearchV30Rc1.md: -------------------------------------------------------------------------------- 1 | # SearchV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **result** | [**list[ResultV30Rc1]**](ResultV30Rc1.md) | | [optional] 7 | **num_found** | **int** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SearchV30Rc2.md: -------------------------------------------------------------------------------- 1 | # SearchV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **result** | [**list[ResultV30Rc2]**](ResultV30Rc2.md) | | [optional] 7 | **num_found** | **int** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/ServicesV30.md: -------------------------------------------------------------------------------- 1 | # ServicesV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30**](LastModifiedDateV30.md) | | [optional] 7 | **affiliation_group** | [**list[AffiliationGroupV30ServiceSummaryV30]**](AffiliationGroupV30ServiceSummaryV30.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SourceClientIdV20.md: -------------------------------------------------------------------------------- 1 | # SourceClientIdV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | [optional] 7 | **path** | **str** | | [optional] 8 | **host** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SourceClientIdV30.md: -------------------------------------------------------------------------------- 1 | # SourceClientIdV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | [optional] 7 | **path** | **str** | | [optional] 8 | **host** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SourceClientIdV30Rc1.md: -------------------------------------------------------------------------------- 1 | # SourceClientIdV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | [optional] 7 | **path** | **str** | | [optional] 8 | **host** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SourceClientIdV30Rc2.md: -------------------------------------------------------------------------------- 1 | # SourceClientIdV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | [optional] 7 | **path** | **str** | | [optional] 8 | **host** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SourceNameV20.md: -------------------------------------------------------------------------------- 1 | # SourceNameV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SourceNameV30.md: -------------------------------------------------------------------------------- 1 | # SourceNameV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SourceNameV30Rc1.md: -------------------------------------------------------------------------------- 1 | # SourceNameV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SourceNameV30Rc2.md: -------------------------------------------------------------------------------- 1 | # SourceNameV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SourceOrcidV20.md: -------------------------------------------------------------------------------- 1 | # SourceOrcidV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | [optional] 7 | **path** | **str** | | [optional] 8 | **host** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SourceOrcidV30.md: -------------------------------------------------------------------------------- 1 | # SourceOrcidV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | [optional] 7 | **path** | **str** | | [optional] 8 | **host** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SourceOrcidV30Rc1.md: -------------------------------------------------------------------------------- 1 | # SourceOrcidV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | [optional] 7 | **path** | **str** | | [optional] 8 | **host** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SourceOrcidV30Rc2.md: -------------------------------------------------------------------------------- 1 | # SourceOrcidV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uri** | **str** | | [optional] 7 | **path** | **str** | | [optional] 8 | **host** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SourceV20.md: -------------------------------------------------------------------------------- 1 | # SourceV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **source_orcid** | [**SourceOrcidV20**](SourceOrcidV20.md) | | [optional] 7 | **source_client_id** | [**SourceClientIdV20**](SourceClientIdV20.md) | | [optional] 8 | **source_name** | [**SourceNameV20**](SourceNameV20.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SourceV30Rc1.md: -------------------------------------------------------------------------------- 1 | # SourceV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **source_orcid** | [**SourceOrcidV30Rc1**](SourceOrcidV30Rc1.md) | | [optional] 7 | **source_client_id** | [**SourceClientIdV30Rc1**](SourceClientIdV30Rc1.md) | | [optional] 8 | **source_name** | [**SourceNameV30Rc1**](SourceNameV30Rc1.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SubjectNameV30.md: -------------------------------------------------------------------------------- 1 | # SubjectNameV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **title** | [**TitleV30**](TitleV30.md) | | [optional] 7 | **subtitle** | [**SubtitleV30**](SubtitleV30.md) | | [optional] 8 | **translated_title** | [**TranslatedTitleV30**](TranslatedTitleV30.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SubjectNameV30Rc2.md: -------------------------------------------------------------------------------- 1 | # SubjectNameV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **title** | [**TitleV30Rc2**](TitleV30Rc2.md) | | [optional] 7 | **subtitle** | [**SubtitleV30Rc2**](SubtitleV30Rc2.md) | | [optional] 8 | **translated_title** | [**TranslatedTitleV30Rc2**](TranslatedTitleV30Rc2.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SubmissionDateV20.md: -------------------------------------------------------------------------------- 1 | # SubmissionDateV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **datetime** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SubmissionDateV30.md: -------------------------------------------------------------------------------- 1 | # SubmissionDateV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **datetime** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SubmissionDateV30Rc1.md: -------------------------------------------------------------------------------- 1 | # SubmissionDateV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **datetime** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SubmissionDateV30Rc2.md: -------------------------------------------------------------------------------- 1 | # SubmissionDateV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **datetime** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SubtitleV20.md: -------------------------------------------------------------------------------- 1 | # SubtitleV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SubtitleV30.md: -------------------------------------------------------------------------------- 1 | # SubtitleV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SubtitleV30Rc1.md: -------------------------------------------------------------------------------- 1 | # SubtitleV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/SubtitleV30Rc2.md: -------------------------------------------------------------------------------- 1 | # SubtitleV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/TitleV20.md: -------------------------------------------------------------------------------- 1 | # TitleV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/TitleV30.md: -------------------------------------------------------------------------------- 1 | # TitleV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/TitleV30Rc1.md: -------------------------------------------------------------------------------- 1 | # TitleV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/TitleV30Rc2.md: -------------------------------------------------------------------------------- 1 | # TitleV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/TransientError.md: -------------------------------------------------------------------------------- 1 | # TransientError 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **error_code** | **str** | | 7 | **error_message** | **str** | | 8 | **transient** | **bool** | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/TransientNonEmptyString.md: -------------------------------------------------------------------------------- 1 | # TransientNonEmptyString 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | **transient** | **bool** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/TranslatedTitleV20.md: -------------------------------------------------------------------------------- 1 | # TranslatedTitleV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | **language_code** | **str** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/TranslatedTitleV30.md: -------------------------------------------------------------------------------- 1 | # TranslatedTitleV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | **language_code** | **str** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/TranslatedTitleV30Rc1.md: -------------------------------------------------------------------------------- 1 | # TranslatedTitleV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | **language_code** | **str** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/TranslatedTitleV30Rc2.md: -------------------------------------------------------------------------------- 1 | # TranslatedTitleV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | **language_code** | **str** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/UrlV20.md: -------------------------------------------------------------------------------- 1 | # UrlV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/UrlV30.md: -------------------------------------------------------------------------------- 1 | # UrlV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/UrlV30Rc1.md: -------------------------------------------------------------------------------- 1 | # UrlV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/UrlV30Rc2.md: -------------------------------------------------------------------------------- 1 | # UrlV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/WorkBulkV20.md: -------------------------------------------------------------------------------- 1 | # WorkBulkV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **bulk** | [**list[BulkElement]**](BulkElement.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/WorkBulkV30.md: -------------------------------------------------------------------------------- 1 | # WorkBulkV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **bulk** | [**list[BulkElement]**](BulkElement.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/WorkBulkV30Rc1.md: -------------------------------------------------------------------------------- 1 | # WorkBulkV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **bulk** | [**list[BulkElement]**](BulkElement.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/WorkBulkV30Rc2.md: -------------------------------------------------------------------------------- 1 | # WorkBulkV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **bulk** | [**list[BulkElement]**](BulkElement.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/WorkContributorsV20.md: -------------------------------------------------------------------------------- 1 | # WorkContributorsV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **contributor** | [**list[ContributorV20]**](ContributorV20.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/WorkContributorsV30.md: -------------------------------------------------------------------------------- 1 | # WorkContributorsV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **contributor** | [**list[ContributorV30]**](ContributorV30.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/WorkContributorsV30Rc1.md: -------------------------------------------------------------------------------- 1 | # WorkContributorsV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **contributor** | [**list[ContributorV30Rc1]**](ContributorV30Rc1.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/WorkContributorsV30Rc2.md: -------------------------------------------------------------------------------- 1 | # WorkContributorsV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **contributor** | [**list[ContributorV30Rc2]**](ContributorV30Rc2.md) | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/WorkGroupV20.md: -------------------------------------------------------------------------------- 1 | # WorkGroupV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV20**](LastModifiedDateV20.md) | | [optional] 7 | **external_ids** | [**ExternalIDsV20**](ExternalIDsV20.md) | | [optional] 8 | **work_summary** | [**list[WorkSummaryV20]**](WorkSummaryV20.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/WorkGroupV30.md: -------------------------------------------------------------------------------- 1 | # WorkGroupV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30**](LastModifiedDateV30.md) | | [optional] 7 | **external_ids** | [**ExternalIDsV30**](ExternalIDsV30.md) | | [optional] 8 | **work_summary** | [**list[WorkSummaryV30]**](WorkSummaryV30.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/WorkGroupV30Rc1.md: -------------------------------------------------------------------------------- 1 | # WorkGroupV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30Rc1**](LastModifiedDateV30Rc1.md) | | [optional] 7 | **external_ids** | [**ExternalIDsV30Rc1**](ExternalIDsV30Rc1.md) | | [optional] 8 | **work_summary** | [**list[WorkSummaryV30Rc1]**](WorkSummaryV30Rc1.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/WorkGroupV30Rc2.md: -------------------------------------------------------------------------------- 1 | # WorkGroupV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30Rc2**](LastModifiedDateV30Rc2.md) | | [optional] 7 | **external_ids** | [**ExternalIDsV30Rc2**](ExternalIDsV30Rc2.md) | | [optional] 8 | **work_summary** | [**list[WorkSummaryV30Rc2]**](WorkSummaryV30Rc2.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/WorkTitleV20.md: -------------------------------------------------------------------------------- 1 | # WorkTitleV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **title** | [**TitleV20**](TitleV20.md) | | [optional] 7 | **subtitle** | [**SubtitleV20**](SubtitleV20.md) | | [optional] 8 | **translated_title** | [**TranslatedTitleV20**](TranslatedTitleV20.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/WorkTitleV30.md: -------------------------------------------------------------------------------- 1 | # WorkTitleV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **title** | [**TitleV30**](TitleV30.md) | | [optional] 7 | **subtitle** | [**SubtitleV30**](SubtitleV30.md) | | [optional] 8 | **translated_title** | [**TranslatedTitleV30**](TranslatedTitleV30.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/WorkTitleV30Rc1.md: -------------------------------------------------------------------------------- 1 | # WorkTitleV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **title** | [**TitleV30Rc1**](TitleV30Rc1.md) | | [optional] 7 | **subtitle** | [**SubtitleV30Rc1**](SubtitleV30Rc1.md) | | [optional] 8 | **translated_title** | [**TranslatedTitleV30Rc1**](TranslatedTitleV30Rc1.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/WorkTitleV30Rc2.md: -------------------------------------------------------------------------------- 1 | # WorkTitleV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **title** | [**TitleV30Rc2**](TitleV30Rc2.md) | | [optional] 7 | **subtitle** | [**SubtitleV30Rc2**](SubtitleV30Rc2.md) | | [optional] 8 | **translated_title** | [**TranslatedTitleV30Rc2**](TranslatedTitleV30Rc2.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/WorksSummaryV20.md: -------------------------------------------------------------------------------- 1 | # WorksSummaryV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV20**](LastModifiedDateV20.md) | | [optional] 7 | **group** | [**list[WorkGroupV20]**](WorkGroupV20.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/WorksSummaryV30.md: -------------------------------------------------------------------------------- 1 | # WorksSummaryV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30**](LastModifiedDateV30.md) | | [optional] 7 | **group** | [**list[WorkGroupV30]**](WorkGroupV30.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/WorksSummaryV30Rc1.md: -------------------------------------------------------------------------------- 1 | # WorksSummaryV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30Rc1**](LastModifiedDateV30Rc1.md) | | [optional] 7 | **group** | [**list[WorkGroupV30Rc1]**](WorkGroupV30Rc1.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/WorksSummaryV30Rc2.md: -------------------------------------------------------------------------------- 1 | # WorksSummaryV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **last_modified_date** | [**LastModifiedDateV30Rc2**](LastModifiedDateV30Rc2.md) | | [optional] 7 | **group** | [**list[WorkGroupV30Rc2]**](WorkGroupV30Rc2.md) | | [optional] 8 | **path** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/YearV20.md: -------------------------------------------------------------------------------- 1 | # YearV20 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/YearV30.md: -------------------------------------------------------------------------------- 1 | # YearV30 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/YearV30Rc1.md: -------------------------------------------------------------------------------- 1 | # YearV30Rc1 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_api_v3/docs/YearV30Rc2.md: -------------------------------------------------------------------------------- 1 | # YearV30Rc2 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **str** | | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /orcid_hub/cli.py: -------------------------------------------------------------------------------- 1 | """This is a management script for the ORCID Hub application.""" 2 | from flask.cli import click, FlaskGroup 3 | 4 | # from . import app 5 | 6 | 7 | # @click.group(cls=FlaskGroup, create_app=lambda *args, **kwargs: app) 8 | @click.group(cls=FlaskGroup) 9 | def cli(): 10 | """Run the management script for the ORCID Hub application.""" 11 | pass 12 | 13 | 14 | def main(): 15 | """Run the management script for the ORCID Hub application.""" 16 | cli() 17 | 18 | 19 | if __name__ == '__main__': 20 | main() 21 | -------------------------------------------------------------------------------- /orcid_hub/mocks/static/tuakiri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/mocks/static/tuakiri.png -------------------------------------------------------------------------------- /orcid_hub/mocks/templates/layout.html: -------------------------------------------------------------------------------- 1 | 2 | Flaskr 3 | 4 |
5 |

Flaskr

6 |
7 | {% if not session.logged_in %} 8 | log in 9 | {% else %} 10 | log out 11 | {% endif %} 12 |
13 | {% for message in get_flashed_messages() %} 14 |
{{ message }}
15 | {% endfor %} 16 | {% block body %}{% endblock %} 17 |
18 | -------------------------------------------------------------------------------- /orcid_hub/mocks/templates/login.html: -------------------------------------------------------------------------------- 1 | {% extends "layout.html" %} 2 | {% block body %} 3 |

Login

4 | {% if error %}

Error: {{ error }}{% endif %} 5 |

6 |
7 |
Username: 8 |
9 |
Password: 10 |
11 |
12 |
13 |
14 | {% endblock %} 15 | -------------------------------------------------------------------------------- /orcid_hub/mocks/templates/mocks_layout.html: -------------------------------------------------------------------------------- 1 | 2 | Welcome! 3 | 4 |
5 |

Flaskr

6 |
7 | {% if not session.logged_in %} 8 | log in 9 | {% else %} 10 | log out 11 | {% endif %} 12 |
13 | {% for message in get_flashed_messages() %} 14 |
{{ message }}
15 | {% endfor %} 16 | {% block body %}{% endblock %} 17 |
18 | -------------------------------------------------------------------------------- /orcid_hub/mocks/templates/mocks_login.html: -------------------------------------------------------------------------------- 1 | {% extends "mocks_layout.html" %} 2 | {% block body %} 3 |

Login

4 | {% if error %}

Error: {{ error }}{% endif %} 5 |

6 |
7 |
Username: 8 |
9 |
Password: 10 |
11 |
12 |
13 |
14 | {% endblock %} 15 | -------------------------------------------------------------------------------- /orcid_hub/schedule.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """Various utilities.""" 3 | 4 | from . import utils as tasks, rq 5 | from datetime import datetime 6 | 7 | 8 | def setup(): 9 | """Set up the application schedule. Remove any already scheduled jobs.""" 10 | scheduler = rq.get_scheduler() 11 | for job in scheduler.get_jobs(): 12 | job.delete() 13 | 14 | # NB! add result_ttl! Otherwise it won't get rescheduled 15 | tasks.process_tasks.schedule(datetime.utcnow(), interval=3600, result_ttl=-1, job_id="*PROCESS-TASKS*") 16 | tasks.send_orcid_update_summary.cron("0 0 1 * *", "*ORCID-UPDATE-SUMMARY*") 17 | -------------------------------------------------------------------------------- /orcid_hub/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/favicon.ico -------------------------------------------------------------------------------- /orcid_hub/static/fonts/NewsCycle-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/fonts/NewsCycle-Regular.eot -------------------------------------------------------------------------------- /orcid_hub/static/fonts/NewsCycle-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/fonts/NewsCycle-Regular.ttf -------------------------------------------------------------------------------- /orcid_hub/static/images/CC-BY-NC-icon-80x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/CC-BY-NC-icon-80x15.png -------------------------------------------------------------------------------- /orcid_hub/static/images/CC-BY-NC-icon-88x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/CC-BY-NC-icon-88x31.png -------------------------------------------------------------------------------- /orcid_hub/static/images/CC-BY-icon-80x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/CC-BY-icon-80x15.png -------------------------------------------------------------------------------- /orcid_hub/static/images/CC-BY-icon-88x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/CC-BY-icon-88x31.png -------------------------------------------------------------------------------- /orcid_hub/static/images/ORCID Badge AUTHENTICATE 2019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/ORCID Badge AUTHENTICATE 2019.jpg -------------------------------------------------------------------------------- /orcid_hub/static/images/ORCID Badge COLLECT 2019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/ORCID Badge COLLECT 2019.jpg -------------------------------------------------------------------------------- /orcid_hub/static/images/ORCID Badge CONNECT 2019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/ORCID Badge CONNECT 2019.jpg -------------------------------------------------------------------------------- /orcid_hub/static/images/ORCID Badge DISPLAY 2019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/ORCID Badge DISPLAY 2019.jpg -------------------------------------------------------------------------------- /orcid_hub/static/images/ORCID-Badge-00-s-AUTHENTICATE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/ORCID-Badge-00-s-AUTHENTICATE.png -------------------------------------------------------------------------------- /orcid_hub/static/images/ORCID-Badge-01-s-COLLECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/ORCID-Badge-01-s-COLLECT.png -------------------------------------------------------------------------------- /orcid_hub/static/images/ORCID-Badge-02-s-DISPLAY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/ORCID-Badge-02-s-DISPLAY.png -------------------------------------------------------------------------------- /orcid_hub/static/images/ORCID-Badge-03-s-CONNECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/ORCID-Badge-03-s-CONNECT.png -------------------------------------------------------------------------------- /orcid_hub/static/images/ORCID_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/ORCID_logo.png -------------------------------------------------------------------------------- /orcid_hub/static/images/REANNZ_Tuakiri_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/REANNZ_Tuakiri_service.png -------------------------------------------------------------------------------- /orcid_hub/static/images/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/android-icon-144x144.png -------------------------------------------------------------------------------- /orcid_hub/static/images/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/android-icon-192x192.png -------------------------------------------------------------------------------- /orcid_hub/static/images/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/android-icon-36x36.png -------------------------------------------------------------------------------- /orcid_hub/static/images/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/android-icon-48x48.png -------------------------------------------------------------------------------- /orcid_hub/static/images/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/android-icon-72x72.png -------------------------------------------------------------------------------- /orcid_hub/static/images/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/android-icon-96x96.png -------------------------------------------------------------------------------- /orcid_hub/static/images/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/apple-icon-114x114.png -------------------------------------------------------------------------------- /orcid_hub/static/images/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/apple-icon-120x120.png -------------------------------------------------------------------------------- /orcid_hub/static/images/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/apple-icon-144x144.png -------------------------------------------------------------------------------- /orcid_hub/static/images/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/apple-icon-152x152.png -------------------------------------------------------------------------------- /orcid_hub/static/images/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/apple-icon-180x180.png -------------------------------------------------------------------------------- /orcid_hub/static/images/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/apple-icon-57x57.png -------------------------------------------------------------------------------- /orcid_hub/static/images/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/apple-icon-60x60.png -------------------------------------------------------------------------------- /orcid_hub/static/images/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/apple-icon-72x72.png -------------------------------------------------------------------------------- /orcid_hub/static/images/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/apple-icon-76x76.png -------------------------------------------------------------------------------- /orcid_hub/static/images/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/apple-icon-precomposed.png -------------------------------------------------------------------------------- /orcid_hub/static/images/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/apple-icon.png -------------------------------------------------------------------------------- /orcid_hub/static/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/background.png -------------------------------------------------------------------------------- /orcid_hub/static/images/banner-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/banner-small.png -------------------------------------------------------------------------------- /orcid_hub/static/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/banner.png -------------------------------------------------------------------------------- /orcid_hub/static/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/favicon-16x16.png -------------------------------------------------------------------------------- /orcid_hub/static/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/favicon-32x32.png -------------------------------------------------------------------------------- /orcid_hub/static/images/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/favicon-96x96.png -------------------------------------------------------------------------------- /orcid_hub/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/favicon.ico -------------------------------------------------------------------------------- /orcid_hub/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/logo.png -------------------------------------------------------------------------------- /orcid_hub/static/images/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/ms-icon-144x144.png -------------------------------------------------------------------------------- /orcid_hub/static/images/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/ms-icon-150x150.png -------------------------------------------------------------------------------- /orcid_hub/static/images/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/ms-icon-310x310.png -------------------------------------------------------------------------------- /orcid_hub/static/images/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/ms-icon-70x70.png -------------------------------------------------------------------------------- /orcid_hub/static/images/orcid-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/orcid-logo.jpg -------------------------------------------------------------------------------- /orcid_hub/static/images/orcid-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/orcid-logo.png -------------------------------------------------------------------------------- /orcid_hub/static/images/orcid_16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/orcid_16x16.gif -------------------------------------------------------------------------------- /orcid_hub/static/images/orcid_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/orcid_16x16.png -------------------------------------------------------------------------------- /orcid_hub/static/images/screen1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/screen1.jpg -------------------------------------------------------------------------------- /orcid_hub/static/images/screen2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/screen2.jpg -------------------------------------------------------------------------------- /orcid_hub/static/images/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/static/images/transparent.png -------------------------------------------------------------------------------- /orcid_hub/templates/401.html: -------------------------------------------------------------------------------- 1 | {% extends "layout.html" %} 2 | 3 | {% block page_title %}Unauthorized{% endblock %} 4 | 5 | {% block content %} 6 |
7 |
8 |

401

9 |

Sorry, you might not have the necessary permissions to access this page or you were not authenticted.

10 | 11 |
12 |
13 | {% endblock %} 14 | -------------------------------------------------------------------------------- /orcid_hub/templates/403.html: -------------------------------------------------------------------------------- 1 | {% extends "layout.html" %} 2 | 3 | {% block page_title %}Forbidden{% endblock %} 4 | 5 | {% block content %} 6 |
7 |
8 |

403

9 |

Sorry, you might not have the necessary permissions to access this page.

10 | 11 |
12 |
13 | {% endblock %} 14 | -------------------------------------------------------------------------------- /orcid_hub/templates/404.html: -------------------------------------------------------------------------------- 1 | {% extends "layout.html" %} 2 | 3 | {% block page_title %}Page Not Found{% endblock %} 4 | 5 | {% block content %} 6 |
7 |
8 |

404

9 |

Sorry, that page doesn't exist.

10 | 11 |
12 |
13 | {% endblock %} 14 | -------------------------------------------------------------------------------- /orcid_hub/templates/CV/layout-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/orcid_hub/templates/CV/layout-cache -------------------------------------------------------------------------------- /orcid_hub/templates/CV/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /orcid_hub/templates/admin/index.html: -------------------------------------------------------------------------------- 1 | {% extends 'admin/master.html' %} 2 | 3 | {% block body %} 4 | TODO: 5 | {% endblock %} 6 | -------------------------------------------------------------------------------- /orcid_hub/templates/admin/member_edit.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/model/edit.html" %} 2 | {% from "macros.html" import section_button_group %} 3 | {% block edit_form %} 4 |
5 | {{ section_button_group(model.id, url=return_url) }} 6 | {{ super() }} 7 |
8 | {% endblock %} 9 | -------------------------------------------------------------------------------- /orcid_hub/templates/confirmation.html: -------------------------------------------------------------------------------- 1 | {% extends "layout.html" %} 2 | {% from "macros.html" import render_field, form_tag %} 3 | 4 | {% block content %} 5 |

Please complete the fields below

6 | {% call form_tag(form, name="login") %} 7 |

Enter Organisation Name:{{ form.orgName(size=20) }}


8 |

Enter Organisation Email:{{ form.orgEmailid(size=20) }}


9 |

10 | {% endcall %} 11 | {% endblock %} 12 | -------------------------------------------------------------------------------- /orcid_hub/templates/email/member_api_registration.html: -------------------------------------------------------------------------------- 1 |

Member API Credential Request

2 |

User {{user.full_name_with_email}} has submitted 3 | {% if user.organisation.confirmed %} 4 | a Member API Credential update 5 | {% else %} 6 | a new Member API Credential 7 | {% endif %} 8 | request for {{user.organisation }} 9 |

10 | -------------------------------------------------------------------------------- /orcid_hub/templates/email/task_expiration.html: -------------------------------------------------------------------------------- 1 |

Batch Task Update

2 | 3 |

Processing of uploaded batch process data file {{task.filename}} 4 | with {{task.row_count}} uploaded at {{task.create_at|isodate}} 5 | will expire in one week and will deleted from the database. 6 |

7 | {% if error_count > 0 %} 8 | There were {{error_count}} error(s).

9 | {% endif %} 10 | 11 |

You can export a csv of the results with both ORCID iD and put codes by clicking this link: 12 | {{export_url}}

13 | -------------------------------------------------------------------------------- /orcid_hub/templates/email/test.html: -------------------------------------------------------------------------------- 1 |

This is your organisation '{{org_name}}' email template test email

2 |

The email was sent by {{sender.name}} <{{sender.email}}> 3 | to {{recipient.name}} <{{recipient.email}}>.

4 |

You can modify your email template at {{ url_for('manage_email_template', _external=True) }}

5 | -------------------------------------------------------------------------------- /orcid_hub/templates/oauthorize.html: -------------------------------------------------------------------------------- 1 | {% extends "layout.html" %} 2 | {% block content %} 3 |
4 |
5 |

Allow?

6 |
7 |
8 | 9 | 10 |
11 |
12 |
13 |
14 | {% endblock %} 15 | -------------------------------------------------------------------------------- /orcid_hub/templates/uoa-slo.html: -------------------------------------------------------------------------------- 1 | {% extends "layout.html" %} 2 | {% block content %} 3 |
4 |
5 |

Welcome to NZ ORCID Hub

6 |

You had logged in from The University of Auckland. You have to close all open browser tabs and windows in order in order to complete the log-out (See: About Single-Sign-On )

7 |
8 |
9 | {% endblock %} 10 | -------------------------------------------------------------------------------- /process_tasks.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Script location directory: 4 | DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 5 | 6 | export PYTHONPATH=$DIR 7 | export FLASK_APP=orcid_hub 8 | export LANG=en_US.UTF-8 9 | [ -z "$DATABASE_URL" ] && DATABASE_URL=postgresql://orcidhub@db:5432/orcidhub?options='-c statement_timeout=3000' 10 | export DATABASE_URL 11 | 12 | 13 | flask process 14 | -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """Application runnier. 3 | 4 | While application can be run using **flask run** commmand, this script 5 | provides runner that could be launched form a dubugger or a consose with out **flask run**. 6 | """ 7 | 8 | import os 9 | 10 | from orcid_hub import app 11 | 12 | if __name__ == "__main__": 13 | # This allows us to use a plain HTTP callback 14 | os.environ['DEBUG'] = "1" 15 | os.environ['OAUTHLIB_INSECURE_TRANSPORT'] = '1' 16 | os.environ["ENV"] = "dev0" 17 | app.debug = True 18 | app.secret_key = os.urandom(24) 19 | app.run(debug=True, port=8000) 20 | -------------------------------------------------------------------------------- /scheduler.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Script location directory: 4 | DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 5 | 6 | export PYTHONPATH=$DIR 7 | export FLASK_APP=orcid_hub 8 | export LANG=en_US.UTF-8 9 | export RQ_REDIS_URL="${RQ_REDIS_URL:-redis://redis:6379/0}" 10 | [ -z "$DATABASE_URL" ] && DATABASE_URL=postgresql://orcidhub@db:5432/orcidhub?sslmode=disable\&options='-c statement_timeout=3000' 11 | export DATABASE_URL 12 | 13 | exec flask rq scheduler -v $@ 14 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | # noqa 2 | from setuptools import setup 3 | 4 | setup( 5 | setup_requires=["pbr", ], 6 | pbr=True, 7 | ) 8 | -------------------------------------------------------------------------------- /test_requirements.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | beautifulsoup4 3 | coverage>=4.4.1 4 | coveralls>=1.2.0 5 | flake8>=3.4.1 6 | flake8-docstrings>=1.1.0 7 | flake8-polyfill>=1.0.1 8 | pytest<6.0.0 9 | pytest-cov>=2.5.1 10 | pytest-mock 11 | testpath>=0.3.1 12 | Faker 13 | fakeredis 14 | -------------------------------------------------------------------------------- /tests/data/example_other_ids.csv: -------------------------------------------------------------------------------- 1 | Display Index,External ID Type,External ID Value,External ID URL,External ID Relationship,Email,First Name,Last Name,ORCID iD,Put Code,Visibility,Processed At,Status 2 | 0,bibcode,sdsds,http://url.edu/abs/ghjghghj,SELF,rostaindhfjsingradik2@mailinator.com,sdsdsds,sds1sds,,,PUBLIC,, 3 | -------------------------------------------------------------------------------- /tests/data/example_other_ids_02.csv: -------------------------------------------------------------------------------- 1 | Type,Value,Url,Relationship,Email,First Name,Last Name 2 | eid,"55535213800",https://www.scopus.com/authid/detail.uri?authorId=55535231800,self,percypenguin123@mailinator.com,Percy,Penguin 3 | -------------------------------------------------------------------------------- /tests/data/othernames.csv: -------------------------------------------------------------------------------- 1 | Content,Display Index,Visibility,Email,First Name,Last Name,ORCID iD,Put Code 2 | dummy 1220,0,PUBLIC,rad42@mailinator.com,sdsd,sds1,, 3 | dummy 10,0,PUBLIC,other_name@mailinator.com,sdsd,sds1,0000-0002-0146-7409,16878 4 | Other Name,,,,,,0000-0001-8228-7153, 5 | And Another Name,,PUBLIC,rad42@mailinator.com,,,, 6 | -------------------------------------------------------------------------------- /tests/data/resources.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/tests/data/resources.csv -------------------------------------------------------------------------------- /tests/data/resources.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Royal-Society-of-New-Zealand/NZ-ORCID-Hub/744e6d5a9e73f3e1288c4726b4bc02cb4f6c1c81/tests/data/resources.tsv -------------------------------------------------------------------------------- /tests/data/test1_required_only.csv: -------------------------------------------------------------------------------- 1 | Review Group Id,Reviewer Role,Review Type,Review Completion Date,Convening Org Name,Convening Org City,Convening Org Region,Convening Org Country,Convening Org Disambiguated Identifier,Convening Org Disambiguation Source,Email,First Name,Last Name,External Id Type,Peer Review Id,External Id Url,External Id Relationship,,,, issn:1175-8899,reviewer,review,1/08/2012,The University of Auckland,Auckland,Auckland,NZ,385488,RINGGOLD,percypenguin123@mailinator.com,Percy,Penguin,source-work-id,12xx4356,,self,,,, ,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,, 2 | -------------------------------------------------------------------------------- /worker.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Script location directory: 4 | DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 5 | 6 | export PYTHONPATH=$DIR 7 | export FLASK_APP=orcid_hub 8 | export LANG=en_US.UTF-8 9 | export RQ_REDIS_URL="${RQ_REDIS_URL:-redis://redis:6379/0}" 10 | [ -z "$DATABASE_URL" ] && DATABASE_URL=postgresql://orcidhub@db:5432/orcidhub?sslmode=disable\&options='-c statement_timeout=3000' 11 | export DATABASE_URL 12 | 13 | # Add $RANDOM to make the neame unique: 14 | exec flask rq worker -n ORCIDHUB.$$.$RANDOM $@ 15 | --------------------------------------------------------------------------------