Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to view nested datasets in UI #147

Open
elichad opened this issue Jul 16, 2024 · 0 comments
Open

Unable to view nested datasets in UI #147

elichad opened this issue Jul 16, 2024 · 0 comments

Comments

@elichad
Copy link

elichad commented Jul 16, 2024

If a Dataset referenced by hasPart on the RDE has its own hasPart including further entities, these nested entities don't show up in Crate-O - the hasPart property isn't displayed for anything other than the RDE.

Minimal example to replicate:

{
  "@context": [
    "https://w3id.org/ro/crate/1.1/context"
  ],
  "@graph": [
    {
      "@id": "ro-crate-metadata.json",
      "@type": "CreativeWork",
      "identifier": "ro-crate-metadata.json",
      "about": {
        "@id": "./"
      },
      "conformsTo": [
        {
          "@id": "https://w3id.org/ro/crate/1.1"
        }
      ]
    },
    {
      "@id": "./",
      "@type": "Dataset",
      "name": "Example Dataset",
      "hasPart": [
        {
          "@id": "local_data/"
        }
      ]
    },
    {
      "@id": "local_data/",
      "@type": "Dataset",
      "hasPart": [
        {
          "@id": "local_data/test.txt"
        }
      ]
    }
  ]
}
Screen.Recording.2024-07-16.164358.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant