Skip to content

Commit

Permalink
docs: Clarify which collection ID is needed
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed May 3, 2024
1 parent 1205498 commit 7013bca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/api/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ class StatusSerializer(serializers.Serializer):

class CreateDatasetSerializer(serializers.Serializer):
name = serializers.CharField(help_text="The name to assign to the dataset")
collection_id = serializers.IntegerField(help_text="The collection ID in Kingfisher Process")
collection_id = serializers.IntegerField(help_text="The compiled collection ID in Kingfisher Process")
ancestor_id = serializers.IntegerField(
required=False, help_text="The ID of the previous report in Pelican, for time-based checks"
)
Expand Down
2 changes: 1 addition & 1 deletion docs/_static/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ components:
description: The name to assign to the dataset
collection_id:
type: integer
description: The collection ID in Kingfisher Process
description: The compiled collection ID in Kingfisher Process
ancestor_id:
type: integer
description: The ID of the previous report in Pelican, for time-based checks
Expand Down

0 comments on commit 7013bca

Please sign in to comment.