Skip to content

Change fictional namespace in resource usage example #97

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

Merged
merged 1 commit into from
Jul 1, 2025
Merged
Changes from all commits
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 docs/profiles/0.6-DRAFT/provenance_run_crate/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -550,20 +550,20 @@ It can often be desirable to have information on the resources used in the cours
"@id": "#a1be3cab-realTime",
"@type": "PropertyValue",
"name": "realTime",
"propertyID": "https://w3id.org/ro/terms/nf-trace#realTime",
"propertyID": "https://example.com/nf-trace#realTime",
"unitCode": "https://qudt.org/vocab/unit/MilliSEC",
"value": "12"
},
{
"@id": "#a1be3cab-percentCPU",
"@type": "PropertyValue",
"name": "percentCPU",
"propertyID": "https://w3id.org/ro/terms/nf-trace#percentCPU",
"propertyID": "https://example.com/nf-trace#percentCPU",
"value": "80.0"
}
```

The values of `propertyID` SHOULD be URLs that univocally identify the quantity. The set of possible `propertyID` values can be defined by the workflow engine that implements the profile; ideally, each URL would point to a detailed description of the quantity. In the above example, ro-terms is used to create a namespace for the `propertyID`s. In this case, [QUDT](https://qudt.org/) is used to specify the `unitCode`.
The values of `propertyID` SHOULD be URLs that univocally identify the quantity. The set of possible `propertyID` values can be defined by the workflow engine that implements the profile; ideally, each URL would point to a detailed description of the quantity. In the above example, the fictional `https://example.com/nf-trace` namespace is used for the `propertyID`s. In this case, [QUDT](https://qudt.org/) is used to specify the `unitCode`.


## Requirements
Expand Down