From feb6b1d622d34ce1455b45683594320d30d74817 Mon Sep 17 00:00:00 2001 From: Nicolas Dupont Date: Tue, 6 Jan 2026 15:47:09 +0100 Subject: [PATCH 1/2] Update doc --- content/collections/reference/configuration.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/content/collections/reference/configuration.md b/content/collections/reference/configuration.md index 203041d7..b4bc9c78 100644 --- a/content/collections/reference/configuration.md +++ b/content/collections/reference/configuration.md @@ -187,13 +187,15 @@ The dataset section configures how datasets are published. Datasets can be publi type="string" description="Title of the dataset." default="sandbox" + required=true />}} {{< refItem name="dataset.versionsRepositoryURL" type="string" - description="Repository URL for dataset releases." + description="Repository URL for dataset releases. Also used to generate the dataset README." default="https://github.com/OpenTermsArchive/sandbox" + required=true />}} {{< refItem @@ -212,6 +214,7 @@ The data.gouv.fr section configures publishing to the French government's open d type="string" description="ID of an existing dataset on data.gouv.fr. Use this to publish to an existing dataset. Either this or `organizationIdOrSlug` is required." example="6914a64b17a0a91bb0a61222" + required=true />}} {{< refItem @@ -219,6 +222,7 @@ The data.gouv.fr section configures publishing to the French government's open d type="string" description="ID or slug of the organization on data.gouv.fr. Use this to automatically create and publish a dataset. The dataset will be created with the title from `dataset.title` if it doesn't exist. Either this or `datasetId` is required." example="open-terms-archive" + required=true />}} {{< refItem @@ -226,6 +230,7 @@ The data.gouv.fr section configures publishing to the French government's open d type="string" description="Update frequency of the dataset. Used when creating or updating a dataset on data.gouv.fr. See [data.gouv.fr API](https://www.data.gouv.fr/api/1/datasets/frequencies/) for all allowed values." example="weekly" + required=true />}} {{< refItem From a394488988a0e2ee6e44db44c71cb35c22c7478f Mon Sep 17 00:00:00 2001 From: Nicolas Dupont Date: Tue, 6 Jan 2026 16:03:09 +0100 Subject: [PATCH 2/2] Update default values --- content/collections/reference/configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/collections/reference/configuration.md b/content/collections/reference/configuration.md index b4bc9c78..3c32adeb 100644 --- a/content/collections/reference/configuration.md +++ b/content/collections/reference/configuration.md @@ -186,7 +186,7 @@ The dataset section configures how datasets are published. Datasets can be publi name="dataset.title" type="string" description="Title of the dataset." - default="sandbox" + example="Contrib collection dataset" required=true />}} @@ -194,7 +194,7 @@ The dataset section configures how datasets are published. Datasets can be publi name="dataset.versionsRepositoryURL" type="string" description="Repository URL for dataset releases. Also used to generate the dataset README." - default="https://github.com/OpenTermsArchive/sandbox" + example="https://github.com/OpenTermsArchive/contrib-versions" required=true />}}