-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #174 from CSCfi/CSCTTV-4140-ttv-mode-update-2025_01
CSCTTV-4140 TTV model update
- Loading branch information
Showing
13 changed files
with
413 additions
and
155 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
aspnetcore/src/DatabaseContext/Entities/DimDescriptiveItem.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace CSC.PublicApi.DatabaseContext.Entities; | ||
|
||
/// <summary> | ||
/// https://iri.suomi.fi/model/researchfi_core_project/ | ||
/// Projektin kuvailutiedot ajassa | ||
/// https://iri.suomi.fi/model/researchfi_core_project/cl_project_descriptive_in_time | ||
/// </summary> | ||
public partial class DimDescriptiveItem | ||
{ | ||
public int Id { get; set; } | ||
|
||
/// <summary> | ||
/// https://iri.suomi.fi/model/researchfi_core_project/ | ||
/// Projektin kuvailutiedot ajassa | ||
/// https://iri.suomi.fi/model/researchfi_core_project/cl_project_descriptive_in_time | ||
/// - liittyy projektiin | ||
/// </summary> | ||
public int DimResearchProjectId { get; set; } | ||
|
||
/// <summary> | ||
/// https://iri.suomi.fi/model/researchfi_core_project/ | ||
/// Projektin kuvailutiedot ajassa | ||
/// https://iri.suomi.fi/model/researchfi_core_project/cl_project_descriptive_in_time | ||
/// * alkamispäivämäärä | ||
/// </summary> | ||
public int DimStartDate { get; set; } | ||
|
||
/// <summary> | ||
/// https://iri.suomi.fi/model/researchfi_core_project/ | ||
/// Projektin kuvailutiedot ajassa | ||
/// https://iri.suomi.fi/model/researchfi_core_project/cl_project_descriptive_in_time | ||
/// * päättymispäivämäärä | ||
/// </summary> | ||
public int? DimEndDate { get; set; } | ||
|
||
/// <summary> | ||
/// https://iri.suomi.fi/model/researchfi_core_project/ | ||
/// Projektin kuvailutiedot ajassa | ||
/// https://iri.suomi.fi/model/researchfi_core_project/cl_project_descriptive_in_time | ||
/// * kuvailutiedon sisältö | ||
/// </summary> | ||
public string? DescriptiveItem { get; set; } | ||
|
||
/// <summary> | ||
/// https://iri.suomi.fi/model/researchfi_core_project/ | ||
/// https://iri.suomi.fi/model/researchfi_core_project/cl_project_descriptive_type | ||
/// - description | ||
/// - name | ||
/// - goal | ||
/// - outcome_effect | ||
/// - abberviation | ||
/// </summary> | ||
public string DescriptiveItemType { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// fi, en, sv, NULL | ||
/// </summary> | ||
public string? DescriptiveItemLanguage { get; set; } | ||
|
||
public string SourceId { get; set; } = null!; | ||
|
||
public string? SourceDescription { get; set; } | ||
|
||
public DateTime? Created { get; set; } | ||
|
||
public DateTime? Modified { get; set; } | ||
|
||
public int DimRegisteredDataSourceId { get; set; } | ||
|
||
public virtual DimDate? DimEndDateNavigation { get; set; } | ||
|
||
public virtual DimRegisteredDataSource DimRegisteredDataSource { get; set; } = null!; | ||
|
||
public virtual DimResearchProject DimResearchProject { get; set; } = null!; | ||
|
||
public virtual DimDate DimStartDateNavigation { get; set; } = null!; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
75 changes: 75 additions & 0 deletions
75
aspnetcore/src/DatabaseContext/Entities/FactFieldValuesTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace CSC.PublicApi.DatabaseContext.Entities; | ||
|
||
public partial class FactFieldValuesTest | ||
{ | ||
public int DimUserProfileId { get; set; } | ||
|
||
public int DimFieldDisplaySettingsId { get; set; } | ||
|
||
public long DimNameId { get; set; } | ||
|
||
public int DimWebLinkId { get; set; } | ||
|
||
public int DimFundingDecisionId { get; set; } | ||
|
||
public int DimPublicationId { get; set; } | ||
|
||
public int DimPidId { get; set; } | ||
|
||
public int DimPidIdOrcidPutCode { get; set; } | ||
|
||
public int DimResearchActivityId { get; set; } | ||
|
||
public int DimEventId { get; set; } | ||
|
||
public int DimEducationId { get; set; } | ||
|
||
public int DimCompetenceId { get; set; } | ||
|
||
public int DimResearchCommunityId { get; set; } | ||
|
||
public int DimTelephoneNumberId { get; set; } | ||
|
||
public int DimEmailAddrressId { get; set; } | ||
|
||
public int DimResearcherDescriptionId { get; set; } | ||
|
||
public int DimIdentifierlessDataId { get; set; } | ||
|
||
public int DimProfileOnlyPublicationId { get; set; } | ||
|
||
public int DimKeywordId { get; set; } | ||
|
||
public int DimAffiliationId { get; set; } | ||
|
||
public int DimResearcherToResearchCommunityId { get; set; } | ||
|
||
public bool? Show { get; set; } | ||
|
||
public bool? PrimaryValue { get; set; } | ||
|
||
public string SourceId { get; set; } = null!; | ||
|
||
public string? SourceDescription { get; set; } | ||
|
||
public DateTime? Created { get; set; } | ||
|
||
public DateTime? Modified { get; set; } | ||
|
||
public int DimResearchDatasetId { get; set; } | ||
|
||
public int DimRegisteredDataSourceId { get; set; } | ||
|
||
public int DimReferencedataFieldOfScienceId { get; set; } | ||
|
||
public int DimProfileOnlyResearchActivityId { get; set; } | ||
|
||
public int DimReferencedataActorRoleId { get; set; } | ||
|
||
public int DimProfileOnlyDatasetId { get; set; } | ||
|
||
public int DimProfileOnlyFundingDecisionId { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace CSC.PublicApi.DatabaseContext.Entities; | ||
|
||
public partial class FactKeyword | ||
{ | ||
public int DimKeywordId { get; set; } | ||
|
||
public int DimResearchProjectId { get; set; } | ||
|
||
public string SourceId { get; set; } = null!; | ||
|
||
public string SourceDescription { get; set; } = null!; | ||
|
||
public DateTime? Created { get; set; } | ||
|
||
public DateTime? Modified { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters