diff --git a/src/libs/LabelStudio/Generated/LabelStudio.Models.LabelDistributionStructureDimension.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.Models.LabelDistributionStructureDimension.g.cs index c5d0cf6..9d6ef1b 100644 --- a/src/libs/LabelStudio/Generated/LabelStudio.Models.LabelDistributionStructureDimension.g.cs +++ b/src/libs/LabelStudio/Generated/LabelStudio.Models.LabelDistributionStructureDimension.g.cs @@ -23,6 +23,12 @@ public sealed partial class LabelDistributionStructureDimension [global::System.Text.Json.Serialization.JsonRequired] public required global::System.Collections.Generic.IList Choices { get; set; } + /// + /// Dimension primary key used by Dimension-backed Data Manager result filters. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("dimension_id")] + public int? DimensionId { get; set; } + /// /// Original from_name from labeling config or observed annotation results. /// @@ -57,6 +63,9 @@ public sealed partial class LabelDistributionStructureDimension /// /// Original from_name from labeling config or observed annotation results. /// + /// + /// Dimension primary key used by Dimension-backed Data Manager result filters. + /// /// /// Result item type for this dimension when available. /// @@ -73,12 +82,14 @@ public sealed partial class LabelDistributionStructureDimension public LabelDistributionStructureDimension( global::System.Collections.Generic.IList choices, string name, + int? dimensionId, string? type, string? unsupportedReason, global::System.Collections.Generic.IList choiceKeys = default!) { this.ChoiceKeys = choiceKeys; this.Choices = choices ?? throw new global::System.ArgumentNullException(nameof(choices)); + this.DimensionId = dimensionId; this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name)); this.Type = type; this.UnsupportedReason = unsupportedReason; diff --git a/src/libs/LabelStudio/openapi.yaml b/src/libs/LabelStudio/openapi.yaml index c6ee61f..c446a37 100644 --- a/src/libs/LabelStudio/openapi.yaml +++ b/src/libs/LabelStudio/openapi.yaml @@ -31675,6 +31675,9 @@ components: items: type: string type: array + dimension_id: + description: Dimension primary key used by Dimension-backed Data Manager result filters. + type: integer name: description: Original from_name from labeling config or observed annotation results. type: string