diff --git a/src/OrganizationLoader/Program.cs b/src/OrganizationLoader/Program.cs index 04e857b84fdb84e8be5c807b2608a90deabab7ed..757a89aab88971d1a51aad6d951261ebe0931a8a 100644 --- a/src/OrganizationLoader/Program.cs +++ b/src/OrganizationLoader/Program.cs @@ -325,7 +325,7 @@ namespace Coscine.OrganizationLoader streamWriter.WriteLine(); streamWriter.WriteLine($"<{rorId}>"); streamWriter.WriteLine(@" dcterms:publisher <https://itc.rwth-aachen.de/> ;"); - streamWriter.WriteLine(@" dcterms:rights ""Copyright © 2020 IT Center, RWTH Aachen University"" ;"); + streamWriter.WriteLine(@" dcterms:rights ""Copyright © 2023 IT Center, RWTH Aachen University"" ;"); streamWriter.WriteLine(@" dcterms:title ""RWTH Aachen University""@en ;"); streamWriter.WriteLine(); streamWriter.WriteLine(@" a org:FormalOrganization ;"); @@ -396,6 +396,12 @@ namespace Coscine.OrganizationLoader streamWriter.WriteLine($@"<{organizationMapping.RorId}> org:identifier ""{organizationMapping.EntityId}"" ."); } + // Contact Information + streamWriter.WriteLine($"<{rorId}> coscineresource:contactInformation ["); + streamWriter.WriteLine(@" foaf:name ""Service Desk"";"); + streamWriter.WriteLine(@" foaf:mbox <mailto:servicedesk@rwth-aachen.de>;"); + streamWriter.WriteLine("]."); + streamWriter.Flush(); return Encoding.UTF8.GetString(memoryStream.ToArray());