Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/omero_rdf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,13 +250,13 @@ def serialize_graph(self):
{
"@id": "./",
"@type": "Dataset",
"rocrate:license": "https://creativecommons.org/licenses/by/4.0/",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we drop the context statement about then, @sukunis?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just noticed that adaption of context entity is needed

"license": "https://creativecommons.org/licenses/by/4.0/",
},
{
"@id": "ro-crate-metadata.json",
"@type": "CreativeWork",
"rocrate:conformsTo": {"@id": "https://w3id.org/ro/crate/1.1"},
"rocrate:about": {"@id": "./"},
"conformsTo": {"@id": "https://w3id.org/ro/crate/1.1"},
"about": {"@id": "./"},
},
]
return json.dumps(j, indent=4)
Expand Down
Loading