From 3001af215359edad6e27f73d54205a391208aa35 Mon Sep 17 00:00:00 2001
From: FionaDmello <40391218+FionaDmello@users.noreply.github.com>
Date: Thu, 8 Aug 2024 13:04:12 +0200
Subject: [PATCH] added content to about docs, created separate sidebars for
 type of doc

---
 docs/about/data-model/datasets.md             | 101 ++++
 docs/about/data-model/documents.md            | 525 ++++++++++++++++++
 docs/about/data-model/events.md               |  32 ++
 docs/about/data-model/experts.md              |  66 +++
 docs/about/data-model/index.md                |  18 +
 docs/about/data-model/institutions.md         |  51 ++
 docs/about/data-model/instruments.md          |  14 +
 docs/about/data-model/software.md             | 311 +++++++++++
 docs/about/introduction.md                    |  22 +
 docs/about/mission.md                         |  24 +
 docs/community/index.md                       |   7 +
 docs/guides/SPARQL/intro.md                   |   6 +
 docs/guides/Web API/intro.md                  |   6 +
 docs/guides/Web UI/intro.md                   |   6 +
 docs/guides/index.md                          |   8 +
 docs/unhide-api/intro.md                      |  47 --
 docs/unhide-ui/intro.md                       |  47 --
 docusaurus.config.ts                          |  21 +-
 index.md                                      |   8 +
 sidebars.ts                                   |  20 +-
 .../CommunitypageFeatures/index.tsx           |  13 -
 .../CommunitypageFeatures/styles.module.css   |  11 -
 src/components/GuidespageFeatures/index.tsx   |  13 -
 .../GuidespageFeatures/styles.module.css      |  11 -
 src/pages/about/index.module.css              |   0
 src/pages/about/index.tsx                     |  14 -
 src/pages/community/index.module.css          |   0
 src/pages/community/index.tsx                 |  14 -
 src/pages/guides/index.module.css             |   0
 src/pages/guides/index.tsx                    |  14 -
 src/pages/index.tsx                           |   2 +-
 static/_graphs/datasetTemplate.json           |  98 ++++
 static/_graphs/documentTemplate.json          | 518 +++++++++++++++++
 static/_graphs/eventsTemplate.json            |  22 +
 static/_graphs/expertTemplate.json            |  57 ++
 static/_graphs/institutionTemplate.json       |  42 ++
 static/_graphs/instrumentTemplate.json        |   6 +
 static/_graphs/softwareTemplate.json          | 288 ++++++++++
 38 files changed, 2245 insertions(+), 218 deletions(-)
 create mode 100644 docs/about/data-model/datasets.md
 create mode 100644 docs/about/data-model/documents.md
 create mode 100644 docs/about/data-model/events.md
 create mode 100644 docs/about/data-model/experts.md
 create mode 100644 docs/about/data-model/index.md
 create mode 100644 docs/about/data-model/institutions.md
 create mode 100644 docs/about/data-model/instruments.md
 create mode 100644 docs/about/data-model/software.md
 create mode 100644 docs/about/introduction.md
 create mode 100644 docs/about/mission.md
 create mode 100644 docs/community/index.md
 create mode 100644 docs/guides/SPARQL/intro.md
 create mode 100644 docs/guides/Web API/intro.md
 create mode 100644 docs/guides/Web UI/intro.md
 create mode 100644 docs/guides/index.md
 delete mode 100644 docs/unhide-api/intro.md
 delete mode 100644 docs/unhide-ui/intro.md
 create mode 100644 index.md
 delete mode 100644 src/components/CommunitypageFeatures/index.tsx
 delete mode 100644 src/components/CommunitypageFeatures/styles.module.css
 delete mode 100644 src/components/GuidespageFeatures/index.tsx
 delete mode 100644 src/components/GuidespageFeatures/styles.module.css
 delete mode 100644 src/pages/about/index.module.css
 delete mode 100644 src/pages/about/index.tsx
 delete mode 100644 src/pages/community/index.module.css
 delete mode 100644 src/pages/community/index.tsx
 delete mode 100644 src/pages/guides/index.module.css
 delete mode 100644 src/pages/guides/index.tsx
 create mode 100644 static/_graphs/datasetTemplate.json
 create mode 100644 static/_graphs/documentTemplate.json
 create mode 100644 static/_graphs/eventsTemplate.json
 create mode 100644 static/_graphs/expertTemplate.json
 create mode 100644 static/_graphs/institutionTemplate.json
 create mode 100644 static/_graphs/instrumentTemplate.json
 create mode 100644 static/_graphs/softwareTemplate.json

diff --git a/docs/about/data-model/datasets.md b/docs/about/data-model/datasets.md
new file mode 100644
index 00000000..99b7e25a
--- /dev/null
+++ b/docs/about/data-model/datasets.md
@@ -0,0 +1,101 @@
+---
+displayed_sidebar: aboutSidebar
+sidebar_position: 1
+---
+
+# Datasets
+
+```json
+{
+  "@context": {
+    "@vocab": "https://schema.org/"
+  },
+  "@type": "Dataset",
+  "@id": "https://registry.org/permanentUrlToThisJsonDoc",
+  "name": "A concise but descriptive name of the dataset",
+  "description": "An extended, free-text description of what's in the dataset, who created it, and other attributes",
+  "url": "https://urlToTheDatasetOrLandingPage.org/",
+  "sameAs": ["http://alternativeUrlToTheDatasetOrLandingPage.org"],
+  "license": "This work is licensed under a  Creative Commons Attribution (CC-BY) 4.0 License",
+  "citation": [
+    "Citation to other work relevant to this dataset",
+    "Citation to other work relevant to this dataset",
+    "Citation to other work relevant to this dataset"
+  ],
+  "version": "2021-04-24T06:34:56.000Z",
+  "keywords": ["Keyword 1", "Keyword 2", "Keyword 3"],
+  "measurementTechnique": "The URL to or text about the methods, technique or technology used to generate this Dataset",
+  "variableMeasured": [
+    {
+      "@type": "PropertyValue",
+      "name": "Name of a variable in the dataset",
+      "description": "Extended description of this variable"
+    },
+    {
+      "@type": "PropertyValue",
+      "name": "Name of a variable in the dataset",
+      "url": "http://ontology.org/uriToSemanticDescriptorOfThisVariable",
+      "description": "Extended description of this variable?"
+    },
+    {
+      "@type": "PropertyValue",
+      "name": "SamplingDeviceApertureSurfaceArea",
+      "url": "http://ontology.org/uriToSemanticDescriptorOfThisVariable",
+      "description": "Extended description of this variable"
+    }
+  ],
+  "includedInDataCatalog": {
+    "@id": "https://registryOfCatalogs.org/permanentUrlIdentifiyingCatalog",
+    "@type": "DataCatalog",
+    "url": "https://urlOfDataCatalog.org"
+  },
+  "temporalCoverage": "2007/2007",
+  "distribution": {
+    "@type": "DataDownload",
+    "contentUrl": "http://urlToDirectDownloadOfThisDataset.org/",
+    "encodingFormat": "text/csv"
+  },
+  "spatialCoverage": {
+    "@type": "Place",
+    "geo": {
+      "@type": "GeoShape",
+      "polygon": "142.014 10.161667,142.014 18.033833,147.997833 18.033833,147.997833 10.161667,142.014 10.161667"
+    },
+    "additionalProperty": {
+      "@type": "PropertyValue",
+      "propertyID": "http://dbpedia.org/resource/Spatial_reference_system",
+      "value": "http://www.w3.org/2003/01/geo/wgs84_pos#lat_long"
+    }
+  },
+  "provider": [
+    {
+      "@type": "Organization",
+      "legalName": "Legal Name of Organisation which generated the dataset",
+      "name": "Other Name of Organisation which generated the dataset",
+      "url": "https://organisationWebsite.org/"
+    }
+  ],
+  "subjectOf": {
+    "@type": "Event",
+    "description": "Describe the event which is the subject of this dataset. For example, a cruise ID.",
+    "name": "Concise and descriptive name of the Event",
+    "potentialAction": {
+      "@type": "Action",
+      "name": "Concise but descriptive name of action that was part of an Event. For example, the name of a CTD cast",
+      "agent": [
+        "Name or permanent ID of person or thing that performed this action",
+        "Name or permanent ID of person or thing that performed this action",
+        "Name or permanent ID of person or thing that performed this action"
+      ],
+      "startTime": "2007-03-11T14:45UTC",
+      "endTime": "2007-03-11T15:42UTC",
+      "instrument": {
+        "@type": "Thing",
+        "name": "The name of the instrument used in the action. For example, the specific model of a CTD, a glider, a moored sensor",
+        "url": "http://ontology.org/uriToSemanticDescriptorOfThisInstrument",
+        "description": "Extended description of the sampling instrument"
+      }
+    }
+  }
+}
+```
diff --git a/docs/about/data-model/documents.md b/docs/about/data-model/documents.md
new file mode 100644
index 00000000..3ae884a4
--- /dev/null
+++ b/docs/about/data-model/documents.md
@@ -0,0 +1,525 @@
+---
+displayed_sidebar: aboutSidebar
+sidebar_position: 3
+---
+
+# Documents
+
+```json
+{
+  "@context": {
+    "@vocab": "https://schema.org/"
+  },
+  "@id": "URL: Optional. A URL that resolves to *this* JSON-LD document, NOT the URL of the WebAPI that this JSON-LD document describes. To link to the WebAPI itself, please use 'url' and/or 'identifier')",
+  "@type": "CreativeWork",
+
+  "about": "Text or controlled vocabulary/ontology, singly or as an array: The subject matter of this CreativeWork",
+  "abstract": "Text: A descriptive summary of a CreativeWork",
+  "accessMode": [
+    "auditory",
+    "chartOnVisual",
+    "chemOnVisual",
+    "colorDependent",
+    "diagramOnVisual",
+    "mathOnVisual",
+    "musicOnVisual",
+    "tactile",
+    "textOnVisual",
+    "textual",
+    "visual"
+  ],
+  "accessModeSufficient": [
+    "auditory",
+    "chartOnVisual",
+    "chemOnVisual",
+    "colorDependent",
+    "diagramOnVisual",
+    "mathOnVisual",
+    "musicOnVisual",
+    "tactile",
+    "textOnVisual",
+    "textual",
+    "visual"
+  ],
+  "accessibilityHazard": [
+    "flashing",
+    "noFlashingHazard",
+    "motionSimulation",
+    "noMotionSimulationHazard",
+    "sound",
+    "noSoundHazard",
+    "unknown",
+    "none"
+  ],
+  "accessibilitySummary": "Text: A textual summary of how this CreativeWork can be accessed, if there are any hazards associated with access, and related facts",
+  "accountablePerson": {
+    "@type": "Person",
+    "name": "Dr Uta Passow",
+    "givenName": "Uta",
+    "familyName": "Passow",
+    "url": "https://www.sample-data-repository.org/person/51317"
+  },
+  "acquireLicensePage": "https://urlToLicenseAcquisitionPage.org/",
+  "aggregateRating": {
+    "@type": "AggregateRating",
+    "reviewAspect": "Text describing what part of the CreativeWork is subject to the ratings here",
+    "ratingValue": "4",
+    "ratingExplanation": "Text explaining the ratingValue",
+    "reviewCount": "250",
+    "bestRating": "5",
+    "worstRating": "1"
+  },
+  "alternativeHeadline": "Text: A secondary title of the CreativeWork.",
+  "archivedAt": "https://urlToResourceCreativeWorkIsArchivedAt.org/",
+  "assesses": "Text to describe what (if anything) the CreativeWork described by this template assesses.",
+  "associatedMedia": {
+    "@type": "MediaObject",
+    "name": "Name of the media object encoding this CreativeWork",
+    "description": "A schema.org MediaObject, such as an image, video, or audio object embedded in a web page or a downloadable dataset, i.e. DataDownload. See [TODO: Add MediaObject support profile]"
+  },
+  "audience": "Text: Text describing the audience the CreativeWork is intended for.",
+  "audio": {
+    "@type": "AudioObject",
+    "name": "Title Of The AudioFile",
+    "description": "Description of the audio object",
+    "contentUrl": "http://myAudioWebsite.org/TitleOfTheAudioFile.mp4",
+    "encoding": "audio/mp4"
+  },
+  "author": {
+    "@type": "Person",
+    "name": "Dr Uta Passow",
+    "givenName": "Uta",
+    "familyName": "Passow",
+    "url": "https://www.sample-data-repository.org/person/51317"
+  },
+  "award": "Text to describe an award won for this CreativeWork",
+  "character": {
+    "@type": "Person",
+    "name": "Odysseus",
+    "description": "A description of any ficitonal character mentioned in this creative work",
+    "givenName": "Odysseus",
+    "familyName": "",
+    "url": "https://en.wikipedia.org/wiki/Odysseus"
+  },
+  "citation": [
+    "Citation to other work relevant to this software",
+    "Citation to other work relevant to this software",
+    "Citation to other work relevant to this software"
+  ],
+  "comment": "Text comment on the CreativeWork",
+  "commentCount": 1,
+  "conditionsOfAccess": "Text to describe conditions that affect the availability of, or method(s) of access to, an item.",
+  "contentLocation": {
+    "@type": "AdministrativeArea",
+    "name": "Lunenburg",
+    "description": "The location depicted or described in the CreativeWork"
+  },
+  "contentRating": "Text stating the official rating for this CreativeWork",
+  "contentReferenceTime": "DateTime: 2016-03-21T11:30:00-07:00",
+  "contributor": {
+    "@type": "Organization",
+    "@id": "http://www.foo.org/orgID",
+    "legalName": "Some Institute"
+  },
+  "copyrightHolder": {
+    "@type": "Person",
+    "@id": "http://lod.example-data-repository.org/id/person/5112",
+    "name": "Dr Sarah Smith",
+    "url": "https://www.example-data-repository.org/person/5112"
+  },
+  "copyrightNotice": "Text of a notice appropriate for describing the copyright aspects of this Creative Work",
+  "copyrightYear": "Number: 1999",
+  "correction": "Text or CorrectionComment or URL property to indicate a correction to the CreativeWork",
+  "countryOfOrigin": {
+    "@type": "Country",
+    "name": "Fiji"
+  },
+  "creativeWorkStatus": "Text or DefinedTerm property to describe the status of this CreativeWork in terms of its stage in a lifecycle",
+  "creator": [
+    {
+      "@type": "Person",
+      "@id": "http://lod.example-data-repository.org/id/person/51159",
+      "name": "Dr Langdon Quetin",
+      "url": "https://www.example-data-repository.org/person/51159"
+    },
+    {
+      "@type": "Person",
+      "@id": "http://lod.example-data-repository.org/id/person/51160",
+      "name": "Dr Robin Ross",
+      "url": "https://www.example-data-repository.org/person/51160"
+    }
+  ],
+  "creditText": "Text used to credit person(s) and/or organization(s) associated with this CreativeWork",
+  "dateCreated": "2019-03-21",
+  "dateModified": "2019-03-21",
+  "datePublished": "2019-03-21",
+  "discussionUrl": "http://LinkToPage/with/comments/about/this/work",
+  "editEIDR": "Text or URL to state the EIDR (Entertainment Identifier Registry) identifier representing a specific edit / edition for a work of film or television.",
+  "editor": {
+    "@type": "Person",
+    "name": "Person name"
+  },
+  "educationalAlignment": {
+    "@type": "AlignmentObject",
+    "alignmentType": "educationalSubject",
+    "educationalFramework": "Text: The framework to which the resource being described is aligned",
+    "targetName": "Text: name of a node in an established educational framework",
+    "targetUrl": "http://example.org/CFE/subjects/3362"
+  },
+  "educationalLevel": "The level in terms of progression through an educational or training context. Examples of educational levels include 'beginner', 'intermediate' or 'advanced', and formal sets of level indicators.",
+  "educationalUse": "Text or DefinedTerm property to describe the purpose of this CreativeWork in the context of education",
+  "encoding": {
+    "@type": "MediaObject",
+    "description": "A media object that encodes this CreativeWork.  Such as video, etc."
+  },
+  "encodingFormat": "application/zip ",
+  "exampleOfWork": {
+    "@type": "CreativeWork",
+    "description": "A creative work that this work is an example/instance/realization/derivation of"
+  },
+  "expires": "2019-03-21",
+  "funder": {
+    "@type": "Person",
+    "name": "Person name"
+  },
+  "funding": {
+    "@type": "Grant",
+    "name": "Name of grant that supports this creativework"
+  },
+  "genre": "Genre of the creative work, broadcast channel or group.",
+  "hasPart": {
+    "@type": "CreativeWork",
+    "description": "Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense).Inverse property: isPartOf"
+  },
+  "headline": "Headline of the article",
+  "inLanguage": {
+    "@type": "Language",
+    "name": "Spanish",
+    "alternateName": "es"
+  },
+  "interactionStatistic": {
+    "@type": "InteractionCounter",
+    "interactionType": "https://schema.org/ListenAction",
+    "userInteractionCount": "14300"
+  },
+  "interactivityType": "Text to describe the predominant mode of learning supported by the learning resource",
+  "interpretedAsClaim": {
+    "@type": "Claim",
+    "appearance": {
+      "@type": "CreativeWork",
+      "name": "Julius Caesar"
+    },
+    "claimInterpreter": {
+      "@type": "Person",
+      "@id": "http://lod.example-data-repository.org/id/person/514",
+      "name": "Susan White",
+      "url": "https://www.example-data-repository.org/person/514"
+    }
+  },
+  "isAccessibleForFree": "True",
+  "isBasedOn": {
+    "@type": "CreativeWork",
+    "description": "A resource from which this work is derived or from which it is a modification or adaption"
+  },
+  "isFamilyFriendly": "True",
+  "isPartOf": {
+    "@type": "CreativeWork",
+    "description": "Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of.Inverse property: hasPart"
+  },
+  "keywords": {
+    "@type": "DefinedTerm",
+    "inDefinedTermSet": {
+      "@type": "DefinedTermSet",
+      "name": "Name of the set",
+      "description": "Description of the set",
+      "url": "url for the set"
+    },
+    "termCode": "A code that identifies this DefinedTerm within a DefinedTermSet"
+  },
+  "learningResourceType": "Text or DefinedTerm property to describe predominant type or kind characterizing the learning resource.",
+  "license": "http://spdx.org/licenses/CC0-1.0",
+  "locationCreated": {
+    "@type": "Place",
+    "geo": {
+      "@type": "GeoCoordinates",
+      "latitude": 39.328,
+      "longitude": 120.1633
+    }
+  },
+  "mainEntity": "Thing",
+  "maintainer": {
+    "@type": "Person",
+    "name": "Person name"
+  },
+  "material": "Text or Product or URL property to describe the material that the CreativeWork is made from",
+  "materialExtent": "Text or QuantitativeValue to state the quantity of the materials being described or an expression of the physical space they occupy",
+  "mentions": "Thing Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept",
+  "offers": [
+    {
+      "@type": "Offer",
+      "name": "name of offer"
+    },
+    {
+      "@type": "Demand",
+      "name": "name of demand"
+    }
+  ],
+  "pattern": "Text or DefinedTerm property to state the pattern that the CreativeWork has, for example 'polka dot', 'striped', 'Canadian flag'",
+  "position": "Text or Integer to describe the position of the CreativeWork in a series or sequence of items",
+  "producer": {
+    "@type": "Person",
+    "name": "George Martin"
+  },
+  "provider": {
+    "@type": "Organization",
+    "legalName": "Sample Data Repository Office",
+    "name": "SDRO",
+    "sameAs": "http://www.re3data.org/repository/r3dxxxxxxxxx",
+    "url": "https://www.sample-data-repositoryB.org"
+  },
+  "publication": {
+    "@type": "PublicationEvent",
+    "startDate": "1968-11-25",
+    "location": {
+      "@type": "Country",
+      "name": "Ghana"
+    }
+  },
+  "publisher": {
+    "url": "https://www.publishingrus.org",
+    "@type": "Organization",
+    "legalName": "Some Institute"
+  },
+  "publisherImprint": {
+    "@id": "https://www.publishingdiv.org",
+    "@type": "Organization",
+    "legalName": "Some publishing division"
+  },
+  "publishingPrinciples": "https://url.to.document.describing.editorial.principles.of.organization.com",
+  "recordedAt": {
+    "@type": "Event",
+    "location": "Some place",
+    "startDate": "Some start date",
+    "url": "https://url.to.event.com"
+  },
+  "releasedEvent": {
+    "@type": "PublicationEvent",
+    "startDate": "Some date",
+    "location": {
+      "@type": "Country",
+      "name": "Some country"
+    }
+  },
+  "review": {
+    "@type": "Review",
+    "author": "A Reviewer",
+    "datePublished": "Some date",
+    "reviewBody": "Text describing the review of the CreativeWork",
+    "name": "text for name of review",
+    "reviewRating": {
+      "@type": "Rating",
+      "bestRating": "some integer",
+      "ratingValue": "some integer",
+      "worstRating": "some integer"
+    }
+  },
+  "schemaVersion": [
+    "https://schema.org/docs/releases.html#v10.0",
+    "http://dublincore.org/specifications/dublin-core/dces/1999-07-02",
+    "https://github.com/spdx/license-list-XML/releases/tag/v3.20"
+  ],
+  "sdDatePublished": "2022-04-12",
+  "sdLicense": "http://spdx.org/licenses/CC0-1.0",
+  "sdPublisher": [
+    {
+      "@type": "Organization",
+      "legalName": "Example Structured Data Publishing Organisation",
+      "name": "ESDPO",
+      "description": "An organisation which publishes structured data about things.",
+      "url": "https://www.exampleSDPublisher.org/"
+    },
+    {
+      "@type": "Person",
+      "name": "John Doe",
+      "description": "A person who publishes structured data about Things",
+      "url": "https://www.sample-data-repository.org/person/51332"
+    }
+  ],
+  "size": "Text indicating the phyiscal size of the CreativeWork (if appropriate). DefinedTerm or QuantitativeValue or SizeSpecification are also valid Types",
+  "sourceOrganization": {
+    "@type": "Organization",
+    "legalName": "Example Source Organisation",
+    "name": "ESO",
+    "description": "The organisation which the creator of this CreativeWork was working for.",
+    "url": "https://www.exampleSource.org/"
+  },
+  "spatial": {
+    "@type": "Place",
+    "description": "Use the 'spatial' property and the properites under 'Place' for any spatial information you'd like to add, beyond spatialCoverage."
+  },
+  "spatialCoverage": {
+    "@type": "Place",
+    "address": "54 Ocean Drive, 23521 Ocean City, CountryName",
+    "name": "Place name",
+    "description": "Use this Place type to express which spatial region your CreativeWork is about or is focused on. If you don't have precise coordinates, use this description field to describe the place with free text",
+    "geo": {
+      "@type": "GeoShape",
+      "polygon": "-158.8575 23.4375, -158.8575 21.2283, -157.4567 21.2283, -157.4567 23.4375, -158.8575 23.4375"
+    },
+    "additionalProperty": [
+      {
+        "@type": "PropertyValue",
+        "propertyID": "http://dbpedia.org/resource/Spatial_reference_system",
+        "value": "http://www.w3.org/2003/01/geo/wgs84_pos#lat_long"
+      },
+      {
+        "@type": "PropertyValue",
+        "propertyID": "GPS Accuracy / Location error",
+        "value": "18",
+        "unitCode": "http://qudt.org/vocab/unit/M"
+      }
+    ]
+  },
+  "sponsor": [
+    {
+      "@type": "Organization",
+      "legalName": "Example Sponsorship Organisation",
+      "name": "ESO",
+      "description": "An organisation which sponsors things.",
+      "url": "https://www.exampleSponsorship.org/"
+    },
+    {
+      "@type": "Person",
+      "name": "John Doe",
+      "description": "A person who sponsors many Things",
+      "url": "https://www.sample-data-repository.org/person/51332"
+    }
+  ],
+  "teaches": [
+    "ocean exploration",
+    {
+      "@type": "DefinedTerm",
+      "inDefinedTermSet": "http://vocabularies.unesco.org/thesaurus",
+      "name": "ocean exploration",
+      "termCode": "concept10630",
+      "url": "http://vocabularies.unesco.org/thesaurus/concept10630"
+    }
+  ],
+  "temporal": "A more general property for any time-related information about this CreativeWork. This can be expressed as text or using the properties associated with the DateTime Type",
+  "temporalCoverage": "2011/2012",
+  "text": "The entire textual content of this CreativeWork, if relevant",
+  "thumbnailUrl": "https://www.sample-website.org/imageAboutThisThing.jpg",
+  "timeRequired": "PT30M",
+  "translationOfWork": {
+    "@type": "CreativeWork",
+    "description": "The CreativeWork that this CreativeWork was translated from, if any",
+    "inLanguage": "ja",
+    "name": "クリエイティブな作品",
+    "url": "https://www.sample-data-repository.org/creativeWork/1124",
+    "translator": {
+      "@type": "Person",
+      "name": "Dr 山田 太郎",
+      "givenName": "太郎",
+      "familyName": "山田",
+      "url": "https://www.sample-data-repository.org/person/12435"
+    }
+  },
+  "translator": [
+    {
+      "@type": "Organization",
+      "legalName": "Translations Incorporated",
+      "name": "TI",
+      "description": "An organisation which has been tasked with translating this CreativeWork.",
+      "url": "https://www.translationsIncorporated.org/"
+    },
+    {
+      "@type": "Person",
+      "name": "John Doe",
+      "description": "A person who has been tasked with translating this CreativeWork.",
+      "url": "https://www.sample-data-repository.org/person/51332"
+    }
+  ],
+  "typicalAgeRange": "20-60",
+  "usageInfo": {
+    "@type": "CreativeWork",
+    "name": "Guidelines on how to use and how not to use this CreativeWork",
+    "description": "A document or other resources which contains information on how the CreativeWork should and should not be used.",
+    "url": "https://usageGuides.org/usageGuide_2321.pdf"
+  },
+  "version": "3.2",
+  "video": {
+    "@type": "VideoObject",
+    "description": "A video object about this CreativeWork.",
+    "duration": "PT1M33S",
+    "name": "A video about our CreativeWork",
+    "thumbnail": "https://videoImageArchive.org/videoThumbnail.jpg",
+    "contentSize": "500MB"
+  },
+  "workExample": [
+    {
+      "@type": "Dataset",
+      "datePublished": "2012",
+      "description": "A CSV distribution of this CreativeWork",
+      "distribution": "https://repository.org/pid_to_the_downloadable_dataset.",
+      "encodingFormat": "text/csv",
+      "publisher": {
+        "@type": "Organization",
+        "name": "Data R Us Inc."
+      }
+    },
+    {
+      "@type": "Dataset",
+      "datePublished": "2021",
+      "description": "A Geo JSON distribution of this CreativeWork",
+      "distribution": "https://anotherRepository.org/pid_to_the_downloadable_dataset.",
+      "encodingFormat": "application/geo+json",
+      "publisher": {
+        "@type": "Organization",
+        "name": "GeoData 4 All Inc."
+      }
+    }
+  ],
+  "workTranslation": {
+    "@type": "CreativeWork",
+    "description": "A French translation of this CreativeWork",
+    "inLanguage": "fr",
+    "name": "This CreativeWork - A New Translation",
+    "translator": {
+      "@type": "Person",
+      "name": "Dr John Doe",
+      "givenName": "John",
+      "familyName": "Doe",
+      "url": "https://www.sample-data-repository.org/person/51332"
+    }
+  },
+
+  "additionalType": "https://myPIDs.org/pidToMyAdditionalType/",
+  "alternateName": "Thing 1",
+  "description": "Free text or a URL to a description of this Thing.",
+  "disambiguatingDescription": "A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation",
+  "identifier": {
+    "@type": "PropertyValue",
+    "propertyID": "https://registry.identifiers.org/registry/myIdentifier/",
+    "value": "xyz",
+    "url": "https://myIdentifier.org/xyz",
+    "description": "Text: Optional description of this identifier, see [TODO: ADD URI TO IDENTIFER PATTERN] for more guidance on sharing identifieres."
+  },
+  "image": "https://myPIDs.org/pidToImageOfThisThing/",
+  "mainEntityOfPage": "https://www.urlToPageWhichIsMainlyAboutThisThing.com/",
+  "name": "Thing One",
+  "potentialAction": {
+    "@type": "Action",
+    "description": "Text: Description of Action which this Thing could potentially participate in. See [TODO:ADD LINK TO ACTION PATTERN] for how to add more structured metadata to Action. ",
+    "name": "Text: Name of Action that this Thing could potentially participate in"
+  },
+  "sameAs": [
+    "https://myPIDs.org/pidToAnotherWebResourceAboutThisThing/",
+    "https://myPIDs.org/pidToYetAnotherWebResourceAboutThisThing/"
+  ],
+  "subjectOf": [
+    "https://myPIDs.org/pidToCreativeWorkAboutThisThing/",
+    "https://myPIDs.org/pidToEventAboutThisThing/"
+  ],
+  "url": "https://www.urlToPageAboutThisThing.com/"
+}
+```
diff --git a/docs/about/data-model/events.md b/docs/about/data-model/events.md
new file mode 100644
index 00000000..a18e66f8
--- /dev/null
+++ b/docs/about/data-model/events.md
@@ -0,0 +1,32 @@
+---
+displayed_sidebar: aboutSidebar
+sidebar_position: 7
+---
+
+# Events
+
+```json
+{
+  "@context": "http://schema.org",
+  "@type": "Event",
+  "description": "Sponsored by Helmholtz Information & Data Science Academy (HIDA)in cooperation with
+  Core Facility Statistical Consulting at Helmholtz Zentrum München - German Research Center for
+  Environmental Health (Helmholtz Munich) is a fantastic tool to efficiently
+  write manuscripts and research reports. It relieves the work of making your manuscripts and reports
+  reproducible and transferable. You combine the coding in R and the writing of the documentation/interpretation
+  of the results all in the same file and compile it directly as a report (e.g. as html, pdf or word document)
+  After this course, you will no longer need to create multiple files in order to produce one single
+  research document. Tables, figures, citations and much more can be included in one single document
+  to be directly shared with your peers or PIs.Prerequisites: Programming skills with R, e.g. course
+  'Introduction to R' More details here. Course Days and TimesMay 25, 2023, 9 am - 12:30 pm May 26, 2023,
+  9 am - 12:30 pm NOTE: Registration will open 4 weeks before the course's starting date.",
+  "endDate": "2023-05-26T12:30:00+02:00",
+  "image": "https://events.hifis.net/event/656/logo-1641968619.png",
+  "location": { "@type": "Place",
+        "address": "No address set",
+        "name": "online"},
+  "name": "RMarkdown",
+  "startDate": "2023-05-25T09:00:00+02:00",
+  "url": "https://events.hifis.net/event/656/"
+}
+```
diff --git a/docs/about/data-model/experts.md b/docs/about/data-model/experts.md
new file mode 100644
index 00000000..b29ff5c3
--- /dev/null
+++ b/docs/about/data-model/experts.md
@@ -0,0 +1,66 @@
+---
+displayed_sidebar: aboutSidebar
+sidebar_position: 5
+---
+
+# Experts
+
+```json
+{
+  "@context": {
+    "@vocab": "https://schema.org/"
+  },
+  "@id": "https://example.org/id/x",
+  "@type": "Person",
+  "name": "Jane Doe",
+  "jobTitle": "Professor",
+  "workLocation": {
+    "@type": "Place",
+    "address": "54 Ocean Drive, 23521 Ocean City, CountryName",
+    "name": "Place name"
+  },
+  "telephone": "(425) 123-4567",
+  "url": "http://www.janedoe.com",
+  "knowsAbout": [
+    {
+      "@type": "Text",
+      "description": "Invasive species in brackish water"
+    },
+    {
+      "@type": "URL",
+      "url": "https://www.wikidata.org/wiki/Q183368"
+    },
+    {
+      "@id": "https://example.org/id/course/x",
+      "@type": "Course",
+      "description": "In this course ...",
+      "url": "URL to the course"
+    }
+  ],
+  "identifier": {
+    "@id": "https://orcid.org/0000-0002-2257-9127",
+    "@type": "PropertyValue",
+    "propertyID": "https://registry.identifiers.org/registry/orcid",
+    "url": "https://orcid.org/0000-0002-2257-9127",
+    "description": "Optional description of this record..."
+  },
+  "nationality": [
+    {
+      "@type": "Country",
+      "name": "Fiji"
+    },
+    {
+      "@type": "DefinedTerm",
+      "url": "https://unece.org/trade/cefact/unlocode-code-list-country-and-territory",
+      "inDefinedTermSet": "UN/LOCODE Code List by Country and Territory",
+      "name": "Fiji",
+      "termCode": "FJ"
+    }
+  ],
+  "knowsLanguage": {
+    "@type": "Language",
+    "name": "Spanish",
+    "alternateName": "es"
+  }
+}
+```
diff --git a/docs/about/data-model/index.md b/docs/about/data-model/index.md
new file mode 100644
index 00000000..82e1b71b
--- /dev/null
+++ b/docs/about/data-model/index.md
@@ -0,0 +1,18 @@
+---
+displayed_sidebar: aboutSidebar
+sidebar_position: 4
+---
+
+# Data Model
+
+Initial efforts of the Helmholtz-KG implementation will focus on the representation of (meta)data describing the following digital core assets:
+
+- Documents / Publications
+- published Datasets
+- Software
+- Institutions
+- Infrastructure & Resources
+- Researchers & Experts
+- Projects
+
+The representation of these instances will be semantically aligned with the [schema.org](https://schema.org/docs/full.html) vocabulary, a globally adopted standard offering a relaxed frame for the representation of heterogeneous data. Following the initial implementation the semantic expressiveness of the graph can be increased by integrating domain ontologies such as the HMC developed [Helmholtz Digitization Ontology](https://codebase.helmholtz.cloud/hmc/hmc-public/hob/hdo) (HDO), which provides precise and comprehensive semantics of the concepts and practices used to manage digital assets.
diff --git a/docs/about/data-model/institutions.md b/docs/about/data-model/institutions.md
new file mode 100644
index 00000000..a11a606d
--- /dev/null
+++ b/docs/about/data-model/institutions.md
@@ -0,0 +1,51 @@
+---
+displayed_sidebar: aboutSidebar
+sidebar_position: 6
+---
+
+# Institutions
+
+```json
+{
+  "@context": {
+    "@vocab": "https://schema.org/"
+  },
+  "@id": "https://index.example.org/id/org/x",
+  "@type": "Organization",
+  "address": {
+    "@type": "PostalAddress",
+    "addressLocality": "Paris, France",
+    "postalCode": "F-75002",
+    "streetAddress": "38 avenue de l'Opera"
+  },
+  "location": {
+    "@type": "Place",
+    "address": "38 avenue de l'Opera, F-75002, Paris, France",
+    "name": "Paris"
+  },
+  "email": "secretariat(at)example.org",
+  "name": "Organization X",
+  "description": "Description of org ...",
+  "telephone": "( 33 1) 42 68 53 00",
+  "url": "https://example.org/",
+  "member": [
+    {
+      "@id": "https://example.org/id/org/1",
+      "@type": "Organization",
+      "name": "Organization A",
+      "description": "Org A is a potential parent organization of Org X"
+    },
+    {
+      "@id": "https://orcid.org/0000-0002-2257-9127",
+      "@type": "Person"
+    }
+  ],
+  "identifier": {
+    "@id": "https://grid.ac/institutes/grid.475727.4",
+    "@type": "PropertyValue",
+    "description": "UN Department of Economic and Social Affairs Sustainable Development",
+    "propertyID": "https://registry.identifiers.org/registry/grid",
+    "url": "https://grid.ac/institutes/grid.475727.4"
+  }
+}
+```
diff --git a/docs/about/data-model/instruments.md b/docs/about/data-model/instruments.md
new file mode 100644
index 00000000..86f8e74d
--- /dev/null
+++ b/docs/about/data-model/instruments.md
@@ -0,0 +1,14 @@
+---
+displayed_sidebar: aboutSidebar
+sidebar_position: 4
+---
+
+# Instruments
+
+```json
+{
+  "@context": {
+    "@vocab": "https://schema.org/"
+  }
+}
+```
diff --git a/docs/about/data-model/software.md b/docs/about/data-model/software.md
new file mode 100644
index 00000000..9b6f460e
--- /dev/null
+++ b/docs/about/data-model/software.md
@@ -0,0 +1,311 @@
+---
+displayed_sidebar: aboutSidebar
+sidebar_position: 2
+---
+
+# Software
+
+```json
+{
+  "@context": [
+    "https://doi.org/10.5063/schema/codemeta-2.0",
+    "https://w3id.org/software-iodata",
+    "https://schema.org",
+    "https://w3id.org/software-types"
+  ],
+  "@id": "https://codebase.helmholtz.cloud/hmc/hmc-public/unhide/data_harvesting",
+  "@type": "SoftwareSourceCode",
+  "author": [
+    {
+      "@id": "https://orcid.org/0000-0001-7939-226X",
+      "@type": "Person",
+      "email": "j.broeder@fz-juelich.de",
+      "familyName": "Bröder",
+      "givenName": "Jens",
+      "affiliation": {
+        "@id": "https://ror.org/02nv7yv05",
+        "name": "Forschungszentrum Jülich GmbH"
+      }
+    },
+    {
+      "@id": "https://orcid.org/0000-0002-0070-4337",
+      "@type": "Person",
+      "email": "a.strupp@fz-juelich.de",
+      "familyName": "Strupp",
+      "givenName": "Annika",
+      "affiliation": {
+        "@id": "https://ror.org/02nv7yv05",
+        "name": "Forschungszentrum Jülich GmbH"
+      }
+    },
+    {
+      "@id": "https://orcid.org/0000-0003-0000-4784",
+      "@type": "Person",
+      "email": "p.videgain.barranco@fz-juelich.de",
+      "familyName": "Videgain Barranco",
+      "givenName": "Pedro",
+      "affiliation": {
+        "@id": "https://ror.org/02nv7yv05",
+        "name": "Forschungszentrum Jülich GmbH"
+      }
+    },
+    {
+      "@id": "https://orcid.org/0000-0002-2818-5890",
+      "@type": "Person",
+      "email": "s.fathalla@fz-juelich.de",
+      "familyName": "Fathalla",
+      "givenName": "Said",
+      "affiliation": {
+        "@id": "https://ror.org/02nv7yv05",
+        "name": "Forschungszentrum Jülich GmbH"
+      }
+    },
+    {
+      "@id": "https://orcid.org/0000-0002-3968-2446",
+      "@type": "Person",
+      "email": "gabriel.preuss@helmholtz-berlin.de",
+      "familyName": "Preuß",
+      "givenName": "Gabriel",
+      "affiliation": {
+        "@id": "https://ror.org/02aj13c28",
+        "name": "Helmholtz-Zentrum Berlin für Materialien und Energie"
+      }
+    }
+  ],
+  "codeRepository": "https://codebase.helmholtz.cloud/hmc/hmc-public/unhide/data_harvesting.git",
+  "contributor": [
+    {
+      "@id": "https://orcid.org/0000-0001-7939-226X",
+      "@type": "Person",
+      "email": "j.broeder@fz-juelich.de",
+      "familyName": "Bröder",
+      "givenName": "Jens",
+      "affiliation": {
+        "@type": "Organization",
+        "@id": "https://ror.org/02nv7yv05",
+        "name": "Forschungszentrum Jülich GmbH"
+      }
+    },
+    {
+      "@id": "https://orcid.org/0000-0002-0070-4337",
+      "@type": "Person",
+      "email": "a.strupp@fz-juelich.de",
+      "familyName": "Strupp",
+      "givenName": "Annika",
+      "affiliation": {
+        "@type": "Organization",
+        "@id": "https://ror.org/02nv7yv05",
+        "name": "Forschungszentrum Jülich GmbH"
+      }
+    },
+    {
+      "@id": "https://orcid.org/0000-0003-0000-4784",
+      "@type": "Person",
+      "email": "p.videgain.barranco@fz-juelich.de",
+      "familyName": "Videgain Barranco",
+      "givenName": "Pedro",
+      "affiliation": {
+        "@type": "Organization",
+        "@id": "https://ror.org/02nv7yv05",
+        "name": "Forschungszentrum Jülich GmbH"
+      }
+    },
+    {
+      "@id": "https://orcid.org/0000-0002-2818-5890",
+      "@type": "Person",
+      "email": "s.fathalla@fz-juelich.de",
+      "familyName": "Fathalla",
+      "givenName": "Said",
+      "affiliation": {
+        "@id": "https://ror.org/02nv7yv05",
+        "name": "Forschungszentrum Jülich GmbH"
+      }
+    },
+    {
+      "@id": "https://orcid.org/0000-0002-3968-2446",
+      "@type": "Person",
+      "email": "gabriel.preuss@helmholtz-berlin.de",
+      "familyName": "Preuß",
+      "givenName": "Gabriel",
+      "affiliation": {
+        "@id": "https://ror.org/02aj13c28",
+        "name": "Helmholtz-Zentrum Berlin für Materialien und Energie"
+      }
+    }
+  ],
+  "dateCreated": "2021-07-09",
+  "dateModified": "2022-12-19",
+  "datePublished": "2023-03-01",
+  "developmentStatus": "https://www.repostatus.org/#wip",
+  "identifier": "data_harvesting",
+  "maintainer": {
+    "@id": "https://orcid.org/0000-0001-7939-226X",
+    "@type": "Person",
+    "email": "j.broeder@fz-juelich.de",
+    "familyName": "Bröder",
+    "givenName": "Jens",
+    "affiliation": {
+      "@type": "Organization",
+      "@id": "https://ror.org/02nv7yv05",
+      "name": "Forschungszentrum Jülich GmbH"
+    }
+  },
+  "programmingLanguage": ["Python", "Shell"],
+  "readme": "https://codebase.helmholtz.cloud/hmc/hmc-public/unhide/data_harvesting/-/blob/main/README.md",
+  "softwareHelp": "https://codebase.helmholtz.cloud/hmc/hmc-public/unhide/data_harvesting",
+  "license": "http://spdx.org/licenses/MIT",
+  "name": "data-harvesting",
+  "runtimePlatform": [
+    "Python 3",
+    "Python 3.7",
+    "Python 3.8",
+    "Python 3.9",
+    "Python 3.10",
+    "Python 3.11"
+  ],
+  "keywords": [
+    "unhide",
+    "Helmholtz association",
+    "data mining",
+    "HMC",
+    "metadata",
+    "data publications",
+    "software publication",
+    "RSE",
+    "FAIR",
+    "linked data",
+    "knowledge graph",
+    "json-ld",
+    "schema.org",
+    "restruct"
+  ],
+  "softwareRequirements": [
+    {
+      "@type": "SoftwareApplication",
+      "identifier": "advertools",
+      "name": "advertools",
+      "runtimePlatform": "Python 3"
+    },
+    {
+      "@type": "SoftwareApplication",
+      "identifier": "beautifulsoup4",
+      "name": "beautifulsoup4",
+      "runtimePlatform": "Python 3"
+    },
+    {
+      "@type": "SoftwareApplication",
+      "identifier": "pandas",
+      "name": "pandas",
+      "runtimePlatform": "Python 3"
+    },
+    {
+      "@type": "SoftwareApplication",
+      "identifier": "requests",
+      "name": "requests",
+      "runtimePlatform": "Python 3"
+    },
+    {
+      "@type": "SoftwareApplication",
+      "identifier": "typer",
+      "name": "typer",
+      "runtimePlatform": "Python 3"
+    },
+    {
+      "@type": "SoftwareApplication",
+      "identifier": "rich",
+      "name": "rich",
+      "runtimePlatform": "Python 3"
+    },
+    {
+      "@type": "SoftwareApplication",
+      "identifier": "progressbar2",
+      "name": "progressbar2",
+      "runtimePlatform": "Python 3"
+    },
+    {
+      "@type": "SoftwareApplication",
+      "identifier": "rdflib",
+      "name": "rdflib",
+      "runtimePlatform": "Python 3"
+    },
+    {
+      "@type": "SoftwareApplication",
+      "identifier": "codemetapy",
+      "name": "codemetapy",
+      "runtimePlatform": "Python 3"
+    },
+    {
+      "@type": "SoftwareApplication",
+      "identifier": "pyld",
+      "name": "pyld",
+      "runtimePlatform": "Python 3"
+    },
+    {
+      "@type": "SoftwareApplication",
+      "identifier": "extruct",
+      "name": "extruct",
+      "runtimePlatform": "Python 3"
+    },
+    {
+      "@type": "SoftwareApplication",
+      "identifier": "pyld",
+      "name": "pyld",
+      "runtimePlatform": "Python 3"
+    },
+    {
+      "@type": "SoftwareApplication",
+      "identifier": "jq",
+      "name": "jq",
+      "runtimePlatform": "Python 3"
+    },
+    {
+      "@type": "SoftwareApplication",
+      "identifier": "jsonschema",
+      "name": "jsonschema",
+      "runtimePlatform": "Python 3"
+    },
+    {
+      "@type": "SoftwareApplication",
+      "identifier": "xmljson",
+      "name": "xmljson",
+      "runtimePlatform": "Python 3"
+    },
+    {
+      "@type": "SoftwareApplication",
+      "identifier": "codemeta-harvester",
+      "name": "codemeta-harvester",
+      "runtimePlatform": "Shell"
+    }
+  ],
+  "targetProduct": {
+    "@type": "CommandLineApplication",
+    "executableName": "hmc_unhide",
+    "name": "hmc_unhide",
+    "runtimePlatform": ["Shell", "Python 3"]
+  },
+  "applicationCategory": "Library, Data science",
+  "downloadUrl": "https://codebase.helmholtz.cloud/hmc/hmc-public/unhide/data_harvesting/-/archive/main/data_harvesting-main.zip",
+  "fileSize": "57MB",
+  "operatingSystem": ["OSX", "Linux"],
+  "releaseNotes": "https://codebase.helmholtz.cloud/hmc/hmc-public/unhide/data_harvesting/-/blob/main/CHANGELOG.md",
+  "url": "https://codebase.helmholtz.cloud/hmc/hmc-public/unhide/data_harvesting",
+  "description": "Tools for mining, processing and visualizing metadata of data publications in the context of the Helmholtz metadata collaboration (HMC).",
+  "copyrightHolder": [
+    {
+      "@id": "Helmholtz Metadata Collaboration (HMC)",
+      "@type": "Organization",
+      "name": "Helmholtz Metadata Collaboration (HMC)"
+    },
+    {
+      "@type": "Organization",
+      "name": "Forschungszentrum Jülich GmbH (Materials Data Science and Informatics (IAS-9), Institute for Advanced Simulation (IAS)), Jülich, Germany"
+    }
+  ],
+  "copyrightYear": "2022",
+  "softwareVersion": "1.0.0",
+  "isAccessibleForFree": "True",
+  "contIntegration": "https://codebase.helmholtz.cloud/hmc/hmc-public/unhide/data_harvesting/-/pipelines",
+  "buildInstructions": "https://codebase.helmholtz.cloud/hmc/hmc-public/unhide/data_harvesting/-/blob/main/pyproject.toml",
+  "issueTracker": "https://codebase.helmholtz.cloud/hmc/hmc-public/unhide/data_harvesting/-/issues"
+}
+```
diff --git a/docs/about/introduction.md b/docs/about/introduction.md
new file mode 100644
index 00000000..89aac045
--- /dev/null
+++ b/docs/about/introduction.md
@@ -0,0 +1,22 @@
+---
+displayed_sidebar: aboutSidebar
+sidebar_position: 2
+---
+
+# Introduction
+
+Research across the Helmholtz Association (HGF) depends and thrives on a complex network of inter- and multidisciplinary collaborations which spans across its 18 Centres and beyond.
+
+However, the (meta)data generated through the HGF's research and operations is typically siloed within institutional infrastructure and often within individual teams. The result is that the wealth of the HGF's (meta)data is stored and maintained in a scattered manner, and cannot be used to its full value to scientists, managers, strategists, and policy makers.
+
+To address this challenge, the Helmholtz Metadata Collaboration (HMC) is launching the **unified Helmholtz Information and Data Exchange (unHIDE)**. This initiative seeks to create a lightweight and sustainable interoperability layer to interlink data infrastructures and provide greater, cross-organisational access to the HGF's (meta)data and information assets. Using proven and globally adopted knowledge graph technology (Box 1), unHIDE will develop a comprehensive association-wide Knowledge Graph (KG) the "Helmholtz-KG": a solution to connect (meta)data, information, and knowledge.
+
+> What is a Knowledge Graph?
+>
+> - A "graph", from graph theory, is a structure that models pairwise connections between objects using "nodes" connected by "edges".
+> - A "knowledge graph" uses such a graph structure to capture knowledge about how a collection of things (represented as nodes) relate to one another (via edges). This helps organisations keep track of their collective knowledge, especially in complex and rapidly changing scenarios.
+> - Social networks are perhaps the best known graphs, that store knowledge about who knows whom and how, what their interests are, what groups they belong to, and what content they create and interact with.
+
+![unhide_overview](../../static/img/unhide_overview.png)
+
+
diff --git a/docs/about/mission.md b/docs/about/mission.md
new file mode 100644
index 00000000..4b72ac58
--- /dev/null
+++ b/docs/about/mission.md
@@ -0,0 +1,24 @@
+---
+displayed_sidebar: aboutSidebar
+sidebar_position: 3
+---
+
+# Mission
+
+The efforts of the unHIDE initiative are one part of the efforts by the Helmholtz metadata collaboration (HMC) to improve the quality, knowledge management and conservation of research output of the Helmholtz association with respect and through metadata. This is accomplished by making research output `FAIR` through better metadata or differently formulated creating to a certain extend in a certain form of a semantic web encompassing Helmholtz research.
+
+With the unHIDE initiative our goal is to improve the metadata at the source and make data providers as well as scientists more aware of what metadata they put out on the web, how and with what quality.
+For this we create and expose the Helmholtz knowledge graph, which contains open high-level metadata exposed by different Helmholtz infrastructures. Also such a graph allows for services which serve needs of certain stakeholder groups to empower their work in different ways.
+
+Beyond the knowledge graph in unHIDE we communicate and work together with Helmholtz infrastructures to improve metadata, (or make it available in the first place), through consulting, help and fostering networking between the infrastructures and respected experts.
+
+With the implementation of the Helmholtz-KG, unHIDE will create substantial additional value for the Helmholtz digital ecosystem and its interconnectivity:
+
+**With the development of the Helmholtz-KG, unHide will:**
+
+- increase discoverability and actionability of HGF data across the whole Association\*
+- motivate enhancement of (meta)data quality [1] and interoperability
+- provide overviews and diagnostics of the HGF data-space and digital assets
+- allow for traceable and reproducible recovery of (meta)data to enhance research
+- support connectivity of HGF data to interact with global infrastructures and projects
+- act as a central access and distribution point for stakeholders within and beyond the HGF
diff --git a/docs/community/index.md b/docs/community/index.md
new file mode 100644
index 00000000..d5f8fdb1
--- /dev/null
+++ b/docs/community/index.md
@@ -0,0 +1,7 @@
+---
+sidebar_position: 3
+---
+
+# Community
+
+Let's discover **UnHIDE Community in less than 5 minutes**.
diff --git a/docs/guides/SPARQL/intro.md b/docs/guides/SPARQL/intro.md
new file mode 100644
index 00000000..26716aa2
--- /dev/null
+++ b/docs/guides/SPARQL/intro.md
@@ -0,0 +1,6 @@
+---
+displayed_sidebar: guidesSidebar
+sidebar_position: 1
+---
+
+### SPARQL Guide
diff --git a/docs/guides/Web API/intro.md b/docs/guides/Web API/intro.md
new file mode 100644
index 00000000..eaf6b0e5
--- /dev/null
+++ b/docs/guides/Web API/intro.md	
@@ -0,0 +1,6 @@
+---
+displayed_sidebar: guidesSidebar
+sidebar_position: 3
+---
+
+### Web API GUIDE
diff --git a/docs/guides/Web UI/intro.md b/docs/guides/Web UI/intro.md
new file mode 100644
index 00000000..0693ddcd
--- /dev/null
+++ b/docs/guides/Web UI/intro.md	
@@ -0,0 +1,6 @@
+---
+displayed_sidebar: guidesSidebar
+sidebar_position: 1
+---
+
+## WEB UI guide
diff --git a/docs/guides/index.md b/docs/guides/index.md
new file mode 100644
index 00000000..96f1c0a9
--- /dev/null
+++ b/docs/guides/index.md
@@ -0,0 +1,8 @@
+---
+displayed_sidebar: guidesSidebar
+sidebar_position: 1
+---
+
+# Guides
+
+Let's discover **UnHIDE Guides in less than 5 minutes**.
diff --git a/docs/unhide-api/intro.md b/docs/unhide-api/intro.md
deleted file mode 100644
index 0c1fa36c..00000000
--- a/docs/unhide-api/intro.md
+++ /dev/null
@@ -1,47 +0,0 @@
----
-sidebar_position: 1
----
-
-# API Intro
-
-Let's discover **UnHIDE APIs in less than 5 minutes**.
-
-## Getting Started
-
-Get started by **creating a new site**.
-
-Or **try Docusaurus immediately** with **[docusaurus.new](https://docusaurus.new)**.
-
-### What you'll need
-
-- [Node.js](https://nodejs.org/en/download/) version 18.0 or above:
-  - When installing Node.js, you are recommended to check all checkboxes related to dependencies.
-
-## Generate a new site
-
-Generate a new Docusaurus site using the **classic template**.
-
-The classic template will automatically be added to your project after you run the command:
-
-```bash
-npm init docusaurus@latest my-website classic
-```
-
-You can type this command into Command Prompt, Powershell, Terminal, or any other integrated terminal of your code editor.
-
-The command also installs all necessary dependencies you need to run Docusaurus.
-
-## Start your site
-
-Run the development server:
-
-```bash
-cd my-website
-npm run start
-```
-
-The `cd` command changes the directory you're working with. In order to work with your newly created Docusaurus site, you'll need to navigate the terminal there.
-
-The `npm run start` command builds your website locally and serves it through a development server, ready for you to view at http://localhost:3000/.
-
-Open `docs/intro.md` (this page) and edit some lines: the site **reloads automatically** and displays your changes.
diff --git a/docs/unhide-ui/intro.md b/docs/unhide-ui/intro.md
deleted file mode 100644
index 1138a485..00000000
--- a/docs/unhide-ui/intro.md
+++ /dev/null
@@ -1,47 +0,0 @@
----
-sidebar_position: 1
----
-
-# UI Intro
-
-Let's discover **UnHIDE UI in less than 5 minutes**.
-
-## Getting Started
-
-Get started by **creating a new site**.
-
-Or **try Docusaurus immediately** with **[docusaurus.new](https://docusaurus.new)**.
-
-### What you'll need
-
-- [Node.js](https://nodejs.org/en/download/) version 18.0 or above:
-  - When installing Node.js, you are recommended to check all checkboxes related to dependencies.
-
-## Generate a new site
-
-Generate a new Docusaurus site using the **classic template**.
-
-The classic template will automatically be added to your project after you run the command:
-
-```bash
-npm init docusaurus@latest my-website classic
-```
-
-You can type this command into Command Prompt, Powershell, Terminal, or any other integrated terminal of your code editor.
-
-The command also installs all necessary dependencies you need to run Docusaurus.
-
-## Start your site
-
-Run the development server:
-
-```bash
-cd my-website
-npm run start
-```
-
-The `cd` command changes the directory you're working with. In order to work with your newly created Docusaurus site, you'll need to navigate the terminal there.
-
-The `npm run start` command builds your website locally and serves it through a development server, ready for you to view at http://localhost:3000/.
-
-Open `docs/intro.md` (this page) and edit some lines: the site **reloads automatically** and displays your changes.
diff --git a/docusaurus.config.ts b/docusaurus.config.ts
index 4768dd7f..2196233e 100644
--- a/docusaurus.config.ts
+++ b/docusaurus.config.ts
@@ -36,13 +36,6 @@ const config: Config = {
         docs: {
           sidebarPath: "./sidebars.ts",
         },
-        //blog: {
-        //showReadingTime: true,
-        // Please change this to your repo.
-        // Remove this to remove the "edit this page" links.
-        //editUrl:
-        //  "https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/",
-        //},
         theme: {
           customCss: "./src/css/custom.css",
         },
@@ -60,9 +53,9 @@ const config: Config = {
         src: "img/unhide_logo.png",
       },
       items: [
-        { to: "/about", label: "About", position: "left" },
-        { to: "/guides", label: "Guides", position: "left" },
-        { to: "/community", label: "Community", position: "left" },
+        { to: "/docs/about/introduction", label: "About", position: "left" },
+        { to: "/docs/guides", label: "Guides", position: "left" },
+        { to: "/docs/community", label: "Community", position: "left" },
         {
           href: "https://codebase.helmholtz.cloud/hmc/hmc-public/unhide/documentation/-/tree/main?ref_type=heads",
           label: "GitLab",
@@ -80,14 +73,6 @@ const config: Config = {
               label: "Tutorial",
               to: "/docs/docusaurus-tutorials/intro",
             },
-            {
-              label: "Unhide UI",
-              to: "docs/unhide-ui/intro",
-            },
-            {
-              label: "Unhide API",
-              to: "docs/unhide-api/intro",
-            },
           ],
         },
         {
diff --git a/index.md b/index.md
new file mode 100644
index 00000000..cae1ee36
--- /dev/null
+++ b/index.md
@@ -0,0 +1,8 @@
+---
+displayed_sidebar: aboutSidebar
+sidebar_position: 1
+---
+
+# About
+
+In this module we cover the origin story of the project. We will also take a look at the data model that we use to store the metadata records sourced for the Helmholtz Knowledge Graph.
diff --git a/sidebars.ts b/sidebars.ts
index acc7685a..d558795b 100644
--- a/sidebars.ts
+++ b/sidebars.ts
@@ -1,4 +1,4 @@
-import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
+import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
 
 /**
  * Creating a sidebar enables you to:
@@ -12,20 +12,10 @@ import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
  */
 const sidebars: SidebarsConfig = {
   // By default, Docusaurus generates a sidebar from the docs folder structure
-  tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
-
-  // But you can create a sidebar manually
-  /*
-  tutorialSidebar: [
-    'intro',
-    'hello',
-    {
-      type: 'category',
-      label: 'Tutorial',
-      items: ['tutorial-basics/create-a-document'],
-    },
-  ],
-   */
+  tutorialSidebar: [{ type: "autogenerated", dirName: "docusaurus-tutorials" }],
+  aboutSidebar: [{ type: "autogenerated", dirName: "about" }],
+  guidesSidebar: [{ type: "autogenerated", dirName: "guides" }],
+  communitySidebar: [{ type: "autogenerated", dirName: "community" }],
 };
 
 export default sidebars;
diff --git a/src/components/CommunitypageFeatures/index.tsx b/src/components/CommunitypageFeatures/index.tsx
deleted file mode 100644
index 57727279..00000000
--- a/src/components/CommunitypageFeatures/index.tsx
+++ /dev/null
@@ -1,13 +0,0 @@
-import clsx from "clsx";
-import React from "react";
-import styles from ".styles.module.css";
-
-export default function AboutpageFeatures(): JSX.Element {
-  return (
-    <section className={styles.features}>
-      <div className="container">
-        <div className="row">This is an about feature</div>
-      </div>
-    </section>
-  );
-}
diff --git a/src/components/CommunitypageFeatures/styles.module.css b/src/components/CommunitypageFeatures/styles.module.css
deleted file mode 100644
index b248eb2e..00000000
--- a/src/components/CommunitypageFeatures/styles.module.css
+++ /dev/null
@@ -1,11 +0,0 @@
-.features {
-  display: flex;
-  align-items: center;
-  padding: 2rem 0;
-  width: 100%;
-}
-
-.featureSvg {
-  height: 200px;
-  width: 200px;
-}
diff --git a/src/components/GuidespageFeatures/index.tsx b/src/components/GuidespageFeatures/index.tsx
deleted file mode 100644
index 57727279..00000000
--- a/src/components/GuidespageFeatures/index.tsx
+++ /dev/null
@@ -1,13 +0,0 @@
-import clsx from "clsx";
-import React from "react";
-import styles from ".styles.module.css";
-
-export default function AboutpageFeatures(): JSX.Element {
-  return (
-    <section className={styles.features}>
-      <div className="container">
-        <div className="row">This is an about feature</div>
-      </div>
-    </section>
-  );
-}
diff --git a/src/components/GuidespageFeatures/styles.module.css b/src/components/GuidespageFeatures/styles.module.css
deleted file mode 100644
index b248eb2e..00000000
--- a/src/components/GuidespageFeatures/styles.module.css
+++ /dev/null
@@ -1,11 +0,0 @@
-.features {
-  display: flex;
-  align-items: center;
-  padding: 2rem 0;
-  width: 100%;
-}
-
-.featureSvg {
-  height: 200px;
-  width: 200px;
-}
diff --git a/src/pages/about/index.module.css b/src/pages/about/index.module.css
deleted file mode 100644
index e69de29b..00000000
diff --git a/src/pages/about/index.tsx b/src/pages/about/index.tsx
deleted file mode 100644
index be115dac..00000000
--- a/src/pages/about/index.tsx
+++ /dev/null
@@ -1,14 +0,0 @@
-import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
-import Layout from "@theme/Layout";
-
-export default function About(): JSX.Element {
-  const { siteConfig } = useDocusaurusContext();
-  return (
-    <Layout
-      title={`UnHIDE Docs`}
-      description="Description will go into a meta tag in <head />"
-    >
-      This is the About page
-    </Layout>
-  );
-}
diff --git a/src/pages/community/index.module.css b/src/pages/community/index.module.css
deleted file mode 100644
index e69de29b..00000000
diff --git a/src/pages/community/index.tsx b/src/pages/community/index.tsx
deleted file mode 100644
index c2294672..00000000
--- a/src/pages/community/index.tsx
+++ /dev/null
@@ -1,14 +0,0 @@
-import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
-import Layout from "@theme/Layout";
-
-export default function Community(): JSX.Element {
-  const { siteConfig } = useDocusaurusContext();
-  return (
-    <Layout
-      title={`UnHIDE Docs`}
-      description="Description will go into a meta tag in <head />"
-    >
-      This is the Community page
-    </Layout>
-  );
-}
diff --git a/src/pages/guides/index.module.css b/src/pages/guides/index.module.css
deleted file mode 100644
index e69de29b..00000000
diff --git a/src/pages/guides/index.tsx b/src/pages/guides/index.tsx
deleted file mode 100644
index fc006ff5..00000000
--- a/src/pages/guides/index.tsx
+++ /dev/null
@@ -1,14 +0,0 @@
-import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
-import Layout from "@theme/Layout";
-
-export default function Guides(): JSX.Element {
-  const { siteConfig } = useDocusaurusContext();
-  return (
-    <Layout
-      title={`UnHIDE Docs`}
-      description="Description will go into a meta tag in <head />"
-    >
-      This is the Guides page
-    </Layout>
-  );
-}
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index d5919efd..3d549b52 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -19,7 +19,7 @@ function HomepageHeader() {
         <div className={styles.buttons}>
           <Link
             className="button button--secondary button--lg"
-            to="/docs/intro"
+            to="/docs/about/introduction"
           >
             Get Started
           </Link>
diff --git a/static/_graphs/datasetTemplate.json b/static/_graphs/datasetTemplate.json
new file mode 100644
index 00000000..9eb5ddde
--- /dev/null
+++ b/static/_graphs/datasetTemplate.json
@@ -0,0 +1,98 @@
+{
+    "@context": {
+        "@vocab": "https://schema.org/"
+    },
+    "@type": "Dataset",
+    "@id": "https://registry.org/permanentUrlToThisJsonDoc",
+    "name": "A concise but descriptive name of the dataset",
+    "description": "An extended, free-text description of what's in the dataset, who created it, and other attributes",
+    "url": "https://urlToTheDatasetOrLandingPage.org/",
+    "sameAs": [
+        "http://alternativeUrlToTheDatasetOrLandingPage.org"
+    ],
+    "license": "This work is licensed under a  Creative Commons Attribution (CC-BY) 4.0 License",
+    "citation": [
+        "Citation to other work relevant to this dataset",
+        "Citation to other work relevant to this dataset",
+        "Citation to other work relevant to this dataset"
+    ],
+    "version": "2021-04-24T06:34:56.000Z",
+    "keywords": [
+        "Keyword 1",
+        "Keyword 2",
+        "Keyword 3"
+    ],
+    "measurementTechnique": "The URL to or text about the methods, technique or technology used to generate this Dataset",
+    "variableMeasured": [
+        {
+            "@type": "PropertyValue",
+            "name": "Name of a variable in the dataset",
+            "description": "Extended description of this variable"
+        },
+        {
+            "@type": "PropertyValue",
+            "name": "Name of a variable in the dataset",
+            "url": "http://ontology.org/uriToSemanticDescriptorOfThisVariable",
+            "description": "Extended description of this variable?"
+        },
+        {
+            "@type": "PropertyValue",
+            "name": "SamplingDeviceApertureSurfaceArea",
+            "url": "http://ontology.org/uriToSemanticDescriptorOfThisVariable",
+            "description": "Extended description of this variable"
+        }
+    ],
+    "includedInDataCatalog": {
+        "@id": "https://registryOfCatalogs.org/permanentUrlIdentifiyingCatalog",
+        "@type": "DataCatalog",
+        "url": "https://urlOfDataCatalog.org"
+    },
+    "temporalCoverage": "2007/2007",
+    "distribution": {
+        "@type": "DataDownload",
+        "contentUrl": "http://urlToDirectDownloadOfThisDataset.org/",
+        "encodingFormat": "text/csv"
+    },
+    "spatialCoverage": {
+        "@type": "Place",
+        "geo": {
+            "@type": "GeoShape",
+            "polygon": "142.014 10.161667,142.014 18.033833,147.997833 18.033833,147.997833 10.161667,142.014 10.161667"
+        },
+        "additionalProperty": {
+            "@type": "PropertyValue",
+            "propertyID": "http://dbpedia.org/resource/Spatial_reference_system",
+            "value": "http://www.w3.org/2003/01/geo/wgs84_pos#lat_long"
+        }
+    },
+    "provider": [
+        {
+            "@type": "Organization",
+            "legalName": "Legal Name of Organisation which generated the dataset",
+            "name": "Other Name of Organisation which generated the dataset",
+            "url": "https://organisationWebsite.org/"
+        }
+    ],
+    "subjectOf": {
+        "@type": "Event",
+        "description": "Describe the event which is the subject of this dataset. For example, a cruise ID.",
+        "name": "Concise and descriptive name of the Event",
+        "potentialAction": {
+            "@type": "Action",
+            "name": "Concise but descriptive name of action that was part of an Event. For example, the name of a CTD cast",
+            "agent": [
+                "Name or permanent ID of person or thing that performed this action",
+                "Name or permanent ID of person or thing that performed this action",
+                "Name or permanent ID of person or thing that performed this action"
+            ],
+            "startTime": "2007-03-11T14:45UTC",
+            "endTime": "2007-03-11T15:42UTC",
+            "instrument": {
+                "@type": "Thing",
+                "name": "The name of the instrument used in the action. For example, the specific model of a CTD, a glider, a moored sensor",
+                "url": "http://ontology.org/uriToSemanticDescriptorOfThisInstrument",
+                "description": "Extended description of the sampling instrument"
+            }
+        }
+    }
+}
diff --git a/static/_graphs/documentTemplate.json b/static/_graphs/documentTemplate.json
new file mode 100644
index 00000000..4e0e2ef7
--- /dev/null
+++ b/static/_graphs/documentTemplate.json
@@ -0,0 +1,518 @@
+{
+    "@context": {
+        "@vocab": "https://schema.org/"
+    },
+    "@id": "URL: Optional. A URL that resolves to *this* JSON-LD document, NOT the URL of the WebAPI that this JSON-LD document describes. To link to the WebAPI itself, please use 'url' and/or 'identifier')",
+    "@type": "CreativeWork",
+
+    "about": "Text or controlled vocabulary/ontology, singly or as an array: The subject matter of this CreativeWork",
+    "abstract": "Text: A descriptive summary of a CreativeWork",
+    "accessMode": [
+        "auditory",
+        "chartOnVisual",
+        "chemOnVisual",
+        "colorDependent",
+        "diagramOnVisual",
+        "mathOnVisual",
+        "musicOnVisual",
+        "tactile",
+        "textOnVisual",
+        "textual",
+        "visual"
+    ],
+    "accessModeSufficient": [
+        "auditory",
+        "chartOnVisual",
+        "chemOnVisual",
+        "colorDependent",
+        "diagramOnVisual",
+        "mathOnVisual",
+        "musicOnVisual",
+        "tactile",
+        "textOnVisual",
+        "textual",
+        "visual"
+    ],
+    "accessibilityHazard": [
+        "flashing",
+        "noFlashingHazard",
+        "motionSimulation",
+        "noMotionSimulationHazard",
+        "sound",
+        "noSoundHazard",
+        "unknown",
+        "none"
+    ],
+    "accessibilitySummary": "Text: A textual summary of how this CreativeWork can be accessed, if there are any hazards associated with access, and related facts",
+    "accountablePerson": {
+        "@type": "Person",
+        "name": "Dr Uta Passow",
+        "givenName": "Uta",
+        "familyName": "Passow",
+        "url": "https://www.sample-data-repository.org/person/51317"
+    },
+    "acquireLicensePage": "https://urlToLicenseAcquisitionPage.org/",
+    "aggregateRating": {
+        "@type": "AggregateRating",
+        "reviewAspect": "Text describing what part of the CreativeWork is subject to the ratings here",
+        "ratingValue": "4",
+        "ratingExplanation": "Text explaining the ratingValue",
+        "reviewCount": "250",
+        "bestRating": "5",
+        "worstRating": "1"
+    },
+    "alternativeHeadline": "Text: A secondary title of the CreativeWork.",
+    "archivedAt": "https://urlToResourceCreativeWorkIsArchivedAt.org/",
+    "assesses": "Text to describe what (if anything) the CreativeWork described by this template assesses.",
+    "associatedMedia": {
+        "@type": "MediaObject",
+        "name": "Name of the media object encoding this CreativeWork",
+        "description": "A schema.org MediaObject, such as an image, video, or audio object embedded in a web page or a downloadable dataset, i.e. DataDownload. See [TODO: Add MediaObject support profile]"
+    },
+    "audience": "Text: Text describing the audience the CreativeWork is intended for.",
+    "audio": {
+        "@type": "AudioObject",
+        "name": "Title Of The AudioFile",
+        "description": "Description of the audio object",
+        "contentUrl": "http://myAudioWebsite.org/TitleOfTheAudioFile.mp4",
+        "encoding": "audio/mp4"
+    },
+    "author": {
+        "@type": "Person",
+        "name": "Dr Uta Passow",
+        "givenName": "Uta",
+        "familyName": "Passow",
+        "url": "https://www.sample-data-repository.org/person/51317"
+    },
+    "award": "Text to describe an award won for this CreativeWork",
+    "character": {
+        "@type": "Person",
+        "name": "Odysseus",
+        "description": "A description of any ficitonal character mentioned in this creative work",
+        "givenName": "Odysseus",
+        "familyName": "",
+        "url": "https://en.wikipedia.org/wiki/Odysseus"
+    },
+    "citation": [
+        "Citation to other work relevant to this software",
+        "Citation to other work relevant to this software",
+        "Citation to other work relevant to this software"
+    ],
+    "comment": "Text comment on the CreativeWork",
+    "commentCount": 1,
+    "conditionsOfAccess": "Text to describe conditions that affect the availability of, or method(s) of access to, an item.",
+    "contentLocation": {
+        "@type": "AdministrativeArea",
+        "name": "Lunenburg",
+        "description": "The location depicted or described in the CreativeWork"
+    },
+    "contentRating": "Text stating the official rating for this CreativeWork",
+    "contentReferenceTime": "DateTime: 2016-03-21T11:30:00-07:00",
+    "contributor": {
+        "@type": "Organization",
+        "@id": "http://www.foo.org/orgID",
+        "legalName": "Some Institute"
+    },
+    "copyrightHolder": {
+        "@type": "Person",
+        "@id": "http://lod.example-data-repository.org/id/person/5112",
+        "name": "Dr Sarah Smith",
+        "url": "https://www.example-data-repository.org/person/5112"
+    },
+    "copyrightNotice": "Text of a notice appropriate for describing the copyright aspects of this Creative Work",
+    "copyrightYear": "Number: 1999",
+    "correction": "Text or CorrectionComment or URL property to indicate a correction to the CreativeWork",
+    "countryOfOrigin": {
+        "@type": "Country",
+        "name": "Fiji"
+    },
+    "creativeWorkStatus": "Text or DefinedTerm property to describe the status of this CreativeWork in terms of its stage in a lifecycle",
+    "creator": [
+        {
+            "@type": "Person",
+            "@id": "http://lod.example-data-repository.org/id/person/51159",
+            "name": "Dr Langdon Quetin",
+            "url": "https://www.example-data-repository.org/person/51159"
+        },
+        {
+            "@type": "Person",
+            "@id": "http://lod.example-data-repository.org/id/person/51160",
+            "name": "Dr Robin Ross",
+            "url": "https://www.example-data-repository.org/person/51160"
+        }
+    ],
+    "creditText": "Text used to credit person(s) and/or organization(s) associated with this CreativeWork",
+    "dateCreated": "2019-03-21",
+    "dateModified": "2019-03-21",
+    "datePublished": "2019-03-21",
+    "discussionUrl": "http://LinkToPage/with/comments/about/this/work",
+    "editEIDR": "Text or URL to state the EIDR (Entertainment Identifier Registry) identifier representing a specific edit / edition for a work of film or television.",
+    "editor": {
+        "@type": "Person",
+        "name": "Person name"
+    },
+    "educationalAlignment": {
+        "@type": "AlignmentObject",
+        "alignmentType": "educationalSubject",
+        "educationalFramework": "Text: The framework to which the resource being described is aligned",
+        "targetName": "Text: name of a node in an established educational framework",
+        "targetUrl": "http://example.org/CFE/subjects/3362"
+    },
+    "educationalLevel": "The level in terms of progression through an educational or training context. Examples of educational levels include 'beginner', 'intermediate' or 'advanced', and formal sets of level indicators.",
+    "educationalUse": "Text or DefinedTerm property to describe the purpose of this CreativeWork in the context of education",
+    "encoding": {
+        "@type": "MediaObject",
+        "description": "A media object that encodes this CreativeWork.  Such as video, etc."
+    },
+    "encodingFormat": "application/zip ",
+    "exampleOfWork": {
+        "@type": "CreativeWork",
+        "description": "A creative work that this work is an example/instance/realization/derivation of"
+    },
+    "expires": "2019-03-21",
+    "funder": {
+        "@type": "Person",
+        "name": "Person name"
+    },
+    "funding": {
+        "@type": "Grant",
+        "name": "Name of grant that supports this creativework"
+    },
+    "genre": "Genre of the creative work, broadcast channel or group.",
+    "hasPart": {
+        "@type": "CreativeWork",
+        "description": "Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense).Inverse property: isPartOf"
+    },
+    "headline": "Headline of the article",
+    "inLanguage": {
+        "@type": "Language",
+        "name": "Spanish",
+        "alternateName": "es"
+    },
+    "interactionStatistic": {
+        "@type": "InteractionCounter",
+        "interactionType": "https://schema.org/ListenAction",
+        "userInteractionCount": "14300"
+    },
+    "interactivityType": "Text to describe the predominant mode of learning supported by the learning resource",
+    "interpretedAsClaim": {
+        "@type": "Claim",
+        "appearance": {
+            "@type": "CreativeWork",
+            "name": "Julius Caesar"
+        },
+        "claimInterpreter": {
+            "@type": "Person",
+            "@id": "http://lod.example-data-repository.org/id/person/514",
+            "name": "Susan White",
+            "url": "https://www.example-data-repository.org/person/514"
+        }
+    },
+    "isAccessibleForFree": "True",
+    "isBasedOn": {
+        "@type": "CreativeWork",
+        "description": "A resource from which this work is derived or from which it is a modification or adaption"
+    },
+    "isFamilyFriendly": "True",
+    "isPartOf": {
+        "@type": "CreativeWork",
+        "description": "Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of.Inverse property: hasPart"
+    },
+    "keywords": {
+        "@type": "DefinedTerm",
+        "inDefinedTermSet": {
+            "@type": "DefinedTermSet",
+            "name": "Name of the set",
+            "description": "Description of the set",
+            "url": "url for the set"
+        },
+        "termCode": "A code that identifies this DefinedTerm within a DefinedTermSet"
+    },
+    "learningResourceType": "Text or DefinedTerm property to describe predominant type or kind characterizing the learning resource.",
+    "license": "http://spdx.org/licenses/CC0-1.0",
+    "locationCreated": {
+        "@type": "Place",
+        "geo": {
+            "@type": "GeoCoordinates",
+            "latitude": 39.3280,
+            "longitude": 120.1633
+        }
+    },
+    "mainEntity": "Thing",
+    "maintainer": {
+        "@type": "Person",
+        "name": "Person name"
+    },
+    "material": "Text or Product or URL property to describe the material that the CreativeWork is made from",
+    "materialExtent": "Text or QuantitativeValue to state the quantity of the materials being described or an expression of the physical space they occupy",
+    "mentions": "Thing Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept",
+    "offers": [
+        {
+            "@type": "Offer",
+            "name": "name of offer"
+        },
+        {
+            "@type": "Demand",
+            "name": "name of demand"
+        }
+    ],
+    "pattern": "Text or DefinedTerm property to state the pattern that the CreativeWork has, for example 'polka dot', 'striped', 'Canadian flag'",
+    "position": "Text or Integer to describe the position of the CreativeWork in a series or sequence of items",
+    "producer": {
+        "@type": "Person",
+        "name": "George Martin"
+    },
+    "provider": {
+        "@type": "Organization",
+        "legalName": "Sample Data Repository Office",
+        "name": "SDRO",
+        "sameAs": "http://www.re3data.org/repository/r3dxxxxxxxxx",
+        "url": "https://www.sample-data-repositoryB.org"
+    },
+    "publication": {
+        "@type": "PublicationEvent",
+        "startDate": "1968-11-25",
+        "location": {
+            "@type": "Country",
+            "name": "Ghana"
+        }
+    },
+    "publisher": {
+        "url": "https://www.publishingrus.org",
+        "@type": "Organization",
+        "legalName": "Some Institute"
+    },
+    "publisherImprint": {
+        "@id": "https://www.publishingdiv.org",
+        "@type": "Organization",
+        "legalName": "Some publishing division"
+    },
+    "publishingPrinciples": "https://url.to.document.describing.editorial.principles.of.organization.com",
+    "recordedAt": {
+        "@type": "Event",
+        "location": "Some place",
+        "startDate": "Some start date",
+        "url": "https://url.to.event.com"
+    },
+    "releasedEvent": {
+        "@type": "PublicationEvent",
+        "startDate": "Some date",
+        "location": {
+            "@type": "Country",
+            "name": "Some country"
+        }
+    },
+    "review": {
+        "@type": "Review",
+        "author": "A Reviewer",
+        "datePublished": "Some date",
+        "reviewBody": "Text describing the review of the CreativeWork",
+        "name": "text for name of review",
+        "reviewRating": {
+            "@type": "Rating",
+            "bestRating": "some integer",
+            "ratingValue": "some integer",
+            "worstRating": "some integer"
+        }
+    },
+    "schemaVersion": [
+        "https://schema.org/docs/releases.html#v10.0",
+        "http://dublincore.org/specifications/dublin-core/dces/1999-07-02",
+        "https://github.com/spdx/license-list-XML/releases/tag/v3.20"
+    ],
+    "sdDatePublished": "2022-04-12",
+    "sdLicense": "http://spdx.org/licenses/CC0-1.0",
+    "sdPublisher": [
+        {
+            "@type": "Organization",
+            "legalName": "Example Structured Data Publishing Organisation",
+            "name": "ESDPO",
+            "description": "An organisation which publishes structured data about things.",
+            "url": "https://www.exampleSDPublisher.org/"
+        },
+        {
+            "@type": "Person",
+            "name": "John Doe",
+            "description": "A person who publishes structured data about Things",
+            "url": "https://www.sample-data-repository.org/person/51332"
+        }
+    ],
+    "size": "Text indicating the phyiscal size of the CreativeWork (if appropriate). DefinedTerm or QuantitativeValue or SizeSpecification are also valid Types",
+    "sourceOrganization": {
+        "@type": "Organization",
+        "legalName": "Example Source Organisation",
+        "name": "ESO",
+        "description": "The organisation which the creator of this CreativeWork was working for.",
+        "url": "https://www.exampleSource.org/"
+    },
+    "spatial": {
+        "@type": "Place",
+        "description": "Use the 'spatial' property and the properites under 'Place' for any spatial information you'd like to add, beyond spatialCoverage."
+    },
+    "spatialCoverage": {
+        "@type": "Place",
+        "address": "54 Ocean Drive, 23521 Ocean City, CountryName",
+        "name": "Place name",
+        "description": "Use this Place type to express which spatial region your CreativeWork is about or is focused on. If you don't have precise coordinates, use this description field to describe the place with free text",
+        "geo": {
+            "@type": "GeoShape",
+            "polygon": "-158.8575 23.4375, -158.8575 21.2283, -157.4567 21.2283, -157.4567 23.4375, -158.8575 23.4375"
+        },
+        "additionalProperty": [
+            {
+                "@type": "PropertyValue",
+                "propertyID": "http://dbpedia.org/resource/Spatial_reference_system",
+                "value": "http://www.w3.org/2003/01/geo/wgs84_pos#lat_long"
+            },
+            {
+                "@type": "PropertyValue",
+                "propertyID": "GPS Accuracy / Location error",
+                "value": "18",
+                "unitCode": "http://qudt.org/vocab/unit/M"
+            }
+        ]
+    },
+    "sponsor": [
+        {
+            "@type": "Organization",
+            "legalName": "Example Sponsorship Organisation",
+            "name": "ESO",
+            "description": "An organisation which sponsors things.",
+            "url": "https://www.exampleSponsorship.org/"
+        },
+        {
+            "@type": "Person",
+            "name": "John Doe",
+            "description": "A person who sponsors many Things",
+            "url": "https://www.sample-data-repository.org/person/51332"
+        }
+    ],
+    "teaches": [
+        "ocean exploration",
+        {
+            "@type": "DefinedTerm",
+            "inDefinedTermSet": "http://vocabularies.unesco.org/thesaurus",
+            "name": "ocean exploration",
+            "termCode": "concept10630",
+            "url": "http://vocabularies.unesco.org/thesaurus/concept10630"
+        }
+    ],
+    "temporal": "A more general property for any time-related information about this CreativeWork. This can be expressed as text or using the properties associated with the DateTime Type",
+    "temporalCoverage": "2011/2012",
+    "text": "The entire textual content of this CreativeWork, if relevant",
+    "thumbnailUrl": "https://www.sample-website.org/imageAboutThisThing.jpg",
+    "timeRequired": "PT30M",
+    "translationOfWork": {
+        "@type": "CreativeWork",
+        "description": "The CreativeWork that this CreativeWork was translated from, if any",
+        "inLanguage": "ja",
+        "name": "クリエイティブな作品",
+        "url": "https://www.sample-data-repository.org/creativeWork/1124",
+        "translator": {
+            "@type": "Person",
+            "name": "Dr 山田 太郎",
+            "givenName": "太郎",
+            "familyName": "山田",
+            "url": "https://www.sample-data-repository.org/person/12435"
+        }
+    },
+    "translator": [
+        {
+            "@type": "Organization",
+            "legalName": "Translations Incorporated",
+            "name": "TI",
+            "description": "An organisation which has been tasked with translating this CreativeWork.",
+            "url": "https://www.translationsIncorporated.org/"
+        },
+        {
+            "@type": "Person",
+            "name": "John Doe",
+            "description": "A person who has been tasked with translating this CreativeWork.",
+            "url": "https://www.sample-data-repository.org/person/51332"
+        }
+    ],
+    "typicalAgeRange": "20-60",
+    "usageInfo": {
+        "@type": "CreativeWork",
+        "name": "Guidelines on how to use and how not to use this CreativeWork",
+        "description": "A document or other resources which contains information on how the CreativeWork should and should not be used.",
+        "url": "https://usageGuides.org/usageGuide_2321.pdf"
+    },
+    "version": "3.2",
+    "video": {
+        "@type": "VideoObject",
+        "description": "A video object about this CreativeWork.",
+        "duration": "PT1M33S",
+        "name": "A video about our CreativeWork",
+        "thumbnail": "https://videoImageArchive.org/videoThumbnail.jpg",
+        "contentSize": "500MB"
+    },
+    "workExample": [
+        {
+            "@type": "Dataset",
+            "datePublished": "2012",
+            "description": "A CSV distribution of this CreativeWork",
+            "distribution": "https://repository.org/pid_to_the_downloadable_dataset.",
+            "encodingFormat": "text/csv",
+            "publisher": {
+                "@type": "Organization",
+                "name": "Data R Us Inc."
+            }
+        },
+        {
+            "@type": "Dataset",
+            "datePublished": "2021",
+            "description": "A Geo JSON distribution of this CreativeWork",
+            "distribution": "https://anotherRepository.org/pid_to_the_downloadable_dataset.",
+            "encodingFormat": "application/geo+json",
+            "publisher": {
+                "@type": "Organization",
+                "name": "GeoData 4 All Inc."
+            }
+        }
+    ],
+    "workTranslation": {
+        "@type": "CreativeWork",
+        "description": "A French translation of this CreativeWork",
+        "inLanguage": "fr",
+        "name": "This CreativeWork - A New Translation",
+        "translator": {
+            "@type": "Person",
+            "name": "Dr John Doe",
+            "givenName": "John",
+            "familyName": "Doe",
+            "url": "https://www.sample-data-repository.org/person/51332"
+        }
+    },
+
+
+
+    "additionalType": "https://myPIDs.org/pidToMyAdditionalType/",
+    "alternateName": "Thing 1",
+    "description": "Free text or a URL to a description of this Thing.",
+    "disambiguatingDescription": "A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation",
+    "identifier": {
+        "@type": "PropertyValue",
+        "propertyID": "https://registry.identifiers.org/registry/myIdentifier/",
+        "value": "xyz",
+        "url": "https://myIdentifier.org/xyz",
+        "description": "Text: Optional description of this identifier, see [TODO: ADD URI TO IDENTIFER PATTERN] for more guidance on sharing identifieres."
+    },
+    "image": "https://myPIDs.org/pidToImageOfThisThing/",
+    "mainEntityOfPage": "https://www.urlToPageWhichIsMainlyAboutThisThing.com/",
+    "name": "Thing One",
+    "potentialAction": {
+        "@type": "Action",
+        "description": "Text: Description of Action which this Thing could potentially participate in. See [TODO:ADD LINK TO ACTION PATTERN] for how to add more structured metadata to Action. ",
+        "name": "Text: Name of Action that this Thing could potentially participate in"
+    },
+    "sameAs": [
+        "https://myPIDs.org/pidToAnotherWebResourceAboutThisThing/",
+        "https://myPIDs.org/pidToYetAnotherWebResourceAboutThisThing/"
+    ],
+    "subjectOf": [
+        "https://myPIDs.org/pidToCreativeWorkAboutThisThing/",
+        "https://myPIDs.org/pidToEventAboutThisThing/"
+    ],
+    "url": "https://www.urlToPageAboutThisThing.com/"
+}
\ No newline at end of file
diff --git a/static/_graphs/eventsTemplate.json b/static/_graphs/eventsTemplate.json
new file mode 100644
index 00000000..4bad84dc
--- /dev/null
+++ b/static/_graphs/eventsTemplate.json
@@ -0,0 +1,22 @@
+{"@context": "http://schema.org",
+"@type": "Event",
+"description": "Sponsored by Helmholtz Information & Data Science Academy (HIDA)in cooperation with 
+Core Facility Statistical Consulting at Helmholtz Zentrum München - German Research Center for 
+Environmental Health (Helmholtz Munich) is a fantastic tool to efficiently 
+write manuscripts and research reports. It relieves the work of making your manuscripts and reports 
+reproducible and transferable. You combine the coding in R and the writing of the documentation/interpretation 
+of the results all in the same file and compile it directly as a report (e.g. as html, pdf or word document) 
+After this course, you will no longer need to create multiple files in order to produce one single 
+research document. Tables, figures, citations and much more can be included in one single document 
+to be directly shared with your peers or PIs.Prerequisites: Programming skills with R, e.g. course 
+'Introduction to R' More details here. Course Days and TimesMay 25, 2023, 9 am - 12:30 pm May 26, 2023, 
+9 am - 12:30 pm NOTE: Registration will open 4 weeks before the course's starting date.",
+"endDate": "2023-05-26T12:30:00+02:00",
+"image": "https://events.hifis.net/event/656/logo-1641968619.png",
+"location": { "@type": "Place",
+      "address": "No address set",
+      "name": "online"},
+"name": "RMarkdown",
+"startDate": "2023-05-25T09:00:00+02:00",
+"url": "https://events.hifis.net/event/656/"
+}
\ No newline at end of file
diff --git a/static/_graphs/expertTemplate.json b/static/_graphs/expertTemplate.json
new file mode 100644
index 00000000..1c30bb71
--- /dev/null
+++ b/static/_graphs/expertTemplate.json
@@ -0,0 +1,57 @@
+{
+    "@context": {
+      "@vocab": "https://schema.org/"
+    },
+    "@id": "https://example.org/id/x",
+    "@type": "Person",
+    "name": "Jane Doe",
+    "jobTitle": "Professor",
+    "workLocation": {
+      "@type": "Place",
+      "address": "54 Ocean Drive, 23521 Ocean City, CountryName",
+      "name": "Place name"
+    },
+    "telephone": "(425) 123-4567",
+    "url": "http://www.janedoe.com",
+    "knowsAbout": [
+      {
+        "@type": "Text",
+        "description": "Invasive species in brackish water"
+      },
+      {
+        "@type": "URL",
+        "url": "https://www.wikidata.org/wiki/Q183368"
+      },
+      {
+        "@id": "https://example.org/id/course/x",
+        "@type": "Course",
+        "description": "In this course ...",
+        "url": "URL to the course"
+      }
+    ],
+    "identifier": {
+      "@id": "https://orcid.org/0000-0002-2257-9127",
+      "@type": "PropertyValue",
+      "propertyID": "https://registry.identifiers.org/registry/orcid",
+      "url": "https://orcid.org/0000-0002-2257-9127",
+      "description": "Optional description of this record..."
+    },
+    "nationality": [
+      {
+        "@type": "Country",
+        "name": "Fiji"
+      },
+      {
+        "@type": "DefinedTerm",
+        "url": "https://unece.org/trade/cefact/unlocode-code-list-country-and-territory",
+        "inDefinedTermSet": "UN/LOCODE Code List by Country and Territory",
+        "name": "Fiji",
+        "termCode": "FJ"
+      }
+    ],
+    "knowsLanguage": {
+      "@type": "Language",
+      "name": "Spanish",
+      "alternateName": "es"
+    }
+  }
\ No newline at end of file
diff --git a/static/_graphs/institutionTemplate.json b/static/_graphs/institutionTemplate.json
new file mode 100644
index 00000000..d4a69158
--- /dev/null
+++ b/static/_graphs/institutionTemplate.json
@@ -0,0 +1,42 @@
+{
+  "@context": {
+    "@vocab": "https://schema.org/"
+  },
+  "@id": "https://index.example.org/id/org/x",
+  "@type": "Organization",
+  "address": {
+    "@type": "PostalAddress",
+    "addressLocality": "Paris, France",
+    "postalCode": "F-75002",
+    "streetAddress": "38 avenue de l'Opera"
+  },
+  "location": {
+    "@type": "Place",
+    "address": "38 avenue de l'Opera, F-75002, Paris, France",
+    "name": "Paris"
+  },
+  "email": "secretariat(at)example.org",
+  "name": "Organization X",
+  "description": "Description of org ...",
+  "telephone": "( 33 1) 42 68 53 00",
+  "url": "https://example.org/",
+  "member": [
+    {
+      "@id": "https://example.org/id/org/1",
+      "@type": "Organization",
+      "name": "Organization A",
+      "description": "Org A is a potential parent organization of Org X"
+    },
+    {
+      "@id": "https://orcid.org/0000-0002-2257-9127",
+      "@type": "Person"
+    }
+  ],
+  "identifier": {
+    "@id": "https://grid.ac/institutes/grid.475727.4",
+    "@type": "PropertyValue",
+    "description": "UN Department of Economic and Social Affairs Sustainable Development",
+    "propertyID": "https://registry.identifiers.org/registry/grid",
+    "url": "https://grid.ac/institutes/grid.475727.4"
+  }
+}
diff --git a/static/_graphs/instrumentTemplate.json b/static/_graphs/instrumentTemplate.json
new file mode 100644
index 00000000..d6061bf4
--- /dev/null
+++ b/static/_graphs/instrumentTemplate.json
@@ -0,0 +1,6 @@
+{
+    "@context": {
+        "@vocab": "https://schema.org/"
+    }
+    
+}
diff --git a/static/_graphs/softwareTemplate.json b/static/_graphs/softwareTemplate.json
new file mode 100644
index 00000000..d86e23ce
--- /dev/null
+++ b/static/_graphs/softwareTemplate.json
@@ -0,0 +1,288 @@
+{
+    "@context": [
+        "https://doi.org/10.5063/schema/codemeta-2.0",
+        "https://w3id.org/software-iodata",
+        "https://schema.org",
+        "https://w3id.org/software-types"
+    ],
+    "@id" : "https://codebase.helmholtz.cloud/hmc/hmc-public/unhide/data_harvesting",
+    "@type": "SoftwareSourceCode",
+    "author": [
+        {
+            "@id" : "https://orcid.org/0000-0001-7939-226X",
+            "@type": "Person",
+            "email": "j.broeder@fz-juelich.de",
+            "familyName": "Bröder",
+            "givenName": "Jens",
+            "affiliation": {
+                "@id": "https://ror.org/02nv7yv05",
+                "name": "Forschungszentrum Jülich GmbH"
+            }
+        },
+        {
+        "@id":"https://orcid.org/0000-0002-0070-4337",
+            "@type": "Person",
+            "email": "a.strupp@fz-juelich.de",
+            "familyName": "Strupp",
+            "givenName": "Annika",
+            "affiliation": {
+                "@id": "https://ror.org/02nv7yv05",
+                "name": "Forschungszentrum Jülich GmbH"
+            }
+        },
+        {
+        "@id": "https://orcid.org/0000-0003-0000-4784",
+            "@type": "Person",
+            "email": "p.videgain.barranco@fz-juelich.de",
+            "familyName": "Videgain Barranco",
+            "givenName": "Pedro",
+            "affiliation": {
+                "@id": "https://ror.org/02nv7yv05",
+                "name": "Forschungszentrum Jülich GmbH"
+            }
+        },
+        {
+        "@id": "https://orcid.org/0000-0002-2818-5890",
+            "@type": "Person",
+            "email": "s.fathalla@fz-juelich.de",
+            "familyName": "Fathalla",
+            "givenName": "Said",
+            "affiliation": {
+                "@id": "https://ror.org/02nv7yv05",
+                "name": "Forschungszentrum Jülich GmbH"
+            }
+        },
+        {
+        "@id": "https://orcid.org/0000-0002-3968-2446",
+            "@type": "Person",
+            "email": "gabriel.preuss@helmholtz-berlin.de",
+            "familyName": "Preuß",
+            "givenName": "Gabriel",
+            "affiliation": {
+                "@id": "https://ror.org/02aj13c28",
+                "name": "Helmholtz-Zentrum Berlin für Materialien und Energie"
+            }
+        }
+    ],
+    "codeRepository": "https://codebase.helmholtz.cloud/hmc/hmc-public/unhide/data_harvesting.git",
+    "contributor": [
+        {
+            "@id" : "https://orcid.org/0000-0001-7939-226X",
+            "@type": "Person",
+            "email": "j.broeder@fz-juelich.de",
+            "familyName": "Bröder",
+            "givenName": "Jens",
+            "affiliation": {
+                "@type": "Organization",
+                "@id": "https://ror.org/02nv7yv05",
+                "name": "Forschungszentrum Jülich GmbH"
+            }
+        },
+        {   
+        "@id":"https://orcid.org/0000-0002-0070-4337",
+            "@type": "Person",
+            "email": "a.strupp@fz-juelich.de",
+            "familyName": "Strupp",
+            "givenName": "Annika",
+            "affiliation": {
+                "@type": "Organization",
+                "@id": "https://ror.org/02nv7yv05",
+                "name": "Forschungszentrum Jülich GmbH"
+            }
+        },
+        {
+            "@id": "https://orcid.org/0000-0003-0000-4784",
+            "@type": "Person",
+            "email": "p.videgain.barranco@fz-juelich.de",
+            "familyName": "Videgain Barranco",
+            "givenName": "Pedro",
+            "affiliation": {
+                "@type": "Organization",
+                "@id": "https://ror.org/02nv7yv05",
+                "name": "Forschungszentrum Jülich GmbH"
+            }
+        },
+        {
+        "@id": "https://orcid.org/0000-0002-2818-5890",
+            "@type": "Person",
+            "email": "s.fathalla@fz-juelich.de",
+            "familyName": "Fathalla",
+            "givenName": "Said",
+            "affiliation": {
+                "@id": "https://ror.org/02nv7yv05",
+                "name": "Forschungszentrum Jülich GmbH"
+            }
+        },
+        {
+        "@id": "https://orcid.org/0000-0002-3968-2446",
+            "@type": "Person",
+            "email": "gabriel.preuss@helmholtz-berlin.de",
+            "familyName": "Preuß",
+            "givenName": "Gabriel",
+            "affiliation": {
+                "@id": "https://ror.org/02aj13c28",
+                "name": "Helmholtz-Zentrum Berlin für Materialien und Energie"
+            }
+        }
+    ],
+    "dateCreated": "2021-07-09",
+    "dateModified": "2022-12-19",
+    "datePublished": "2023-03-01",
+    "developmentStatus": "https://www.repostatus.org/#wip",
+    "identifier": "data_harvesting",
+    "maintainer": {
+        "@id" : "https://orcid.org/0000-0001-7939-226X",
+        "@type": "Person",
+        "email": "j.broeder@fz-juelich.de",
+        "familyName": "Bröder",
+        "givenName": "Jens",
+        "affiliation": {
+            "@type": "Organization",
+            "@id": "https://ror.org/02nv7yv05",
+            "name": "Forschungszentrum Jülich GmbH"
+        }
+    },
+    "programmingLanguage": [
+        "Python",
+        "Shell"
+    ],
+    "readme": "https://codebase.helmholtz.cloud/hmc/hmc-public/unhide/data_harvesting/-/blob/main/README.md",
+    "softwareHelp": "https://codebase.helmholtz.cloud/hmc/hmc-public/unhide/data_harvesting",
+    "license": "http://spdx.org/licenses/MIT",
+    "name": "data-harvesting",
+    "runtimePlatform": [
+        "Python 3",
+        "Python 3.7",
+        "Python 3.8",
+        "Python 3.9",
+        "Python 3.10",
+        "Python 3.11"
+    ],
+    "keywords": [
+        "unhide", "Helmholtz association", "data mining", "HMC", "metadata", "data publications", 
+        "software publication", "RSE", "FAIR", "linked data", "knowledge graph", "json-ld", "schema.org", "restruct"
+    ],
+    "softwareRequirements": [
+        {
+            "@type": "SoftwareApplication",
+            "identifier": "advertools",
+            "name": "advertools",
+            "runtimePlatform": "Python 3"
+        },
+        {
+            "@type": "SoftwareApplication",
+            "identifier": "beautifulsoup4",
+            "name": "beautifulsoup4",
+            "runtimePlatform": "Python 3"
+        },
+        {
+            "@type": "SoftwareApplication",
+            "identifier": "pandas",
+            "name": "pandas",
+            "runtimePlatform": "Python 3"
+        },
+        {
+            "@type": "SoftwareApplication",
+            "identifier": "requests",
+            "name": "requests",
+            "runtimePlatform": "Python 3"
+        },
+        {
+            "@type": "SoftwareApplication",
+            "identifier": "typer",
+            "name": "typer",
+            "runtimePlatform": "Python 3"
+        },
+        {
+            "@type": "SoftwareApplication",
+            "identifier": "rich",
+            "name": "rich",
+            "runtimePlatform": "Python 3"
+        },
+        {
+            "@type": "SoftwareApplication",
+            "identifier": "progressbar2",
+            "name": "progressbar2",
+            "runtimePlatform": "Python 3"
+        },
+        {
+            "@type": "SoftwareApplication",
+            "identifier": "rdflib",
+            "name": "rdflib",
+            "runtimePlatform": "Python 3"
+        },
+        {
+            "@type": "SoftwareApplication",
+            "identifier": "codemetapy",
+            "name": "codemetapy",
+            "runtimePlatform": "Python 3"
+        },
+        {
+            "@type": "SoftwareApplication",
+            "identifier": "pyld",
+            "name": "pyld",
+            "runtimePlatform": "Python 3"
+        },
+        {
+            "@type": "SoftwareApplication",
+            "identifier": "extruct",
+            "name": "extruct",
+            "runtimePlatform": "Python 3"
+        },
+        {
+            "@type": "SoftwareApplication",
+            "identifier": "pyld",
+            "name": "pyld",
+            "runtimePlatform": "Python 3"
+        },
+        {
+            "@type": "SoftwareApplication",
+            "identifier": "jq",
+            "name": "jq",
+            "runtimePlatform": "Python 3"
+        },
+        {
+            "@type": "SoftwareApplication",
+            "identifier": "jsonschema",
+            "name": "jsonschema",
+            "runtimePlatform": "Python 3"
+        },
+        {
+            "@type": "SoftwareApplication",
+            "identifier": "xmljson",
+            "name": "xmljson",
+            "runtimePlatform": "Python 3"
+        },
+        {
+            "@type": "SoftwareApplication",
+            "identifier": "codemeta-harvester",
+            "name": "codemeta-harvester",
+            "runtimePlatform": "Shell"
+        }
+    ],
+    "targetProduct": {
+        "@type": "CommandLineApplication",
+        "executableName": "hmc_unhide",
+        "name": "hmc_unhide",
+        "runtimePlatform": ["Shell", "Python 3"]
+    },
+    "applicationCategory": "Library, Data science",
+    "downloadUrl": "https://codebase.helmholtz.cloud/hmc/hmc-public/unhide/data_harvesting/-/archive/main/data_harvesting-main.zip",
+    "fileSize": "57MB",
+    "operatingSystem": ["OSX", "Linux"],
+    "releaseNotes": "https://codebase.helmholtz.cloud/hmc/hmc-public/unhide/data_harvesting/-/blob/main/CHANGELOG.md",    
+    "url": "https://codebase.helmholtz.cloud/hmc/hmc-public/unhide/data_harvesting",
+    "description": "Tools for mining, processing and visualizing metadata of data publications in the context of the Helmholtz metadata collaboration (HMC).",
+    "copyrightHolder": [
+        {"@id" : "Helmholtz Metadata Collaboration (HMC)",
+             "@type": "Organization",
+             "name": "Helmholtz Metadata Collaboration (HMC)"},
+         {"@type": "Organization",
+         "name": "Forschungszentrum Jülich GmbH (Materials Data Science and Informatics (IAS-9), Institute for Advanced Simulation (IAS)), Jülich, Germany"}],
+    "copyrightYear" : "2022",
+    "softwareVersion": "1.0.0",
+    "isAccessibleForFree": "True",
+    "contIntegration": "https://codebase.helmholtz.cloud/hmc/hmc-public/unhide/data_harvesting/-/pipelines",
+    "buildInstructions": "https://codebase.helmholtz.cloud/hmc/hmc-public/unhide/data_harvesting/-/blob/main/pyproject.toml",
+    "issueTracker": "https://codebase.helmholtz.cloud/hmc/hmc-public/unhide/data_harvesting/-/issues"
+}
\ No newline at end of file
-- 
GitLab