fix the pattern in the api schema for object ids in changesets

This commit is contained in:
Gwendolyn 2023-12-14 18:43:37 +01:00
parent 478057e515
commit f41fe3dcc0

View file

@ -19,7 +19,7 @@ EditorID = Union[
description="ID of an existing object that might have been modified in this changeset"
)],
Annotated[str, APIField(
pattern="^c:[0-9]+$",
pattern="^c[0-9]+$",
title="created object",
description="id of an object that was created in this changeset"
)],