Skip to content

Commit

Permalink
data use terms
Browse files Browse the repository at this point in the history
  • Loading branch information
fhennig committed Feb 12, 2025
1 parent e471098 commit b4a6ce4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 36 deletions.
33 changes: 0 additions & 33 deletions docs/src/content/docs/reference/helm-chart-config.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,39 +17,6 @@ The configuration for the Helm chart is provided as a YAML file. It has the foll

<SchemaDocs group='general' fieldColumnClass='w-56' />

<div className='overflow-x-scroll'>
<table className='min-w-[700px]'>
<thead>
<tr>
<th className='w-56'>Field</th>
<th>Type</th>
<th className='w-32'>Default</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>`dataUseTerms.enabled`</td>
<td>Boolean</td>
<td>true</td>
<td>Whether this Loculus instance handles data use terms.</td>
</tr>
<tr>
<td>`dataUseTerms.urls.open`</td>
<td>String</td>
<td></td>
<td>A URL describing the open data use terms.</td>
</tr>
<tr>
<td>`dataUseTerms.urls.restricted`</td>
<td>String</td>
<td></td>
<td>A URL describing the restricted data use terms.</td>
</tr>
</tbody>
</table>
</div>

## Website Settings

<SchemaDocs group='website' fieldColumnClass='w-56' />
Expand Down
9 changes: 6 additions & 3 deletions kubernetes/loculus/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -821,16 +821,19 @@
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
"type": "boolean",
"description": "Whether this Loculus instance handles data use terms."
},
"urls": {
"type": "object",
"properties": {
"open": {
"type": "string"
"type": "string",
"description": "A URL describing the open data use terms."
},
"restricted": {
"type": "string"
"type": "string",
"description": "A URL describing the restricted data use terms."
}
},
"required": ["open", "restricted"],
Expand Down

0 comments on commit b4a6ce4

Please sign in to comment.